/* don't delete this because is a root function of BEM methodology */

/* for sample */

/* BEM Methodology sample */

.Block {
  color: green;
  /* this is the modifier of the block because the modifier is outside the element and inside the  block */
}

.Block__element {
  color: red;
  /* if you want to make a modifier inside an element you can nested the modifier class */
}

.Block__element--modifier-of-element {
  color: green;
}

.Block--modifier {
  color: blue;
}


html,body {
  padding: 0;
  margin: 0;
}
body {
  background-image: url(../../../general/img/rtp/background.webp);
  background-color: #1b1b1b;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

/* HEADER */
.header-logo {
  padding: 20px;
}
.header-logo__container {
  display: flex;
  justify-content: center;
}
.header-logo__link {
  display: block;
  width: 150px;
}
.header-logo__img {
  width: 150%;
}
/* Banner */
.banner-main {}
.banner-main__container {
  position: relative;
  padding-left: 10px;
}
.banner-main__img {
  width: 98.6%;
}
.banner-main__btn {
  position: absolute;
  bottom: 30px;
  right: 30px;

  display: flex;
  flex-wrap: wrap;
}
.banner-main__btn-content {
  padding: 10px 25px;
  font-weight: bold;
  text-transform: uppercase;
}
.banner-main__btn-content--login {
  color: #FFf;
  background: linear-gradient(180deg, rgba(138,179,58,1) 0%, #6c8b2d 100%);
  margin-right: 10px;
}
.banner-main__btn-content--login:hover {
  color: #FFf;
  background: linear-gradient(180deg, #6c8b2d 0%, rgba(138,179,58,1) 100%);
}
.banner-main__btn-content--register {
  color: #FFf;
  background: linear-gradient(180deg, rgba(70,143,193,1) 0%, #3c7ba3 100%);
}
.banner-main__btn-content--register:hover {
  color: #FFf;
  background: linear-gradient(180deg, #3c7ba3 0%, rgba(70,143,193,1)  100%);
}

.banner-secondary {
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.banner-secondary__container {
  position: relative;
}
.banner-secondary__container--p {
  padding-top: 10px;
}
.banner-secondary__wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.banner-secondary__img {
  width: 100%;
}

/* PER-BOX */
.percentage-box {
  display: flex;
  flex-wrap: wrap;
}
/* BAR */

@-webkit-keyframes progress-bar-stripes {
from {
  background-position: 40px 0;
}
to {
  background-position: 0 0;
}
}
@keyframes progress-bar-stripes {
from {
  background-position: 40px 0;
}
to {
  background-position: 0 0;
}
}
.percentage-box__bar {
-webkit-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite;
}

.percentage-box__bar {
background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 40px 40px;
}

.progress-bar-secondary {
background-color: #323a45;
}

.progress-bar-default {
background-color: #B0BEC5;
}

.progress-bar-success {
background-color: #4a9f31;
}

.progress-bar-warning {
background-color: #8d802c;
}

.progress-bar-danger {
background-color: #96231a;
}

/* Percentage Box */
@keyframes slideInFromLeft {
0% {
  transform: translateX(-100%);
}
100% {
  transform: translateX(0);
}
}
.game-box__btn-overlay {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.5s all ease;
}

.game-box__btn-overlay--maintenance {
  opacity: 1;
}
.game-box__item:hover .game-box__btn-overlay {
  opacity: 1;
}
.percentage-box__item {
  width: 25%;
  padding: 10px;
}
.percentage-box__item-content {
}
.percentage-box__item-wrapper {
  height: 100%;
  background: #212121;
  border: 2px solid rgb(0 103 171);;
  border-radius: 10px;
  overflow: hidden;
}
.percentage-box__item-img {
  width: 100%;
  padding: 5px;
}
.percentage-box__item-img-content {
  width: 100%;
  max-height : 150px;
}
.percentage-box__item-desc {
  width: 100%;
  color: #fff;

  font-weight: bold;
  text-align: center;
}
.percentage-box__item-desc-title { font-size: 20px;padding: 10px; }
.percentage-box__item-desc-time { font-size: 16px;padding: 10px;background: #d3e34b; }
.percentage-box__item-desc-pattern { font-size: 15px;padding: 5px; }

.percentage-box__item-link {
  text-transform: uppercase;
  width: 100%;
  display: block;
  color: #FFf;
  background: linear-gradient(180deg, #93c03e 0%, #62862b 100%);
  border-radius: 0;
  height: 50px;
  font-size: 20px;
  font-weight: bold;
}
.percentage-box__item-link:hover {
  color: #FFf;
  background: linear-gradient(180deg, #62862b 0%, #93c03e 100%);
}
.percentage-box__item-bar {
  background: #353535;
  color: #fff;
  font-weight: bold;
  border: 1px solid #353535;
  border-radius: 0 0 7px 7px;
  overflow: hidden;
  position: relative;
  width: 100% !important;
}
.percentage-box__bar {
  text-align: center;
  padding: 15px;

  animation: 1s ease-out 0s 1 slideInFromLeft;
}
.percentage-box__bar-text {
  color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;

  text-align: center;
}

/* SwIPER */
.slider-wrapper {
  padding-top: 25px;
  padding-bottom: 25px;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next{
  top: 40% !important;
}
.slider-wrapper__inside {
  position: relative;
}
.swiper-provider {
  width: 100%;
  height: 98%;
  position: unset!important;
  border-radius: 5px;
}
.swiper-provider__slide {
  text-align: center;
  font-size: 18px;
  height: unset!important;
}
.swiper-provider__slide-wrapper {
  height: 100%;
}
.swiper-provider__slide-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 75%;
  position: relative;
  padding: 20px 10px;
  border-radius: 5px;
  background: rgb(0,57,94);
}
.swiper-provider__slide-link.active {
  background: rgb(0 103 171);
}
.swiper-provider__slide-img {
  display: block;
  width: 75%;
  /* max-height: 30px; */
}
.swiper-provider__slide-img-icon {
  position: absolute;
  top: 5px;
  right: 6px;

  display: block;
  width: 12px;
  height: 19px;
}
.swiper-provider__button-prev:after,.swiper-provider__button-next:after {
  display: none;
}
.swiper-provider__button-prev,.swiper-provider__button-next {
  color: #ffffff!important;
  font-size: 24px;
}
.swiper-provider__button-prev {
  left: -15px!important;
}
.swiper-provider__button-next {
  right: -15px!important;
}
.footer-rtp{
  color: white;
}

