:root {
    --smaller-font: 0.7rem;
    --small-font: 0.87rem;
    --normal-font: 1rem;
    --medium-font: 1.1rem;
    --large-font: 1.7rem;
    --x-large-font: 2rem;
    --bg-color: #1a0826;
    --text-first: #fafafa;
    --text-second: #0a0a0a;
    
    --first-color: #2d0a4e;
    --second-color: #6a1b9a;
    --third-color: #4a1d7a;
    --fourth-color: #6a1b9a;
    --fifth-color: #ffd700;
    --g1: #6a1b9a;
    --g2: #ffd700;
 }

.bg-gradient-game{background: linear-gradient(to bottom, var(--first-color), var(--third-color), var(--first-color));}

.btn {
  border-radius: 12px !important;
}

.my-2 {
  background: linear-gradient(135deg, #2d0a4e, #4a1d7a);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 12px;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-luna88{
    background: linear-gradient(0deg, #2d0a4e 0%, #ffd700 100%) !important;
  box-shadow: inset 0 -2px 0 #6a1b9a !important;
  border: 1px #ffd700 solid !important;
  color: #ffffff !important;
      animation-name: fadeIn;
    animation-iteration-count: infinite;
    animation-duration: 3s;
}

@keyframes mymove {
      from {background: linear-gradient(270deg, rgba(201,138,0,1) 0%, rgba(253,243,35,1) 21%, rgba(253,243,35,1) 33%, rgba(211,158,7,1) 44%, rgba(215,166,9,1) 60%, rgba(252,241,34,1) 73%, rgba(255,247,36,1) 85%, rgba(201,138,0,1) 100%);}
      to {background : #fff;}
    }

@keyframes change-color {
 0%{ color:white; }
 50% { color:white; }
 100%{ color:black; }
}

@keyframes bubleanim {
    0% { transform: translateY(100vh) scale(0); }
    100% { transform: translateY(-10vh) scale(1); }
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s
}

@-webkit-keyframes tada {
    0% { -webkit-transform: scaleX(1); transform: scaleX(1) }
    10%, 20% { -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg); transform: scale3d(.9, .9, .9) rotate(-3deg) }
    30%, 50%, 70%, 90% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); transform: scale3d(1.1, 1.1, 1.1) rotate(3deg) }
    40%, 60%, 80% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg) }
    to { -webkit-transform: scaleX(1); transform: scaleX(1) }
}

@keyframes tada {
    0% { -webkit-transform: scaleX(1); transform: scaleX(1) }
    10%, 20% { -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg); transform: scale3d(.9, .9, .9) rotate(-3deg) }
    30%, 50%, 70%, 90% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); transform: scale3d(1.1, 1.1, 1.1) rotate(3deg) }
    40%, 60%, 80% { -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg) }
    to { -webkit-transform: scaleX(1); transform: scaleX(1) }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes heartBeat {
    0% { -webkit-transform: scale(1); transform: scale(1) }
    14% { -webkit-transform: scale(1.3); transform: scale(1.3) }
    28% {-webkit-transform: scale(1); transform: scale(1) }
    42% { -webkit-transform: scale(1.3); transform: scale(1.3) }
    70% { -webkit-transform: scale(1); transform: scale(1) }
}

@keyframes heartBeat {
    0% { -webkit-transform: scale(1); transform: scale(1) }
    14% { -webkit-transform: scale(1.3); transform: scale(1.3) }
    28% { -webkit-transform: scale(1); transform: scale(1) }
    42% { -webkit-transform: scale(1.3); transform: scale(1.3) }
    70% { -webkit-transform: scale(1); transform: scale(1) }
}

.heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes fadeIn {
    0% { opacity: 0 }
    to { opacity: 1 }
}

@keyframes fadeIn {
    0% { opacity: 0 }
    to { opacity: 1 }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInTop {
    0% { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0) }
    to { opacity: 1; -webkit-transform: translateZ(0); transform: translateZ(0) }
}

@keyframes fadeInTop {
    0% { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0) }
    to { opacity: 1; -webkit-transform: translateZ(0); transform: translateZ(0) }
}

.fadeInTop {
    -webkit-animation-name: fadeInTop;
    animation-name: fadeInTop
}

@-webkit-keyframes fadeInBottom {
    0% { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0) }
    to { opacity: 1; -webkit-transform: translateZ(0); transform: translateZ(0) }
}

@keyframes fadeInBottom {
    0% { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0) }
    to { opacity: 1; -webkit-transform: translateZ(0); transform: translateZ(0) }
}

.fadeInBottom {
    -webkit-animation-name: fadeInBottom;
    animation-name: fadeInBottom
}

@-webkit-keyframes fadeInLeft {
    0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0) }
    to { opacity: 1; -webkit-transform: translateZ(0); transform: translateZ(0) }
}

@keyframes fadeInLeft {
    0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0) }
    to { opacity: 1; -webkit-transform: translateZ(0); transform: translateZ(0) }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInRight {
    0% { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0) }
    to { opacity: 1; -webkit-transform: translateZ(0); transform: translateZ(0) }
}

@keyframes fadeInRight {
    0% { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0) }
    to { opacity: 1; -webkit-transform: translateZ(0); transform: translateZ(0) }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 12px;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

body {
    background: var(--bg-color);
    color: var(--text-first);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}

.logo img {
 width: 10rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.9rem;
  margin-bottom: 1rem;
  height: 120px;
}

