@import url("responsive.css");
@import url("components-ssr.css");

body {
  margin: 0;
  padding: 0;
}
input[type="date"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 95%;
}

.header-topbar {
  background-image: linear-gradient(45deg, var(--secondary), var(--secondary));
}

.div-logo {
  display: flex;
  flex: 1;
}

.img-logo {
  width: 130px;
  padding: 8px;
  cursor: pointer;
  transition-timing-function: ease-in-out;
  transition-duration: 0.35s;
}

.img-logo:hover,
.img-logo-header:hover {
  transform: scale(1.05);
}

.img-logo-header {
  width: 100%;
  cursor: pointer;
  transition-timing-function: ease-in-out;
  transition-duration: 0.35s;
  background-image: url(/img/logo-small.webp);
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
}

.div-saldo {
  display: flex;
}
.header__div-user {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.header__div-user > img {
  height: auto;
  width: 35px;
}

.header__div-user > label {
  color: #d6d6d6;
  font-size: 14px;
}

.pages-topbar {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex: 5;
}

.pages-topbar > button::before,
.sidebar__btns > button::before,
.portal__footer__section-content-shortcut > div > button::before,
.portal__footer__section-content-help > button::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 3px;
  width: 100%;
  background: radial-gradient(var(--accent), transparent);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: color 0.1s, transform 0.4s ease-out;
}
.sidebar__btns > button::before,
.portal__footer__section-content-shortcut > div > button::before,
.portal__footer__section-content-help > button::before {
  background: radial-gradient(var(--accent), transparent) !important;
}

.pages-topbar > button:hover::before,
.sidebar__btns > button:hover::before,
.portal__footer__section-content-shortcut > div > button:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.pages-topbar > button,
.portal__footer__section-content-shortcut > div > button {
  border: none;
  background-color: inherit;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  padding: 16px 0;
  margin: 0 12px;
  letter-spacing: 1px;
  line-height: 16px;
  font-weight: 700;
  transition: color 0.1s, background-color 0.1s, padding 0.4s ease-in;
  color: var(--white);
  text-align: start;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 5px;
}

.pages-topbar > button > img,
.portal__footer__section-content-shortcut > div > button > img {
  max-width: 20px;
}
.btn-menu {
  background-color: inherit;
  border: none !important;
  border-radius: 2px;
  color: var(--white);
  font-size: 20px;
  padding: 0 15px;
  margin: 0;
  cursor: pointer;
}

@media (max-width: 900px) {
  .pages-topbar {
    display: none;
    gap: 20px;
  }
}

.modal--overlay,
.modal--background {
  height: 100vh;
  bottom: 0;
  left: 0;
  pointer-events: auto;
  overflow: hidden;
  position: fixed;
  z-index: 100;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-gradient);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.modal__content {
  margin: 0 20px;
  overflow: auto;
  position: relative;
  z-index: 101;
  width: 90%;
}

/* Set a style for all buttons */
.modal-login__btn,
.modal-sign-up__btn,
.component__button-search {
  background-color: var(--accent);
  color: white;
  padding: 14px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: var(--btn-border-radius);
  margin: 16px 0;
  font-weight: bold;
  position: relative;
  transition: background-color 0.3s;
}
.modal-sign-up__btn {
  background-color: var(--secondary-500);
}

.modal-login__btn::before,
.modal-sign-up__btn::before,
.component__button-search::before {
  content: "";
  border: 2px solid #fff;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: var(--btn-border-radius);
  box-sizing: border-box;
  right: 3px;
  bottom: 3px;
}

.modal-login__btn:hover,
.component__button-search:hover {
  background-color: var(--accent-900);
}

.component__button-search {
  padding: 9px 80px;
}
.modal-sign-up__btn:hover {
  background-color: var(--secondary-700);
}

.modal-login__btn:focus,
.modal-sign-up__btn:focus,
.component__button-search:focus {
  border: none;
}

/* Center the image and position the close button */
.login__container {
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--secondary-border-20);
}

.container::-webkit-scrollbar {
  width: 8px;
}

/* Handle */
.container::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: var(--btn-border-radius);
}

/* Handle on hover */
.container::-webkit-scrollbar-thumb:hover {
  background-color: var(--secondary);
}

.modal__login--sign-up {
  border-top: 1px solid var(--secondary-border);
  background-color: var(--primary-700);
  padding: 16px;
  border-radius: 0 0 15px 15px;
  color: var(--white);
  text-align: center;
  position: relative;
  cursor: pointer;
}

.modal__login--sign-up > label {
  font-weight: bold;
  font-size: 15px;
  color: var(--white);
  cursor: pointer;
}

#login__div > label {
  text-decoration: underline;
}

.modal__login--sign-up > label > span {
  text-decoration: underline;
}

