* {
  font-family: sans-serif;
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(rgba(20, 20, 20, 0.7), rgba(0, 0, 0, 0.7)),
    url(../../img/background/bg-slotwin138.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-color: black;
}

.btn-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.img {
  vertical-align: middle;
  border-style: none;
}

/* Register & Login */
.link-container {
  display: flex;
  justify-content: center;
  font-size: var(--x-large-font);
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
}

.link-container a {
  width: 50%;
  text-align: center;
  padding: 15px 20px;
  text-transform: uppercase;
}

.login-button,
.register-button {
  color: #000;
  font-family: system-ui;
}

.register-button {
  background: #000f;
  background: linear-gradient(to bottom, #ff1100, #c85b5b);
  font-size: 14px;
  font-weight: 700;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  overflow: hidden;
  color: #000;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.5),
    0 2px 2px rgba(0, 0, 0, 0.3), 0 2px 4px 1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.5),
    0 2px 2px rgba(0, 0, 0, 0.3), 0 2px 4px 1px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-family: Convergence, sans-serif;
}

.register-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ad8585;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.register-button:hover {
  box-shadow: 0 0 5px 3px #fff;
}

.register-button:hover::before {
  opacity: 0.2;
}

.register-button span {
  position: absolute;
}

.register-button span:nth-child(1) {
  top: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(43, 8, 8, 0)),
    to(#0f0)
  );
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #fff);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.register-button span:nth-child(2) {
  top: 0;
  right: 0;
  height: 100%;
  width: 3px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(43, 8, 8, 0)),
    to(#0f0)
  );
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #fff);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.register-button span:nth-child(3) {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(43, 8, 8, 0)),
    to(#0f0)
  );
  background: linear-gradient(to right, rgba(43, 8, 8, 0), #fff);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.register-button span:nth-child(4) {
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(43, 8, 8, 0)),
    to(#0f0)
  );
  background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #fff);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.login-button {
  background: #000f;
  background: linear-gradient(to bottom, #3647e2 0, #667acc 100%);
  font-weight: 700;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  overflow: hidden;
  color: #000;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.5),
    0 2px 2px rgba(0, 0, 0, 0.3), 0 2px 4px 1px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.5),
    0 2px 2px rgba(0, 0, 0, 0.3), 0 2px 4px 1px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-family: Convergence, sans-serif;
}

.login-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ad8585;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}

.login-button:hover {
  box-shadow: 0 0 5px 3px #fff;
}

.login-button:hover::before {
  opacity: 0.2;
}

.login-button span {
  position: absolute;
}

.login-button span:nth-child(1) {
  top: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(43, 8, 8, 0)),
    to(#0f0)
  );
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #fff);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.login-button span:nth-child(2) {
  top: 0;
  right: 0;
  height: 100%;
  width: 3px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(43, 8, 8, 0)),
    to(#0f0)
  );
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #fff);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.login-button span:nth-child(3) {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(43, 8, 8, 0)),
    to(#0f0)
  );
  background: linear-gradient(to right, rgba(43, 8, 8, 0), #fff);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.login-button span:nth-child(4) {
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(43, 8, 8, 0)),
    to(#0f0)
  );
  background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #fff);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
/* Register & Login */

.api_name {
  margin-top: -5px;
}

h1,
h2,
h3 {
  text-align: center;
  color: #fff;
}

.container h3 {
  margin: 20px 0;
}

.contain p,
ul,
li,
ol {
  text-align: justify;
  color: #fff;
}

.contain a {
  font-weight: 600;
  color: rgb(12, 157, 241);
}

