@charset "UTF-8";
abbr, address, article, aside, audio, b, blockquote, body, button, caption, cite, code, dd, del, dfn, div, dl, dt, em, fieldset, figure, footer, form, h1, h2, h3, h4, h5, h6, header, html, a, i, iframe, img, input, select, ins, label, legend, li, main, mark, menu, nav, object, ol, p, pre, q, samp, section, span, strong, sub, sup, table, tbody, td, textarea, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
}

.slick-list{
    /*aspect-ratio: 192/35!important;*/
}

img {
  max-width: 100%;
}

a,
.dark-bg nav a {
  text-decoration: none;
}

nav ul li {
  list-style-type: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  font: normal 1em secondary;
  text-rendering: geometricPrecision;
}

div {
  position: relative;
}

@font-face {
  font-family: principal;
  font-display: swap;
  src: url("/fonts/Helvetica.woff");
}

@font-face {
  font-family: secondary;
  font-display: swap;
  src: url("/fonts/HelveticaBd.woff");
}

@font-face {
  font-family: complementary;
  font-display: swap;
  src: url("/fonts/LibreBaskerville-Bold.ttf");
}

.grid {
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'header' 'main';
  grid-auto-flow: column dense;
  -ms-grid-columns: 100vw;
      grid-template-columns: 100vw;
  -ms-grid-rows: 90px auto;
      grid-template-rows: 90px auto;
  height: 100%;
}

@media (max-width: 1240px) {
  .grid {
        grid-template-areas: 'header' 'main';
    -ms-grid-rows: 80px auto;
        grid-template-rows: 80px auto;
  }
}

@media (max-width: 768px) {
  .grid {
    -ms-grid-rows: 50px auto;
        grid-template-rows: 50px auto;
  }
}

header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
}

@media (max-width: 1240px) {
  header {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

.main {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: main;
  overflow-x: hidden;
  overflow-y: auto;
}

.aside--left {
  grid-area: asideLeft;
}

.aside--right {
  grid-area: asideRight;
}

header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(#151515));
  background: linear-gradient(to right, #000000, #151515);
  padding: 0 100px;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: -webkit-filter .3s ease-out;
  transition: -webkit-filter .3s ease-out;
  transition: filter .3s ease-out;
  transition: filter .3s ease-out, -webkit-filter .3s ease-out;
}

@media (min-width: 1390px) {
  header {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1240px) {
  header {
    padding: 0 30px;
  }
}

@media (max-width: 1240px) {
  header nav,
  .header__btns {
    display: none;
  }
}

.header__logo {
  width: 150px;
  text-align: center;
}

@media (max-width: 1240px) {
  .header__logo {
    width: 100px;
  }
}

.header__btnMenu,
.header__icoLogin,
.header__icoDeposit {
  display: none;
}

@media (max-width: 1240px) {
  .header__btnMenu,
  .header__icoLogin,
  .header__icoDeposit {
    display: block;
  }
}

/*LOGGED VERSION*/
.header__logged {
  white-space: nowrap;
}

.header__logged > div {
  margin-right: 20px;
}

p.white {
  margin-bottom: 0;
  color: #FFFFFF;
  cursor: pointer;
}

p.green {
  margin-bottom: 0;
  color: #30E17B;
  cursor: pointer;
}

.header__logged .btn--username {
  border: 2px solid #30e17b;
  border-radius: 100%;
  padding: 3px;
}

.header__logged > div.header__logout {
  margin-right: 0;
}

.reloadBalance {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.giro {
  -webkit-animation: giro .3s linear backwards;
          animation: giro .3s linear backwards;
}

@-webkit-keyframes giro {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes giro {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@media (max-width: 1240px) {
  .btn--username,
  .header__time,
  .header__balance,
  .header__logout {
    display: none;
  }
  .btn--usernameIco {
    display: block;
  }
}

@media (max-width: 768px) {
  .header__btnDeposit,
  .header__logout {
    display: none;
  }
  .header__btnDepositIco {
    display: block;
  }
}

.header-secondary-menu:last-child {
  margin-right: 0;
}

#navprincipal,
#navbanner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: auto;
  width: 100%;
  z-index: 1;
}

@media (max-width: 768px) {
  #navprincipal,
  #navbanner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

#navprincipal a,
#navbanner a {
  color: #30E17B;
  font-family: secondary;
  font-size: 16px;
  margin: 0 20px;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#navprincipal a:hover,
#navbanner a:hover {
  color: #30E17B;
}

#navprincipal a::before,
#navbanner a::before {
  background-color: #30E17B;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  width: 0;
}

#navprincipal a:hover::before,
#navbanner a:hover::before {
  -webkit-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
  width: 100%;
}

#navprincipal a.btn--primary,
#navbanner a.btn--primary {
  color: #000103;
}

#navprincipal a.active {
  color: #fff;
}

.shownav {
  opacity: 1;
}

.hidenav {
  opacity: 0;
}

footer nav a {
  display: block;
  color: #FFFFFF !important;
}

footer nav a:hover {
  color: #D8D8D8 !important;
}

nav a {
  position: relative;
  color: #30E17B;
}

nav a:hover {
  color: #30E17B;
}

.dark-bg nav a {
  position: relative;
  color: #FDFDFD;
}

.dark-bg nav a:hover {
  color: #30E17B;
}

@media (max-width: 1240px) {
  #navprincipal, .navContainer {
    display: none;
  }
}

@media (max-width: 1410px) {
  #navprincipal a {
    font-size: 13px;
  }
  header {
    padding: 0 50px;
  }
}

:root {
  --color-bg1: #000103;
  --color-txt1: #333333;
  --color-bg2: #232323;
  --color-txt2: #FDFDFD;
  --color-bg3: #575756;
  --color-bg4: #171717;
  --color-bg5: #303030;
  --color-c1: #30E17B;
  --color-c2: #30E17B;
  --color-c3: #D8D8D8;
  --color-c4: #30E17B;
  --color-c5: #D20723;
  --color-c6: #30E17B;
  --color-cwhite: #FFFFFF;
  --color-cblack: #000103;
  --color-grey-superdark: #1d1d1d;
  --color-grey-dark: #4E4E4E;
  --color-grey: #808080;
  --color-grey-light: #DEDEDE;
  --color-grey-superlight: #EEEEEE;
  --color-error: #FFD97E;
  --color-warning: #FFD97E;
  --color-success: #CECF86;
  --color-info: #30E17B;
  --color-hot: #FF0000;
  --color-hotbefore: #803333;
  --color-new: #D10A92;
  --color-newbefore: #992E77;
  --color-classic: #0000FF;
  --color-classicbefore: #404080;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.5em;
}

@media (max-width: 768px) {
  html {
    font-size: 14.54545px;
    line-height: 1.36364em;
  }
}

body {
  font-family: principal;
  background-color: #000103;
  color: #FFFFFF;
  text-rendering: geometricPrecision;
  -webkit-overflow-scrolling: touch;
}

.body {
  overflow: hidden;
  position: fixed;
  width: 99.7vw;
  height: 100vh;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: principal;
  line-height: 1.3em;
}