.divgender {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px dotted var(--secondary-border);
  border-radius: var(--btn-border-radius);
  padding: 5px;
  color: var(--secondary-text);
}

.divgender > label {
  font-weight: bold;
}

.divgender > div {
  margin: 5px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.divgender > div > label {
  margin-left: 5px;
}

.divgender > div > input {
  accent-color: var(--secondary-10);
}

.modal-background {
  height: 100vh;
  bottom: 0;
  left: 0;
  pointer-events: auto;
  overflow: hidden;
  position: fixed;
  z-index: 100;
  right: 0;
  top: 0;
}

.modal__section-info {
  text-align: center;
  padding: 0 35px;
}

.modal__section-info > div {
  padding: 10px;
  border: dotted;
  border-radius: 15px;
  color: var(--secondary-text);
}

.modal__section-info > div > b {
  color: var(--primary-text);
}

.modal-background {
  background-color: #0a0a0a54;
}

.login-content {
  display: block;
  position: relative;
  background-color: var(--secondary-20);
  border-radius: 10px;
  text-align: center;
  padding-top: 10px;
  user-select: none;
}

.login-content > i {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  font-size: 18px;
  padding: 4px 7px;
  cursor: pointer;
}

.modal-content {
  background-color: var(--accent);
  color: var(--white);
}

.modal-login__input {
  outline: none;
  border: none;
  width: 100%;
  text-align: left;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-out;
  padding: 7px;
  margin: 3px 0;
  border: none !important;
  background-color: var(--neutral-300) !important;
  transition: background-color 0s !important;
}

.modal-login__input:-webkit-autofill,
.modal-login__input:-webkit-autofill:focus,
.modal-login__input:-webkit-autofill:active,
.modal-login__input:-webkit-autofill:hover,
.search--section > input {
  -webkit-box-shadow: 0 0 0 1000px var(--neutral-300) inset !important;
  animation-fill-mode: unset !important;
  -webkit-text-fill-color: black !important;
  background-color: var(--neutral-300);
  caret-color: black;
}
.modal__login--forgot-pass {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.modal__login--forgot-pass > span {
  cursor: pointer;
}

.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }

  to {
    -webkit-transform: scale(1);
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
    display: block;
    float: none;
  }
}

.sign-up {
  color: var(--primary-text);
}

.sign-up {
  cursor: pointer;
}

.shortcut {
  transition-delay: 0.25s;
}

.container__dropdown {
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.container__dropdown > label {
  padding: 0 0px 3px 5px;
}

.dropdown {
  display: inline-block;
  transition-delay: 0.1s;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
  position: relative;
}

.dropdown > button {
  width: 100%;
  /* min-width: 236px; */
  border-radius: var(--border-radius);
  border: none;
  padding: 7px 10px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  background-color: var(--neutral);
  color: var(--primary-800);
  align-items: center;
  transition: border-radius 0.1s ease-out;
}

.dropdown-active > button {
  border-radius: 8px 8px 0 0;
}

.dropdown-active > button > i {
  transition-delay: 0.1s;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
  transform: rotate(-180deg);
}

.dropdown > button > span {
  font-size: 14px;
  font-weight: bold;
}

.dropdown > button > i {
  font-size: 17px;
  padding: 5px 9px;
  border-radius: 50%;
  color: var(--white);
}

.sidebar__icon--align {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar__icon--align > span {
  transition-delay: 0.1s;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
}
.sidebar__icon--rotate {
  transform: rotate(-180deg);
}
.sidebar__btns > button > span {
  margin-left: 30px;
}

.dropdown-content {
  box-shadow: 0px 5px 7px 0px rgb(0 0 0 / 40%);
  background-color: var(--secondary-50);
}
.dropdown-form {
  background-color: var(--secondary-400);
  color: var(--secondary-text);
  padding: 9px !important;
}

.dropdown .dropdown-content {
  visibility: visible;
  transition: visibility 0.1s ease, opacity 0.25s ease;
  opacity: 1;
  z-index: 1;
}

.opacity {
  opacity: 0.7;
}

.dropdown-content div {
  display: block;
  padding: 8px 10px;
  border-top: 1px solid var(--secondary-100);
  text-decoration: none;
  cursor: pointer;
  color: #383838;
  transition: background-color 0.2s ease;
  text-align: left;
}

.dropdown-content div {
  background-color: var(--secondary-50);
}

.dropdown-content::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.dropdown-content::-webkit-scrollbar-thumb {
  background-color: var(--secondary-10);
  border-radius: var(--btn-border-radius);
}

.dropdown-content::-webkit-scrollbar-track {
  border-radius: var(--btn-border-radius);
}

/* ::-webkit-calendar-picker-indicator {
  filter: invert();
} */

.dropdown-items {
  overflow: auto;
  max-height: 250px;
}

.display-none {
  display: none;
}

.gender__dropdown {
  background-color: var(--neutral-300);
  color: var(--secondary-text);
  padding: 7px;
}
.gender__dropdown > div {
  background-color: var(--neutral-300);
  color: var(--secondary);
  border-top: 1px solid var(--primary-800);
  border-radius: 0;
}

.container__input {
  display: flex;
  flex-direction: column;
  color: var(--secondary-900);
}

.container__input > label {
  padding: 0 0px 3px 5px;
}

.button-login,
.button-sign-in {
  cursor: pointer;
  color: var(--white);
  background-color: var(--tertiary-600);
  padding: 2px 16px;
  border: 1px solid var(--white);
  border-radius: var(--border-radius);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: bold;
}

.button-login:hover,
.button-sign-in:hover {
  transform: scale(1.05);
}

.button-sign-in:focus {
  border: 1px solid var(--tertiary-700) !important;
}
.button-login > span,
.button-sign-in > span {
  display: none;
}

.display-align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Loader dotPulse */

.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: var(--btn-border-radius);
  background-color: var(--accent-100);
  color: var(--primary);
  box-shadow: 9999px 0 0 -5px var(--primary);
  animation: dotPulse 1.5s infinite linear;
  animation-delay: 0.25s;
}

.dot-pulse::before,
.dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: var(--btn-border-radius);
  background-color: var(--accent-100);
  color: var(--primary);
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px var(--accent-100);
  animation: dotPulseBefore 1.5s infinite linear;
  animation-delay: 0s;
}

