:not(div.content)::-webkit-scrollbar {
  width: 0;
  height: 0;
}

div.content::-webkit-scrollbar {
  width: 12px;
  /* width of the entire scrollbar */
}

div.content::-webkit-scrollbar-track {
  background: #031d47;
  /* color of the tracking area */
}

div.content::-webkit-scrollbar-thumb {
  background-color: #00d559;
  /* color of the scroll thumb */
  border-radius: 20px;
  /* roundness of the scroll thumb */
  border: 3px solid #031d47;
  /* creates padding around scroll thumb */
}

div.main {
  display: flex;
  justify-content: flex-start;
  /* align-items: flex-start; */
  /* grid-template-columns: 1.1fr 5fr; */
  height: calc(100% - var(--header-height));
  position: relative;
  width: 70%;
  max-width: 1350px;
}

@media (max-width: 1600px) {
  div.main {
    width: 80%;
  }
}

@media (max-width: 1350px) {
  div.main {
    width: 90%;
  }
}


/*
  Menu
*/
aside.menu {
  border-right: 1px solid var(--opaque-border);

  min-width: var(--aside-width);
  max-width: var(--aside-width);

  display: flex;
  flex-direction: column;
  align-items: center;

  /* position: sticky; */
  /* top: 180px; */

  overflow-y: auto;
}

div.main aside.menu {
  border-right: 1px solid var(--opaque-border);

  min-width: var(--aside-width);
  max-width: var(--aside-width);

  display: flex;
  flex-direction: column;
  align-items: center;

  /* position: sticky; */
  /* top: 180px; */

  overflow-y: auto;
}

div.main aside.menu.toggle {
  display: none;
}

@media (max-width: 1000px) {
  div.main aside.menu {
    position: absolute;
    display: none;

    background-color: var(--primary);
    width: 100%;
    min-width: none;
    max-width: 100%;
    height: calc(100% - var(--header-height));

    left: 0;

    z-index: 2;
  }

  div.main aside.menu.toggle {
    display: flex;
  }
}

@media (min-width: 1001px) {
  div.main aside.menu div.categories {
    display: none;
  }
}

div.main aside.menu a.styled-button {
  text-align: center;

  width: 85%;
  margin: 20px 0;

  font-weight: bold;

  padding: 12px;
}

div.main aside.menu>div {
  width: 100%;
}

div.main aside.menu div.menu-category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  border-bottom: 1px solid var(--opaque-border);

  width: 100%;
  padding: 24px;
  color: var(--opaque-text);

  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

div.main aside.menu div.menu-category div.category-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  cursor: pointer;
}

div.main aside.menu div.menu-category div.category-link i {
  font-size: 8px;
}

div.main aside.menu div.menu-category div.category-content {
  display: grid;
  grid-template-rows: 0fr;

  transition: grid-template-rows 0.4s;
}

div.main aside.menu div.menu-category div.category-content.open {
  grid-template-rows: 1fr;
}

div.main aside.menu div.menu-category div.category-content div.category-content-links {
  display: flex;
  flex-direction: column;

  gap: 22px;

  margin-top: 22px;

  overflow: hidden;
}

div.main aside.menu div.menu-category div.category-content div.category-content-links a {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--opaque-text);

  text-transform: capitalize;
}

div.main aside.menu div.menu-category div.category-content div.category-content-links a:hover,
div.main aside.menu div.menu-category div.category-content div.category-content-links a:hover svg {
  color: #ffffff;
}

div.main aside.menu div.menu-category div.category-content div.category-content-links a svg {
  width: 24px;
  aspect-ratio: 1/1;
}

div.main aside.menu div.menu-category div.category-content h3.category-content-links-title {
  text-transform: uppercase;
  color: #ffffff;
}

div.main aside.menu div.menu-category div.category-link div.main aside.menu div.more-options {
  font-size: 10px;
  font-weight: bold;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
}

div.main aside.menu div.more-options a {
  display: inline-block;
  text-transform: uppercase;

  padding: 12px 24px;
  font-size: 12px;
  font-weight: 500;

  width: 100%;
}

/*
  Conteúdo principal
*/

div.main div.content {
  height: 100%;
  width: 100%;

  overflow-y: auto;
}

div.main div.content div.padding {
  padding: 64px 32px;
  max-width: var(--max-content-width);
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 40px;
}

div.main div.welcome-package {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;

  background-color: var(--accent);
  border-radius: 4px;
}

