:root {
  --primary: #1A1D25;
  ;
  --secondary: #ffffff;
  --accent: #00d559;

  --opaque-border: rgba(255, 255, 255, 0.2);
  --opaque-text: rgba(255, 255, 255, 0.6);
  --aside-width: 250px;
  --max-content-width: 2200px;
  --padding-content: 64px 32px;
}

@font-face {
  font-family: 'Nexa';
  src: url('../FonteNexa/Nexa-Heavy.ttf');
}

@font-face {
  font-family: 'Nexa-Light';
  src: url('../FonteNexa/Nexa-ExtraLight.ttf');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: #ffffff;
  text-decoration: none;
}

.ArticleSuper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}

.black-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: none;
  background: rgb(0, 0, 0, 0.7);
}

body {
  --header-height: 80px;
  border: 5px solid #00D559;
  background-color: var(--primary);
  color: #ffffff;
  font-family: 'Nexa';
  position: relative;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #262932;
  box-shadow: 0px 4px 26.8px 0px rgba(0, 0, 0, 0.25);
  height: 80px;
}

@media (max-width: 950px) {
  body {
    border: none;
    background: #1A1D25;
  }

  header {
    border: 1px solid #212530;
    background: #131517;
  }
}

header article {
  width: 70%;
  display: flex;
}


@media (max-width: 1920px) {
  header article {
    width: 80%;
    justify-content: space-between;
  }

  div.footer-content {
    width: 80%;
  }
}

@media (max-width: 1700px) {
  header article {
    width: 90%;
    justify-content: space-between;
  }

  div.footer-content {
    width: 90%;
  }
}