.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px var(--accent-100);
  animation: dotPulseAfter 1.5s infinite linear;
  animation-delay: 0.5s;
}
.dot__div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px var(--accent-100);
  }

  30% {
    box-shadow: 9984px 0 0 2px var(--accent-100);
  }

  60%,
  100% {
    box-shadow: 9984px 0 0 -5px var(--accent-100);
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px var(--accent-100);
  }

  30% {
    box-shadow: 9999px 0 0 2px var(--accent-100);
  }

  60%,
  100% {
    box-shadow: 9999px 0 0 -5px var(--accent-100);
  }
}

@keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px var(--accent-100);
  }

  30% {
    box-shadow: 10014px 0 0 2px var(--accent-100);
  }

  60%,
  100% {
    box-shadow: 10014px 0 0 -5px var(--accent-100);
  }
}
/* Deixar essa clase no componente sidebar */
.sidebar {
  background-color: var(--secondary);
}

.sidebar.open {
  left: 0;
}

.overlay,
.overlay__sidebar {
  background-color: #00000047;
  display: none;
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 11;
  top: 0;
}

.overlay.open,
.overlay__sidebar.open {
  display: block;
}

.sidebar__btns {
  display: flex;
  flex-direction: column;
}

.sidebar__btns > button {
  position: relative;
  cursor: pointer;
  padding: 15px 10px;
  letter-spacing: 1px;
  line-height: 16px;
  font-weight: 700;
  transition: color 0.1s, background-color 0.1s, padding 0.4s ease-in;
  background-color: inherit;
  border: none;
  border-left: 0px solid;
  border-bottom: 1px solid var(--secondary-600);
  text-align: left;
  color: var(--secondary-text);
  display: flex;
  justify-content: space-between;
}

.sidebar__button > button {
  padding: 15px 10px;
  letter-spacing: 1px;
  line-height: 16px;
  font-weight: 700;
  transition-timing-function: ease-in-out;
  transition-duration: 0.25s;
  background-color: inherit;
  border: none;
  color: var(--secondary-text);
  cursor: pointer;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid var(--secondary-border-20);
}

.sidebar__button > button:hover {
  background-color: var(--secondary-600);
}

.loading__img {
  position: relative;
  display: block;
  margin: auto;
  width: 80%;
  padding: 10px;
}


.results__card {
  background-color: var(--secondary-700);
  padding: 15px;
  border-radius: 15px;
  max-width: 350px;
  flex: 1;
  flex-basis: 20%;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
  width: 100%;
}

.results__card {
  width: 100%;
  color: #fff;
  border-collapse: separate;
  border-spacing: 0 1em;
}

.results__card:hover {
  transform: scale(1.02);
}

.circular-gradient {
  background-image: var(--circular-gradient);
  padding: 2px;
}

.results__card--header {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  align-items: center;
}

.results__table-grupo > span {
  background-color: var(--accent);
  padding: 8px;
  border-radius: 50%;
}

.bet-day {
  display: table-cell;
  font-weight: bold;
  justify-content: center !important;
  text-align: center;
}

.results__card > table {
  width: 100%;
  color: #fff;
  border-collapse: separate;
  border-spacing: 0 1em;
}