div.main div.welcome-package img {
  width: 100%;
}

div.main div.welcome-package div.welcome-package-content {
  position: absolute;
  top: 0;
  left: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  height: 100%;

  padding: 56px;
}

div.content div.welcome-package h2 {
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

div.content div.welcome-package h2 i {
  color: gold;
}

div.content div.welcome-package p {
  font-weight: 500;
}

div.content div.welcome-package a.styled-button {
  margin-top: 12px;
  padding: 12px;

  font-size: 12px;
  font-weight: bold;
}

@media (max-width: 850px) {
  div.main div.welcome-package div.welcome-package-content {
    padding: 30px;
  }

  div.content div.welcome-package h2 {
    font-size: 24px;
  }

  div.content div.welcome-package p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  div.main div.welcome-package {
    /* overflow: hidden; */
  }

  div.main div.welcome-package img {
    object-fit: cover;
    min-height: 200px;
  }

  div.main div.welcome-package div.welcome-package-content {
    padding: 30px;
  }

  div.content div.welcome-package h2 {
    font-size: 20px;
  }

  div.content div.welcome-package p {
    font-size: 12px;
  }
}

div.content div.search-filters {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

div.content div.search-filters div.search {
  display: flex;
  gap: 10px;

  color: var(--opaque-text);
  border: 1px solid var(--opaque-border);
  border-radius: 4px;
  padding: 14px;
}

div.content div.search-filters div.search input {
  background-color: transparent;

  color: var(--opaque-text);
  width: 100%;

  border: none;
  outline: none;
}

div.content div.search-filters div.filters {
  display: flex;
  gap: 12px;

  overflow: scroll;
}

div.content div.search-filters button.filter {
  padding: 12px 16px;
  font-weight: bolder;

  background-color: rgba(255, 255, 255, 0.1);
  /* border: 1px solid var(--opaque-text); */
  border: none;
  color: var(--secondary);
  border-radius: 999px;

  cursor: pointer;
}

div.content div.search-filters button.selected {
  background-color: var(--accent);
  border: none;
}

div.carousels {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.carousel-header {
  justify-content: space-between;
  width: 100%;
}

.carousel-header div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.carousel-header a {
  color: #FFF;
  text-align: center;
  font-family: 'Nexa-Light';
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  border-radius: 5px;
  background: #232731;
  padding: 8px 40px;
}


@media (max-width: 600px) {
  .carousel-header div {
    display: block;
    width: 100px;
  }

  .carousel-header a {
    font-size: 10px;
    padding: 4px 10px;
    margin: initial;
    margin-left: initial !important;
  }
}

div.carousels div.carousel-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

div.carousels div.carousel-header h2 {
  color: #00D559;
  font-family: 'Nexa';
  font-size: 2rem;
  font-style: normal;
  font-weight: 950;
  line-height: normal;
}

div.carousels div.carousel-header button {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

div.carousels div.carousel-header i,
div.carousels div.carousel-header a {
  color: var(--opaque-text);
  margin-left: 12px;
}

div.carousels div.carousel-header div.see-all {
  flex: 1;
  text-align: end;
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 425px) {
  div.carousels div.carousel-header h2 {
    font-weight: bold;
    font-size: 16px;
  }

  div.carousels div.carousel-header div.see-all a,
  div.carousels div.carousel-header div.see-all i {
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
  }
}

div.carousels div.carousel-header a:hover,
div.carousels div.carousel-header a:hover i,
div.carousels div.carousel-header button:hover i {
  color: var(--secondary);
}

div.carousels div.carousel div.swiffy-slider ul li {
  cursor: pointer;
}

div.carousels div.carousel div.swiffy-slider ul li img {
  border-radius: 4px;
}

div.carousels div.carousel div.swiffy-slider ul li img:hover {
  box-shadow: 0 2px 0 0 var(--accent);
}

div.carousels div.provider div.swiffy-slider ul div.provider-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;

  border: 1px solid var(--opaque-border);
  border-radius: 4px;

  padding: 16px;

  cursor: pointer;
}

div.carousels div.provider div.swiffy-slider ul div.provider-item:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.2);
}

div.carousels div.theme div.swiffy-slider ul div.theme-item {
  display: flex;
  justify-content: center;
  align-items: center;

  border: 1px solid var(--opaque-border);
  border-radius: 8px;
  font-size: 12px;
  padding: 24px 16px;

  background-color: rgba(255, 255, 255, 0.5);

  cursor: pointer;
}

@media (max-width: 1550px) {
  div.carousels div.swiffy-slider {
    --swiffy-slider-item-count: 5;
  }
}

@media (max-width: 1300px) {
  div.carousels div.swiffy-slider {
    --swiffy-slider-item-count: 4;
  }
}

@media (max-width: 750px) {
  div.carousels div.swiffy-slider {
    --swiffy-slider-item-count: 3;
  }
}

@media (max-width: 550px) {
  div.carousels div.swiffy-slider {
    --swiffy-slider-item-count: 2;
  }
}

@media (max-width: 400px) {
  div.carousels div.swiffy-slider {
    --swiffy-slider-item-count: 1;
  }
}

/* reseta a pre-configuração de responsividade do framework */
@media (max-width: 62rem) {
  .slider-item-show6 .slider-container {
    grid-auto-columns: var(--swiffy-slider-item-width) !important;
  }
}

div.footer {
  width: 100%;
}

div.footer-content {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 64px 32px;
}

div.footer div.links {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--opaque-border);
  padding-bottom: 64px;
}