@media (max-width: 950px) {
  header article {
    width: 100%;
    justify-content: space-between;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding-right: 32px;
}

header div.menu-logo {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0px 20px;
}

header div.menu-logo .logo-icon {
  display: none;

  margin-right: 16px;
  width: 40px;
}

@media (max-width: 768px) {
  header div.menu-logo {
    margin-right: 0px;
    gap: 12px;
    min-width: fit-content;
  }

  header .complete-logo {
    width: 120px;
  }
}

header div.menu i {
  font-size: 20px;

  margin-left: 12px;

  cursor: pointer;
}

div.categories {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 12px;
  margin-left: 15px;
  width: auto;
  min-width: 300px
}

@media (max-width: 1400px) {
  header div.categories {
    flex-wrap: wrap;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    min-width: initial;
    margin: 20px 10px;
  }
}

div.categories a {
  width: 130px;
  color: #4E515B;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  line-height: normal;
  border-radius: 10px;
  transition: .5s;
  display: inline-block;
  text-align: center;
  padding: 10px;
}

.categories .route-selected {
  background: #262932;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.25);
  color: #00D559;
  font-size: .9rem;
  font-style: normal;
  font-weight: 950;
  margin: 10px 0px;
}

div.categories a.route-selected::before,
div.categories a:hover::before {
  opacity: 1;
}

header div.login {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 200px;
  margin: 20px 0px;
}

.register-button {
  border-radius: 6px !important;
  background: #00D559 !important;
  color: #131417 !important;
  text-align: center !important;
  font-size: .9rem !important;
  font-style: normal !important;
  font-weight: 950 !important;
  line-height: normal !important;
  padding: 8px !important;
}

header div.login a {
  color: #ffffff;
  text-align: center;
  font-size: .9rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 0px 10px;
}

@media (max-width: 768px) {
  header div.login a {
    font-size: 12px;

    padding: 8px;
  }
}

header div.logged {
  width: auto;

  display: flex;
  justify-content: flex-end;
  align-items: center;

  height: var(--header-height);
}

header .logged div {
  margin: 0px 10px;
}

header div.logged div.rank div.rank-infos {
  display: flex;
  align-items: center;
  gap: var(--_logged-gap);

  margin-bottom: 8px;
  font-size: 12px;
  font-weight: bold;
  color: var(--opaque-text);
}

header div.logged div.rank div.rank-bar-progress {
  border-bottom: 4px solid var(--opaque-border);
}

header div.logged div.messages-user {
  display: flex;
  align-items: center;

  gap: var(--_logged-gap);

  margin: 0 32px;
}

@media (max-width: 425px) {
  header div.logged div.messages-user {
    margin: 0;
    margin-right: 16px;
    gap: 10px;
  }
}

header div.logged div.messages-user div.messages-icon {
  position: relative;
}

header div.logged div.messages-user div.messages-icon::before {
  content: "1";
  position: absolute;

  display: grid;
  place-content: center;

  height: 16px;
  aspect-ratio: 1/1;

  border: 2px solid var(--primary);
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;

  text-align: center;

  top: -4px;
  right: -5px;

  color: var(--primary);
  background-color: var(--accent);
}

@media (max-width: 425px) {
  header div.logged div.messages-user div.messages-icon::before {
    right: -5px;
  }
}

header div.logged div.messages-user div.messages-icon,
header div.logged div.messages-user div.user-options-icon {
  position: relative;

  display: flex;
  align-items: center;
}

header div.logged div.messages-user {
  font-size: 24px;

  cursor: pointer;
}

header div.logged div.messages-user div.dropdown {
  display: none;

  position: absolute;
  right: -15px;
  top: calc(var(--header-height) / 2);
  /* top: var(--header-height); */
  min-width: 154px;

  border-radius: 6px;
  box-shadow: 0 6px 40px 0 rgba(0, 0, 0, 0.4);

  white-space: nowrap;

  z-index: 1;

  background-color: #ffffff;
}

header div.logged div.messages-user div.dropdown::after {
  content: "";
  position: absolute;

  bottom: 100%;
  right: 18px;

  /* transform: translate(-50%); */

  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid white;
}

@media (max-width: 425px) {
  header div.logged div.messages-user div.dropdown {
    right: -100px;
  }

  header div.logged div.messages-user div.dropdown::after {
    right: 100px;
  }
}

header div.logged div.messages-user div.dropdown div.message-content,
header div.logged div.messages-user div.dropdown div.user-option-content {
  display: flex;
  align-items: center;
  transition: .5s;
  cursor: pointer;
  font-weight: bold;
}

header div.logged div.messages-user div.dropdown div.message-content:hover,
header div.logged div.messages-user div.dropdown div.user-option-content:hover {
  background-color: var(--accent);
  transition: .5s;
}

header div.logged div.messages-user div.dropdown div.user-option-content {
  padding: 11px 24px;
  font: bold;
}

header div.logged div.messages-user div.dropdown div.user-option-content:hover i,
header div.logged div.messages-user div.dropdown div.user-option-content:hover span {
  color: #ffffff;
  transition: .5s;
}

header div.logged div.messages-user div.dropdown div.message-content {
  padding: 16px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

header div.logged div.messages-user div.dropdown div.message-content:last-child {
  border-bottom: none;
}

header div.logged div.messages-user div.dropdown div.message-content i,
header div.logged div.messages-user div.dropdown div.user-option-content i {
  font-size: 24px;
  max-width: 44px;
  transition: .5s;
  padding: 10px;
  margin-right: 10px;
}

header div.logged div.messages-user div.dropdown div.message-content i {
  color: var(--accent);
}

header div.logged div.messages-user div.dropdown div.user-option-content i {
  color: var(--primary);
}

header div.logged div.messages-user div.dropdown div.user-option-content.sign-out {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

header div.logged div.messages-user div.dropdown div.infos h3 {
  font-weight: bold;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.8);
}

header div.logged div.messages-user div.dropdown div.infos span {
  font-size: 12px;
  font-weight: bold;
  color: var(--primary);
}

header div.logged div.account-balance {
  display: flex;
  align-items: center;
  border: 1px solid var(--opaque-border);
  border-radius: 4px;
  min-width: 80px;
  padding: 5px;
  text-align: center;
}

header div.logged div.account-balance span.balance {
  font-weight: bold;
}

header div.logged div.account-balance span.coin {
  display: grid;
  place-content: center;

  background-color: gold;

  border-radius: 50%;
  color: var(--primary);

  height: 16px;
  aspect-ratio: 1/1;

  font-size: 8px;
  font-weight: bold;
}

header div.logged div.deposit {
  display: grid;
  place-content: center;

  padding: 8px 5px;

  font-size: 14px;
  font-weight: bold;

  height: 40px;
  width: 98px;

  margin-left: 16px;

  cursor: pointer;
}

@media (max-width: 1000px) {
  header div.logged div.messages-user div.messages-icon {
    display: none;
  }
}

@media (max-width: 600px) {
  header div.logged div.account-balance {
    border: 1px solid var(--opaque-border);
    border-radius: 4px;
    padding: 4px 4px;

    font-size: 12px;
  }

  header div.logged div.account-balance span.coin {
    height: 14px;
  }

  header div.logged div.account-balance i,
  header div.logged div.messages-user div.user-options-icon>i {
    font-size: 16px;
  }

  header div.logged div.deposit {
    padding: 4px 3px;

    font-size: 12px;

    height: 30px;
    width: 75px;
  }
}

#loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.fas.fa-heart {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 20px;
  cursor: pointer !important;
  z-index: 99;
}

.favorited {
  color: red;
}

.border-menu {
  border-bottom: 1px solid var(--opaque-border);
}

.aside-menu {
  margin: 0px 20px;
  padding: 64px 32px;
}

.aside-menu ul {
  list-style: none;
  overflow: hidden;
}

.aside-menu ul li {
  transform: translate3d(-200px, 0, 0);
}

.aside-menu ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
  width: 100%;
}