.results__card > table > tbody > tr :not(:nth-child(2)) {
  text-align: center;
  font-weight: bold;
}

.results__table-align-results {
  display: flex;
  justify-content: flex-end;
  font-weight: bold;
  gap: 2px;
}

.results__table-align-results > div {
  background-color: var(--secondary-900);
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 4ch;
  width: 4ch;
}

.results__table-align-results-especiais {
  display: flex;
  justify-content: center;
  font-weight: bold;
  gap: 2px;
  flex-wrap: wrap;
}

.results__table-align-results-especiais > div {
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
}

.results__table-print {
  text-align: center;
}

.results__table-print > button {
  padding: 8px 30px;
  border-radius: 15px;
  background-color: var(--secondary);
  color: var(--secondary-text);
  border: none;
  font-weight: bold;
  cursor: pointer;
}
.captcha-img {
  display: block;
  background-color: var(--white);
  border-radius: 10px;
}

.dreams,
.wrapper-regras {
  box-sizing: border-box;
  display: flex;
  padding: 16px;
  max-width: 1280px;
  margin: 8px auto;
  flex-direction: column;
}

.dreams-menu {
  box-sizing: border-box;
  display: flex;
  padding: 25px 16px;
  max-width: 1280px;
  width: 100%;
  margin: 8px auto;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.dreams-menu .dream-link {
  background-color: var(--accent);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  text-decoration: none;
  justify-content: center;
  padding: 5px 12px;
  margin: 5px;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  border: 1px solid var(--accent);
}

.dreams-menu .dream-link:hover,
.dreams-menu .dream-link:focus {
  background-color: var(--accent);
  transform: scale(1.15);
  border: 1px solid var(--accent);
}

.dream-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.dream-list .dream-list__item,
.wrapper-regras .aposta {
  background-color: var(--secondary-700);
  padding: 16px;
  box-shadow: 0px 0px 8px var(--secondary);
  border-radius: var(--border-radius);
}

.dream-list .dream-list__item .dream-list__item-title {
  color: var(--accent-100);
  font-weight: 600;
}

.dream-list__item-games p {
  line-height: 1;
  margin: 8px 0;
}

.dream-list__item-animal p strong {
  color: var(--accent-500);
}

.go-top {
  background-color: var(--accent);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: none;
  flex-direction: row;
  align-items: center;
  text-align: center;
  text-decoration: none;
  justify-content: center;
  padding: 5px 12px;
  bottom: 20px;
  right: 30px;
  border: none;
  position: fixed;
  color: var(--primary-900);
  font-size: 30px;
  transition: all linear 0.3s;
  cursor: pointer;
}

.go-top:hover {
  transform: scale(1.3);
  background-color: var(--accent-600);
}

.wrapper-regras h1 {
  color: var(--accent-100);
  font-weight: 700;
}
.wrapper-regras h2 {
  font-weight: 700;
  padding-left: 10px;
}
.wrapper-regras h2::after {
  content: "";
  width: 50px;
  height: 5px;
  display: block;
  background: var(--accent);
}

.wrapper-regras .aposta {
  margin: 20px 0;
}
.wrapper-regras .aposta .detail {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
}

.wrapper-regras .aposta .detail table {
  background-color: var(--secondary-10);
  max-width: 500px;
  width: 100%;
  font-size: 20px;
}

.wrapper-regras .aposta .detail table tr:nth-child(odd) {
  background-color: var(--secondary-20);
}

.wrapper-regras .aposta h3 {
  color: var(--accent-100);
}

.wrapper-regras .aposta p strong {
  color: var(--accent-300);
}

@media screen and (max-width: 1024px) {
  .dream-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
}

.email_confirmation-gradient {
  background: linear-gradient(
    180deg,
    #5b5e66 81.33%,
    var(--accent) 109.43%
  ) !important;
}

.email_confirmation {
  background: linear-gradient(180deg, #5b5e66 81.33%, #5b5e66 109.43%);
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.email_confirmation > section {
  color: var(--secondary-text);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 60vh;
  text-align: center;
}

.email_confirmation__section > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.email_confirmation__section > div > header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.email_confirmation__section > div > header > img {
  max-width: 270px;
}

.email_confirmation__section > div > section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.email_confirmation__section > div > section > div {
  display: flex;
  align-items: center;
}

.email_confirmation__section > div > section > div > label {
  font-size: 25px;
  font-weight: bold;
  margin: 15px 0;
}

.email_confirmation__section > div > section > span {
  font-size: 15px;
  font-weight: bold;
}
.modal-login__check {
  display: flex;
  margin: 8px 0;
  flex-direction: row;
  align-items: center;
}

.modal-login__check > label {
  cursor: pointer;
}

.modal-login__check > input {
  width: 15px;
  height: 100%;
  cursor: pointer;
  margin-right: 5px;
  filter: hue-rotate(288deg);
}
.modal-login__check > a:focus {
  border: none !important;
}

.loading-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
}

.loading-div > div > span {
  font-weight: bold;
  color: var(--accent);
}
.modal-login__check--align {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terms__div-checkbox > div {
  display: flex;
  padding: 0;
}
.terms__div-checkbox > div > div {
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  white-space: break-spaces;
  align-items: center;
}

.terms__div-checkbox > div > div > b > a,
.portal__footer__section-content-txt > span > a {
  text-decoration: underline;
  transition: 0.2s;
  font-weight: bold;
}

.terms__div-checkbox > div > div > b > a:hover,
.portal__footer__section-content-txt > span > a:hover {
  transform: color;
  color: var(--accent-500);
}

.tooltip_div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 5px 0;
}

.personal-data__section {
  background-color: var(--accent);
  padding: 10px;
}
.payment__section-radio {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.payment__div-radio {
  padding: 15px !important;
  background-color: var(--secondary-700);
  border-radius: 15px;
  width: 100%;
  transition: 0.35s;
  border: 1px solid var(--secondary-900);
  cursor: pointer;
  transition-duration: 0.25s;
  transition-timing-function: linear;
  will-change: transform;
}

.payment__div-radio-selected {
  border: 1px solid var(--primary);
  box-shadow: 0 0 4px var(--secondary-50);
  transition-duration: 0.25s;
  transition-timing-function: linear;
  will-change: transform;
}

.payment__div-radio:hover {
  border: 1px solid var(--accent);
  box-shadow: 0 0 4px var(--accent);
  transform: scale(1, 1.05);
  transform-origin: center;
}

.payment__div-radio > div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.payment__div-radio > div > input {
  accent-color: var(--accent);
  width: 1.15em;
  height: 1.15em;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.save__btn-personal-data {
  background-color: var(--tertiary-600);
  color: var(--white);
  padding: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 10px;
  margin: 16px 0;
  font-weight: bold;
  position: relative;
  transition: background-color 0.3s;
}
.save__btn-personal-data.cancel {
  background-color: var(--danger) !important;
}
.save__btn-personal-data-width-150px {
  max-width: 150px;
}

.save__btn-personal-data::before {
  content: "";
  border: 2px solid var(--accent-600);
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 9px;
  box-sizing: border-box;
  right: 3px;
  bottom: 3px;
}

.save__btn-personal-data:hover {
  background-color: var(--tertiary-700);
}

.save__btn-personal-data:focus {
  border: none;
}
.loader {
  width: 100px;
  height: 100px;
  border: 2px solid var(--primary) !important;
  border-bottom-color: var(--primary-transparency) !important;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader-parent > h4 {
  color: var(--secondary-text) !important;
}

.modal__input {
  outline: none;
  border: none;
  width: 100%;
  text-align: left;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-out;
  padding: 7px;
  margin: 3px 0;
  border: none !important;
  background-color: var(--neutral-300);
}
.modal__input.not-editable {
  opacity: 0.7;
}

.margin-top-bottom {
  margin: 16px 0;
}

@media screen and (max-width: 640px) {
  .dream-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .dream-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wrapper-regras .aposta .detail {
    flex-direction: column;
  }
}

.portal__footer {
  padding: 0 40px;
}

.portal__footer__section-svg {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--primary-600);
  width: 100%;
}

.portal__footer__section-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  color: white;
}

.portal__footer__section-content-logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}
.portal__footer__section-content-logo > div > span {
  font-size: 13px;
}
.portal__footer__section-content-txt {
  display: flex;
  flex-direction: column;
}
.portal__footer__section-content-txt > span {
  margin-bottom: 15px;
  text-align: center;
}

.portal__footer__section-content-shortcut {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
/* CSS specific to iOS devices */
@supports (-webkit-touch-callout: none) {
  .device__ios-hide {
    display: none !important;
  }
}

.wallet__div-overlay,
.wallet__div {
  overflow: auto;
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
}
.wallet__div {
  background-color: var(--secondary-500);
}
.wallet_div-values {
  border: 1px solid var(--secondary-border__wallet) !important;
}

.wallet__div-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  border-top: 1px solid var(--secondary-border__wallet);
}
.wallet__div-title > span {
  font-size: 25px;
  color: var(--accent-100) !important;
  font-weight: bold;
}

.wallet__fadeIn {
  height: auto;
  display: block;
}
.wallet__fadeOut {
  height: 0px !important;
  display: none;
}

.menu-usuario button:first-child {
  border-top: 1px solid var(--secondary-border__wallet) !important;
  border-bottom: 1px solid var(--secondary-border__wallet) !important;
}

.menu-usuario button:not(:last-child):not(:first-child) {
  border-bottom: 1px solid var(--secondary-border__wallet) !important;
}

.jivo-show {
  display: flex !important;
}
.jivo-hide {
  display: hide !important;
}
.border-error {
  outline: 1px solid #f34438;
  box-shadow: 0px 0px 6px 0px #f34438bd;
}
.screen-default--padding {
  /* padding-top: 4em !important; */
  padding-top: 2em !important;
}
.home-screen-default--padding {
  padding-top: 3em !important;
}
.div__resend-email {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.div__resend-email > label {
  font-size: 12px;
  border: 1px solid var(--secondary);
  border-right: 0;
  border-left: 0;
  border-radius: unset;
  padding: 5px;
}
.div__resend-email > span {
  border: 1px solid var(--secondary);
  padding: 5px 30px;
  border-radius: 10px;
  font-size: 20px;
}
.div__resend-email > button {
  padding: 8px;
  border: 1px solid var(--secondary-border);
  font-weight: unset;
  min-width: 100px;
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  background-color: var(--secondary-700);
}

.div__resend-email > button:focus {
  border: 1px solid var(--secondary-border) !important;
}

/* Improve CSS */

.modal-button {
  border-radius: 4px;
  padding: 8px;
  display: block;
  width: 100%;
  position: relative;
  padding-left: 0.8em;
  text-align: start;
  cursor: pointer;
  border: 1px solid var(--secondary) !important;
  background-color: var(--secondary-400) !important;
}

.modal-button i {
  top: 50%;
  transform: translate(0, -50%);
  right: 1em !important;
  position: absolute;
  padding-left: 0.8em;
  text-align: start;
}
.checkbox label::before,
.checkbox label::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1.5em;
  height: 1.5em;
}

.checkbox label::before {
  content: " ";
  border: 2px solid var(--white);
  border-radius: 20%;
}
.bg-modal-list {
  background-color: var(--secondary) !important;
}

.w3-hoverable tbody tr:hover,
.w3-ul.w3-hoverable li:hover {
  background-color: var(--secondary-500);
}

.btn-eye-psw {
  color: var(--secondary-900);
}

.w3-modal-content {
  background-color: var(--secondary) !important;
  color: var(--secondary-text) !important;
}
.w3-checkmark {
  background-color: var(--secondary-400);
}
.w3-container-check input:checked ~ .w3-checkmark {
  background-color: var(--secondary-400);
}
.w3-container-check:hover input ~ .w3-checkmark {
  background-color: var(--secondary-400);
}
.box-shadow {
  box-shadow: inset 0px 11px 8px -10px var(--secondary),
    inset 0px -11px 8px -10px var(--secondary);
}

.ticket__modal--bottom-btn:hover {
  background-color: var(--primary-700) !important;
}

.w3-striped tbody tr:nth-child(odd) {
  background-color: var(--secondary);
  border: 1px solid var(--secondary-900) !important;
}

.w3-striped tbody tr:nth-child(even) {
  background-color: var(--secondary-400);
}

.border-secondary {
  border: 1px solid var(--secondary-900) !important;
}

.theme-button-3 {
  background-color: var(--accent) !important;
}

.theme-button-3:hover {
  background-color: var(--accent-900) !important;
}
.button-conta {
  background-color: var(--tertiary-600);
  color: var(--white);
}
.button-conta:hover {
  background-color: var(--tertiary-700);
}
a.btnIten:hover {
  background: var(--accent-600);
  color: var(--white);
}
.bg-secondary {
  background-color: var(--secondary-500);
  border: 1px solid var(--secondary-400) !important;
}

.close-btn {
  max-width: 20px !important;
}

.modal-login__btn,
.modal-sign-up__btn,
.component__button-search {
  background-color: var(--tertiary);
  color: var(--white);
}

.modal-login__btn::before,
.modal-sign-up__btn::before,
.component__button-search::before {
  border: 2px solid var(--accent-600);
}

.results__table-grupo > span {
  background-color: var(--accent);
  color: var(--primary-50);
}

.modal-login__btn:hover,
.component__button-search:hover {
  background-color: var(--tertiary-600);
}

.button-login,
.button-sign-in {
  background-color: var(--tertiary-600);
  border: 2px solid var(--primary-900);
}

.button-login,
.button-sign-in {
  border: 1px solid var(--tertiary-700);
}
.modal-sign-up__btn {
  background-color: var(--secondary-500);
  color: var(--neutral-50);
}
.modal-sign-up__btn:hover {
  background-color: var(--secondary-600);
}

.modal-sign-up__btn::before {
  border: 2px solid var(--neutral);
}
.checkbox input[type="checkbox"] + label::after {
  color: var(--primary-900) !important;
}
.ticket__modal--bottom-btn:hover {
  background-color: var(--accent-600);
}
.w3-badge {
  color: var(--primary-900) !important;
}

.w3-dropdown-click .w3-button {
  background-color: var(--secondary-400) !important;
  border: 1px solid var(--secondary-600) !important;
  color: var(--white) !important;
}

.w3-hoverable tbody tr:hover,
.w3-ul.w3-hoverable li:hover {
  background-color: var(--secondary-600) !important;
}

.close-btn-color {
  filter: var(--close-btn-color);
}
.tooltip-content {
  background-color: var(--secondary-400) !important;
  color: var(--secondary-text) !important;
}

.w3-ul::-webkit-scrollbar,
.div-accordions::-webkit-scrollbar {
  display: none;
}

#main__content {
  background-color: var(--secondary);
}

.pages--selected::before {
  transform: unset !important;
}

.slots--flex > div > h4 {
  color: var(--secondary-500);
}
.slots--flex > div > h4 > sub {
  color: var(--primary-800);
}

.neutral--background {
  background: var(--bg-login--neutral) !important;
}
.input--error {
  outline: var(--danger-400) solid 1px;
  box-shadow: var(--danger-300) 0px 0px 6px 0;
}
.payment-value--hint {
  color: var(--danger-400);
}

.payment__btn--parent > button {
  color: var(--white);
  background-color: var(--tertiary-600);
}
.payment__btn--parent > button:hover {
  transform: scale(1.05);
}

.payment__div--copy-code {
  display: flex;
  justify-content: center;
  align-items: center;
}
.payment__div--copy-code > div {
  position: relative;
  border-style: dashed;
  border-radius: 16px;
  border-color: var(--accent-300);
  padding: 10px 33px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 10px;
}
.payment__div--copy-code > div:hover {
  transform: scale(1.03);
}
.payment__div--copy-code > div > input {
  background-color: inherit !important;
  width: 100%;
  min-width: 25ch;
  text-overflow: ellipsis;
  border: none;
  cursor: pointer;
  color: var(--secondary-text);
}
.payment__icon-copypaste {
  position: absolute;
  right: 10px;
  top: 15px;
  background-color: inherit !important;
  border: none !important;
  color: var(--accent) !important;
}

.payment__div--expiration-date {
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment__qrcode--subtitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 10px;
}
.error {
  font-size: 80px;
  background-color: #97010129;
  color: #a3071d;
  padding: 22px 37px;
  border-radius: 50%;
  border: 1px solid var(--error);
}
.success {
  font-size: 80px;
  background-color: #01974e29;
  color: #079f55;
  padding: 25px;
  border-radius: 50%;
  border: 1px solid var(--success);
}
.payment__approved {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  height: 50vh;
}

.payment--form__pix-div {
  display: flex;
  align-items: center;
  background-attachment: fixed !important;
  color: var(--white);
  gap: 5px;
}
.payment--form__pix-div > img {
  /* filter: var(--payment__pix-icon); */
  height: 18px;
}

.marked__div {
  background-image: linear-gradient(269deg, var(--accent), transparent);
}

.landing-page__img {
  width: 100%;
  height: auto;
}
.user__div-topbar > div > section {
  color: var(--white);
}
.banner--border-bottom {
  border-bottom: 1px solid var(--primary-700);
}
.landingpage__banner > section > div > button {
  color: var(--white);
}
.payment--background {
  background-color: var(--accent);
}
.payment__input {
  background-color: var(--neutral-300);
  background: linear-gradient(
      to left,
      var(--neutral-300) 50%,
      var(--neutral-600) 50%
    )
    right;
  background-size: 220%;
}
.payment__input:focus {
  border: none;
  background-position: left;
}
input {
  color: black;
}
.table-rancking > thead {
  background-color: var(--primary-400);
}
.input-recover {
  color: var(--secondary-text);
}
.payment__div--pix {
  background-color: var(--secondary-700);
}
.payment__title {
  color: var(--white);
}

.games__section--skeleton-banner {
  background-image: linear-gradient(
    90deg,
    var(--accent-800),
    var(--accent-900)
  );
}
.games__section--skeleton > section > label {
  background-image: linear-gradient(
    90deg,
    var(--accent-800),
    var(--accent-900)
  );
}
.games__section--skeleton > section > span {
  background-image: linear-gradient(
    90deg,
    var(--accent-800),
    var(--accent-900)
  );
}
.slides--load-div > div {
  background-image: linear-gradient(
    90deg,
    var(--accent-800),
    var(--accent-900)
  );
}

.payment__close-btn {
  color: var(--danger-400);
}

.skeleton__landing-page > div {
  background-image: linear-gradient(
    90deg,
    var(--accent-800),
    var(--accent-900)
  );
}

.skeleton__landing-page--games > div {
  background-image: linear-gradient(
    90deg,
    var(--accent-800),
    var(--accent-900)
  );
}
.skeleton__landing-page--table {
  background-image: linear-gradient(
    90deg,
    var(--accent-800),
    var(--accent-900)
  );
}

.games__section--skeleton-banner {
  background-image: linear-gradient(
    90deg,
    var(--accent-800),
    var(--accent-900)
  );
}

.test-alert {
  background-color: var(--accent-300);
  color: var(--white);
  display: block !important;
}

.filters__btn--plain:hover {
  background-color: var(--accent-700);
}
.pagination--gestor {
  background-color: var(--secondary);
}
.filter--active {
  background-color: var(--primary-900);
}
.search--section > span {
  color: var(--primary-900);
}

.filters__div {
  background-color: var(--accent);
}

.resultados__filter-section {
  background-color: var(--secondary);
}

.resultados__container-input--date > input {
  border: 1px solid var(--secondary-700);
}

.resultados__card-especiais {
  background-color: var(--secondary-600);
}
.div-msg > section {
  background-color: var(--secondary-400);
}

.resultados__filter-section {
  background-color: var(--secondary-400);
}

.results__card--btn-print {
  background-color: var(--secondary);
  color: var(--secondary-text);
  border: 1px solid var(--secondary);
}
.filter--active {
  background-color: var(--primary-900);
}
.search--section > span {
  color: var(--primary-900);
}

.providers__section > div {
  background: linear-gradient(
      to right,
      var(--secondary) 50%,
      var(--secondary-400) 50%
    )
    right;
  background-color: transparent;
  background-size: 220%;
}

.report__table--wallet--position-active {
  background-color: var(--secondary);
}

.report__table > table {
  background-color: var(--secondary-700);
}

.report__name-div > span > b,
.report__name-div > b {
  border: 1px solid var(--secondary-300);
}

.providers__section--tipos > div > span > span {
  border: 1px solid var(--neutral-600);
}

.providers__section--tipos--selected {
  font-weight: bold;
}
.payment__btn--parent-sugestion > div > div > button {
  color: var(--tertiary-200);
  border: 1px solid var(--accent-100);
}

.sugestion-alert {
  background-color: var(--secondary);
  color: var(--secondary-text);
}
.providers__section--tipos > div > span {
  border: 1px solid var(--neutral-600);
}
.games__section--scroll-any-games > span {
  color: var(--secondary-text);
  background-color: var(--secondary);
}

.providers__section--overflow::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px var(--secondary-300);
}