.rtp-card {
    background: radial-gradient(circle at center, var(--first-color), var(--third-color), var(--first-color));
    padding: 0.7rem;
    text-align: center;
    width: 24rem;
    max-width: 100%;
    height: 100%;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 0.7rem;
    position: relative;
    z-index: 1;
    border-radius: 12px;
}

.rtp-card-img {
    max-width: 100%;
    width: 29rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    border-radius: 12px;
}

.place-img-rtp {
    width: 100%;
    padding: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-items: center;
    border-radius: 12px;
    box-shadow: 1px 0px 4px 2px #131313 inset;
}

.place-img-rtp:hover {
    cursor: pointer;
}

.btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    border: none;
    border-radius: 5px;
    padding: 0.3rem;
    width: 12rem;
    font-size: 0.6rem;
    font-weight: bold;
    text-transform: capitalize;
    max-width: 70%;
    border: 2px solid var(--first-color);
    background: linear-gradient(0deg, var(--g1) 0%, var(--g2) 100%);
    color: var(--text-second);
    border-radius: 12px;
}

.btn-play:hover {
    background: linear-gradient(0deg, var(--g2) 0%, var(--g1) 100%);
}

.pola-wrapper {
    background: var(--text-second);
    padding: 0.9rem;
    width: 14rem;
    max-width: 100%;
    border-radius: 5px;
    position: relative;
}

.pola-wrapper h4 {
    font-size: 0.9rem;
}

.pola-wrapper h5 {
    font-size: 0.7rem;
}

.pola-wrapper h4 i, .pola-wrapper h5 i {
    color: #ffd700;
}

.jam-wrapper {
    background: #131313;
    border-radius: 50%;
    padding: 0.6rem;
}

.table-pola {
    max-width: 100%;
    width: 9rem;
}

.table-pola tr td {
    text-align: center;
    font-size: 0.7rem;
}

.top-game, .hot-game {
    background-repeat: no-repeat !important;
    position: absolute;
    width: 3rem;
    top: 0rem;
    z-index: 2;
    height: 2.9rem;
    left: 0.4rem;
}

.top-game {
    background: url('../images/top.gif');
}

.hot-game {
    background: url('../images/hot.gif');
}

.icon-providers {
    position: absolute;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 2rem;
    top: 0.5rem;
    right: 0.5rem;
    border-radius: 12px;
}

.icon-providers img {
    width: 1.7rem;
}

.slider, .swiper {
    width: 50rem;
    max-width: 100%;
    border-radius: 12px;
}

.slider {
    padding: 1rem;
    border-radius: 12px;
}

.slider-img {
    width: 40rem;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
}

.slider-wrapper {
    background: linear-gradient(0deg, var(--text-second) 0%, var(--text-second) 100%);
    height: 100%;
    border-bottom: 1px dashed #ffd700;
    border-radius: 12px;
}

.running-text {
    background: linear-gradient(120deg, #4a1d7a 0%, #6a1b9a 100%);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
    color: #ffd700;
    padding: 0.1rem;
    border-radius: 7px;
    border: 3px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
    font-family: 'Poppins', sans-serif !important;
}

.icon-prov {
    background: linear-gradient(90deg, #1f0a35, #4a1d7a);
    display: flex;
    justify-content: center;
    position: relative;
    overflow: auto !important;
    border-radius: 12px;
    border: 3px solid #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.icon-card-bg {
    cursor: pointer;
    padding: 0.1rem !important;
    color: var(--text-second);
    border-radius: 12px;
}

.icon-card-bg p {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    border-radius: 12px;
}

.icon-prov {
  scroll-padding-left: 1rem;
  padding-left: 1rem;
  scroll-snap-type: x mandatory;
  border-radius: 12px;
}

.item-prov {
  scroll-snap-align: start;
  border-radius: 12px;
}

.btn-credit {
    background: linear-gradient(135deg, #2d0a4e 0%, #6a1b9a 50%, #ffd700 100%);
    padding: 0.6rem;
    color: var(--text-first);
    border: none;
    font-weight: bold;
    border-right: 1px solid var(--first-color);
    border-radius: 12px;
    border: 3px solid #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.btn-credit:hover {
    background: linear-gradient(0deg, var(--first-color) 0%, var(--g2) 100%);
}

.nav-bottom {
    position: fixed;
    bottom: 0;
    display: flex;
    z-index: 11;
    overflow: hidden;
    width: 100%;
    border-radius: 17px;
}

.item-nav-bottom {
    background: linear-gradient(to bottom, #0d0517, #2d0a4e, #4a1d7a);
    color: var(--text-first);
    font-weight: bold;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.8rem;
}

.item-nav-bottom:hover {
    background: linear-gradient(to bottom, #ffd700, #6a1b9a, #2d0a4e);
    cursor: pointer;
}

.item-nav-bottom p {
    margin: 0;
    padding: 0;
    margin-bottom: 0;
}

.btn-up {
  display: none;
  position: fixed;
  bottom: 3.8rem;
  right: 0;
  z-index: 99;
  font-size: 0.9rem;
}

/* Percentage */
.percent{
    height: 19px;
    margin-top: 10px !important;
    display: flex;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.percent p{
    z-index: 15;    
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 13px;
    top: -15px;
    font-weight: bold;
    transform: translateY(14px);
    color: black;
}

.percent-bar{
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    transition: width .6s ease;
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
    z-index: 10;
}

.good{
    background-color: #ffc107;
}

.great{
    background-color: #28a745;
}

.bad{
    background-color: #dc3545;
}

.content-home {
    padding: 1rem;
    margin-bottom: 4rem;
    background: var(--text-first);
    color: var(--text-second);
}

/* Container */
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1100px !important;
    }
}