@keyframes slide-in {
  0% {
    top: -100%;
  }
  100% {
    top: 50%;
  }
}
.blog-view,
.single-view,
.author-info,
.archive-info,
.form-404 {
  text-align: left;
  background: #f0fbff;
}
.link-container {
  display: flex;
  justify-content: center;
  font-size: var(--x-large-font);
  padding: 0;
  width: 100%;
}
.link-container a {
  width: 50%;
  text-align: center;
  padding: 15px 20px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}
.register-button {
  background-image: linear-gradient(rgb(104, 2, 2), rgb(203, 0, 0));
  background-color: initial;
}
.login-button {
  background-image: linear-gradient(rgb(0, 12, 153), rgb(7, 71, 102));
  background-color: initial;
}
* {
  font-family: sans-serif;
  box-sizing: border-box;
}

p {
  margin: 0;
}

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

.title-text {
  color: white;
  font-size: 2.5rem;
}

.slot {
  display: block;
}

.slot .slot-sidebar {
  padding-right: 10px;
  padding-left: 0;
  margin-top: -15px;
  background-color: black;
  float: none !important;
  width: 100% !important;
  flex: none !important;
  max-width: 100% !important;
  padding-right: 0 !important;
}

.btn-provider:hover {
  background-color: #644c1c;
}

.btn-provider {
  text-align: center;
  display: block;
}

.enter {
  display: none;
}

.btn-provider span {
  position: unset;
}

.active {
  background-color: #0092b1;
}

.slot .content {
  float: none;
  width: 100%;
  padding: 0;
  flex: 0 0 100%;
  max-width: 100%;
  background-color: #000000a8;
  border: 5px solid #00ffff;
}

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

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

.card-content {
  margin: 7px;
  color: #000;
  font-size: 12px;
  border: none;
  overflow: hidden;
  position: relative;
  background: #303538;
  border-radius: 0.5rem;
}

.percent {
  height: 23px;
  display: flex;
  overflow: hidden;
  line-height: 0.3;
  font-size: 1rem;
  background-color: #1d1d1d;
  border-radius: 1rem;
  position: relative;
  z-index: 1;
  margin: 10px 10px;
}

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

.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;
}

@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

.yellow {
  background-color: #ffc107;
}

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