.providers__section--overflow::-webkit-scrollbar-thumb {
  background-color: var(--secondary-300);
  outline: 1px solid var(--secondary-300);
}

.dropdown__background {
  background-color: var(--neutral) !important;
}
.dropdown__background > div {
  background-color: var(--neutral) !important;
}
.progress-bar {
  background-color: var(--primary-200);
}
.progress-bar__fill {
  background-color: var(--accent-900);
  color: var(--accent-text);
}
.balance-box {
  background-color: var(--accent);
}
.popup__btns > button.primary {
  background-color: var(--accent);
  color: var(--secondary-text);
}
.popup__btns > button.secondary {
  background-color: var(--secondary);
  color: var(--secondary-text);
}
.box_footer {
  background-color: var(--secondary-200);
  padding: 20px 10px 10px 10px;
}
.skeleton-game-card {
  background-image: linear-gradient(
    90deg,
    var(--secondary-300) 0%,
    var(--secondary-400) 50%,
    var(--secondary-300) 100%
  );
}
.landingpage__banner > section {
  background-color: var(--secondary);
}

.mobile-footer--logo > div > span {
  background-image: url(/img/logo.webp) !important;
}
.mobile-footer {
  padding: 10px !important;
  background-image: linear-gradient(
    45deg,
    var(--secondary),
    var(--accent-900)
  ) !important;
}

.hint--left {
  border-color: var(--accent);
}

.box-border-animation {
  color: var(--secondary-400);
  text-shadow: 0 1px 0 var(--primary-700);
  --border-angle: 2turn;
  --main-bg: conic-gradient(
    from var(--border-angle),
    var(--secondary-900),
    var(--secondary-900) 5%,
    var(--secondary-900) 60%,
    var(--secondary-900) 95%
  );
  border: solid 2px transparent;
  border-radius: var(--border-radius);
  --gradient-border: conic-gradient(
    from var(--border-angle),
    transparent 25%,
    var(--accent-300),
    var(--accent-700) 99%,
    transparent
  );
  background: var(--main-bg) padding-box, var(--gradient-border) border-box,
    var(--main-bg) border-box;
}