.aside-menu ul li a h3 {
  font-family: 'Nexa-Light';
  font-size: 13px;
  font-weight: bolder;
  text-align: center;
  margin: 0px 10px;
  color: #ffffff;
  letter-spacing: 1px;
}

.aside-menu .active h3 {
  color: #031D47;
}

.aside-menu ul li div {
  border-radius: 6px;
  background: #262932;
  height: 64px;
  width: 200px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  font-size: 30px;
  color: #78797E;
  transition: .5s;
}

.aside-menu ul li div:hover {
  background: #454851;
}

.aside-menu ul li div i {
  font-weight: 300 !important;
  font-size: 30px !important;
}

.aside-menu .active:hover {
  background: #00D559 !important;
}

.aside-menu .active {
  background: #00D559;
  color: #031D47 !important;
}

.aside-menu .profilePicture {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50px;
}

.admin-menu-btn {
  cursor: pointer;
}

.user-menu-btn {
  cursor: pointer;
}

.admin-menu {
  display: none;
}

.back-menu-btn {
  display: none;
  cursor: pointer;
}

.user-menu {
  display: none;
}

.header-content .aside-menu {
  display: none;
}

@media (max-width: 950px) {
  .aside-menu {
    display: none;
    padding: initial !important;
  }

  .aside-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
  }

  .aside-menu ul li {
    margin: 20px 10px;
  }

  .aside-menu ul li div {
    background: #4E515B;
    margin: initial;
  }

  .header-content .aside-menu {
    display: flex;
  }

  div.categories a {
    background: #2b2e36;
  }

  header div.logged {
    justify-content: space-around;
    flex-wrap: wrap;
    height: initial;
  }

  header div.logged div {
    margin: 10px;
  }

  header div.logged div.messages-user {
    justify-content: center;
    margin-right: initial;
  }

  header .rank {
    width: 100%;
  }
}

.menu-notification {
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  cursor: pointer;
  margin: 0px 10px;
  position: relative;
}

.menu-notification a {
  position: relative;
}

.notifications {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  background: #ffffff;
  color: #000000;
  font-size: 13px;
  position: absolute;
  z-index: 99;
  width: 220px;
  border-radius: 10px;
  top: 70px;
  height: 280px;
  align-items: center;
}

@media (max-width: 1400px) {
  .notifications {
    top: 50px;
  }
}

.notifications section {
  width: 100%;
  padding: 0px 20px;
  height: 80%;
  overflow: scroll;
}

.notifications i {
  font-size: 20px;
  position: absolute;
  /* bottom: 0; */
  top: -10px;
  /* bottom: 0; */
  z-index: 9999;
  color: #ffffff;
}

.notifications a {
  color: #000000;
  width: 80%;
  text-align: right;
  margin-right: 10px;
  margin-top: 10px;
  display: inline-block;
}

.notification {
  background: #eeeeee;
  width: 100%;
  padding: 5px;
  margin: 5px 0px;
  text-align: left;
  border-radius: 5px;
  word-break: break-all;
}

.notification-count {
  position: absolute;
  font-size: 12.2px;
  top: -5px;
  right: -10px;
  background: red;
  padding: 5px;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Nexa-Light';
  font-weight: bolder;
}

.btn-banner {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-banner div {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-banner a {
  font-family: 'Nexa';
  color: #131417;
  background: #00D559;
  border-radius: 10px;
  padding: 10px;
  display: inline-block;
}

.mobile-home .casino-types {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.mobile-home .casino-types div {
  background: url('../images/roulette_icon.png') no-repeat #404349;
  background-size: contain;
  background-position: right;
  width: 48.5%;
  border-radius: 10px;
  height: 110px;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  align-items: center;
}

.mobile-home .casino-types div h1 {
  font-size: 24px;
  font-family: 'Nexa';
  color: #ffffff;
  margin-left: 10px;
}

.mobile-home .casino-types div h2 {
  font-size: 16px;
  font-family: 'Nexa';
  color: #B01F28;
  margin-left: 10px;
}

.mobile-footer lord-icon {
  animation-duration: 2s;
}

.mobile-games {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.mobile-game-card {
  background: #404349;
  width: 160px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin: 10px 0px;
}

.mobile-game-card img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.mobile-game-card h2 {
  font-size: 13px;
  font-family: 'Nexa-Light';
  font-weight: bolder;
  letter-spacing: 1px;
  color: #ffffff;
  padding: 5px 0px;
}