.red {
  background-color: #dc3545;
}
.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%;
  height: 87%;
  border-radius: 5px;
}
.play-btn {
  font-size: 14px;
  text-decoration: none;
  color: black;
  font-weight: 600;
  text-align: center;
  align-items: center;
  width: 100px;
  margin: 25% auto;
  padding: 5px;
  margin-top: 90px;
  background-image: linear-gradient(to bottom, #72ff00 30%, #03a500 100%);
  border: 1px solid #0cff00;
  border-radius: 5px;
}
.play-btn:hover {
  background: linear-gradient(to top, #fff095 0%, #b88416 88%);
}
.img-zoom {
  transition: all 0.45s ease-in-out;
  height: 160px;
  border-radius: 5px;
  margin-bottom: 5px;
}

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

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

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

.mySlides {
  display: none;
}

.next-btn {
  background-color: #292a2b;
  border: none;
  color: #fff;
}
@media (max-width: 992px) {
  .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: 50% !important;
  }
  .hover-btn:hover {
    opacity: 0;
  }

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

  .btn-provider {
    text-align: center;
    display: block;
  }
  .enter {
    display: block;
  }
  .btn-provider span {
    position: unset;
  }
  .btn-provider i {
    margin: 0;
  }
  .next-btn {
    display: block;
  }
  .res-bar {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .masuk {
    display: inline-block;
    background: #0175a8;
    outline: none;
    padding: 10px 12px !important;
    color: white;
    border: 0;
    border-radius: 5px;
    font-size: 1em !important;
    margin: 0 5px;
  }
  .daftar {
    display: inline-block;
    background: #4fab48;
    outline: none;
    padding: 10px 12px !important;
    color: white;
    border: 0;
    border-radius: 5px;
    font-size: 1em !important;
    margin: 0 5px;
  }
  .logoarguenmax {
    margin-top: 5px !important;
  }
  .provider-layout p {
    font-size: 0.4em !important;
    margin-bottom: 3px !important;
  }
  .slot-provider {
    padding: 0 7px;
    margin: 5px auto 15px auto !important;
  }
  .head-colum2 {
    margin-top: 0px !important;
  }
  hr {
    width: 40px !important;
    height: 3px !important;
    margin-top: 10px !important;
    margin-left: 5px !important;
    border-radius: 10px !important;
  }
  .img-zoom {
    height: 130px;
  }
  .cari {
    padding: 0 7px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .search-icon {
    left: 15px !important;
  }
  .provider-pilihan {
    padding: 5px 7px !important;
  }
  .provider-canvas::before {
    background-size: 34px !important;
    width: 35px !important;
    height: 35px !important;
    margin-top: -15px !important;
    margin-left: 0px !important;
  }
  .provider-canvas {
    padding: 0 0 10px 0 !important;
  }
  .provider-canvas p {
    font-size: 0.4em !important;
  }
  .coming-soon {
    padding: 0 0 10px 0 !important;
  }
  .coming-soon p {
    font-size: 0.4em !important;
  }
  .m-hide {
    font-size: 0.8em !important;
  }
  .pentaslot img {
    width: 100% !important;
  }
}
/* popup style*/
.popup-container {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 99999;
  background: #080808b0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.popup-body {
  width: 347px;
  height: 600px;
  margin: 1% auto;
  background: #ffffff;
  border-radius: 0px;
  color: black;
}

@media (max-width: 512px) {
  .popup-body {
    width: 310px;
    margin: 10% auto;
  }
}

.popup-img {
  width: 450px;
  height: 555px;
  margin: 8% auto;
}

.popup-img-close {
  cursor: pointer;
  width: 36px;
  height: 36px;
  background: white;
  color: black;
  float: right;
  padding: 5px;
  border-radius: 100px;
  position: absolute;
  margin-left: -7px;
  margin-top: -20px;
}

@media (min-width: 993px) {
  .popup-img-close {
    margin-left: 42px;
    margin-top: -12px;
  }
}

.popup-header {
  height: 48px;
  width: 100%;
  background: #00cbb4;
  float: left;
  color: white;
}

.popup-header h6 {
  margin: 13px;
}

.popup-content {
  width: 100%;
  height: auto;
  padding: 15px 39px;
  float: left;
  font-size: 12px;
}

.col2 {
  width: 50%;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.mrtop10 {
  margin-top: 10px;
}

.hr {
  width: 100%;
  height: 2px;
  background: #5e5e5e;
  float: left;
}

.popup-label {
  width: 100%;
  float: left;
  background: #728785;
  padding: 10px 15px;
  font-size: 12px;
  color: #fff;
}

.popup-close {
  cursor: pointer;
  width: 36px;
  height: 36px;
  background: white;
  color: black;
  float: right;
  padding: 5px;
  border-radius: 100px;
  position: absolute;
  margin-top: -10px;
  margin-left: -9px;
}

.bg-blue-button {
  background: #d92929;
}

.bg-black-button {
  background: #00ba92;
}
.popip-button:hover {
  filter: brightness(1.3);
}
.popip-button {
  cursor: pointer;
  width: 50%;
  float: left;
  height: 40px;
}

/* Slideshow container */
.slideshow-images-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  margin-bottom: 6px;
}

/* Hide the images by default */
.slideshow-images {
  display: none;
}

/* Next & previous buttons */
.prev-slideshow-images,
.next-slideshow-images {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -14px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next-slideshow-images {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev-slideshow-images:hover,
.next-slideshow-images:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text-slideshow-images {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext-slideshow-images {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
}

/* The dots/bullets/indicators */
.dot-slideshow-images {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active-slideshow-images,
.dot-slideshow-images:hover {
  background-color: #717171;
}

/* Fading animation */
.fade-slideshow-images {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 993px) {
  .numbertext-slideshow-images {
    top: 0;
  }
}

@media (max-width: 425px) {
  .popup-img {
    max-width: 93%;
    margin: 25% auto;
  }
}

.images-logo {
  padding: 2px;
  width: 230px;
  height: 60px;
  float: left;
}

.header .title {
  float: right;
  width: auto;
  height: auto;
  margin: 15px;
  border-radius: 42px;
}

.blue {
  background: #f7c200;
}

.header-buttom {
  color: white;
  padding: 5px;
  height: 42px;
}

.header-button-text {
  font-size: 14px;
  margin: 7px;
  float: left;
}

@media (max-width: 992px) {
  .col {
    flex-basis: auto;
  }

  .header-button-text {
    font-size: 12px;
    margin: 9px;
  }
}

/* Menu Navigation Buttom */
.menu-bottom {
  display: none;
  height: 63px;
  width: 100vw;
  position: fixed;
  bottom: 0;
  background: black;
  border-top: 2px solid #707070;
}

.sub-menu-bottom {
  width: 25vw;
  height: 100%;
  float: left;
}

.sub-menu-bottom:hover {
  background: #525252;
}

.icon-menu {
  width: 4vw;
  height: auto;
  margin: 8px;
}

.text-menu {
  font-size: 12px;
  padding: 0px;
  margin: 0px;
  color: white;
}

@media (max-width: 992px) {
  .menu-bottom {
    display: block;
  }
}

@media (min-width: 768px) {
  .menu-bottom {
    height: 82px;
  }
}

table.Toto Togel td,
table.Toto Togel th {
  border: 3px solid #fff;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
table.Toto Togel tbody td {
  font-size: 15px;
  color: #ffffff;
  padding: 5px;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
table.Toto Togel thead {
  background: #00ffff;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
table.Toto Togel thead th {
  font-size: 17px;
  color: #fff;
  text-align: center;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
.marquee-text p {
  margin-bottom: 0;
  margin-top: 0;
}
.head-colum1 {
  float: left;
  width: 50%;
  padding: 10px 5px;
  text-align: left;
}
.head-colum2 {
  float: left;
  width: 50%;
  padding: 10px 5px;
  text-align: right;
  margin-top: 5px;
}

.tophead:after {
  content: "";
  display: table;
  clear: both;
}
.logoarguenmax {
  display: block;
  width: 300px;
  max-width: 100%;
}
.masuk {
  display: inline-block;
  background: #0175a8;
  outline: none;
  padding: 10px 20px;
  color: white;
  border: 0;
  border-radius: 5px;
  font-size: 1.3em;
  margin: 0 5px;
  cursor: pointer;
}
.masuk:hover {
  filter: brightness(1.3);
  -webkit-filter: brightness(1.3);
}
.daftar {
  display: inline-block;
  background: #4fab48;
  outline: none;
  padding: 10px 20px;
  color: white;
  border: 0;
  border-radius: 5px;
  font-size: 1.3em;
  margin: 0 5px;
  cursor: pointer;
}
.daftar:hover {
  filter: brightness(1.3);
  -webkit-filter: brightness(1.3);
}
.news {
  background-color: #215793;
  flex-wrap: nowrap !important;
  margin-bottom: 0 !important;
}
.news img {
  width: 50px;
}
.slot-provider {
  width: 100%;
  display: flex;
  margin: 5px auto 20px auto;
  text-align: center;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.provider-colum > *:first-child {
  margin-left: 0px;
}
.provider-colum > *:last-child {
  margin-right: 0px;
}
.provider-layout {
  display: inline-block;
  padding: 5px;
  text-align: center;
  background: #282828;
  margin: 0 5px;
  border-radius: 5px;
}
.provider-layout:hover {
  background: #30466d;
}
.provider-layout img {
  display: block;
  width: 100%;
}
.provider-layout p {
  display: block;
  width: 100%;
  font-size: 1em;
  margin-bottom: 10px;
}
hr {
  position: absolute;
  width: 70px;
  height: 3px;
  margin-top: 13px;
  margin-left: 33px;
  background: #30466d;
  border: 1px solid #30466d;
  border-radius: 10px;
}
.provider-canvas::before {
  content: "";
  background: url(../hot.gif) no-repeat;
  background-size: 50px;
  width: 50px;
  height: 50px;
  position: absolute;
  margin-top: -25px;
  margin-left: 5px;
}
.provider-colum {
  float: left;
  width: 15%;
  margin: 1%;
  text-align: center;
}
.provider-colum:hover {
  filter: drop-shadow(0 3px 2px #000);
  -webkit-filter: drop-shadow(0 3px 2px #000);
  transition: all 0.45s ease-in-out;
}
.provider-colum.active {
  background: transparent;
  filter: drop-shadow(0 3px 2px #000);
  -webkit-filter: drop-shadow(0 3px 2px #000);
}
.provider-pilihan:after {
  content: "";
  display: table;
  clear: both;
}
.provider-pilihan {
  padding: 20px 150px;
}
.provider-canvas {
  background: #72ff00;
  border-radius: 10px;
  padding: 0 0 10px 0;
}
.provider-canvas:hover {
  background: white;
  transition: all 0.45s ease-in-out;
}
.provider-canvas img {
  display: block;
  width: 60%;
  margin: 0 auto;
}
.provider-canvas p {
  margin-bottom: 0;
  font-size: 0.6em;
  color: #000;
  font-weight: bold;
}
.coming-soon {
  background: #00cbb4;
  border-radius: 10px;
  padding: 0 0 10px 0;
}
.coming-soon img {
  display: block;
  width: 60%;
  margin: 0 auto;
}
.coming-soon p {
  margin-bottom: 0;
  font-size: 0.6em;
  color: #000;
  font-weight: bold;
}
footer {
  text-align: center;
  color: black;
  width: 100%;
}
.cari {
  margin-bottom: 10px;
  padding: 0 7px;
}
.m-hide {
  font-size: 1em;
  color: #cfcfcf;
}
.footertext {
  background: #303538;
  margin-bottom: 2em;
  padding: 2em;
  width: 100%;
  border-radius: 5px;
  border-top: 3px solid #171717;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}
.footertext h1 {
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 0.5em;
}
.footertext h2 {
  font-size: 1.7em;
  margin: 0.5em 0;
}
.footertext h3 {
  font-size: 1.5em;
  margin: 0.5em 0;
}
.footertext h4 {
  font-size: 1.4em;
  margin: 0.5em 0;
}
.footertext p {
  font-size: 1em;
  text-align: justify;
}
.footertext ul {
  margin-inline-start: 1.5em;
  margin-block-end: 1em;
  color: black;
}
.footertext ul li {
  margin-bottom: 1rem;
}
.footertext ol {
  margin-inline-start: 1.5em;
  margin-block-end: 1em;
  color: black;
}
.footertext ol li {
  margin-bottom: 1rem;
}
.carousel {
  position: relative;
}
.slide {
  width: 100%;
  border-radius: 4px;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.w-100 {
  width: 100% !important;
}
.d-block {
  display: block !important;
}
.carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: block;
}
.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
@supports (
  (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)
) {
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.active.carousel-item-right,
.carousel-item-next {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
@supports (
  (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)
) {
  .active.carousel-item-right,
  .carousel-item-next {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.active.carousel-item-left,
.carousel-item-prev {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
@supports (
  (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)
) {
  .active.carousel-item-left,
  .carousel-item-prev {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  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;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, 0.5);
}
.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.carousel-indicators .active {
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

input[type="text"],
input[type="number"],
textarea {
  font-size: 16px;
}
.fixed-footer {
  display: flex;
  justify-content: space-around;
  position: fixed;
  background-color: #41454b;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  box-shadow: 0px 0px 10px 5px #000000db;
  padding: 5px 0;
}
.fixed-footer a.active {
  color: #cfcfcf;
  background: transparent;
}
.fixed-footer a:hover {
  color: #fff;
  transition: all 0.45s ease-in-out;
}
.fixed-footer a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #cfcfcf;
  font-weight: 500;
  text-decoration: none;
  font-size: 12px;
}
.fixed-footer img {
  max-width: 40%;
  margin-top: 5px;
  margin-bottom: 3px;
}
a,
a:active,
a:focus {
  outline: 0;
  text-decoration: none;
}
a {
  color: #000;
}
a:hover {
  color: #000;
}
* {
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
p {
  margin: 0 0 10px;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.clear {
  clear: both;
}
.konten-bola {
  text-align: center;
}
.align-middle {
  vertical-align: middle;
}
.marquee-text {
  height: auto;
  display: block;
  line-height: 30px;
  overflow: hidden;
  position: relative;
  padding: 4px 0 5px 0;
  width: 100%;
  background: #000;
}
.marquee-text div {
  height: auto;
  line-height: 22px;
  font-size: 13px;
  white-space: nowrap;
  color: #fff;
  z-index: 1;
  font-weight: 600;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  animation: marquee 20s linear infinite;
  margin-top: 3px;
}
.marquee-text:hover div {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 5px;
  font: 250 22px BebasNeue;
  width: 100%;
  color: #fff;
  text-shadow: 0 0 3px #000;
  letter-spacing: 1px;
}
.login-judi {
  background: linear-gradient(to bottom, #00ffff 0, #774200 100%);
  transition: all 0.4s;
}
.login-judi:hover {
  opacity: 0.7;
}
.daftar-judi {
  background: linear-gradient(to bottom, #774200 0, #00ffff 100%);
  animation: blinking 0.5s infinite;
  transition: all 0.4s;
}
@keyframes blinking {
  0% {
    border: 5px solid #fff;
  }
  100% {
    border: 5px solid #00ffff;
  }
}
.bola-casino {
  animation-name: blinker;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.anim {
  animation: blinkings 1s infinite;
}
@keyframes blinkings {
  0% {
    border: 2px solid #fff;
  }
  100% {
    border: 2px solid #00ffff;
  }
}
.p-0 {
  padding: 0;
}
.col-md-12,
.col-md-4,
.col-md-6,
.col-md-8,
.col-xs-6 {
  position: relative;
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
}
.col-xs-6 {
  float: left;
  width: 50%;
}
@media (min-width: 768px) {
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
  }
  .order-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .logomobi {
    display: none;
  }
  .logform {
    padding-top: 2rem;
  }
  .nopadding {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .logo {
    display: none;
  }
  .border-bt {
    border-bottom: 1px solid #00ffff;
    border-top: 1px solid #00ffff;
    padding: 5px 15px;
  }
}
.pt-1,
.py-1 {
  padding-top: 0.25rem;
}
.pb-1,
.py-1 {
  padding-bottom: 0.25rem;
}
.pt-2,
.py-2 {
  padding-top: 0.5rem;
}
.pb-2,
.py-2 {
  padding-bottom: 0.5rem;
}
.mt-2,
.my-2 {
  margin-top: 0.5rem;
}
.mb-2,
.my-2 {
  margin-bottom: 0.5rem;
}
.bartender,
.my-3 {
  margin-top: 0.75rem;
}
.mb-3,
.my-3 {
  margin-bottom: 0.75rem;
}
.mt-4 {
  margin-top: 1.1rem;
}
.mt-5,
.my-5 {
  margin-top: 2rem;
}
.mb-5,
.my-5 {
  margin-bottom: 2rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.mx-5 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.pt-3 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 2rem;
}
.bg-blue {
  background-color: #020202;
}
.bottom {
  float: left;
  width: 100%;
}
.konten {
  color: #fff;
  padding: 20px 30px;
  border-radius: 5px;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  box-shadow: 0 0 10px 6px #00ffff;
}
.konten h1 {
  font-size: 1.5em;
}
.konten h2 {
  font-size: 1.3em;
}
.konten h3 {
  font-size: 1.1em;
}
.konten p {
  font-size: 1em;
}
.konten a {
  color: #00ffff;
}
.list {
  margin-bottom: 1rem;
}
.kolongramen {
  text-decoration: none;
  color: #fff;
}
.kolongramen a {
  color: #00ffff;
}
.slide {
  width: 100%;
  border-radius: 4px;
}
.lc-atribut {
  border: 2px solid #9140d6;
  border-radius: 4px;
  box-shadow: 0 0 5px 0 #9140d6;
}
.faq-label {
  display: flex;
  font-size: 1.5em;
  justify-content: space-between;
  padding: 1em;
  margin: 12px 0 0;
  background: #0095ff;
}
.faq-answer {
  padding: 1em;
  font-size: 1.19em;
  color: #fff;
  text-align: justify;
  background: #212121;
  transition: all 0.35s;
}
.qiuonline {
  text-align: center;
  font-size: 1.5em;
  justify-content: space-between;
  padding: 1em;
  margin: 12px 0 0;
  background: #00ffff;
}
.list {
  margin-bottom: 1rem;
}
.silau {
  border-radius: 10px;
  box-shadow: 0 0 10px 2px #965800;
  animation: blinking 0.3s infinite;
  transition: all 0.1s;
}
.silau:hover {
  opacity: 1;
}
.tengah {
  width: 40%;
  margin: auto;
}
.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark td,
.table-dark th,
.table-dark thead th {
  text-transform: uppercase;
  border-color: #454d55;
  text-align: center;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  vertical-align: middle;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}
.table-responsive {
  width: 100%;
  padding: 0;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive a {
  text-decoration: none;
}
.table-responsive a:hover {
  text-decoration: none;
}
.table-dark td {
  vertical-align: middle;
}
.d-none {
  display: none;
}
@media (min-width: 576px) {
  .d-sm-table-cell {
    display: table-cell;
  }
}

.button:active {
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  transform: translate3d(0, 1px, 0);
}
a:active,
a:hover {
  outline: 0;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
@media print {
  *,
  :after,
  :before {
    color: #000;
    text-shadow: none;
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .table {
    border-collapse: collapse;
  }
  .table td,
  .table th {
    background-color: #fff;
  }
  .table-bordered td,
  .table-bordered th {
    border: 1px solid #ddd;
  }
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > tbody > tr > td,
.table > thead > tr > th {
  padding: 18px 0;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > thead:first-child > tr:first-child > th {
  border-top: 0;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > tbody > tr > td,
.table-bordered > thead > tr > th {
  border: 1px solid #333;
  vertical-align: middle;
}
.table-bordered > thead > tr > th {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #00ffff;
}
.table-hover > tbody > tr:hover {
  background-color: #00ffff;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #333;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > thead > tr > th {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > thead > tr > th:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > thead > tr > th:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > td {
    border-bottom: 0;
  }
}
.table-head {
  text-align: center;
  background: linear-gradient(to right, #00ffff, #00ffff);
}
.list {
  margin-bottom: 1rem;
}
.text-center {
  text-align: center;
}
p#breadcrumbs {
  color: #fff;
  text-align: center;
}
.konten ul li {
  list-style-type: square;
}
.konten li {
  margin: 5px 30px 10px;
  text-align: justify;
  color: #fff;
}
table.Toto Togel td,
table.Toto Togel th {
  border: 3px solid #fff;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
table.Toto Togel tbody td {
  font-size: 15px;
  color: #ffffff;
  padding: 5px;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
table.Toto Togel thead {
  background: #00ffff;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
table.Toto Togel thead th {
  font-size: 17px;
  color: #fff;
  text-align: center;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
.search-icon {
  position: absolute;
  top: 10px;
  left: 17px;
  width: 14px;
}
.search {
  border: 1px solid #354636;
  border-radius: 5px;
  height: 35px;
  width: 100%;
  padding: 2px 23px 2px 35px;
  outline: 0;
  background-color: #121212;
  color: #647c65;
}
.search::placeholder {
  color: #647c65;
}
input:focus::placeholder {
  color: transparent;
}