h1.type2, h2.type2, h3.type2, h4.type2, h5.type2, h6.type2,
.h1.type2, .h2.type2, .h3.type2, .h4.type2, .h5.type2, .h6.type2 {
  font-family: secondary;
  line-height: 1.3em;
  font-weight: lighter;
}

h1, h1.type2, .h1 {
  font-size: calc(2.1vmin + 1em);
}

h2, h2.type2, .h2 {
  font-size: calc(1.43vmin + 1em);
}

h3, h3.type2, .h3 {
  font-size: calc(.75vmin + 1em);
}

h4, h4.type2, .h4 {
  font-size: calc(.42vmin + 1em);
}

h5, h5.type2, .h5 {
  font-size: calc(.1vmin + 1em);
}

h6, h6.type2, .h6 {
  font-size: calc(0vmin + .95em);
}

.green-text, .text-page h2 {
  color: #30E17B;
}

.white-text {
  color: #FFFFFF;
}

.title-border {
  background-color: #232323;
  border-radius: 50px;
  color: #30E17B;
}

.section-border {
  background-color: #303030;
  border-radius: 36px;
  width: calc(100% - 60px);
}

.bg-grey {
  background-color: #303030;
}

p + P {
  margin-top: 2em;
}

strong {
  font-family: secondary;
}

ul {
  list-style-position: inside;
  list-style-type: circle;
  margin-bottom: 2em;
}

a {
  color: #D8D8D8;
}

a:hover {
  color: #30E17B;
}

a:active {
  color: #30E17B;
}

a.smallText {
  font-size: 0.74em;
}

/*LINKS WITH DARK BACKGROUNDS*/
.dark-bg a {
  color: #D8D8D8;
  text-decoration: underline;
}

.dark-bg a:hover {
  color: #30E17B;
}

.dark-bg a:active {
  color: #30E17B;
}

/*FIN LINKS WITH DARK BACKGROUNDS*/
main {
  width: 100%;
}

.main {
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: -webkit-filter .3s ease-out;
  transition: -webkit-filter .3s ease-out;
  transition: filter .3s ease-out;
  transition: filter .3s ease-out, -webkit-filter .3s ease-out;
}

section {
  margin-bottom: 15px;
  padding: 10px 20px;
}

@media (min-width: 1390px) {
  section {
    width: 80%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1655px) {
  section {
    width: 90%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1473px) {
  section {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}

.gameIframe .grid {
      grid-template-areas: 'main';
}

.gameIframe .grid header, .gameIframe .grid nav {
  display: none;
}

aside {
  padding: 10px;
  position: absolute;
  top: 0;
  width: 340px;
  height: 100vh;
  z-index: 10;
  overflow: auto;
}

.aside--left {
  left: -340px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.aside--right {
  right: -340px;
  -webkit-box-shadow: 0 0 0 rgba(17, 17, 17, 0.1);
          box-shadow: 0 0 0 rgba(17, 17, 17, 0.1);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

aside nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid;
}

.cookiesInfo {
  position: fixed;
  top: calc(50vh - 200px);
  right: 0;
  width: 300px;
  font-size: 0.74em;
  background-color: #000103;
  border: 2px solid #30E17B;
  border-radius: 10px 0 0 10px;
  z-index: 100;
  padding: 20px;
  -webkit-box-shadow: 0 0 3px #1d1d1d;
          box-shadow: 0 0 3px #1d1d1d;
}

.aside__logo img {
  width: 135px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style-type: none;
  width: 100%;
}

.pagination li {
  margin: 5px;
}

.notloggedin {
  height: 100vh;
}

.notloggedin form {
  width: 30%;
  min-width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
}

.dark-bg .consejo {
  color: #333333;
}

#registerLoader,
#loaderContent {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
}

#registerLoader > div,
#loaderContent > div {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

#registerLoader > div p,
#loaderContent > div p {
  font-size: 1.2em;
  margin: 25px;
  text-align: center;
}

@media (max-width: 768px) {
  main.mt50 {
    margin-top: 0;
  }
  section.section-border, section.p50 {
    margin: 10px 10px;
    width: calc(100% - 20px);
    padding: 20px;
  }
  h1.title-border, h2.title-border {
    margin: 0px 10px;
  }
  .banner-logo {
    width: 90% !important;
  }
  .banner-logo-button {
    width: 100% !important;
    text-align: center !important;
  }
  .banner-logo-text {
    font-size: 15px !important;
    right: 20px !important;
  }
  .paymentgateways img {
    height: auto !important;
    width: calc(100% - 20px) !important;
    margin-bottom: 10px !important;
  }
  h6.accordion--s {
    background: #303030;
    text-align: left;
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .accordion--s::after {
    top: -2px !important;
  }
  h6.accordion--s.redes {
    display: none;
  }
  nav.redesLinks {
    height: 25px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
    margin-bottom: 70px;
  }
  #loginForm_aside {
    padding: 20px;
  }
  #loginForm_aside label {
    margin-left: 5px;
    margin-bottom: 5px;
  }
  #loginForm_aside .ojo {
    top: 26px;
  }
}