a:hover {
  text-decoration: none;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.adv {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

img {
  vertical-align: middle;
  border-style: none;
}

.title {
  display: flex;
  justify-content: center;
}

.title-text {
  color: white;
  font-size: 16px;
}

.slot {
  display: block;
}

.slot .slot-sidebar {
  float: left;
  width: 20%;
  flex: 0 0 20%;
  max-width: 20%;
  padding-right: 0;
  padding-left: 0;
  margin-top: 5px;
  background: linear-gradient(
    #144f93 0%,
    #153d6c 46%,
    #0c4475 50%,
    #112f53 55%,
    #0d395b 100%
  );
}

.slot-sidebar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.slot-sidebar-nav > li {
  border-bottom: 1px solid #0b2735;
  width: 100%;
  position: relative;
  display: block;
}

.slot-sidebar-nav > li > a {
  color: #fff;
  font-size: 13px;
  padding: 7px 10px;
  display: block;
  text-transform: uppercase;
}

.btn-provider i {
  margin-right: 5px;
}

.enter {
  display: none;
}

.btn-provider span {
  position: absolute;
  transform: translateY(10px);
}

.pragma-logo {
  background-image: url(../../img/game/pragmatic.png);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 20px;
}

.haba-logo {
  background-image: url(../../img/game/habanero.png);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 20px;
}

.cq9-logo {
  background-image: url(../../img/game/cq9.png);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 20px;
}

.pg-logo {
  background-image: url(../../img/game/pgsoft.png);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 20px;
}

.micro-logo {
  background-image: url(../../img/game/microgaming.png);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 20px;
}

.spade-logo {
  background-image: url(../../img/game/spadegaming.png);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 20px;
}

.joker-logo {
  background-image: url(../../img/game/joker.png);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 20px;
}

.bng-logo {
  background-image: url(../../img/game/bng.png);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 20px;
}

.fachai-logo {
  background-image: url(../../img/game/fachai.png);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 20px;
}

.playtech-logo {
  background-image: url(../../img/game/playtech.png);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 20px;
}

.playstar-logo {
  background-image: url(../../img/game/playstar.png);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 20px;
}

.toptrend-logo {
  background-image: url(../../img/game/toptrend.png);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 20px;
}

.active {
  background-color: #b10000;
}

.slot .content {
  float: right;
  width: 80%;
  padding: 0;
  flex: 0 0 80%;
  max-width: 80%;
}

.wrapper {
  width: 100%;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.card {
  float: left;
  width: 25%;
  background: transparent;
  border: none;
  text-align: center;
  position: relative;
}

.card-content {
  margin: 5px;
  color: #fff;
  font-size: 12px;
  border: none;
  overflow: hidden;
  position: relative;
}

.percent {
  height: 27px;
  display: flex;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  /* border-radius: .25rem; */
  position: relative;
  z-index: 1;
}

.percent p {
  z-index: 15;
  position: absolute;
  text-align: center;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  transform: translateY(14px);
  color: black;
}

.percent-bar {
  /* background-color: #ffc107; */
  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: 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;
  /* background-color: #007bff; */
  transition: width 0.6s ease;
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
  /* animation: ; */
  z-index: 10;
}

.yellow {
  background-color: #ddac1b;
}

.green {
  background-color: #28b849;
}

.red {
  background-color: #c71124;
}

.hover-btn {
  position: absolute;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.65);
  transition: all 0.45s ease-in-out;
  z-index: 10;
  width: 100%;
}

.play-btn {
  font-size: 15px;
  text-decoration: none;
  color: white;
  text-align: center;
  align-items: center;
  width: 100%;
  margin: 25% auto;
  padding: 8px;
  background-color: #b10000;
}

.img-zoom {
  transition: all 0.45s ease-in-out;
  height: 141px;
}

.hover-btn:hover {
  opacity: 100%;
}

.hover-btn:hover ~ .img-zoom {
  transform: scale(1.2);
  position: relative;
}

.next-btn {
  display: none;
  width: 30%;
}

.next-btn {
  background-color: #010041;
  border: none;
  color: #fff;
}
.jamgacor {
  background-image: linear-gradient(#006eec, #0012b4);
  font-family: "Poppins", sans-serif !important;
  padding: 3px;
  padding-top: 6px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border: 0.1px solid black;
}

.jamgacor h5 {
  font-size: 1.3em;
}

.progress {
  height: fit-content;
}

.pola {
  background-image: linear-gradient(#003dfd, #0177cc);
  font-family: "Poppins", sans-serif !important;
  padding: 3px;
  padding-top: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border: 0.1px solid black;
}

.jam {
  margin-bottom: 5px;
  padding: 8px;
  color: #000;
  font-weight: bold;
}

.jam h5 {
  font-size: 1.3em;
  font-weight: bold;
}
.jamBg {
  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
  );
  transition: width 0.6s ease;
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
  background-size: 1rem 1rem;
}

.word {
  color: #fff;
  padding: 20px 30px;
  border-radius: 5px;
  border: 1px dashed #948834;
  font-family: Bebas Neue;
}
.word h1 {
  font-size: 1.5em;
}
.word h2 {
  font-size: 1.3em;
}
.word h3 {
  font-size: 1.1em;
}
.word p {
  font-size: 1em;
}
.word a {
  color: #f1d408;
}

/* Menu start */
input {
  position: fixed;
  display: none;
}

.menu-social {
  margin: 0 auto;
  position: fixed;
  bottom: 8%;
  left: 7%;
  margin-left: -25px;
  margin-top: -25px;
}

.btn-social {
  width: 70px;
  height: 70px;
  border-radius: 70px;
  position: absolute;
  overflow: hidden;
  cursor: pointer;
}

.material-icons.md-36 {
  font-size: 36px;
  color: #000000;
}

.btn-social {
  background: #eceff1;
  font-size: 15px;
  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;

  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);

  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-social:not(:first-child) {
  opacity: 0;
  z-index: -2;

  -webkit-transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44);
  transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44);
}

.btn-social:nth-child(2) {
  top: 0px;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.btn-social:nth-child(3) {
  top: 0px;
  left: 0px;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.btn-social:nth-child(4) {
  left: 0px;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

input#toggle:checked ~ #show-menu .btn-social:nth-child(2) {
  top: -100px;
  opacity: 1;
}

input#toggle:checked ~ #show-menu .btn-social:nth-child(3) {
  top: -60px;
  left: 65px;
  opacity: 1;
}

input#toggle:checked ~ #show-menu .btn-social:nth-child(4) {
  left: 100px;
  opacity: 1;
}

.menuBtn,
.closeBtn {
  position: absolute;
  transition: all 0.3s ease;
}

.closeBtn {
  transform: translateY(50px);
  opacity: 0;
}

input#toggle:checked ~ #show-menu .btn .menuBtn {
  transform: translateY(-50px);
  opacity: 0;
}

