@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

ul,
ol {
  list-style: none;
}

button,
input[type='button'],
input[type='submit'] {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  outline: none;
}

.btn {
  cursor: pointer;
}

button:disabled {
  opacity: .6;
  cursor: no-drop;
}

input:focus-visible {
  border: none;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-secondary);
  font-family: 'Poppins', sans-serif;
  scrollbar-width: auto;
  scrollbar-color: var(--primary) var(--bg-primary);
  overflow-x: hidden;
}

article {
  width: 100%;
}

/* SELECT */
.select2-container {
  flex: 1;
  max-width: 215px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--text-secondary);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--text-secondary) !important;
}

.select2-container .select2-selection--single {
  background: var(--primary-dark);
  border-radius: 5px;
  border: 2px solid var(--primary-medium);
  color: var(--text-primary) !important;
  margin: 0 5px;
  padding: 0px 10px;
  height: 41px;
  font-size: 0.95rem;
}

.select2-container--default .select2-results__option--selected {
  background: rgba(197, 127, 109, 0.1) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primary) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
  right: 10px;
}

/* NAVTABS LOGIN */
.modal-login .tabs-login {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0 10px;
  margin: 10px 0 10px;
  flex-wrap: wrap;
}

.content-buttons-tabs {
  display: flex;
  gap: 0 10px;
  flex: 1;
}

.btn-tabs-login {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 5px 20px;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 255, 255, .6);
  opacity: .6;
  cursor: pointer;
  transition: .2s;
  text-transform: uppercase;

  &.active {
    border-bottom: 2px solid var(--primary);
  }

  &:hover {
    opacity: 1;
  }

  &:active {
    opacity: .2;
  }
}

/* LABEL CUSTOM */

.label-button {
  position: absolute;
  right: 10px;
  top: 52%;
  font-size: 12px;
  z-index: 2;
  background: var(--primary);
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 5px;
  color: var(--text-secondary);
  cursor: pointer;

  &:hover {
    opacity: .7;
  }

  &:active {
    opacity: .5;
  }
}

/* SCROLL */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: radial-gradient(123.22% 129.67% at 100.89% -5.6%,
      var(--bg-secondary) 0%,
      var(--bg-primary) 100%);
  border-radius: 100px;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(91.26deg, var(--primary) 19.13%, var(--text-neon) 65.96%);
  border-radius: 10px;
  border: 3px solid var(--bg-secondary);
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

/* LOADING */
.loading-div {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-primary);
  font-size: 1.5rem;
  margin: 15px;
  flex: 1;
}

.loading-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
}

.content-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
}

.content-logo img {
  max-width: 120px;
}

.loader {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(90.26deg, var(--primary) 20%, var(--secondary) 60.9%, var(--primary-dark) 90%);
  animation: animate 1.2s linear infinite;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 50px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--text-primary);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

.loader span {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(90.26deg, var(--primary) 20%, var(--secondary) 60.9%, var(--primary-dark) 90%);
}

.loader span:nth-child(1) {
  filter: blur(5px);
}

.loader span:nth-child(2) {
  filter: blur(10px);
}

.loader span:nth-child(3) {
  filter: blur(25px);
}

.loader span:nth-child(4) {
  filter: blur(50px);
}

.loader:after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: var(--bg-secondary);
  border: solid var(--bg-primary) 10px;
  border-radius: 50%;
}


/* MODAL */

.modal {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  /* backdrop-filter: blur(5px); */
  background: var(--modal-bottom);
  position: fixed;
  z-index: 15;
  overflow: auto;
}

.modal.d-none {
  display: none;
}

.modal .modal-content {
  background: var(--modal-bg);
  border-radius: 10px;
  width: max-content;
  height: max-content;
  overflow-y: hidden;
  overflow-x: hidden;
  padding: 10px 35px;
  margin: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 5px 10px var(--bg-shadow);
}