.flex, .flex--center, .flex--end, .flex--between, .flex--around, .flex--evenly {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex--around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex--evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.inColumns {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.vCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.vStart {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.vEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.aCenter {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.aStart {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.aEnd {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.noWrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.txtc {
  text-align: center;
}

.txtr {
  text-align: right;
}

.txtl {
  text-align: left;
}

.floatl {
  float: left;
}

.floatr {
  float: right;
}

.clearfix {
  clear: both;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
}

.hide {
  display: none!important;
}

.show,
.block {
  display: block !important;
}

.blockScroll {
  overflow: hidden;
  height: 100%;
}

.ico, .ico--small {
  vertical-align: middle;
  fill: #30E17B;
}

.ico {
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  .ico {
    width: 28.57143px;
    height: 28.57143px;
  }
}

.ico--small {
  width: 25px;
  height: 25px;
}

.dark-bg {
  background-color: #232323;
  color: #FDFDFD;
}

.dark-bg .ico, .dark-bg .ico--small {
  fill: #FDFDFD;
}

.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

@media (max-width: 768px) {
  .w10 {
    width: 100%;
  }
  .w20 {
    width: 100%;
  }
  .w30 {
    width: 100%;
  }
  .w40 {
    width: 100%;
  }
  .w50 {
    width: 100%;
  }
  .w60 {
    width: 100%;
  }
  .w70 {
    width: 100%;
  }
  .w80 {
    width: 100%;
  }
  .w90 {
    width: 100%;
  }
  .w100 {
    width: 100%;
  }
}

.p5 {
  padding: 5px;
}

.p10 {
  padding: 10px;
}

.p15 {
  padding: 15px;
}

.p20 {
  padding: 20px;
}

.p25 {
  padding: 25px;
}

.p30 {
  padding: 30px;
}

.p35 {
  padding: 35px;
}

.p40 {
  padding: 40px;
}

.p45 {
  padding: 45px;
}

.p50 {
  padding: 50px;
}

.p55 {
  padding: 55px;
}

.p60 {
  padding: 60px;
}

.p65 {
  padding: 65px;
}

.p70 {
  padding: 70px;
}

.p75 {
  padding: 75px;
}

.p80 {
  padding: 80px;
}

.p85 {
  padding: 85px;
}

.p90 {
  padding: 90px;
}

.p95 {
  padding: 95px;
}

.p100 {
  padding: 100px;
}

.pl5 {
  padding-left: 5px;
}

.pl10 {
  padding-left: 10px;
}

.pl15 {
  padding-left: 15px;
}

.pl20 {
  padding-left: 20px;
}

.pl25 {
  padding-left: 25px;
}

.pl30 {
  padding-left: 30px;
}

.pl35 {
  padding-left: 35px;
}

.pl40 {
  padding-left: 40px;
}

.pl45 {
  padding-left: 45px;
}

.pl50 {
  padding-left: 50px;
}

.pl55 {
  padding-left: 55px;
}

.pl60 {
  padding-left: 60px;
}

.pl65 {
  padding-left: 65px;
}

.pl70 {
  padding-left: 70px;
}

.pl75 {
  padding-left: 75px;
}

.pl80 {
  padding-left: 80px;
}

.pl85 {
  padding-left: 85px;
}

.pl90 {
  padding-left: 90px;
}

.pl95 {
  padding-left: 95px;
}

.pl100 {
  padding-left: 100px;
}

.pr5 {
  padding-right: 5px;
}

.pr10 {
  padding-right: 10px;
}

.pr15 {
  padding-right: 15px;
}

.pr20 {
  padding-right: 20px;
}

.pr25 {
  padding-right: 25px;
}

.pr30 {
  padding-right: 30px;
}

.pr35 {
  padding-right: 35px;
}

.pr40 {
  padding-right: 40px;
}

.pr45 {
  padding-right: 45px;
}

.pr50 {
  padding-right: 50px;
}

.pr55 {
  padding-right: 55px;
}

.pr60 {
  padding-right: 60px;
}

.pr65 {
  padding-right: 65px;
}

.pr70 {
  padding-right: 70px;
}

.pr75 {
  padding-right: 75px;
}

.pr80 {
  padding-right: 80px;
}

.pr85 {
  padding-right: 85px;
}

.pr90 {
  padding-right: 90px;
}

.pr95 {
  padding-right: 95px;
}

.pr100 {
  padding-right: 100px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt45 {
  padding-top: 45px;
}

.pt50 {
  padding-top: 50px;
}

.pt55 {
  padding-top: 55px;
}

.pt60 {
  padding-top: 60px;
}

.pt65 {
  padding-top: 65px;
}

.pt70 {
  padding-top: 70px;
}

.pt75 {
  padding-top: 75px;
}

.pt80 {
  padding-top: 80px;
}

.pt85 {
  padding-top: 85px;
}

.pt90 {
  padding-top: 90px;
}

.pt95 {
  padding-top: 95px;
}

.pt100 {
  padding-top: 100px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb35 {
  padding-bottom: 35px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb55 {
  padding-bottom: 55px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb65 {
  padding-bottom: 65px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb75 {
  padding-bottom: 75px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb85 {
  padding-bottom: 85px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb95 {
  padding-bottom: 95px;
}

.pb100 {
  padding-bottom: 100px;
}

.m5 {
  margin: 5px;
}

.m10 {
  margin: 10px;
}

.m15 {
  margin: 15px;
}

.m20 {
  margin: 20px;
}

.m25 {
  margin: 25px;
}

.m30 {
  margin: 30px;
}

.m35 {
  margin: 35px;
}

.m40 {
  margin: 40px;
}

.m45 {
  margin: 45px;
}

.m50 {
  margin: 50px;
}

.m55 {
  margin: 55px;
}

.m60 {
  margin: 60px;
}

.m65 {
  margin: 65px;
}

.m70 {
  margin: 70px;
}

.m75 {
  margin: 75px;
}

.m80 {
  margin: 80px;
}

.m85 {
  margin: 85px;
}

.m90 {
  margin: 90px;
}

.m95 {
  margin: 95px;
}

.m100 {
  margin: 100px;
}

.mauto {
  margin: auto;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.ml30 {
  margin-left: 30px;
}

.ml35 {
  margin-left: 35px;
}

.ml40 {
  margin-left: 40px;
}

.ml45 {
  margin-left: 45px;
}

.ml50 {
  margin-left: 50px;
}

.ml55 {
  margin-left: 55px;
}

.ml60 {
  margin-left: 60px;
}

.ml65 {
  margin-left: 65px;
}

.ml70 {
  margin-left: 70px;
}

.ml75 {
  margin-left: 75px;
}

.ml80 {
  margin-left: 80px;
}

.ml85 {
  margin-left: 85px;
}

.ml90 {
  margin-left: 90px;
}

.ml95 {
  margin-left: 95px;
}

.ml100 {
  margin-left: 100px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

.mr30 {
  margin-right: 30px;
}

.mr35 {
  margin-right: 35px;
}

.mr40 {
  margin-right: 40px;
}

.mr45 {
  margin-right: 45px;
}

.mr50 {
  margin-right: 50px;
}

.mr55 {
  margin-right: 55px;
}

.mr60 {
  margin-right: 60px;
}

.mr65 {
  margin-right: 65px;
}

.mr70 {
  margin-right: 70px;
}

.mr75 {
  margin-right: 75px;
}

.mr80 {
  margin-right: 80px;
}

.mr85 {
  margin-right: 85px;
}

.mr90 {
  margin-right: 90px;
}

.mr95 {
  margin-right: 95px;
}

.mr100 {
  margin-right: 100px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.btn--primary,
a.btn--primary,
input.btn--primary, .btn--secondary,
a.btn--secondary,
input.btn--secondary, .btn--disable,
a.btn--disable,
input.btn--disable, .dark-bg .btn--disable,
.dark-bg a.btn--disable,
.dark-bg input.btn--disable {
  padding: 10px 10px;
  display: inline-block;
  font-family: secondary;
  border: none solid;
  border-radius: 10px;
  font-size: 1em;
  line-height: 1.3em;
  text-decoration: none;
  cursor: pointer;
  width: initial;
}

@media (max-width: 768px) {
  .btn--primary,
  a.btn--primary,
  input.btn--primary, .btn--secondary,
  a.btn--secondary,
  input.btn--secondary, .btn--disable,
  a.btn--disable,
  input.btn--disable, .dark-bg .btn--disable,
  .dark-bg a.btn--disable,
  .dark-bg input.btn--disable {
    padding: 6.66667px 6.66667px;
  }
}

.btn--primary,
a.btn--primary,
input.btn--primary {
  color: #30E17B;
  background-color: transparent;
  border-color: #30E17B;
  border: 2px solid #30E17B;
}

.btn--primary:hover, .btn--primary:active,
a.btn--primary:hover,
a.btn--primary:active,
input.btn--primary:hover,
input.btn--primary:active {
  background: rgba(0, 0, 0, 0.5) !important;
  border-color: #28b966 !important;
  color: #FDFDFD !important;
}

.btn--secondary,
a.btn--secondary,
input.btn--secondary {
  color: #000103;
  background-color: #30E17B;
  border-color: #30E17B;
  border: 2px solid #30E17B;
}

.btn--secondary:hover, .btn--secondary:active,
a.btn--secondary:hover,
a.btn--secondary:active,
input.btn--secondary:hover,
input.btn--secondary:active {
  background: #28b966 !important;
  border-color: #28b966 !important;
  color: #FDFDFD !important;
}

.btn--disable,
a.btn--disable,
input.btn--disable {
  background-color: #DEDEDE !important;
  cursor: not-allowed !important;
}

.btn--atras {
  display: block;
  position: absolute;
  top: 11px;
  left: 8px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  fill: #fff;
}

.accordion, .accordion--xl, .accordion--l, .accordion--m, .accordion--s, .accordion--xs, .accordion--xxs {
  --icono: url(/img/icos/chevron-down-white.svg);
  --rotation: rotate(0deg);
  cursor: pointer;
}

.accordion::after, .accordion--xl::after, .accordion--l::after, .accordion--m::after, .accordion--s::after, .accordion--xs::after, .accordion--xxs::after {
  content: "";
  background-image: var(--icono);
  display: inline-block;
  width: 24px;
  height: 18px;
  -webkit-transform: var(--rotation);
          transform: var(--rotation);
  position: relative;
  top: 3px;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

.accordion + *, .accordion--xl + *, .accordion--l + *, .accordion--m + *, .accordion--s + *, .accordion--xs + *, .accordion--xxs + * {
  height: 0;
  overflow: hidden;
  -webkit-transition: height .3s ease-out;
  transition: height .3s ease-out;
}

@media (min-width: 1460px) {
  .accordion--xl {
    --icono: "";
  }
  .accordion--xl + * {
    height: inherit !important;
  }
}

@media (max-width: 1460px) {
  .accordion--xl {
    --icono: url(/img/icos/chevron-down-white.svg);
  }
}

@media (min-width: 1390px) {
  .accordion--l {
    --icono: "";
  }
  .accordion--l + * {
    height: inherit !important;
  }
}

@media (max-width: 1390px) {
  .accordion--l {
    --icono: url(/img/icos/chevron-down-white.svg);
  }
}

@media (min-width: 1240px) {
  .accordion--m {
    --icono: "";
  }
  .accordion--m + * {
    height: inherit !important;
  }
}

@media (max-width: 1240px) {
  .accordion--m {
    --icono: url(/img/icos/chevron-down-white.svg);
  }
}

@media (min-width: 768px) {
  .accordion--s {
    --icono: "";
  }
  .accordion--s + * {
    height: inherit !important;
  }
}

@media (max-width: 768px) {
  .accordion--s {
    --icono: url(/img/icos/chevron-down-white.svg);
  }
}

@media (min-width: 590px) {
  .accordion--xs {
    --icono: "";
  }
  .accordion--xs + * {
    height: inherit !important;
  }
}

@media (max-width: 590px) {
  .accordion--xs {
    --icono: url(/img/icos/chevron-down-white.svg);
  }
}

@media (min-width: 430px) {
  .accordion--xxs {
    --icono: "";
  }
  .accordion--xxs + * {
    height: inherit !important;
  }
}

@media (max-width: 430px) {
  .accordion--xxs {
    --icono: url(/img/icos/chevron-down-white.svg);
  }
}

/*BUTTONS WITH DARK BACKGROUNDS*/
.dark-bg .btn--disable,
.dark-bg a.btn--disable,
.dark-bg input.btn--disable {
  background-color: #DEDEDE;
  cursor: not-allowed;
}

.dark-bg .btn--disable:hover, .dark-bg .btn--disable:active,
.dark-bg a.btn--disable:hover,
.dark-bg a.btn--disable:active,
.dark-bg input.btn--disable:hover,
.dark-bg input.btn--disable:active {
  background-color: #DEDEDE;
}

/*Lobby cuadrícula Casino*/
.lobbyGames {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: 1fr;
  gap: 20px;
}

@media (max-width: 1240px) {
  .lobbyGames {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .lobbyGames {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 590px) {
  .lobbyGames {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.lobbyGames__boxGame {
  overflow: hidden;
  cursor: pointer;
}

.lobbyGames__boxGame::before {
  content: "";
  background-color: rgba(0, 1, 3, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 5;
  -webkit-transition: top 0.5s ease-in-out;
  transition: top 0.5s ease-in-out;
}

.x2row,
.mediana {
  -ms-grid-row-span: 2;
      grid-row-end: span 2;
}

.x2col-x2row,
.grande {
  -ms-grid-column-span: 2;
      grid-column-end: span 2;
  -ms-grid-row-span: 2;
      grid-row-end: span 2;
}

.boxGame__img {
  position: relative;
  height: 100%;
  line-height: 0;
  z-index: 1;
}

.boxGame__img img,
.boxGame__img picture {
  max-width: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.lobbyGames__boxGame:hover img,
.lobbyGames__boxGame:hover picture {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.boxGame__heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 8;
}

.boxGame__buttons {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
  -webkit-transition: top 0.5s ease-in-out;
  transition: top 0.5s ease-in-out;
}

.boxGame__buttons a {
  color: #FFFFFF;
  padding: 10px;
}

@media (max-width: 430px) {
  .boxGame__buttons a {
    padding: 5px;
  }
}

.boxGame__buttons a:hover {
  color: #D8D8D8;
}

.lobbyGames__boxGame:hover::before,
.lobbyGames__boxGame:hover .boxGame__buttons {
  top: 0;
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
}

.boxGame__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 0;
  position: absolute;
  top: 10px;
  z-index: 20;
}

.boxGame__tags span {
  color: #FFFFFF;
  font-size: .7em;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 0 5px;
}

.boxGame__tags .novedad {
  background-color: #D8D8D8;
}

.boxGame__tags .hot {
  background-color: #D20723;
}

.boxGame__tags .clasica {
  background-color: #30E17B;
}

/*Fin Lobby cuadrícula Casino*/
/*Nuevo lobby Netflix*/
.lobbyslider {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 154px;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 0;
  position: initial;
  -webkit-overflow-scrolling: touch;
}

.lobbyslider > div {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  margin: 0 5px 0 0;
  min-height: 154px;
  min-width: 300px;
  position: relative;
  -webkit-transition: 250ms all;
  transition: 250ms all;
  z-index: 10;
}

.lobbyslider > div:hover {
  margin: 0 10px;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  z-index: 20;
}

.gamebuttons {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 1, 3, 0.8);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.gamebuttons a {
  color: #FFFFFF;
}

.lobbyslider-flechal,
.lobbyslider-flechar {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 1, 3, 0.4);
  color: #FFFFFF;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3em;
  height: 100%;
  padding: 5px;
  position: absolute;
  top: 0;
  z-index: 30;
}

.lobbyslider-flechal {
  left: 0;
}

.lobbyslider-flechar {
  right: 0;
}

/*Fin Nuevo lobby Netflix*/
/*Lobby Ribbons para las tags*/
[class^="ribbon-"] {
  position: absolute;
  z-index: 15;
}

[class^="ribbon-"] p {
  color: #FFFFFF;
  text-align: center;
}

[class^="ribbon-"]:before,
[class^="ribbon-"]:after {
  content: "";
  position: absolute;
}

.ribbon-1 {
  background: #FF0000;
  height: 50%;
  right: 10px;
  top: -6px;
  width: 50px;
}

.ribbon-1:before {
  border-bottom: 6px solid #803333;
  border-right: 6px solid transparent;
  height: 0;
  right: -6px;
  width: 0;
}

.ribbon-1:after {
  border-bottom: 25px solid transparent;
  border-left: 25px solid #FF0000;
  border-right: 25px solid #FF0000;
  bottom: -25px;
  height: 0;
  width: 0;
}

.ribbon-2 {
  background: #D10A92;
  height: 30px;
  left: -8px;
  top: 10px;
  width: 100px;
}

.ribbon-2:before {
  height: 0;
  border-bottom: 8px solid #992E77;
  border-left: 8px solid transparent;
  top: -8px;
  width: 0;
}

.ribbon-2:after {
  border-bottom: 15px solid transparent;
  border-left: 15px solid #D10A92;
  border-right: 0px solid #D10A92;
  border-top: 15px solid transparent;
  height: 0;
  right: -15px;
  width: 0;
  top: 0;
}

.ribbon-3 {
  background: #0000FF;
  bottom: 14px;
  height: 25px;
  margin-left: -8px;
  margin-right: -8px;
  width: calc(100% + 16px);
}

.ribbon-3:before {
  border-left: 10px solid transparent;
  border-top: 10px solid #404080;
  bottom: -10px;
  height: 0;
  width: 0;
}

.ribbon-3:after {
  border-right: 10px solid transparent;
  border-top: 10px solid #404080;
  bottom: -10px;
  height: 0;
  right: 0;
  width: 0;
}

.ribbonGames__boxGame {
  cursor: pointer;
  position: relative;
}

.ribbonGames__boxGame::before {
  background-color: rgba(0, 1, 3, 0.7);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  z-index: 7;
}

.ribbonGames__boxGame:hover::before,
.ribbonGames__boxGame:hover .ribbonGames__buttons {
  visibility: visible;
}

.ribbonGames__buttons {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  visibility: hidden;
  z-index: 8;
}

.ribbonGames__buttons a {
  color: #FFFFFF;
  padding: 10px;
}

@media (max-width: 430px) {
  .ribbonGames__buttons a {
    padding: 5px;
  }
}

.ribbonGames__buttons a:hover {
  color: #FFFFFF;
}

.ribbonGames__buttons a.btn--secondary {
  color: #000103;
}

/*Fin Lobby Ribbons para las tags*/
/*Filtros para las tags*/
@-webkit-keyframes fadeout {
  0% {
    display: block;
  }
  100% {
    display: none;
  }
}

@keyframes fadeout {
  0% {
    display: block;
  }
  100% {
    display: none;
  }
}

.fadeOut {
  display: none;
  -webkit-animation: fadeout 1s linear;
  animation: fadeout 1s linear;
}

@-webkit-keyframes fadein {
  0% {
    display: none;
  }
  100% {
    display: block;
  }
}

@keyframes fadein {
  0% {
    display: none;
  }
  100% {
    display: block;
  }
}

.fadeIn {
  display: block;
  -webkit-animation: fadein 1s linear;
  animation: fadein 1s linear;
}

/*Fin Filtros para las tags*/
/*Mini ribbons para los filtros*/
.filters button {
  background-color: #EEEEEE;
  border: 1px solid #DEDEDE;
  font-size: .7em;
  height: 30px;
  margin: 10px;
  position: relative;
  width: 50px;
}

[class^="miniribbon-"] {
  position: absolute;
  z-index: 15;
}

[class^="miniribbon-"] p {
  color: #FFFFFF;
  font-size: .7em;
  text-align: center;
}

[class^="miniribbon-"]:before,
[class^="miniribbon-"]:after {
  content: "";
  position: absolute;
}

.miniribbon-1 {
  background: #FF0000;
  height: 50%;
  right: 10px;
  top: -7px;
  width: 26px;
}

.miniribbon-1:before {
  border-bottom: 6px solid #803333;
  border-right: 6px solid transparent;
  height: 0;
  right: -6px;
  width: 0;
}

.miniribbon-1:after {
  border-bottom: 12px solid transparent;
  border-left: 13px solid #FF0000;
  border-right: 13px solid #FF0000;
  bottom: -12px;
  height: 0;
  right: 0;
  width: 0;
}

.miniribbon-2 {
  background: #D10A92;
  height: 15px;
  left: -8px;
  top: 7px;
  width: 45px;
}

.miniribbon-2:before {
  height: 0;
  border-bottom: 8px solid #992E77;
  border-left: 8px solid transparent;
  left: 0;
  top: -8px;
  width: 0;
}

.miniribbon-2:after {
  border-bottom: 5px solid transparent;
  border-left: 10px solid #D10A92;
  border-right: 0px solid #D10A92;
  border-top: 10px solid transparent;
  height: 0;
  right: -10px;
  width: 0;
  top: 0;
}

.miniribbon-3 {
  background: #0000FF;
  bottom: 5px;
  height: 15px;
  margin-left: -10px;
  margin-right: -10px;
  width: calc(100% + 20px);
}

.miniribbon-3:before {
  border-left: 10px solid transparent;
  border-top: 10px solid #404080;
  bottom: -10px;
  height: 0;
  left: 0;
  width: 0;
}

.miniribbon-3:after {
  border-right: 10px solid transparent;
  border-top: 10px solid #404080;
  bottom: -10px;
  height: 0;
  right: 0;
  width: 0;
}

/*Fin Mini ribbons para los filtros*/
.lobby-game-border {
  border-radius: 10px;
  overflow: hidden;
}

/*Nuevo Lobby Destacados*/
.lobby-destacados {
  width: 100%;
}

.lobby-destacados > div {
  width: 230px;
  height: 343px;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px;
}

@media (max-width: 1330px) {
  .lobby-destacados > div {
    height: 297px;
    width: 205px;
  }
}

@media (max-width: 1182px) {
  .lobby-destacados > div {
    height: 228px;
    width: 190px;
  }
}

@media (max-width: 1038px) {
  .lobby-destacados > div {
    height: 220px !important;
    width: 320px !important;
  }
}

.lobby-destacados > div:first-child {
  width: 500px;
  border-width: 4px;
}

@media (max-width: 1330px) {
  .lobby-destacados > div:first-child {
    width: 430px;
  }
}

@media (max-width: 1182px) {
  .lobby-destacados > div:first-child {
    width: 330px;
  }
}

.lobby-destacados > div .boxGame__tags.new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: -10px;
  position: absolute;
  top: -10px;
  border-radius: 100%;
  overflow: hidden;
  width: 50px;
  height: 50px;
  z-index: 20;
}

.lobby-destacados > div .boxGame__tags.new span {
  color: #FFFFFF;
  font-size: inherit;
  font-weight: bold;
  height: 50px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 5px;
  margin-bottom: 0px;
}

.lobby-destacados > div .boxGame__tags.new .novedad {
  background-color: #30E17B;
}

.lobby-destacados .game-image {
  width: 100%;
  height: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: none;
}

@media (max-width: 1038px) {
  .lobby-destacados .game-image {
    height: 100%;
  }
}

.lobby-destacados .game-image.cuadrada {
  display: block;
}

.lobby-destacados > div:first-child .game-image {
  display: block;
}

.lobby-destacados > div:first-child .game-image.cuadrada {
  display: none;
}

.lobby-destacados > div:first-child .game-image {
  width: 100%;
  height: 100%;
}

.lobby-destacados .game-info {
  position: absolute;
  bottom: 0;
  background: #000103;
  width: 100%;
  height: 40%;
}

@media (max-width: 1038px) {
  .lobby-destacados .game-info {
    display: none;
  }
}

.lobby-destacados > div:first-child .game-info {
  display: none;
}

.lobby-destacados .game-title {
  color: #000;
  background: #30e17b;
  width: 100%;
  padding: 5px 15px;
  font-family: secondary;
}

@media (max-width: 1182px) {
  .lobby-destacados .game-title {
    height: 100%;
  }
}

.lobby-destacados .game-desc {
  color: #fff;
  margin: 0;
  padding: 5px 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 13px;
  line-height: 23px;
}

@media (max-width: 1330px) {
  .lobby-destacados .game-desc {
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 1182px) {
  .lobby-destacados .game-desc {
    display: none;
  }
}

.lobby-destacados > div:hover .gamebuttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lobby-destacados .gamebuttons {
  z-index: 30;
}

.lobby-destacados .gamebuttons a.btn--primary {
  color: #30E17B;
}

.lobby-destacados .gamebuttons a.btn--secondary {
  color: #000103;
}

.lobby-destacados .boxGame__heart {
  z-index: 31;
  cursor: pointer;
}

/*Fin Nuevo Lobby Destacados*/
.step {
  width: 33%;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  padding: 10px;
}

@media (max-width: 1240px) {
  .step {
    width: 100%;
    border-bottom: 1px solid #30e17b;
    padding: 20px 0px;
    margin-top: 0;
  }
}

.step:not(:last-child):not(.noborder)::after {
  content: "";
  width: 1px;
  height: 80%;
  background-color: #30E17B;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1240px) {
  .step:not(:last-child):not(.noborder)::after {
    display: none;
  }
}

.step.noborder {
  border-bottom: 0 !important;
}

label {
  font-size: 0.74em;
  line-height: 1.3em;
  display: block;
}

input,
select,
textarea {
  border-width: 1px;
  border-style: solid;
  color: #333333;
  font-family: principal;
  font-size: 16px;
  border-radius: 2px;
  border-color: #4E4E4E;
  background-color: #D8D8D8;
  border-radius: 50px;
  width: 100%;
  padding: 12px 12px;
  margin-bottom: 10px;
}

input:disabled,
select:disabled,
textarea:disabled {
  opacity: .2;
  background-color: #EEEEEE;
}

input[type="password"] {
  padding-right: 40px;
}

textarea {
  height: 142px;
}

select {
  -webkit-appearance: none;
  background-image: url(/img/icos/chevron-down.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 97%;
}

::-webkit-input-placeholder {
  color: #4E4E4E;
}

:-ms-input-placeholder {
  color: #4E4E4E;
}

::-ms-input-placeholder {
  color: #4E4E4E;
}

::placeholder {
  color: #4E4E4E;
}

input[type="checkbox"],
input[type="radio"],
input[type="checkbox"] + label,
input[type="radio"] + label {
  width: initial;
  display: inline-block;
}

input[name="bonusCode"] {
  width: 25ch;
}

/*CUSTOM CHECKBOX AND RADIO BUTTONS*/
input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  position: relative;
  cursor: pointer;
  margin-right: 5px;
}

input[type="checkbox"] + label::before,
input[type="radio"] + label::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: sub;
  margin-right: 5px;
  background-color: #FFFFFF;
  border-color: #4E4E4E;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
}

input[type="checkbox"]:checked + label::before {
  background-color: #30E17B;
}

input[type="checkbox"]:checked + label::after {
  content: url(/img/icos/check-white.svg);
  position: absolute;
  top: 0;
  left: 0;
}

input[type="radio"] + label::before {
  border-radius: 50%;
}

input[type="radio"]:checked + label::before {
  background-color: #30E17B;
  border-color: #4E4E4E;
}

input:not([class="toggle"]):not([id="gender1"])[type="radio"]:checked + label::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000103;
  position: absolute;
  top: 6px;
  left: 6px;
}

/*CUSTOM TOOGLE RADIO BUTTONS*/
.box-toggle {
  display: inline-table;
}

input.toggle + label, input#gender1 + label {
  padding: 15px 15px 14px 15px;
  margin-right: 0;
  display: inline-block;
  min-width: 50%;
  text-align: center;
}

input.toggle + label::before, input#gender1 + label::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  border-width: 1px;
  border-style: solid;
  border-color: #4E4E4E;
  border-radius: 0;
  background-color: #D8D8D8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

input.toggle + label > span, input#gender1 + label > span {
  color: #333333;
  font-size: 1.2em;
  position: relative;
  z-index: 10;
}

input.toggle:first-of-type + label::before, input#gender1:first-of-type + label::before {
  border-radius: 50px 0 0 50px !important;
}

input.toggle:last-of-type + label::before {
  border-radius: 0 50px 50px 0 !important;
}

input.toggle:checked + label, input#gender1:checked + label {
  color: #FFFFFF;
}

input.toggle:checked + label span, input#gender1:checked + label span {
  font-family: principal;
  color: #FFFFFF;
  text-shadow: 0 0 4px #FFFFFF;
}

input.toggle:checked + label::before, input#gender1:checked + label::before {
  background-color: #30E17B;
}

.ojo {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 23px;
  position: absolute;
  top: 22px;
  right: 6px;
}

.ojo-visible {
  background-image: url(/img/icos/eye.svg);
}

.ojo-invisible {
  background-image: url(/img/icos/eye-off.svg);
}

.consejo {
  position: absolute;
  top: 0;
  left: -100%;
  background-color: #000103;
  border: 1px solid #000103;
  border-radius: 10px;
  width: 320px;
  font-size: 0.74em;
  line-height: 1.3em;
  z-index: 500;
}

@media (max-width: 768px) {
  .consejo {
    left: 0;
  }
}

.validation-info, .validation-error, .error {
  color: #333333;
  width: 100%;
  line-height: 1.3em;
  font-size: 0.74em;
  padding: 10px 20px;
  border-radius: 36px;
  top: -5px;
}

#phoneInput-div .validation-info, #phoneInput-div .validation-error, #phoneInput-div .error {
  top: 5px !important;
}

.validation-info {
  background-color: #30E17B;
}

.validation-error {
  background-color: #FFD97E;
}

.error {
  background-color: #FFD97E;
}

label + .validation-info,
label + .validation-error,
label + .error {
  top: 0px;
}

/*FORMS WITH DARK BACKGROUNDS*/
.dark-bg input,
.dark-bg select,
.dark-bg textarea {
  color: #FFFFFF;
  border-color: #FFFFFF;
  background-color: transparent;
}

.dark-bg input[type="button"] {
  border-color: none;
  cursor: pointer;
}

.dark-bg select {
  background-image: url(/img/icos/chevron-down-white.svg);
}

.dark-bg ::-webkit-input-placeholder {
  color: #FFFFFF;
}

.dark-bg :-ms-input-placeholder {
  color: #FFFFFF;
}

.dark-bg ::-ms-input-placeholder {
  color: #FFFFFF;
}

.dark-bg ::placeholder {
  color: #FFFFFF;
}

.dark-bg input[type="checkbox"] + label::before {
  border-width: 1px;
  border-style: solid;
  background-color: transparent;
  border-color: #FFFFFF;
}

.dark-bg input[type="checkbox"]:checked + label::before {
  background-color: #D8D8D8;
  border-color: #FFFFFF;
}

.dark-bg input[type="radio"] + label::before {
  background-color: transparent;
  border-color: #FFFFFF;
}

.dark-bg input[type="radio"]:checked + label::before {
  background-color: #30E17B;
  border-color: #FFFFFF;
}

.dark-bg input[type="radio"]:checked + label::after {
  background-color: #D8D8D8;
}

.dark-bg input.toggle + label > span, .dark-bg input#gender1 + label > span {
  color: #FFFFFF;
}

.dark-bg input.toggle + label::before, .dark-bg input#gender1 + label::before {
  border-color: #FFFFFF;
  background-color: transparent;
}

.dark-bg input.toggle:checked + label::before, .dark-bg input#gender1:checked + label::before {
  background-color: #D8D8D8;
}

.dark-bg .ojo-visible {
  background-image: url(/img/icos/eye-white.svg);
}

.dark-bg .ojo-invisible {
  background-image: url(/img/icos/eye-off-white.svg);
}

/* SELECT TELÉFONO CON BANDERAS LIBRERIA intlTelInput.js*/
.iti {
  position: relative;
  z-index: 20;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input, .iti input[type=text], .iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #1d1d1d;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #1d1d1d;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  -webkit-box-shadow: 1px 1px 4px rgba(0, 1, 3, 0.2);
          box-shadow: 1px 1px 4px rgba(0, 1, 3, 0.2);
  background-color: #000103;
  border: 1px solid #1d1d1d;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}

@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}

.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid;
}

.iti__country {
  padding: 5px 10px;
  outline: none;
}

.iti__dial-code {
  color: #333333;
}

.iti__country.iti__highlight {
  background-color: rgba(51, 51, 51, 0.05);
}

.iti__flag-box, .iti__country-name, .iti__dial-code {
  vertical-align: middle;
}

.iti__flag-box, .iti__country-name {
  margin-right: 6px;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(51, 51, 51, 0.05);
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(51, 51, 51, 0.05);
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}

.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }
}

.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}

.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0px;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0px;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0px;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0px;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0px;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0px;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0px;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0px;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0px;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0px;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0px;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0px;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0px;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0px;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0px;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0px;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0px;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0px;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0px;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0px;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0px;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0px;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0px;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0px;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0px;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0px;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0px;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0px;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0px;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0px;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0px;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0px;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0px;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0px;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0px;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0px;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0px;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0px;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0px;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0px;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0px;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0px;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0px;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0px;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0px;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0px;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0px;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0px;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0px;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0px;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0px;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0px;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0px;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0px;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0px;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0px;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0px;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0px;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0px;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0px;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0px;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0px;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0px;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0px;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0px;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0px;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0px;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0px;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0px;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0px;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0px;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0px;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0px;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0px;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0px;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0px;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0px;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0px;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0px;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0px;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0px;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0px;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0px;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0px;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0px;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0px;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0px;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0px;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0px;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0px;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0px;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0px;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0px;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0px;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0px;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0px;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0px;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0px;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0px;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0px;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0px;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0px;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0px;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0px;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0px;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0px;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0px;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0px;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0px;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0px;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0px;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0px;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0px;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0px;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0px;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0px;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0px;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0px;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0px;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0px;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0px;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0px;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0px;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0px;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0px;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0px;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0px;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0px;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0px;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0px;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0px;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0px;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0px;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0px;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0px;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0px;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0px;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0px;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0px;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0px;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0px;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0px;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0px;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0px;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0px;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0px;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0px;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0px;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0px;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0px;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0px;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0px;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0px;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0px;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0px;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0px;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0px;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0px;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0px;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0px;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0px;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0px;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0px;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0px;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0px;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0px;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0px;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0px;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0px;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0px;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0px;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0px;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0px;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0px;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0px;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0px;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0px;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0px;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0px;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0px;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0px;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0px;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0px;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0px;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0px;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0px;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0px;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0px;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0px;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0px;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0px;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0px;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0px;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0px;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0px;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0px;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0px;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0px;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0px;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0px;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0px;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0px;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0px;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0px;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0px;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0px;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0px;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0px;
}

.iti__flag {
  height: 15px;
  -webkit-box-shadow: 0px 0px 1px 0px #1d1d1d;
          box-shadow: 0px 0px 1px 0px #1d1d1d;
  background-image: url("/img/layout/flags.png");
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: 20px 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("/img/layout/flags@2x.png");
  }
}

.iti__flag.iti__np {
  background-color: transparent;
}

/* FIN SELECT TELÉFONO CON BANDERAS */
.table__block {
  overflow-x: auto;
}

table {
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

thead tr {
  background-color: #000103;
  color: #FDFDFD;
  height: 40px;
}

th,
td {
  padding: 5px 5px;
  text-align: center;
}

td, td a {
  color: #333333;
}

tbody tr {
  height: 40px;
}

tbody tr:nth-child(even) {
  background-color: #000103;
}

tbody tr:nth-child(even) td {
  color: #fff;
}

tbody tr:nth-child(odd) {
  background-color: #EEEEEE;
}

/*TABLES WITH DARK BACKGROUNDS*/
.dark-bg table {
  border-color: transparent;
  color: #333333;
}

.dark-bg thead tr {
  background-color: #000103;
  color: #FDFDFD;
}

.alert--error, .alert--warning, .alert--success, .alert--info {
  color: #333333;
  padding: 26px;
  border-radius: 10px;
  font-size: 0.74em;
  line-height: 1.3em;
  margin: 20px auto;
  position: relative;
}

.alert--error::before, .alert--warning::before, .alert--success::before, .alert--info::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 35px;
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: -17px;
  left: -10px;
  border-radius: 50%;
}

.alert--error {
  background-color: #FFD97E;
}

.alert--error::before {
  background-color: #FFD97E;
  background-image: url("/img/icos/x-octagon.svg");
}

.alert--warning {
  background-color: #FFD97E;
}

.alert--warning::before {
  background-color: #FFD97E;
  background-image: url("/img/icos/alert-triangle.svg");
}

.alert--success {
  background-color: #CECF86;
}

.alert--success::before {
  background-color: #CECF86;
  background-image: url("/img/icos/check-white.svg");
}

.alert--info {
  background-color: #30E17B;
}

.alert--info::before {
  background-color: #30E17B;
  background-image: url("/img/icos/help-circle.svg");
}

.reveal-modal > div {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 1, 3, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: auto;
}

@media (max-width: 768px) {
  .reveal-modal > div {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.reveal-modal > div > div {
  background-color: #171717;
  color: #D8D8D8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 768px;
  min-width: 320px;
  -webkit-box-shadow: 20px 30px 15px rgba(0, 1, 3, 0.6);
          box-shadow: 20px 30px 15px rgba(0, 1, 3, 0.6);
  overflow: hidden;
  border: 1px solid #D8D8D8;
  overflow-y: auto;
  max-height: 95vh;
}

@media (max-width: 768px) {
  .reveal-modal > div > div {
    width: 100%;
    min-height: 100vh;
    border-radius: inherit;
  }
}

.reveal-modal h3 {
  background-color: #30E17B;
  padding: 10px 20px;
  text-align: center;
  color: #000103;
}

.reveal-modal .ico--cierre {
  position: absolute;
  top: 48px;
  right: 0px;
  z-index: 250;
}

.depositAmount {
  font-size: 2.5em;
  display: block;
  font-family: principal;
  margin: 30px 0;
}

#lastSlotSessionInfo {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.info--slotSession {
  background-color: #000103;
  font-size: 0.74em;
}

.alert--slotSession {
  background-color: #000103;
  border: 1px solid #000103;
  border-radius: 10px;
  padding: 20px;
}

@media (min-width: 1390px) {
  .slotsSession__form {
    width: 50%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.gameIframe {
  background-color: #1d1d1d;
  height: calc(100vh - 120px);
  position: relative;
  width: 100% !important;
}

.gameIframe body {
  margin: 0;
  overflow: hidden;
}

.gameIframe iframe {
  height: 100%;
  position: relative;
  width: 100%;
}

#iframeGame {
  height: calc(100vh - 28px);
  position: absolute;
  top: 28px;
  width: 100%;
}

.membersarea {
  padding: 50px 0;
}

@media screen and (max-width: 1240px) {
  .membersarea {
    padding: 0 0 50px 0;
  }
}

.membersarea__menu {
  position: relative;
  z-index: 5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background-color: #30E17B;
  border-radius: 36px;
}

@media (max-width: 1240px) {
  .membersarea__menu {
    display: none;
    /*display: flex;
			white-space: nowrap;
			flex-wrap: nowrap;
			width: calc(100% - 20px);
			overflow-x: auto;
			margin: 10px;
			justify-content: start;
			-webkit-box-pack: start;
			border: 1px solid #30e17b;*/
  }
}

.membersarea__menu a {
  text-decoration: none;
  padding: 8px 20px;
  display: inline-block;
  font-family: secondary;
  color: #000103;
}

.membersarea__menu a:hover {
  background-color: #000103;
}

.member-box {
  padding: 10px;
  border-radius: 10px;
  margin-top: 20px;
}

.member-box p:last-of-type {
  font-size: 0.74em;
}

.member-box p:last-of-type strong {
  font-size: 16px;
}

section.history h2 {
  display: inline-block;
}

.security > div:first-child {
  margin-right: 85px;
}

@media (max-width: 768px) {
  .security > div:first-child {
    margin-right: inherit;
  }
}

.bonoProgress {
  background-color: #30E17B;
  color: #FFFFFF;
  margin: 15px 0;
}

.bonoProgress div {
  z-index: 10;
}

.bonoProgress > span:first-child {
  content: "";
  background-color: #30E17B;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: width 1.5s ease-in;
  transition: width 1.5s ease-in;
}

.cashBonus > div,
.cashPayout > div {
  margin-bottom: 20px;
  white-space: nowrap;
}

.cashBonus div div:first-child,
.cashPayout div div:first-child {
  color: #30E17B;
  padding: 2px;
  border-radius: 10px;
  text-align: center;
  min-width: 320px;
}

.cashBonus div span,
.cashPayout div span {
  display: block;
  margin: 5px 0;
}

.cashPayout div div:first-child {
  min-width: 170px;
}

.cashPayout div:last-child div:first-child {
  background-color: #30E17B;
}

.bonusModal {
  width: 100%;
  height: 100%;
  background-color: #000103;
  border-radius: 10px;
  padding: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}

.bonusModal button {
  position: absolute;
  top: 10px;
  right: 10px;
}

.deposit-metod {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFFFFF;
  border: 2px solid #D8D8D8;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px auto;
  padding: 15px;
  width: 90%;
}

.deposit-metod:hover {
  -webkit-box-shadow: 0 0 6px #D8D8D8;
          box-shadow: 0 0 6px #D8D8D8;
}

.deposit-metod img {
  height: 80px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.deposit-metod:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.deposit-metod p {
  font-size: .8em;
}

/* Deposit Limits Circle Progress*/
.box-porcentaje {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.box-porcentaje > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.box-porcentaje svg {
  position: relative;
  width: 250px;
  height: 250px;
  text-align: center;
  --porcentaje: 0;
  --perimetro: calc(2*3.1416*90);
}

.box-porcentaje svg circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #30E17B;
  stroke-width: 25px;
  stroke-dasharray: var(--perimetro);
  stroke-dashoffset: calc(var(--perimetro) - var(--perimetro) * var(--porcentaje) / 100);
  -webkit-transform: rotateY(180deg) rotateZ(-90deg);
          transform: rotateY(180deg) rotateZ(-90deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: stroke-dashoffset .8s ease-in;
  transition: stroke-dashoffset .8s ease-in;
}

input.memberLimit {
  background-color: transparent;
  font-family: principal;
  color: #333333;
  font-size: 1.8em;
  text-align: right;
  width: 210px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-width: 2px;
  padding: 0;
}

/* Deposit Limits Circle Progress END*/
footer {
  margin-top: 50px;
}

footer > div:nth-child(2) > div,
footer > div:nth-child(3) {
  width: 100%;
}

.footer__column {
  min-width: 120px;
}

@media (max-width: 768px) {
  .footer__column {
    width: 100%;
    min-width: inherit;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
  }
}

.footer__column.green-column, .footer__column.green-column nav a {
  color: #30E17B !important;
}

.paymentgateways img {
  height: 70px;
  margin: 0 10px;
}

@media (max-width: 1240px) {
  .paymentgateways img {
    height: 52px;
  }
}

.logos-juegoSeguro img {
  height: 39px;
  margin: 10px;
}

@media (max-width: 1240px) {
  .logos-juegoSeguro img {
    height: 34px;
  }
}

.copyright {
  font-size: 0.74em;
  line-height: 1.3em;
}

.powered-by {
  max-width: 120px;
  position: relative;
}

@media (max-width: 1240px) {
  .powered-by {
    margin: 0 auto;
  }
}

.powered-by::after {
  content: "Powered by:";
  position: absolute;
  font-size: 10px;
  color: #333333;
  top: -3px;
  right: -10px;
}

.promotionBanner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
  max-height: 400px;
  padding: 10px;
  position: relative;
  width: 100%;
}

.promotionBanner > div {
  width: 80%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

.lobbyPromotions {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

@media (max-width: 768px) {
  .lobbyPromotions {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 590px) {
  .lobbyPromotions {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

.lobbyPromotions .lobbyPromotions__box {
  background-color: #303030;
  border: 2px solid #30E17B;
  border-radius: 36px;
  overflow: hidden;
}

.lobbyPromotions .lobbyPromotions__box p {
  font-size: .9em;
  line-height: 1.3;
  margin: 10px 0;
}
.info-icon:hover{
    filter: invert(42%) sepia(56%) saturate(559%) hue-rotate(92deg) brightness(93%) contrast(90%);
    
}