input#toggle:checked ~ #show-menu .btn .closeBtn {
  transform: translateY(0px);
  opacity: 1;
}
/* Menu End */

@media (min-width: 0px) {
  .container {
    max-width: 540px;
  }
  .text-game {
    color: white;
    font-weight: bolder;
    font-size: 1rem;
    text-align: center;
  }
  .jam {
    font-size: 9px;
  }
  .date-now {
    margin: 0.2rem;
    color: rgb(255, 255, 255);
    font-weight: bolder;
    font-size: 0.5rem;
    text-align: center;
  }
  .btn-provider span {
    font-size: 6px;
  }
  .pola > p {
    font-size: 0.75em !important;
  }
}

@media (min-width: 420px) {
  .jam {
    font-size: 12px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 720px;
  }
  .text-game {
    color: white;
    font-weight: bolder;
    font-size: 1.3rem;
    text-align: center;
  }
  .date-now {
    margin: 0.2rem;
    color: rgb(255, 255, 255);
    font-weight: bolder;
    font-size: 0.8rem;
    text-align: center;
  }
  .btn-provider span {
    font-size: 10px;
  }
  .jam {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 960px;
  }
  .text-game {
    color: white;
    font-weight: bolder;
    font-size: 2.5rem;
    text-align: center;
  }
  .date-now {
    margin: 0.2rem;
    color: rgb(255, 255, 255);
    font-weight: bolder;
    font-size: 1.5rem;
    text-align: center;
  }
  .btn-provider span {
    font-size: 12px;
  }
  .jam {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 1140px;
  }
  .text-game {
    color: white;
    font-weight: bolder;
    font-size: 3rem;
    text-align: center;
  }
  .btn-provider span {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .btn-provider span {
    font-size: 15px;
  }
}

@media (min-width: 1600px) {
  .navbar .navbar-logo {
    width: 15%;
  }
}

@media (min-width: 1920px) {
  .navbar .navbar-logo {
    width: 10%;
  }
}

@media (max-width: 992px) {
  .slot-sidebar-nav {
    flex-wrap: wrap;
  }
  .slot-sidebar {
    float: none !important;
    width: 100% !important;
    flex: none !important;
    max-width: 100% !important;
    padding-right: 0 !important;
  }
  .content {
    float: none !important;
    width: 100% !important;
    flex: none !important;
    max-width: 100% !important;
  }
  .card {
    width: 33.3% !important;
  }
  .hover-btn:hover {
    opacity: 0;
  }

  .hover-btn:hover ~ .img-zoom {
    transform: scale(1);
    position: relative;
  }
  .btn-provider {
    text-align: center;
    display: block;
    padding-bottom: 0 !important;
  }
  .slot-sidebar-nav > li {
    width: 25%;
  }
  .btn-provider i {
    background-size: 100%;
  }
  .enter {
    display: block;
  }
  .btn-provider span {
    position: unset;
  }
  .btn-provider i {
    margin: 0;
  }
  .slot-sidebar-nav li {
    border-left: 0.2px solid #656565;
    border-right: 0.2px solid #656565;
    border-bottom: 0.2px solid #656565;
  }
  .img-zoom {
    height: auto;
  }
  .next-btn {
    display: none;
  }
  .res-bar {
    display: block;
  }
  .jamgacor > h5 {
    font-size: 1em;
  }
  .pola > p {
    font-size: 0.8em;
  }
}

.footer {
  text-decoration: none;
  color: #fff;
}