.tradicional {
  position: relative;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg,
      var(--bg-secondary) 16.39%,
      var(--bg-secondary) 20.51%,
      var(--bg-secondary) 24.79%,
      var(--bg-secondary) 30.46%,
      var(--bg-secondary) 34.11%,
      var(--bg-secondary) 36.21%,
      var(--bg-secondary) 100%);
  display: flex;
  flex-direction: row;
}

.main-games {
  width: calc(100% - 280px);
  /* max-width: 100%; */
  padding: 15px 18px;
  display: flex;
  flex-direction: column;
}

.container-responsive {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}

/* ROW */
.row {
  width: 100%;
  display: flex;
}

/* INPUT */
.input-group {
  display: flex;
  flex-direction: column;
  margin: 5px 0px;
  position: relative;
  width: 100%;
}

.input-group .input-login {
  outline: none;
  border: 2px solid var(--primary-medium);
  padding: 10px 10px 10px 38px;
  background: var(--primary-dark);
  border-radius: 5px;
  position: relative;
  color: #d7d7d7;
  transition: .5s ease;
  font-weight: 600;
  font-size: 1.2rem;
}

.input-group .input-login:disabled {
  background: var(--primary-dark);
  color: #d7d7d7;
}

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

.input-group .input-login:placeholder-shown {
  font-size: .8rem;
  padding: 16px 10px 15px 45px;
}

.input-login::placeholder {
  color: #ababab;
  font-weight: 100;
}

.input-group .input-login:focus {
  color: var(--text-primary);
}

.label-text.active {
  letter-spacing: normal !important;
}

.input-group .label-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--text-primary);
  margin: 5px;
  transition: .5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.label-remember {
  transition: .5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.label-remember.animate-text {
  letter-spacing: 2px;
}

.input-group .label-icon {
  position: absolute;
  top: 55%;
  left: 12px;
  z-index: 2;
  font-size: 1.3rem;
  color: #d7d7d7;
}

.input-group .label-icon.password-icon {
  right: 12px;
  left: inherit;
  z-index: 2;
  cursor: pointer;
}

.input-group a {
  align-self: self-end;
  font-size: 14px;
  margin: 5px 0;
  color: var(--text-link);
  transition: 0.3s ease-in;
}

.input-group a:hover {
  background: linear-gradient(to right, var(--text-link) 0%, var(--primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.form-signup {
  width: 100%;
}

.form-signup .row {
  width: 100%;
  display: flex;
  gap: 10px;
}

.form-signup .row .input-group {
  width: 100%;
}

/* TERMS, GAME, PRIVACY */
.header-read {
  margin: 10px 0;
  width: 100%;
}

.header-read h1 {
  color: var(--text-primary);
  font-size: 2rem;
  opacity: .9;
  text-shadow: 0 0px 30px var(--secondary);
}

.header-read p {
  color: var(--text-primary);
  opacity: .9;
  font-size: 1rem;
  font-weight: 300;
  margin: 10px 0;
}

.container-read h3 {
  margin: 10px 0 5px;
  text-shadow: 0 0px 20px var(--secondary);
}

.container-read p,
.container-read h3,
.container-read li {
  color: var(--text-primary);
}

.entry-content section p {
  padding-left: 10px;
}

.entry-content p strong {
  color: var(--primary);
}

.container-read a {
  text-decoration: underline;
  color: var(--primary);
  overflow-wrap: anywhere;
}

.container-read ul {
  list-style: disc;
  padding: revert;
  margin: revert;
}

.container-read ul li {
  list-style: disc;
}

.container-read ul li::marker {
  color: var(--primary);
}

.content-mania.container-responsive {
  max-width: 1400px !important;
  padding: 0 0 40px;
}

/* COOKIES */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  text-align: center;
  padding: 12px;
  box-shadow: 0 -2px 10px var(--bg-secondary);
  z-index: 1000;
}

.cookie-banner p {
  display: inline-block;
  margin: 0 10px 0 0;
}

.cookie-banner p a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-button {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary)2a;
  border-radius: 5px;
  color: var(--text-secondary);
  padding: 10px 20px;
  transition: 0.3s ease;
  margin: 5px;
  cursor: pointer;
}

.cookie-button:hover {
  opacity: .7;
}