div.footer div.links div.logo-socials,
div.footer div.links div.useful-links,
div.footer div.links div.about {
  flex: 1;
}

@media (max-width: 600px) {
  div.footer div.links {
    grid-template-columns: 1fr 1fr;

    justify-items: center;
    gap: 40px;
  }
}

@media (max-width: 400px) {
  div.footer div.links {
    grid-template-columns: 1fr;
  }
}

div.footer div.links div.logo-socials h2 {
  display: inline-block;
  margin-bottom: 20px;
}

div.footer div.links div.logo-socials i {
  font-size: 24px;
  margin-right: 16px;
  color: var(--opaque-text);
}

div.footer div.links div.logo-socials i:hover {
  color: #ffffff;
}

div.footer div.links div.useful-links,
div.footer div.links div.about {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
}

div.footer div.links div.useful-links h3,
div.footer div.links div.about h3 {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 8px;
}

div.footer div.links div.useful-links a,
div.footer div.links div.about a {
  font-size: 14px;
  color: var(--opaque-text);
  font-weight: 500;
}

div.footer div.links div.useful-links a:hover,
div.footer div.links div.about a:hover {
  color: #ffffff;
}

div.footer div.sponsers-advices {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  gap: 60px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--opaque-border);
}

/* @media (max-width: 768px) {
  div.footer div.sponsers-advices {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
} */

div.footer div.sponsers-advices img {
  width: 50px;
  -webkit-filter: brightness(0.6);
  filter: brightness(0.6);
}

div.footer div.sponsers-advices img.begamble {
  width: 120px;
}

div.footer div.licence {
  padding: 40px 0;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;

  border-bottom: 1px solid var(--opaque-border);
}

@media (max-width: 600px) {
  div.footer div.licence {
    flex-wrap: wrap;
    justify-content: center;
  }
}

div.footer div.licence p {
  color: var(--opaque-text);
  font-size: 12px;
  line-height: 22px;
  font-weight: 500;
}

div.footer div.contact {
  padding: 40px 0;

  display: flex;
  flex-direction: column;
  gap: 30px;
}

div.footer div.contact div.rights-language {
  display: flex;
  justify-content: space-between;
}

div.footer div.contact p {
  color: var(--opaque-text);
  font-size: 12px;
  font-weight: 500;
}

div.footer div.contact p.emails {
  text-align: center;
}

select#language {
  border: 1px solid var(--opaque-border);
  border-radius: 4px;
  background-color: transparent;
  font-size: 15px;
  padding: 8px;
  color: var(--opaque-text);
  cursor: pointer;
}

select#language option {
  color: gray;
}

@media (max-width: 950px) {
  select#language {
    border: none;
    background: #2F333C;
    border-radius: 8px;
    font-size: 20px;
    padding: 12px;
    color: #ffffff;
    cursor: pointer;
    margin: 15px 0px;
    text-align: center;
  }

  select#language option {
    color: gray;
  }
}

span.highlight {
  color: #ffffff;
}

.banner-slider {
  border-radius: 15px;
  box-shadow: 0px 4px 10.8px 0px rgba(0, 0, 0, 0.25);
}

.banner-slider div img {
  width: 100%;
  object-fit: cover;
}

.banner-slider .owl-carousel {
  position: relative;
}

.banner-slider .owl-dots {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.banner-slider .owl-dots .owl-dot.active span,
.banner-slider .owl-dots .owl-dot:hover span {
  background: #031D47 !important;
}

.banner-slider .owl-dots .owl-dot {
  display: inline-block !important;
  zoom: 1 !important;
  outline: none !important;
  border: 1px solid #031D47 !important;
  border-radius: 50px !important;
  margin: 5px 7px !important;
  padding: 3px !important;
  background: transparent !important;
}

.banner-slider .owl-dots .owl-dot span {
  width: 15px !important;
  height: 15px !important;
  margin: initial !important;
  background: transparent !important;
  display: block !important;
  -webkit-backface-visibility: visible !important;
  transition: opacity 200ms ease !important;
  border-radius: 30px !important;
}

@media (max-width: 899px) {
  .top-10-games {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-10-slider {
    width: 320px !important;
  }
}

.top-10-slider .owl-nav {
  display: none;
}

.top-10-slider .item {
  width: 320px;
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
}

.top-10-slider .item span {
  width: 270px;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.top-10-games span h1 {
  font-size: 128px;
  -webkit-text-fill-color: transparent;
  background-color: #00d559;
  background: linear-gradient(195deg, #63FFA4 28.87%, #00FF6B 58.06%);
  -webkit-text-stroke-width: 2px;
  text-shadow: 4px 0px 9.8px rgba(26, 29, 37, 0.35);
  -webkit-text-stroke-color: #031D47;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -40px;
  bottom: 0;
  position: absolute;
}

.top-10-slider .item span span {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: left;
  align-items: center;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.top-10-slider .item span span img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.top-10-slider .item h2 {
  color: #FFF;
  font-family: 'Nexa';
  font-size: 20px;
  font-style: normal;
  font-weight: 950;
  line-height: normal;
  margin-top: 20px;
  text-align: left;
  width: 100%;
}

.top-10-slider .item hr {
  width: 40px;
  height: 2px;
  background: #00D559;
  margin: 0;
  margin-top: 5px;
}

.top-10-games .buttons button {
  border-radius: 5px;
  background: #232731 !important;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin: 0px 10px;
}

.games-slider .owl-nav {
  display: none;
}

@media (max-width: 499px) {
  .games-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .games-slider .owl-carousel {
    width: 180px;
  }
}

.games-slider .item {
  width: 180px;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  position: relative;
}

.games-slider .item img {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.games-slider .item h2 {
  color: #FFF;
  font-family: 'Nexa';
  font-size: 16px;
  font-style: normal;
  font-weight: 950;
  line-height: normal;
  margin-top: 20px;
  text-align: left;
  width: 100%;
}

.games-slider .item hr {
  width: 40px;
  height: 2px;
  background: #00D559;
  margin: 0;
  margin-top: 5px;
}

.games-slider .buttons button {
  border-radius: 5px;
  background: #232731 !important;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin: 0px 10px;
}

.card-providers {
  width: 221px;
  height: 249px;
  border-radius: 10px;
  background: #15181F;
  margin: 20px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card-providers span {
  width: 187px;
  height: 140px;
  border-radius: 10px;
  background: #11151C;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.card-providers a {
  color: #FFF;
  text-align: center;
  font-family: 'Nexa-Light';
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  border: 5px solid #1A1D25;
  background: #15181F;
  padding: 10px;
  margin-top: 50px;
  transition: .5s;
}

.card-providers a:hover {
  color: #031D47;
  background: #00D559;
  transition: .5s;
  font-family: 'Nexa';
}

.card-providers span img {
  height: 70%;
  width: initial !important;
}

.cards-providers .buttons button {
  border-radius: 5px;
  background: #232731 !important;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin: 0px 10px;
}

.cards-providers .owl-nav {
  display: none;
}

.buttons {
  display: flex;
}


@media (max-width: 499px) {
  .cards-providers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .cards-providers .owl-carousel {
    width: 221px;
  }
}

.game-card {
  width: 180px;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  position: relative;
}

.game-card img {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.game-card h2 {
  color: #FFF;
  font-family: 'Nexa';
  font-size: 16px;
  font-style: normal;
  font-weight: 950;
  line-height: normal;
  margin-top: 20px;
  text-align: left;
  width: 100%;
}

.game-card hr {
  width: 40px;
  height: 2px;
  background: #00D559;
  margin: 0;
  margin-top: 5px;
}

.mobile-profile-menu {
  width: 100%;
  height: 100%;
  background: #1A1D25;
  z-index: 101;
  top: 0;
  bottom: 0;
  display: none;
  justify-content: left;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px 0px 200px 0px;
}

.mobile-profile-menu section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  overflow-y: scroll;
}

.mobile-profile-menu div {
  background: #2F333C;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 100% !important;
  padding: 20px;
  margin: 30px 0px;
}

.mobile-profile-menu div h1 {
  font-size: 30px;
  margin: 10px 0px;
  color: #ffffff;
  font-family: 'Nexa';
  width: 100%;
  text-align: center;
}

.mobile-profile-menu div img {
  width: 150px;
  height: 150px;
  border-radius: 1000px;
  object-fit: cover;
}

.mobile-profile-menu span {
  background: #2F333C;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 90% !important;
  margin: 15px 0px;
}

.mobile-profile-menu span a {
  color: #ffffff;
  font-family: 'Nexa';
  font-weight: lighter;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  width: 90%;
  padding: 10px 0px;
}

.mobile-profile-menu span a lord-icon {
  margin: 0px 10px;
}

.close-profile-menu {
  display: block;
  background: #404349;
  border-radius: 100px;
  padding: 5px;
  font-size: 20px;
  color: #26282C;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: none;
}

.casino-search {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.casino-search input {
  background: #404349;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 12px;
  color: #969696;
  margin: 5px 0px;
}

.casino-search .category {
  background: #404349;
  width: 85%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 12px;
  text-align: left;
  color: #969696;
  margin: 5px 0px;
}

.casino-search .favorite {
  background: #404349;
  width: 10%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 12px;
  text-align: left;
  color: #00D559;
  margin: 5px 0px;
}

.search-mobile {
  width: 100%;
  display: none;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px 0px 200px 00px;
  z-index: 101;
  background: #1A1D25;
}

.search-mobile .game-category {
  width: 48%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.search-mobile .game-category div {
  width: 100%;
  background: #2F333C;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  margin: 10px 0px;
  border-radius: 10px;
}

.search-mobile .game-category section {
  width: 100%;
  display: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.search-mobile .game-category div i {
  margin: 0px 10px;
  font-size: 30px;
  color: #00D559 !important;
}

.search-mobile .game-category div h1 {
  font-size: 25px;
}

.close-search-menu {
  display: block;
  background: #404349;
  border-radius: 100px;
  padding: 5px;
  font-size: 20px;
  color: #26282C;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: none;
}

.mobile-admin-menu {
  width: 100%;
  height: 100%;
  background: #1A1D25;
  z-index: 101;
  top: 0;
  bottom: 0;
  display: none;
  justify-content: left;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px 0px 200px 0px;
}

.mobile-admin-menu section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  overflow-y: scroll;
}

.mobile-admin-menu div {
  background: #2F333C;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 100% !important;
  padding: 20px;
  margin: 30px 0px;
}

.mobile-admin-menu div h1 {
  font-size: 30px;
  margin: 10px 0px;
  color: #ffffff;
  font-family: 'Nexa';
  width: 100%;
  text-align: center;
}

.mobile-admin-menu span {
  background: #2F333C;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 90% !important;
  margin: 15px 0px;
}

.mobile-admin-menu span a {
  color: #ffffff;
  font-family: 'Nexa';
  font-weight: lighter;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  width: 90%;
  padding: 10px 0px;
}

.mobile-admin-menu span a lord-icon {
  margin: 0px 10px;
}

.close-admin-menu {
  display: block;
  background: #404349;
  border-radius: 100px;
  padding: 5px;
  font-size: 20px;
  color: #26282C;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: none;
}

.casino-search .search-div {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.casino-search .search-modal-span {
  width: 100%;
  position: absolute;
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #777777;
  border-radius: 8px;
  height: 240px;
  bottom: -240px;
  z-index: 100;
  overflow-y: scroll;
  padding: 20px 0px;
}

.casino-search .search-modal-span .mobile-game-card {
  background: #1A1D25;
  margin: 10px 5px;
}

.mobile-games-more {
  font-family: 'Nexa';
  color: #131417;
  background: #00D559;
  border-radius: 10px;
  padding: 10px;
  display: inline-block;
  cursor: pointer;
  border: none;
  text-align: center;
}

@media (max-width: 950px) {
  .content {
    padding: 30px 0px 200px 0px
  }
}