/* =================================
 Temlate Name : Miscoo
 Author Name : autworks
 Date: 08/10/2020
 Version: 1.0
 =================================

/* =================================
 css index
 =================================
 *. typography
 *. section title
 *. preloader
 *. scroll to top button
 *. normalize
 1. header
 2. Breadcrump
 3. banner
 4. limelight feature
 5. About
 6. Service
 7. Portfolio
 8. Call to action
 9. Testimonial
 10. Team
 11. News
 12. Brand
 13. Contact
 14. Footer & copyright
 15. About second part
 16. Service page
 17. Service Details
 18. Sidebar
 19. Blog
 20. Contact
 21. Appointment

================================= */
/*==========================================
    typography
===========================================*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&amp;display=swap");
@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-Bold.woff2') format('woff2'),
      url('../font/Montserrat-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
}

a {
  display: inline-block;
  transition: 0.3s;
}

.overflow-hidden {
  overflow: hidden;
}

/*==========================================
    template default button
==========================================*/
.def-btn {
  display: inline-block;
  background: #BB0907;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding: 0 35px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in;
}
.def-btn.def-small {
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
}
.def-btn:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #BB0907;
  z-index: -1;
  transition: all 0.3s ease-in;
  opacity: 1;
}
.def-btn:hover {
  color: #fff;
}
.def-btn:hover:after {
  opacity: 1;
}

/*==========================================
    section title
==========================================*/
.heading {
  text-align: center;
  margin-bottom: 70px;
}
.heading h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 20px;
}
.heading p {
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: -8px;
}

.c-white {
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .row.reorder-xs {
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: rotate(180deg);
    direction: rtl;
  }

  .row.reorder-xs > [class*=col-] {
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: rotate(-180deg);
    direction: ltr;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row.homepage-about-xs {
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: rotate(180deg);
    direction: rtl;
  }

  .row.homepage-about-xs > [class*=col-] {
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: rotate(-180deg);
    direction: ltr;
  }
}
/*==========================================
    Preloader
==========================================*/
.preloader {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background: #09111f;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.preloader img {
  width: 400px;
}

/*==========================================
    normalize
==========================================*/
html {
  font-family: "Open Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat';
  font-size: 16px;
  margin: 0;
  color: #3f3c57;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, a {
  line-height: 1.3;
  /*
  font-family: "Oswald", sans-serif;
  */
  font-family: 'Montserrat';
  letter-spacing: 1px;
  color: #fff;
}

p {
  line-height: 1.6;
  /*
  font-family: "Open Sans", sans-serif;
  */
  font-family: 'Montserrat';
}

a {
  color: #283659;
  text-decoration: none;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

/*input and button type focus outline disable*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

/**
 * 5.0 - Alignments
 */
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@keyframes rubber {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rubber-2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animation-3 {
  0% {
    transform: translateX(5px) translateY(5px);
  }
  50% {
    transform: translateX(-5px) translateY(-5px);
  }
  100% {
    transform: translateX(5px) translateY(5px);
  }
}
@keyframes animation-4 {
  0% {
    transform: translateX(5px) translateY(-5px);
  }
  50% {
    transform: translateX(-5px) translateY(5px);
  }
  100% {
    transform: translateX(5px) translateY(-5px);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes popping-up {
  0% {
    width: 90px;
    height: 90px;
  }
  50% {
    width: 65px;
    height: 65px;
  }
  100% {
    width: 90px;
    height: 90px;
  }
}
.header {
  z-index: 11;
  padding: 0 100px;
  transition: all 0.3s ease-in;
  background: linear-gradient(4deg, rgb(43, 16, 4) 0%, rgb(124, 0, 21) 100%);
}
.header.header-fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.46);
}
.header.header-fixed .top-header {
  padding: 5px 0;
}
.header.header-fixed .logo img {
  width: 130px;
}
.header .logo {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-right: 100px;
}
.header .logo a {
	padding: 10px 0 20px;
}
.tanggal {
	text-align: center;
	font-size: 13px;
	color: #fff;
	margin-bottom: 30px;
}
.tanggal span {
	display: block;
	margin: 0 5px;
}
/*
.header .logo:after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 500px;
  background: #fff;
  opacity: 0.1;
}
*/
.header .logo img {
  width: 190px;
  transition: all 0.3s ease-in;
}
.header .top-header {
	padding: 15px 0;
}
.header .top-header .top-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.header .top-header .top-right form.part-searchBar {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0 15px 30px;
}
.header .top-header .top-right form.part-searchBar input {
  border: none;
  background: transparent;
  color: #999;
  font-family: "Oswald", sans-serif;
}
.header .top-header .top-right form.part-searchBar input:placeholder {
  color: #999;
}
.header .top-header .top-right form.part-searchBar input:focus ~ button {
  color: #ff4647;
}
.header .top-header .top-right form.part-searchBar button {
  background: transparent;
  border: none;
  color: #999;
  transition: all 0.3s ease-in;
}
/*
.header .top-header .top-right .buttons {
  margin-right: 30px;
}
*/
.header .top-header .top-right .buttons a {
  font-size: 15px;
/*  line-height: 100%; */
  margin-left: 25px;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  padding: 7px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}
.header .top-header .top-right .buttons a:hover {
  background-color: #ffc107;
}
.header .bottom-header .navbar {
  padding: 0;
}
.header .bottom-header .navbar .navbar-nav {
  position: relative;
}
.header .bottom-header .navbar .navbar-nav:after {
  position: absolute;
  content: "";
  left: -100px;
  top: 0;
  width: 9999px;
  background: #fff;
  opacity: 0.1;
  height: 1px;
}
.header .bottom-header .navbar .navbar-nav .nav-item {
  padding: 25px 20px;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .nav-link {
  margin-right: 30px;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .nav-link:after {
  border: none;
  width: 12px;
  height: 12px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  top: 50%;
  margin-top: -5px;
  position: absolute;
  margin-left: 10px;
  -webkit-clip-path: polygon(100% 28%, 100% 54%, 50% 100%, 0 55%, 0 26%, 50% 74%);
          clip-path: polygon(100% 28%, 100% 54%, 50% 100%, 0 55%, 0 26%, 50% 74%);
  transition: all 0.3s ease-in;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  border: none;
  border-radius: 0;
  margin-top: 0;
  transition: all 0.3s ease-in;
  padding: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  margin-top: 30px;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover, .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:active {
  color: #fff;
  background: #fff;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover:after, .header .bottom-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:active:after {
  opacity: 1;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header .bottom-header .navbar .navbar-nav .nav-item.dropdown:hover .nav-link:after {
  transform: rotate(180deg);
}
.header .bottom-header .navbar .navbar-nav .nav-item:last-child {
  padding-right: 0;
}
.header .bottom-header .navbar .navbar-nav .nav-item .nav-link {
  padding: 5px 0;
  text-transform: capitalize;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
}
.header .bottom-header .navbar .navbar-nav .nav-item .nav-link:before {
  position: absolute;
  content: "";
  left: -22px;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  width: 2px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  border-radius: 50px;
  transition: all 0.3s ease-in;
}
.header .bottom-header .navbar .navbar-nav .nav-item .nav-link.active:before {
  width: 30px;
}
.header .bottom-header .navbar .navbar-nav .nav-item:hover .nav-link:before {
  width: 30px;
}
.header .bottom-header .navbar .nav-btn {
  height: 40px;
  line-height: 38px;
  margin-left: 10px;
  background: #111111;
}
.header .bottom-header .navbar .nav-btn:hover {
  background: transparent;
}

.main-content {
	background: #2b0a00;
	background-repeat: no-repeat;
	background-position: 0 -25px;
}

.banner {
  background: url("/img/banner-bg-2.html") center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
}
.banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(102,0,0,1) 0%, rgba(89,0,0,1) 50%, rgba(43,0,0,1) 100%);
  z-index: -1;
}
.banner .banner-txt {
  text-align: center;
  padding-top: 200px;
}
.banner .banner-txt h4 {
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 3px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  font-weight: 700;
}
.banner .banner-txt h1 {
  font-size: 70px;
  line-height: 90px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 37px;
}


.games {
  padding: 30px 0 90px;
/*  background: #111; */
}
.games.game-page {
	max-width: 1060px;
	margin: 0 auto;
	padding-bottom: 120px;
}

.games.game-page .games-filter-area {
  padding: 0px;
}
.games.game-page .games-filter-area .blog-search {
  margin-bottom: 30px;
  margin-top: 30px;
}
.games.game-page .games-filter-area .blog-search form {
  position: relative;
}
.games.game-page .games-filter-area .blog-search form input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 50px;
  width: 100%;
  padding: 0 30px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 15px;
  background: #242424;
  letter-spacing: 0.5px;
}
.games.game-page .games-filter-area .blog-search form input::placeholder {
  text-transform: capitalize;
  font-weight: 400;
}
.games.game-page .games-filter-area .blog-search form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  border: none;
  color: #fff;
  cursor: pointer;
  outline: none;
}
.games.game-page .games-filter-area .filtering:last-child .dropdown button {
  border-bottom: none;
}
.games.game-page .games-filter-area .filtering .dropdown button {
  background: #242424;
  border: none;
  color: #fff;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
  font-weight: 400;
  outline: none;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 50px;
  width: 100%;
  text-align: left;
  font-size: 15px;
  padding-left: 30px;
  font-weight: 400;
}
.games.game-page .games-filter-area .filtering .dropdown button:after {
  display: none;
}
.games.game-page .games-filter-area .filtering .dropdown button:before {
  width: 14px;
  height: 14px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -7px;
  -webkit-clip-path: polygon(100% 28%, 100% 54%, 50% 100%, 0 55%, 0 26%, 50% 74%);
          clip-path: polygon(100% 28%, 100% 54%, 50% 100%, 0 55%, 0 26%, 50% 74%);
}
.games.game-page .games-filter-area .filtering .dropdown .dropdown-menu {
  border-radius: 0;
  padding: 0;
  margin-top: 0;
  border: 0;
  margin-left: 2px;
}
.games.game-page .games-filter-area .filtering .dropdown .dropdown-menu .dropdown-item {
  letter-spacing: 0.5px;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  transition: 0s;
  text-transform: capitalize;
}
.games.game-page .games-filter-area .filtering .dropdown .dropdown-menu .dropdown-item:active {
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  color: #fff;
}
.games.game-page .miscoo-row {
  margin: 0;
  margin: -5px;
}
.games.game-page .miscoo-row div[class*=col] {
  padding: 5px;
}
.games.game-page .all-games {
  margin-bottom: 50px;
}
.games.game-page .all-games:last-child {
  margin-bottom: 0;
}
.games.game-page .all-games .single-game {
  margin-bottom: 5px;
  border-radius: 10px;
  display: block;
}
.games .game-menu .nav .nav-item .nav-link {
/*  background: #242424; */
  color: #fff;
  border-bottom: 1px solid rgba(115, 102, 240,0.3);
  padding: 10px 15px;
  line-height: 100%;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  position: relative;
  transition: all 0.3s ease-in;
}
.games .game-menu .nav .nav-item .nav-link:hover, .games .game-menu .nav .nav-item .nav-link.active {
	background-color: #bb0907;
}
/*
.games .game-menu .nav .nav-item .nav-link:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0px;
  height: 100%;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  transition: all 0.3s ease-in;
}
.games .game-menu .nav .nav-item .nav-link.active {
	background: #000;
}
.games .game-menu .nav .nav-item .nav-link.active:after {
  width: 5px;
}
*/
.games .game-menu .nav .nav-item .nav-link span {
  display: inline-block;
  margin-right: 10px;
}
/*
.games .game-menu .nav .nav-item .nav-link span.icon {
  height: 40px;
}
.games .game-menu .nav .nav-item .nav-link span.icon svg {
  width: 40px;
  height: 40px;
}
.games .game-menu .nav .nav-item .nav-link span.icon svg path {
  fill: #ff4647;
}
.games .game-menu .nav .nav-item .nav-link span.icon img {
  width: 40px;
}
*/
.games .game-menu .nav .nav-item:last-child .nav-link {
  border-bottom: none;
}
.games .all-games {
  position: relative;
  transition: all 0.3s ease-in;
  opacity: 0;
  transform: scale(0.99);
}
.games .all-games.anim-change {
  opacity: 1;
  transform: scale(1);
}
.games .all-games .title-cover {
  overflow: hidden;
  position: relative;
}
.games .all-games .title-cover .games-title {
  font-size: 28px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  margin: -4px 0 26px;
}
.games .all-games .title-cover .games-title:after {
  position: absolute;
  content: "";
  left: calc(100% + 30px);
  top: 50%;
  width: 999px;
  height: 1px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  opacity: 0.3;
}
.games .all-games .title-cover .games-title .icon {
  color: #ff464b;
  position: relative;
  top: -3px;
}
.games .all-games .title-cover .games-title .icon svg {
  height: 25px;
  width: 40px;
}
.games .all-games .single-game {
/*  margin-bottom: 30px; */
  position: relative;
  overflow: hidden;
/*  border: 1px solid rgba(255, 70, 77, 0.1); */
  transition: all 0.3s ease-in;
}
.games .all-games .single-game a {
  display: block;
  width: 100%;
}
.games .all-games .single-game .part-img {
	transition: all 0.4s ease-in;
  display: flex;
  color: #fff;
}
.games .all-games .single-game .part-img img {
  width: 100%;
/*  opacity: 0.8; */
}
.games .all-games .single-game .part-img .icon-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  transform: translateY(-50%) translateX(-50%);
  filter: drop-shadow(7px 7px 9px #000);
  opacity: 1;
  display: none;
}
.games .all-games .single-game .part-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding-top: 30px;
  text-align: center;
  opacity: 0;
  transition: all 0.4s ease-in;
}
.games.game-page .all-games .single-game .part-text {
	padding-top: 20px;
}

.games .all-games .single-game .part-text:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: -1;
}
/*
.games .all-games .single-game .part-text:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 80%;
  height: 150%;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  z-index: -1;
  transform: rotate(25deg) translateY(-15%) translateX(120%);
  transition: all 0.3s ease-in;
}
*/
.games .all-games .single-game .part-text h4.game-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: -7px;
  margin-bottom: 15px;
  padding: 0 15px;
  position: relative;
}
.games .all-games .single-game:hover .part-img {
	transform: scale(1.2);
}
.games .all-games .single-game:hover .part-text {
  opacity: 1;
}
/*
.games .all-games .single-game .part-text a {
  position: relative;
  left: 0;
  transition: all 0.3s ease-in;
  transition-delay: 0.4s;
  opacity: 0;
}
.games .all-games .single-game:hover {
  border-color: transparent;
}
.games .all-games .single-game:hover .part-text h4.game-title, .games .all-games .single-game:hover .part-text a {
  left: 0;
  opacity: 1;
}
.games .all-games .single-game:hover .part-text:after {
	left: 0;
	opacity: 1;
}
*/

#cariGame {
  background-color: #FFBB00;
  border-width: 0;
  border-radius: 30px 0 0 30px;
}
#cariGame img {
  width: 25px;
}
#searchBar {
  background-color: #FFBB00;
  border-width: 0;
  border-radius: 0 30px 30px 0;
}

.home-artikel {
  font-family: "Open Sans", sans-serif;
}
.sosmed {
  font-family: "Open Sans", sans-serif;
}
.sosmed ul li {
  display: inline-block;
}
.sosmed a {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.footer {
  font-family: "Open Sans", sans-serif;
}
.footer .footer-top {
  background: #111;
  padding: 120px 0 115px;
}
.footer .about-widget a.logo {
  display: inline-block;
  width: 150px;
  margin-bottom: 32px;
}
.footer .about-widget a.logo img {
  width: 100%;
}
.footer .about-widget p {
  color: #ababab;
  line-height: 28px;
}
.footer .about-widget .social-links {
  margin-top: 32px;
}
.footer .about-widget .social-links ul li {
  display: inline-block;
}
.footer .about-widget .social-links ul li a {
  display: inline-block;
  background: #242424;
  color: #ff4647;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-right: 6px;
}
.footer .about-widget .social-links ul li a.active, .footer .about-widget .social-links ul li a:hover {
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  color: #fff;
}
.footer .link-widget h4.title {
  color: #fff;
  font-size: 24px;
  line-height: 34px;
  margin-top: -9px;
  margin-bottom: 23px;
  letter-spacing: 0;
}
.footer .link-widget ul li {
  padding: 5px 0;
}
.footer .link-widget ul li a {
  display: inline-block;
  color: #ababab;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  transition: all 0.3s ease-in;
}
.footer .link-widget ul li a:hover {
  color: #ff4647;
}
.footer .newsletter-widget h4.title {
  color: #fff;
  font-size: 24px;
  line-height: 34px;
  margin-top: -9px;
  margin-bottom: 15px;
  letter-spacing: 0;
}
.footer .newsletter-widget .newsletter-form {
  position: relative;
  z-index: 2;
  padding-bottom: 1px;
  margin-bottom: 25px;
}
.footer .newsletter-widget .newsletter-form:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 51px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  z-index: -1;
  opacity: 0.5;
}
.footer .newsletter-widget .newsletter-form input {
  background: #111;
  border: none;
  width: 100%;
  padding: 0 90px 0 0;
  height: 50px;
  color: #999;
}
.footer .newsletter-widget .newsletter-form .def-btn {
  border: none;
  outline: none;
  margin-top: 10px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none;
}
.footer .newsletter-widget p {
  color: #ababab;
  line-height: 28px;
}
.footer .copyright-area {
  background: linear-gradient(4deg, rgb(255, 62, 3) 0%, rgb(124, 0, 21) 100%);
  text-align: center;
  padding: 25px 0;
}
.footer .copyright-area p {
  font-family: "Open Sans", sans-serif;
  color: rgba(255,255,255,.7);
  margin-bottom: 0;
  line-height: 28px;
}
.footer .copyright-area p a {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0;
}

.breadcrumb-miscoo {
  background: url("/images/breadcrumb-bg.html") center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.breadcrumb-miscoo .breadcrumb-img img {
  position: absolute;
  width: 500px;
  top: -250px;
  left: -250px;
  opacity: 0.7;
}
.breadcrumb-miscoo .breadcrumb-img img:nth-child(2) {
  left: auto;
  right: -250px;
}
.breadcrumb-miscoo .breadcrumb-img img:nth-child(3) {
  left: auto;
  width: 260px;
  right: -120px;
  top: auto;
  bottom: -120px;
}
.breadcrumb-miscoo .breadcrumb-img img:nth-child(4) {
  width: 260px;
  left: -120px;
  top: auto;
  bottom: -120px;
}
.breadcrumb-miscoo:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #111;
  opacity: 0.65;
  z-index: -2;
}
.breadcrumb-miscoo .breadcrumb-content {
  padding: 80px 0;
  text-align: center;
}
.breadcrumb-miscoo .breadcrumb-content h2.title {
  font-size: 34px;
  line-height: 44px;
  text-transform: uppercase;
  color: #fff;
  margin-top: -8px;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: 1px;
}
.breadcrumb-miscoo .breadcrumb-content p {
  color: #bbb;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
}
.breadcrumb-miscoo .breadcrumb-content ul {
  margin-top: 32px;
}
.breadcrumb-miscoo .breadcrumb-content ul li {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 30px;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.breadcrumb-miscoo .breadcrumb-content ul li a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb-miscoo .breadcrumb-content ul li:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #313131;
  z-index: -1;
}
.breadcrumb-miscoo .breadcrumb-content ul li.arrow {
  padding: 10px 20px;
}

.game-details {
  padding: 120px 0;
  background: #242424;
}
.game-details .part-prev {
  height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.game-details .part-prev:after {
  position: absolute;
  content: "";
  left: 15px;
  top: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px dotted rgba(255, 255, 255, 0.6);
}
.game-details .part-prev a.play-btn {
  background: #fff;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 5;
  letter-spacing: 0.5px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
}
.game-details .game-descr .details-tabs-menu {
  margin-top: 50px;
}
.game-details .game-descr .details-tabs-menu .nav-tabs {
  border-bottom: none;
  justify-content: center;
}
.game-details .game-descr .details-tabs-menu .nav-tabs .nav-item .nav-link {
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
  margin: 0 10px;
  background: transparent;
  border-radius: 0;
  border: none;
  color: #fff;
  letter-spacing: 0.5px;
  font-size: 18px;
  background: #2a2a2a;
  border: 1px solid rgba(255, 72, 66, 0.2);
  position: relative;
  z-index: 2;
}
.game-details .game-descr .details-tabs-menu .nav-tabs .nav-item .nav-link:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in;
}
.game-details .game-descr .details-tabs-menu .nav-tabs .nav-item .nav-link.active:after {
  opacity: 1;
}
.game-details .game-descr .details-tab-pan {
  background: #2a2a2a;
  padding: 50px;
  margin-top: 50px;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane h3 {
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.5px;
  margin-top: -8px;
  margin-bottom: 28px;
  text-transform: capitalize;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane form label {
  font-family: "Oswald", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  font-size: 16px;
  margin-top: -5px;
  margin-bottom: 10px;
  display: block;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane form .input-group {
  margin-bottom: 30px;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane form .input-group input {
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border-radius: 0;
  font-size: 15px;
  padding: 0 30px;
  height: 42px;
  border: 1px solid rgba(153, 153, 153, 0.26);
  border-right: 0;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane form .input-group input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane form .input-group .input-group-append .input-group-text {
  border-radius: 0;
  font-size: 15px;
  background: rgba(153, 153, 153, 0.26);
  color: #fff;
  border: none;
  padding: 0 30px;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .bet-control .btn-group, .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling .btn-group {
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .bet-control .btn-group button, .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling .btn-group button {
  background: transparent;
  border: none;
  padding: 0;
  height: 40px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
  font-size: 18px;
  border-radius: 0;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .bet-control .btn-group button svg, .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling .btn-group button svg {
  width: auto;
  height: 28px;
  position: relative;
  top: -2px;
  margin-left: 5px;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .bet-control .btn-group button.under svg, .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling .btn-group button.under svg {
  transform: rotate(180deg);
  margin-left: 0;
  margin-right: 5px;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .bet-control .btn-group button:active, .game-details .game-descr .details-tab-pan .tab-content .tab-pane .bet-control .btn-group button:focus, .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling .btn-group button:active, .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling .btn-group button:focus {
  box-shadow: 0 0 0 0.2rem rgba(190, 190, 190, 0.4);
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .bet-control .btn-group button:last-child, .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling .btn-group button:last-child {
  border-right: 0;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .bet-control .btn-group button.active, .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling .btn-group button.active {
  box-shadow: 0 0 0 0.2rem rgba(190, 190, 190, 0.4);
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling .number {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  margin-left: 20px;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .place-bet-btn {
  font-family: "Oswald", sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 30px;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .provably-fair li .input-group {
  margin-bottom: 30px;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .provably-fair li .input-group input {
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border-radius: 0;
  font-size: 15px;
  padding: 0 30px;
  height: 42px;
  border: 1px solid rgba(153, 153, 153, 0.26);
  border-left: 0;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .provably-fair li .input-group input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .provably-fair li .input-group .input-group-append .input-group-text {
  border-radius: 0;
  font-size: 15px;
  background: rgba(153, 153, 153, 0.26);
  color: #fff;
  border: none;
  padding: 0 30px;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .provably-fair li:last-child .input-group {
  margin-bottom: 0;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .how-to-play h3 {
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.5px;
  margin-top: -8px;
  margin-bottom: 18px;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .how-to-play p {
  color: #999;
  line-height: 28px;
}
.game-details .game-descr .details-tab-pan .tab-content .tab-pane .how-to-play ul li {
  color: #fff;
  line-height: 32px;
}

/*==========================================
    faq
===========================================*/
.faq {
  padding: 120px 0 106px;
  background: #111;
}
.faq .faq-sidebar {
  margin-right: -40px;
}
.faq .faq-sidebar .nav .nav-link {
  background: #242424;
  border: none;
  color: #fff;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
  font-weight: 400;
  outline: none;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 60px;
  width: 100%;
  text-align: left;
  font-size: 16px;
  padding: 0;
  font-family: "Oswald", sans-serif;
  padding-left: 30px;
  font-weight: 400;
  line-height: 60px;
  border-radius: 0;
  position: relative;
}
.faq .faq-sidebar .nav .nav-link:after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  transition: all 0.3s ease-in;
}
.faq .faq-sidebar .nav .nav-link.active:after {
  height: 100%;
}
.faq .faq-sidebar h3 {
  font-size: 28px;
  font-weight: 700;
  color: #283659;
  margin: -8px 0 22px;
}
.faq .faq-sidebar .search-widget form {
  margin-bottom: 30px;
  position: relative;
}
.faq .faq-sidebar .search-widget form input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 50px;
  width: 100%;
  padding: 0 30px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 15px;
  background: #242424;
  letter-spacing: 0.5px;
}
.faq .faq-sidebar .search-widget form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  border: none;
  color: #fff;
  cursor: pointer;
  outline: none;
}
.faq .faq-content {
  margin-left: -40px;
}
.faq .faq-content .single-faq {
  background: #242424;
  padding: 30px 40px 16px;
  margin-bottom: 15px;
  z-index: 2;
  position: relative;
  overflow: hidden;
}
.faq .faq-content .single-faq h4 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 36px;
  margin-bottom: 14px;
  transition: all 0.3s ease-in;
}
.faq .faq-content .single-faq p {
  font-size: 16px;
  line-height: 28px;
  color: #999;
  transition: all 0.3s ease-in;
}

.user-dashboard {
  padding: 120px 0;
  background: #242424;
}
.user-dashboard .dashboard-menu .navbar {
  padding: 30px;
  margin-bottom: 30px;
  background: #2a2a2a;
}
.user-dashboard .dashboard-menu .navbar .navbar-nav .nav-item .nav-link {
  padding: 15px 35px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  position: relative;
  z-index: 2;
  color: #fff;
  margin: 0 16px;
  letter-spacing: 0.5px;
}
.user-dashboard .dashboard-menu .navbar .navbar-nav .nav-item .nav-link:after {
  position: absolute;
  content: "";
  left: 1px;
  top: 1px;
  right: 1px;
  bottom: 1px;
  background: #2a2a2a;
  z-index: -1;
  opacity: 1;
  transition: all 0.3s ease-in;
}
.user-dashboard .dashboard-menu .navbar .navbar-nav .nav-item .nav-link:hover:after, .user-dashboard .dashboard-menu .navbar .navbar-nav .nav-item .nav-link.active:after {
  opacity: 0;
}
.user-dashboard .user-statics {
  margin-bottom: 10px;
}
.user-dashboard .user-statics .single-statics {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 30px;
  background: #2a2a2a;
  padding: 30px;
}
.user-dashboard .user-statics .single-statics .part-icon {
  width: 60px;
  margin-right: 30px;
}
.user-dashboard .user-statics .single-statics .part-icon img {
  width: 100%;
}
.user-dashboard .user-statics .single-statics .part-info span {
  display: block;
}
.user-dashboard .user-statics .single-statics .part-info span.number {
  font-size: 22px;
  line-height: 32px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: -4px;
  margin-bottom: 6px;
}
.user-dashboard .user-statics .single-statics .part-info span.text {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: "Oswald", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: -3px;
}
.user-dashboard .user-benmathew {
  background: #2a2a2a;
  padding: 40px;
}
.user-dashboard .user-benmathew h3.title {
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(123, 137, 142, 0.5);
  margin-bottom: 22px;
  padding-bottom: 19px;
  margin-top: -5px;
  letter-spacing: 0.5px;
}
.user-dashboard .user-benmathew .single-data {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}
.user-dashboard .user-benmathew .single-data:last-child {
  margin-bottom: 0;
}
.user-dashboard .user-benmathew .single-data:after {
  position: absolute;
  content: "";
  left: 0;
  top: 1px;
  width: 10px;
  height: 10px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  border-radius: 50%;
  margin-top: 8px;
}
.user-dashboard .user-benmathew .single-data:before {
  width: 16px;
  height: 16px;
  position: absolute;
  content: "";
  left: -3px;
  top: -2px;
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  opacity: 0.2;
  margin-top: 8px;
  border-radius: 50%;
}
.user-dashboard .user-benmathew .single-data span {
  display: block;
}
.user-dashboard .user-benmathew .single-data span.title {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 2px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
}
.user-dashboard .user-benmathew .single-data span.data {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}
.user-dashboard .transaction-chart {
  padding: 40px;
  background: #2a2a2a;
}
.user-dashboard .transaction-chart h3.title {
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  font-weight: 500;
  padding-bottom: 19px;
  margin-top: -5px;
  text-align: center;
  letter-spacing: 0.5px;
}
.user-dashboard .transactions-table {
  padding: 50px;
  background: #2a2a2a;
  margin-top: 40px;
}
.user-dashboard .transactions-table .dataTables_wrapper .dataTables_length label {
  color: rgba(255, 255, 255, 0.6);
  text-transform: capitalize;
  margin-bottom: 40px;
}
.user-dashboard .transactions-table .dataTables_wrapper .dataTables_length label select {
  margin: 0 10px 0 10px;
  background: #2a2a2a;
  color: #fff;
  border-color: red;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 2px;
  height: 40px;
  width: 80px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-left: 15px;
  z-index: 2;
  cursor: pointer;
}
.user-dashboard .transactions-table .dataTables_wrapper .dataTables_length label i {
  background: red;
  color: #fff;
  height: 40px;
  line-height: 38px;
  margin-right: -20px;
  padding-right: 18px;
  position: relative;
  left: -30px;
}
.user-dashboard .transactions-table .dataTables_wrapper .dataTables_filter label {
  color: rgba(255, 255, 255, 0.6);
  text-transform: capitalize;
  margin-bottom: 40px;
}
.user-dashboard .transactions-table .dataTables_wrapper .dataTables_filter label input {
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  padding: 0 25px;
  margin-left: 15px;
  transition: all 0.3s ease-in;
}
.user-dashboard .transactions-table .dataTables_wrapper .dataTables_filter label input:focus {
  border-color: red;
}
.user-dashboard .transactions-table table.dataTable.display tbody tr.even > .sorting_1, .user-dashboard .transactions-table table.dataTable.display tbody tr.odd > .sorting_1 {
  background: #111;
}
.user-dashboard .transactions-table table.dataTable.display tbody tr {
  background: #191919;
}
.user-dashboard .transactions-table table.dataTable.display tbody td {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  height: 50px;
  padding: 0;
  padding-left: 20px;
}
.user-dashboard .transactions-table table.dataTable.display tbody td:first-child {
  padding-left: 30px;
  border-left: none;
}
.user-dashboard .transactions-table table.dataTable thead {
  background: #191919;
  margin-top: 30px;
}
.user-dashboard .transactions-table table.dataTable thead th {
  padding: 0;
  padding: 0 20px;
  height: 60px;
  color: #fff;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: none;
}
.user-dashboard .transactions-table table.dataTable thead th:first-child {
  padding-left: 30px;
  border-left: none;
  background: #111;
}
.user-dashboard .transactions-table tfoot {
  background: #111;
  color: #fff;
  display: none;
}
.user-dashboard .transactions-table tfoot tr th {
  font-weight: 400;
  padding: 0 20px;
  height: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.user-dashboard .transactions-table tfoot tr th:first-child {
  padding-left: 30px;
}
.user-dashboard .transactions-table tfoot tr th:last-child {
  border-right: none;
}
.user-dashboard .transactions-table .dataTables_wrapper .dataTables_paginate .paginate_button {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8) !important;
  height: 40px;
  line-height: 34px;
  padding: 0 20px;
  margin-right: 10px;
  transition: all 0.3s ease-in;
  border-radius: 0;
}
.user-dashboard .transactions-table .dataTables_wrapper .dataTables_paginate .paginate_button.current, .user-dashboard .transactions-table .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
  border-color: transparent;
}
.user-dashboard .transactions-table .paginate_button.next {
  margin-right: 0 !important;
}
.user-dashboard .transactions-table .dataTables_wrapper .dataTables_paginate {
  padding-top: 40px;
}
.user-dashboard .transactions-table .dataTables_wrapper .dataTables_info {
  color: rgba(255, 255, 255, 0.6);
  line-height: 40px;
  padding-top: 40px;
  padding-left: 30px;
  font-weight: 400;
}

.monster-breadcrumb {
	padding: 10px 0;
}
.runningtext {
	max-width: 1060px;
	margin: 0 auto;
}
.simple-marquee-container {
	background: #ff8c00;
	margin-bottom: 20px;
}
.simple-marquee-container .marquee-sibling {
	background: #bb0907;
	width: 50px;
}
.simple-marquee-container .fa, .simple-marquee-container .fas {
	font-family: "Font Awesome 5 Free";
}
.simple-marquee-container .marquee-content-items li:after {
	display: none;
}
	
.marquee-after {
	position: absolute;
	width: 5px;
	height: 100%;
	right: 0;
	z-index: 99;
	background: #ff8c00;
}

.logo_provider {
	display: inline-block;
	background-position: center;
	background-repeat: no-repeat;
	height: 30px;
	width: 32px;
	background-size: 25px;
}
.logo_provider_pp {
	background-image: url('/images/Pragmaticplay.svg');
	background-size: 20px;
}
.logo_provider_idn {
	background-image: url('/images/idnslot.svg');
}
.logo_provider_pgsoftslot {
	background-image: url('/images/pg.svg');
}
.logo_provider_hb {
	background-image: url('/images/habanero.svg');
}
.logo_provider_mg {
	background-image: url('/images/microgaming.svg');
}
.logo_provider_isb {
	background-image: url('/images/isoftbet.svg');
}
.logo_provider_playstar {
	background-image: url('/images/playstar.svg');
}
.logo_provider_cq9 {
	background-image: url('/images/cq9-2.png');
}
.logo_provider_sg {
	background-image: url('/images/spadegaming.svg');
}
.logo_provider_netent {
	background-image: url('/images/netent.svg');
}
.logo_provider_ttg {
	background-image: url('/images/logo-ttg.svg');
}
.logo_provider_rtg {
	background-image: url('/images/rtg.svg');
}
.logo_provider_redtiger {
	background-image: url('/images/redtiger.svg');
}
.logo_provider_manaplay {
	background-image: url('/images/mannaplay.svg');
}
.logo_provider_simpleplay {
	background-image: url('/images/simpleplay.svg');
}
.logo_provider_gp {
	background-image: url('/images/gameplay.svg');
}
.logo_provider_fg {
	background-image: url('/images/gg.svg');
}
.logo_provider_newgames {
	background-image: url('/images/slots-icons.png');
	background-position: -34px 0;
	background-size: cover;
	height: 26px;
	width: 31px;
}


.percent {
	position: relative;
	background: #fff;
	border-radius: 10px;
}
.percent p {
	position: relative;
	z-index: 2;
	text-align: center;
	font-size: 14px;
	padding: 2px 0;
}
.percent-bar {
  background-color: #ffc107;
  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;
  background-color: #007bff;
  transition: width .6s ease;
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
  animation: ;
  z-index: 1;
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 10px 0 0 10px;
}

.popular h3 {
  text-transform: uppercase;
}

.popular .games {
	padding: 0;
}

.pop-games .owl-nav {
	font-size: 50px;
	color: #fff;
}
.pop-games .owl-prev, .pop-games .owl-next {
	position: absolute;
	top: 20%;
}
.pop-games .owl-prev {
	left: 0;
}
.pop-games .owl-next {
	right: 0;
}
.red {
  background-color: #EB0000;
}
.yellow {
  background-color: #FFD900;
}
.green {
  background-color: #00DE0B;
}
.blue {
	background-color: #1674CC;
}
.red {
	background-color: #bb0907;
}
.orange {
	background: linear-gradient(180deg, rgba(255,174,0,1) 0%, rgba(251,96,0,1) 100%);
}

.percent-text {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 5px;
	font-size: 13px;
	font-weight: 600;
}
.single-game-wrapper {
	margin-bottom: 5px;
}
.game_title {
	text-align: center;
}
.game_title h4 {
	font-size: 20px;
}


.nav-desktop, .ct-desktop, .nav-desktop.owl-carousel.owl-loaded {
	display: none;
}
.nav-desktop {
	margin-bottom: 50px;
}
.nav_mobile {
	display: flex;
	align-items: center;
}
.nav_text {
	font-size: 28px;
	font-weight: 600;
	color: #fff;
	margin-right: 15px;
	text-transform: uppercase;
}
.mbl-menu {
	background: #fff;
	padding: 0 15px;
	border-radius: 5px;
	width: 60%;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.mbl-menu .fas {
	margin-right: 10px;
}
.current-provider {
	display: flex;
	flex-direction: row-reverse;
	justify-content: end;
	align-items: center;
	width: 100%;
}
/*
.nav-mobile {
	display: none;
}
*/
.nav_mobile .icon_provider {
	margin-left: 5px;
}
.nav_mobile .icon_provider img {
	height: 30px;
}
.nav-mobile .owl-nav {
	color: #fff;
}
.games .game-menu {
	background: rgba(0,0,0,0.2);
	box-shadow: 0px -1px 7px 1px rgba(115, 102, 240,0.2);
	border-radius: 7px;
	margin-bottom: 30px;
}
.games .game-menu .nav-mobile .nav-item .nav-link {
	flex-direction: column;
	justify-content: center;
	border-right: 1px solid rgba(115, 102, 240,0.3);
}
.games .game-menu .nav-mobile .nav-item .nav-link.active:after {
	width: 0;
}
.games .game-menu .nav-mobile .nav-item .nav-link span.icon {
	margin-right: 0;
	margin-bottom: 5px;
}
.games .game-menu .nav.nav-mobile .nav-item .nav-link span {
	margin-right: 0;
}
.games .game-menu .nav-mobile .nav-item .nav-link span.text {
	font-size: 18px;
}
.nav-desktop.owl-carousel .owl-nav .owl-prev, .nav-desktop.owl-carousel .owl-nav .owl-next {
	background-color: #222;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255,255,255,0.05) 50%, rgba(0, 0, 0, 0.5) 100%);
	position: absolute;
	top: 0;
	width: 30px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.4);
}
.nav-desktop.owl-carousel .owl-nav .owl-prev {
	left: -30px;
}
.nav-desktop.owl-carousel .owl-nav .owl-next {
	right: -30px;
}
.nav-mobile .owl-prev, .nav-mobile .owl-next {
	background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
	position: absolute;
	top: 0;
	height: 100%;
	display: flex;
	align-items: center;
	width: 15px;
	justify-content: center;
  z-index: 333;
}
.nav-mobile.owl-carousel .owl-nav button.owl-next, .nav-mobile.owl-carousel .owl-nav button.owl-prev, .nav-mobile.owl-carousel button.owl-dot {
  background: #FFBB00;
}
.nav-mobile .owl-prev {
	left: -15px;
}
.nav-mobile .owl-next {
	right: -15px;
}
/*
.nav-mobile .logo_provider {
	height: 60px;
	transform: scale(0.6);
}
.nav-mobile .logo_provider.logo_provider_pp {
	background-position: 0 -468px;
}
.nav-mobile .logo_provider.logo_provider_idn {
	background-position: 0 -468px;
}
.nav-mobile .logo_provider.logo_provider_jk {
	background-position: -300px -378px;
}
.nav-mobile .logo_provider.logo_provider_isb {
	background-position: -600px -1088px;
}
.nav-mobile .logo_provider.logo_provider_sky {
	background-position: -100px -918px;
}
.nav-mobile .logo_provider.logo_provider_hb {
	background-position: -200px -288px;
}
.nav-mobile .logo_provider.logo_provider_sg {
	background-position: -100px -648px;
}
.nav-mobile .logo_provider.logo_provider_pt {
	background-position: -200px -468px;
}
.nav-mobile .logo_provider.logo_provider_ygg {
	background-position: -600px -918px;
}
.nav-mobile .logo_provider.logo_provider_ttg {
	background-position: -300px -649px;
}
.nav-mobile .logo_provider.logo_provider_playson {
	background-position: -400px -828px;
}
.nav-mobile .logo_provider.logo_provider_booming {
	background-position: -500px -918px;
}
.nav-mobile .logo_provider.logo_provider_pgsoftslot {
	background-position: 0 -1018px;
}
.nav-mobile .logo_provider.logo_provider_PlayNgo {
	background-position: -200px -828px;
}
.nav-mobile .logo_provider.logo_provider_cq9 {
	background-position: -100px -198px;
}
.nav-mobile .logo_provider.logo_provider_mg {
	background-position: -500px -378px;
}
.nav-mobile .logo_provider.logo_provider_gp {
	background-position: 0 -288px;
}
.nav-mobile .logo_provider.logo_provider_evoplay {
	background-position: -90px -1098px;
}
*/
.buttons {
	text-align: center;
	margin: 15px 0;
}
.buttons a {
	font-size: 30px;
	font-weight: 300;
	color: #fff;
	text-transform: uppercase;
	padding: 7px 15px;
	border-radius: 5px;
	width: 100%;
	text-align: center;
  line-height: 40px;
}
.buttons a.green {
  font-size: 44px;
  background: linear-gradient(180deg, rgba(75,227,85,1) 0%, rgba(0,133,7,1) 100%);
  padding: 15px;
}
.buttons a.blue {
  font-size: 22px;
  background: linear-gradient(180deg, rgba(0,149,255,1) 0%, rgba(0,91,176,1) 100%);
}
.buttons a:hover {
  background-color: #ffc107;
}
.sec-title {
	text-align: center;
	margin: 0 0 30px;
	color: #fff;
	text-transform: uppercase;
}
.single a {
  display: block;
}
.mantap a img {
  border: 2px solid #FFD900;
}
.mantap a:before {
	background-image: url('../images/gacor-300.png');
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 75px;
	height: 50px;
	z-index: 2;
}
.games.game-page .all-games .single-game .part-img img {
	height: 130px;
  width: 100%;
	object-fit: cover; 
	border-radius: 10px;
  background: #fff;
}

.pop-single-game-wrapper .single-game .part-img img {
	border-radius: 10px;
}
.popular h3 {
	color: #fff;
	text-align: center;
	margin-bottom: 15px;
}
.pop-games {
	margin-bottom: 30px;
}

.desktop-content {
  display: none;
}
.home-artikel {
  color: #fff;
}
.home-artikel h1, .home-artikel h2, .home-artikel h3, .home-artikel h4, .home-artikel h5, .home-artikel h6, .home-artikel p {
  font-family: "Open Sans", sans-serif;
}

@media(max-width: 599px) {
	.nav-mobile.owl-carousel .owl-nav button.owl-next, .nav-mobile.owl-carousel .owl-nav button.owl-prev, .nav-mobile.owl-carousel button.owl-dot {
		font-size: 20px;
    color: #000;
	}
  .nav-mobile.owl-carousel .owl-stage-outer {
  /*  padding: 0 .9rem;*/
  }
	.pop-single-game-wrapper {
		background: linear-gradient(180deg, rgba(102,0,0,1) 0%, rgba(89,0,0,1) 50%, rgba(43,0,0,1) 100%);
    border-radius: 5px;
    padding: .25rem;
	}
	.karusel-wrapper {
		padding: 50px 0 30px;
	}
	.pop-games .owl-item.active.center {
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
		z-index: 3;
	}
	.pop-games.owl-carousel .owl-stage-outer {
		overflow: visible;
	}
	.games.game-page .all-games .pop-game .single-game {
		margin-bottom: 0;
	}
}
	
@media(min-width: 600px) {
	.pop-single-game-wrapper .single-game .part-img img {
		height: 132px;
	}
}
@media(min-width: 768px) {
	.nav_mobile, .ct-mobile, .nav-mobile.owl-carousel.owl-loaded, .mbl-content {
		display: none;
	}
	.nav-desktop, .ct-desktop, .nav-desktop.owl-carousel.owl-loaded, .desktop-content { 
		display: block;
	}
	.tanggal span {
		display: inline-block;
	}
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
  .breadcrumb-miscoo .breadcrumb-content h2.title {
    font-size: 24px;
    line-height: 34px;
    margin-top: -9px;
    margin-bottom: 18px;
  }
	.pop-games .owl-prev, .pop-games .owl-next {
		top: 15%;
	}

  .breadcrumb-miscoo .breadcrumb-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .breadcrumb-miscoo .breadcrumb-img {
    display: none;
  }

  .breadcrumb-miscoo .breadcrumb-content ul li {
    font-size: 15px;
    padding: 5px 15px 9px;
  }

  .breadcrumb-miscoo .breadcrumb-content ul li.arrow {
    padding: 5px 15px 9px;
  }

  .breadcrumb-miscoo .breadcrumb-content {
    padding: 30px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
  .breadcrumb-miscoo .breadcrumb-content h2.title {
    font-size: 28px;
    line-height: 38px;
    margin-top: -8px;
    margin-bottom: 18px;
  }

  .breadcrumb-miscoo .breadcrumb-content p {
    font-size: 16px;
    line-height: 26px;
    max-width: 500px;
    display: inline-block;
  }

  .breadcrumb-miscoo .breadcrumb-img {
    display: none;
  }

  .breadcrumb-miscoo .breadcrumb-content ul li {
    font-size: 15px;
  }

  .breadcrumb-miscoo .breadcrumb-content {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-miscoo .breadcrumb-img img {
    width: 450px;
  }

  .breadcrumb-miscoo .breadcrumb-content h2.title {
    font-size: 34px;
    line-height: 44px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .news .blog-filter-area .blog-search form {
    margin-bottom: 10px;
  }

  .news .blog-filter-area {
    padding: 15px;
    padding-bottom: 5px;
  }

  .news .blog-filter-area .filtering .dropdown {
    margin-bottom: 10px;
  }

  .news .misco-pagination {
    margin-top: 0;
  }

  .news .misco-pagination ul li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
  }

  .news.blog-page {
    padding-bottom: 50px;
  }

  .blog-details .part-post .part-meta {
    display: none;
  }

  .blog-details .part-post .part-meta .left-side {
    display: none;
  }

  .blog-details .part-post {
    background: transparent;
    padding-bottom: 0;
  }

  .blog-details .part-post .part-text {
    padding: 0;
  }

  .blog-details .part-post .part-text h2.title {
    font-size: 24px;
    line-height: 34px;
    margin-top: -9px;
    margin-bottom: 14px;
  }

  .blog-details .part-post .part-img {
    margin-bottom: 30px;
  }

  .blog-details .part-post .part-text .text-with-img {
    margin-top: 21px;
    margin-bottom: 0;
  }

  .blog-details .part-post .part-text .text-with-img .text-img {
    margin-bottom: 20px;
  }

  .blog-details .part-post .part-text p {
    line-height: 28px;
  }

  .blog-details {
    padding: 50px 0;
  }

  .blog-details .part-comment {
    padding: 20px;
  }

  .blog-details .part-comment .all-comments .single-comment {
    display: block;
  }

  .blog-details .part-comment .all-comments .single-comment .part-user {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .blog-details .part-comment .all-comments .single-comment .part-comment-text p {
    line-height: 28px;
  }

  .blog-details .part-comment .all-comments .single-comment button.reply-comment {
    position: relative;
    margin-top: 30px;
  }

  .blog-details .part-comment .all-comments .single-comment.reply {
    padding-left: 0;
  }

  .blog-details .comment-form {
    padding: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .news .blog-filter-area {
    background: transparent;
  }

  .news .blog-filter-area .blog-search form {
    margin-bottom: 10px;
  }

  .news .blog-filter-area {
    padding: 0;
  }

  .news .blog-filter-area .filtering .dropdown {
    margin-bottom: 10px;
  }

  .news .misco-pagination {
    margin-top: 0;
  }

  .news .misco-pagination ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }

  .news.blog-page {
    padding-bottom: 50px;
  }

  .blog-details .part-post .part-meta {
    display: none;
  }

  .blog-details .part-post .part-meta .left-side {
    display: none;
  }

  .blog-details .part-post .part-text h2.title {
    font-size: 30px;
    line-height: 40px;
    margin-top: -9px;
    margin-bottom: 14px;
  }

  .blog-details .part-post .part-img {
    margin-bottom: 30px;
  }

  .blog-details .part-post .part-text .text-with-img {
    margin-top: 21px;
    margin-bottom: 0;
  }

  .blog-details .part-post .part-text .text-with-img .text-img {
    margin-bottom: 20px;
  }

  .blog-details .part-post .part-text p {
    line-height: 28px;
  }

  .blog-details {
    padding: 50px 0;
  }

  .blog-details .part-comment .all-comments .single-comment {
    display: block;
  }

  .blog-details .part-comment .all-comments .single-comment .part-user {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .blog-details .part-comment .all-comments .single-comment .part-comment-text p {
    line-height: 28px;
  }

  .blog-details .part-comment .all-comments .single-comment button.reply-comment {
    position: relative;
    margin-top: 30px;
  }

  .blog-details .part-comment .all-comments .single-comment.reply {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .news .blog-filter-area {
    background: transparent;
    padding: 0;
  }

  .news .misco-pagination {
    margin-top: 0;
  }

  .news.blog-page {
    padding-bottom: 50px;
  }

  .blog-details .part-post .part-meta {
    display: none;
  }

  .blog-details .part-post .part-meta .left-side {
    display: none;
  }

  .blog-details .part-post .part-text h2.title {
    font-size: 30px;
    line-height: 40px;
    margin-top: -9px;
    margin-bottom: 14px;
  }

  .blog-details .part-post .part-img {
    margin-bottom: 30px;
  }

  .blog-details .part-post .part-text .text-with-img {
    margin-top: 21px;
    margin-bottom: 0;
  }

  .blog-details .part-post .part-text .text-with-img .text-img {
    margin-bottom: 20px;
  }

  .blog-details .part-post .part-text p {
    line-height: 28px;
  }

  .blog-details {
    padding: 50px 0;
  }

  .blog-details .part-comment .all-comments .single-comment .part-comment-text p {
    line-height: 28px;
  }

  .blog-details .part-comment .all-comments .single-comment.reply {
    padding-left: 40px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .about-us .part-text h2 {
    font-size: 26px;
    line-height: 36px;
    margin-top: -8px;
  }

  .about-us .part-text h2 br {
    display: none;
  }

  .about-us .part-statics .single-statics {
    background: #2a2a2a;
    margin: 0 0 10px;
    padding: 30px;
  }

  .about-us .part-img {
    margin-top: 30px;
  }

  .about-us {
    padding: 60px 0;
  }

  .team {
    padding: 60px 0 30px;
  }

  .team .single-member {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 575px) {
  .about-us .part-text h2 {
    font-size: 26px;
    line-height: 36px;
    margin-top: -8px;
  }

  .about-us .part-text h2 br {
    display: none;
  }

  .about-us .part-img {
    margin-top: 30px;
  }

  .about-us {
    padding: 60px 0;
  }

  .about-us .part-statics .row {
    flex-wrap: nowrap;
  }
  .about-us .part-statics .row [class*=col] .single-statics {
    display: block;
    background: #2a2a2a;
    padding: 15px;
  }

  .about-us .part-statics .single-statics .part-icon {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .team {
    padding: 60px 0 30px;
  }
  .team .row [class*=team] {
    width: 50%;
  }

  .team .single-member {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-us .part-text h2 {
    font-size: 26px;
    line-height: 36px;
    margin-top: -8px;
  }

  .about-us .part-text h2 br {
    display: none;
  }

  .about-us .part-img {
    margin-top: 30px;
  }

  .about-us {
    padding: 60px 0;
  }

  .about-us .part-statics .single-statics {
    display: block;
    background: #2a2a2a;
    padding: 15px;
  }

  .about-us .part-statics .single-statics .part-icon {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .team {
    padding: 60px 0 30px;
  }

  .team .single-member {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-us .part-text h2 {
    font-size: 36px;
    line-height: 50px;
    margin-top: -8px;
  }

  .about-us .part-img {
    margin-top: 40px;
    height: 300px;
    overflow: hidden;
  }

  .about-us {
    padding: 60px 0;
  }

  .about-us .part-statics .single-statics {
    background: #2a2a2a;
    padding: 30px;
  }

  .team {
    padding: 60px 0 30px;
  }

  .team .single-member {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .games .all-games .title-cover .games-title {
    font-size: 22px;
  }

  .games.game-page {
    padding: 15px 0 60px;
  }

  .games.game-page .games-filter-area {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .games .all-games .title-cover .games-title {
    font-size: 22px;
  }

  .games.game-page {
    padding: 60px 0;
  }

  .games.game-page .games-filter-area {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .games .all-games .title-cover .games-title {
    font-size: 22px;
  }

  .games.game-page {
    padding: 60px 0;
  }

  .games.game-page .games-filter-area {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contest-section .contest-date-text:after, .contest-section .single-contest:first-child .part-right .contest-date-text h4 span.clndr-icon:after, .contest-section .contest-date-text:before, .contest-section .contest-date-text h4 span.clndr-icon:after {
    display: none;
  }

  .contest-section .contest-date-text p {
    padding-left: 0;
  }

  .contest-section .contest-date-text h4 {
    font-size: 18px;
    line-height: 28px;
  }

  .contest-section .contest-date-text a.def-btn {
    margin-left: 0;
  }

  .contest-section .single-contest:nth-child(even) .part-right .contest-date-text p {
    padding-right: 0;
  }

  .contest-section .single-contest:nth-child(even) .part-right .contest-date-text a.def-btn {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contest-section {
    padding: 60px 0;
  }

  .contest-section .single-contest {
    margin-bottom: 30px;
  }

  .contest-section .contest-head .choose-game ul {
    margin: 0 -5px;
  }

  .contest-section .contest-head .choose-game ul li {
    margin: 0 5px;
  }

  .contest-section .contest-head .choose-game ul li p.game-name {
    z-index: 5;
  }

  .contest-section .single-contest:nth-child(even) .part-left {
    order: 0;
  }

  .contest-section .contest-date-text h4 span.clndr-icon {
    display: none;
  }

  .contest-section .contest-date-text h4 {
    font-size: 18px;
    line-height: 28px;
  }

  .contest-section .contest-date-text p {
    padding-left: 0;
  }

  .contest-section .contest-date-text a.def-btn {
    margin-left: 0;
  }

  .contest-section .contest-date-text {
    padding: 30px;
    background: #242424;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contest-section .single-contest:nth-child(even) .part-right {
    text-align: left;
  }

  .contest-section .single-contest:nth-child(even) .part-right .contest-date-text p {
    padding-right: 0;
  }

  .contest-section .single-contest:nth-child(even) .part-right .contest-date-text a.def-btn {
    margin-right: 0;
  }

  .contest-section .single-contest:nth-child(even) .part-right .contest-date-text {
    align-items: flex-start;
  }

  .contest-section .contest-date-text:before {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contest-section {
    padding: 60px 0;
  }

  .contest-section .single-contest {
    margin-bottom: 30px;
  }

  .contest-section .contest-head .choose-game ul {
    display: inline-table;
    margin: -4px;
  }

  .contest-section .contest-head .choose-game ul li {
    width: calc(20% - 8px);
    display: inline-block;
    margin: 4px 4px;
  }

  .contest-section .contest-head .choose-game ul li p.game-name {
    z-index: 5;
  }

  .contest-section .contest-head .control-contest {
    padding: 0;
    border: none;
    display: block;
    margin-bottom: 40px;
  }

  .contest-section .contest-head .control-contest .weeki-filter ul {
    display: block;
  }

  .contest-section .contest-head .control-contest .weeki-filter ul li a {
    display: block;
    margin-right: 0;
    margin-bottom: 1px;
  }

  .contest-section .contest-head .control-contest .in-play-and-ended-filter .nav-tabs {
    flex-wrap: nowrap;
    margin-bottom: 10px;
  }

  .contest-section .contest-head .control-contest .in-play-and-ended-filter .nav-tabs .nav-item .nav-link {
    margin-right: 10px;
  }

  .contest-section .contest-head .control-contest .in-play-and-ended-filter .nav-tabs .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .contest-section .contest-head .control-contest .in-play-and-ended-filter .nav-tabs .nav-item {
    flex: 1;
  }

  .contest-section .single-contest:nth-child(even) .part-left {
    order: 0;
  }

  .contest-section .contest-date-text h4 span.clndr-icon {
    display: none;
  }

  .contest-section .contest-date-text h4 {
    font-size: 18px;
    line-height: 28px;
  }

  .contest-section .contest-date-text p {
    padding-left: 0;
  }

  .contest-section .contest-date-text a.def-btn {
    margin-left: 0;
  }

  .contest-section .contest-date-text {
    padding: 30px;
    background: #242424;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contest-section .single-contest:nth-child(even) .part-right {
    text-align: left;
  }

  .contest-section .single-contest:nth-child(even) .part-right .contest-date-text p {
    padding-right: 0;
  }

  .contest-section .single-contest:nth-child(even) .part-right .contest-date-text a.def-btn {
    margin-right: 0;
  }

  .contest-section .single-contest:nth-child(even) .part-right .contest-date-text {
    align-items: flex-start;
  }

  .contest-section .contest-date-text:before {
    display: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .contest-section {
    padding: 60px 0;
  }

  .contest-section .single-contest {
    margin-bottom: 30px;
  }

  .contest-section .contest-head .choose-game ul {
    display: inline-table;
    margin: -4px;
  }

  .contest-section .contest-head .choose-game ul li {
    width: calc(25% - 8px);
    display: inline-block;
    margin: 4px 4px;
  }

  .contest-section .contest-head .choose-game ul li p.game-name {
    z-index: 5;
  }

  .contest-section .contest-head .control-contest {
    padding: 0;
    border: none;
    display: block;
    margin-bottom: 40px;
  }

  .contest-section .contest-head .control-contest .weeki-filter ul {
    display: block;
  }

  .contest-section .contest-head .control-contest .weeki-filter ul li a {
    display: block;
    margin-right: 0;
    margin-bottom: 1px;
  }

  .contest-section .contest-head .control-contest .in-play-and-ended-filter .nav-tabs {
    flex-wrap: nowrap;
    margin-bottom: 10px;
  }

  .contest-section .contest-head .control-contest .in-play-and-ended-filter .nav-tabs .nav-item .nav-link {
    margin-right: 10px;
  }

  .contest-section .contest-head .control-contest .in-play-and-ended-filter .nav-tabs .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .contest-section .contest-head .control-contest .in-play-and-ended-filter .nav-tabs .nav-item {
    flex: 1;
  }

  .contest-section .single-contest:nth-child(even) .part-left {
    order: 0;
  }

  .contest-section .single-contest .contest-box .part-text a.title {
    font-size: 22px;
    line-height: 32px;
    padding: 0 30px;
  }

  .contest-section .single-contest .contest-box .part-text .part-timer .single-time span.title {
    display: none;
  }

  .contest-section .single-contest .contest-box .part-text .part-timer .single-time {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .contest-section .single-contest .contest-box .part-text .part-timer .single-time span.number {
    padding: 0;
    font-size: 24px;
  }

  .contest-section .single-contest .contest-box .part-text .part-info ul {
    display: block;
    text-align: center;
  }

  .contest-section .single-contest .contest-box .part-text .part-info ul li {
    margin: 0 5px 20px;
    width: calc(100% / 2 - 20px);
    display: inline-block;
  }

  .contest-section .single-contest .contest-box {
    padding: 30px 0;
    padding-bottom: 10px;
  }

  .contest-section .contest-date-text h4 span.clndr-icon {
    display: none;
  }

  .contest-section .contest-date-text h4 {
    font-size: 18px;
    line-height: 28px;
  }

  .contest-section .contest-date-text p {
    padding-left: 0;
  }

  .contest-section .contest-date-text a.def-btn {
    margin-left: 0;
  }

  .contest-section .contest-date-text {
    padding: 30px;
    background: #242424;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .contest-section .single-contest:nth-child(even) .part-right {
    text-align: left;
  }

  .contest-section .single-contest:nth-child(even) .part-right .contest-date-text p {
    padding-right: 0;
  }

  .contest-section .single-contest:nth-child(even) .part-right .contest-date-text a.def-btn {
    margin-right: 0;
  }

  .contest-section .single-contest:nth-child(even) .part-right .contest-date-text {
    align-items: flex-start;
  }

  .contest-section .contest-date-text:before {
    display: none;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .promotions {
    padding: 60px 0;
  }

  .promotions .single-promotion .part-text h4.title {
    font-size: 22px;
    line-height: 32px;
  }

  .promotions .single-promotion .part-text {
    padding: 30px;
  }

  .promotions .view-more-btn .def-btn {
    margin-right: 0;
    height: 40px;
    line-height: 40px;
  }

  .promotions .view-more-btn a.btc-text {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 991px) {
  .promotions {
    padding: 60px 0;
  }

  .promotions .single-promotion .part-text h4.title {
    font-size: 22px;
    line-height: 32px;
  }

  .promotions .single-promotion .part-text {
    padding: 30px;
  }

  .promotions .view-more-btn .def-btn {
    height: 40px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
  .affiliate .part-affilate-feature .single-feature {
    display: block;
    padding: 0 15px;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .affiliate .part-affilate-feature .single-feature .part-icon {
    width: 60px;
    margin-bottom: 25px;
  }

  .affiliate .part-affilate-feature {
    padding: 30px;
    margin-top: 20px;
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
  }

  .affiliate {
    padding: 60px 0;
  }

  .affiliate .part-para .title {
    font-size: 26px;
    line-height: 36px;
  }

  .affiliate .affiliate-how-to-do .single-affiliate {
    margin: 0 25px;
  }
  .affiliate .affiliate-how-to-do .single-affiliate:last-child {
    margin: 0 25px;
  }

  .affiliate .affiliate-how-to-do {
    padding-bottom: 30px;
    margin-bottom: 40px;
    margin-top: 40px;
  }

  .affiliate .affiliate-how-to-do h2.title {
    font-size: 26px;
    line-height: 36px;
  }

  .affiliate .affiliate-how-to-do .single-affiliate .part-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }

  .affiliate .affiliate-how-to-do .single-affiliate .part-icon .sr-num {
    top: -9px;
    right: -5px;
  }

  .affiliate .affiliate-how-to-do .single-affiliate .part-text p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .affiliate {
    padding: 60px 0;
  }

  .affiliate .part-para .title {
    font-size: 26px;
    line-height: 36px;
  }

  .affiliate .part-affilate-feature .single-feature {
    display: block;
    background: #2a2a2a;
    padding: 30px;
  }

  .affiliate .part-affilate-feature .single-feature .part-icon {
    width: 60px;
    margin-bottom: 25px;
  }

  .affiliate .part-affilate-feature {
    padding: 0;
    background: transparent;
    margin-top: 20px;
  }

  .affiliate .affiliate-how-to-do h2.title {
    font-size: 26px;
    line-height: 36px;
  }

  .affiliate .affiliate-how-to-do .single-affiliate .part-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }

  .affiliate .affiliate-how-to-do .single-affiliate .part-icon .sr-num {
    top: -9px;
    right: -5px;
  }

  .affiliate .affiliate-how-to-do .single-affiliate .part-text p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
  }

  .affiliate .affiliate-how-to-do .single-affiliate {
    margin-right: 0;
    display: block;
    margin-bottom: 30px;
  }

  .affiliate .affiliate-how-to-do {
    padding-bottom: 30px;
    margin-bottom: 40px;
    margin-top: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .register .reg-body form h4.sub-title, .register .reg-body form .term-condition h4.title {
    font-size: 20px;
    color: #fff;
    line-height: 30px;
    letter-spacing: 0.5px;
  }

  .register .reg-body form input[type=text], .register .reg-body form input[type=email], .register .reg-body form input[type=password] {
    height: 50px;
  }

  .register .reg-body form input[type=text], .register .reg-body form input[type=email], .register .reg-body form input[type=password] {
    padding: 0 20px;
  }

  .register .reg-body form .term-condition {
    margin-top: 20px;
  }

  .register .reg-body form button.btn-form {
    float: none;
    margin-top: 15px;
  }

  .register {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .register .reg-body form h4.sub-title, .register .reg-body form .term-condition h4.title {
    font-size: 20px;
    color: #fff;
    line-height: 30px;
    letter-spacing: 0.5px;
  }

  .register .reg-body {
    padding: 30px;
  }

  .register .reg-body form input[type=text], .register .reg-body form input[type=email], .register .reg-body form input[type=password] {
    height: 50px;
  }

  .additional-info {
    margin-top: 20px;
  }

  .register .reg-body form input[type=text], .register .reg-body form input[type=email], .register .reg-body form input[type=password] {
    padding: 0 20px;
  }

  .register .reg-body form .term-condition {
    margin-top: 20px;
  }

  .register .reg-body form button.btn-form {
    float: none;
    margin-top: 15px;
  }

  .register {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .register .reg-body form h4.sub-title, .register .reg-body form .term-condition h4.title {
    font-size: 20px;
    color: #fff;
    line-height: 30px;
    letter-spacing: 0.5px;
  }

  .register .reg-body {
    padding: 30px;
  }

  .register .reg-body form input[type=text], .register .reg-body form input[type=email], .register .reg-body form input[type=password] {
    height: 40px;
  }

  .additional-info {
    margin-top: 20px;
  }

  .register .reg-body form input[type=text], .register .reg-body form input[type=email], .register .reg-body form input[type=password] {
    padding: 0 20px;
  }

  .register .reg-body form .term-condition {
    margin-top: 20px;
  }

  .register .reg-body form .term-condition p {
    padding: 0;
    border: none;
  }

  .register .reg-body form button.btn-form {
    float: none;
    margin-top: 15px;
  }

  .register {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .game-details {
    padding: 60px 0;
  }

  .game-details .recent-activity .single-col {
    margin-bottom: 0;
  }

  .game-details .part-prev {
    height: auto;
  }

  .game-details .part-prev a.play-btn {
    width: 180px;
    text-align: center;
  }

  .game-details .game-descr .details-tabs-menu .nav-tabs .nav-item .nav-link {
    margin: 5px 5px;
    padding: 0 20px;
  }

  .game-details .game-descr .details-tab-pan {
    padding: 30px 15px;
    margin-bottom: 30px;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane h3 {
    font-size: 22px;
    text-align: center;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane .bet-control .btn-group button, .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling .btn-group button {
    padding: 0 15px;
    font-size: 16px;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling {
    margin-top: 10px;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling .number {
    font-size: 18px;
    margin-left: 15px;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane .how-to-play h3 {
    font-size: 22px;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane .how-to-play ul li {
    line-height: 28px;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane form .input-group {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 575px) {
  .game-details {
    padding: 60px 0;
  }

  .game-details .recent-activity .single-col {
    margin-bottom: 0;
  }

  .game-details .part-prev {
    height: auto;
  }

  .game-details .part-prev a.play-btn {
    width: 180px;
    text-align: center;
  }

  .game-details .game-descr .details-tabs-menu .nav-tabs .nav-item .nav-link {
    margin: 5px 5px;
    padding: 0 20px;
  }

  .game-details .game-descr .details-tab-pan {
    padding: 30px;
    margin-bottom: 30px;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane h3 {
    font-size: 22px;
    text-align: center;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling {
    margin-top: 10px;
    justify-content: center;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling .number {
    font-size: 18px;
    margin-left: 15px;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane .how-to-play h3 {
    font-size: 22px;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane .how-to-play ul li {
    line-height: 28px;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane form .input-group {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .game-details {
    padding: 60px 0;
  }

  .game-details .recent-activity .single-col {
    margin-bottom: 0;
  }

  .game-details .part-prev {
    height: auto;
  }

  .game-details .part-prev a.play-btn {
    width: 180px;
    text-align: center;
  }

  .game-details .game-descr .details-tabs-menu .nav-tabs .nav-item .nav-link {
    margin: 5px 5px;
    padding: 0 20px;
  }

  .game-details .game-descr .details-tab-pan {
    padding: 30px;
    margin-bottom: 30px;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane h3 {
    font-size: 22px;
    text-align: center;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling {
    margin-top: 10px;
    justify-content: center;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane .roll-controlling .number {
    font-size: 18px;
    margin-left: 15px;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane .how-to-play h3 {
    font-size: 22px;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane .how-to-play ul li {
    line-height: 28px;
  }

  .game-details .game-descr .details-tab-pan .tab-content .tab-pane form .input-group {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .game-details .game-descr .details-tab-pan {
    margin-bottom: 30px;
  }

  .game-details {
    padding: 60px 0 30px;
  }

  .game-details .recent-activity .single-col {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .faq {
    padding: 60px 0 46px;
  }

  .faq .faq-sidebar {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .faq .faq-content {
    margin-left: 0;
  }

  .faq .faq-content .single-faq h4 {
    font-size: 22px;
    line-height: 34px;
  }

  .faq .faq-content .single-faq {
    padding: 30px 30px 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
  .faq {
    padding: 60px 0 46px;
  }

  .faq .faq-sidebar {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .faq .faq-content {
    margin-left: 0;
  }

  .faq .faq-content .single-faq h4 {
    font-size: 22px;
    line-height: 34px;
  }

  .faq .faq-content .single-faq {
    padding: 30px 30px 16px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .dashboard-menu .navbar-toggler {
    padding: 0;
    height: 45px;
    width: 45px;
    border: none;
    outline: none;
    cursor: pointer;
    background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
    color: #fff;
    font-size: 25px;
    border-radius: 0;
  }

  .user-dashboard .dashboard-menu .navbar .navbar-nav .nav-item .nav-link {
    margin: 0;
    margin-bottom: 10px;
    padding: 12px 20px;
  }

  .user-dashboard .dashboard-menu .navbar .navbar-nav {
    margin-top: 20px;
  }

  .user-dashboard .dashboard-menu .navbar {
    padding: 15px;
  }

  .user-dashboard .dashboard-menu .navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-bottom: 0px;
  }

  .user-dashboard {
    padding: 60px 0;
  }

  .user-dashboard .user-statics .single-statics {
    margin-bottom: 20px;
    padding: 20px;
  }

  .user-dashboard .user-benmathew {
    padding: 20px;
    margin-bottom: 30px;
  }

  .user-dashboard .transaction-chart {
    padding: 20px;
  }

  .user-dashboard .transactions-table {
    padding: 40px 20px 35px;
    margin-top: 30px;
  }

  .misco-data-table.dataTable {
    width: 1000px !important;
  }

  .user-dashboard .transactions-table .dataTables_wrapper .dataTables_info {
    padding-top: 15px;
    padding-left: 0;
  }

  .user-dashboard .transactions-table .dataTables_wrapper .dataTables_paginate {
    padding-top: 5px;
  }

  .user-dashboard .transactions-table .dataTables_wrapper .dataTables_paginate .paginate_button {
    height: 35px;
    line-height: 30px;
    padding: 0 15px;
    margin: 5px;
  }

  .user-dashboard .transactions-table .dataTables_wrapper .dataTables_length label select {
    width: 50px;
    height: 35px;
  }

  .user-dashboard .transactions-table .dataTables_wrapper .dataTables_filter label input {
    height: 35px;
    width: 70%;
  }

  .user-dashboard .transactions-table .dataTables_wrapper .dataTables_filter label {
    margin-bottom: 25px;
  }

  .user-dashboard .transactions-table .dataTables_wrapper .dataTables_length label {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .misco-data-table.dataTable {
    width: 850px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .dashboard-menu .navbar-toggler {
    padding: 0;
    height: 45px;
    width: 45px;
    border: none;
    outline: none;
    cursor: pointer;
    background: -webkit-linear-gradient(130deg, #ff416c, #ff4b2b);
    color: #fff;
    font-size: 25px;
    border-radius: 0;
  }

  .user-dashboard .dashboard-menu .navbar .navbar-nav .nav-item .nav-link {
    margin: 0;
    margin-bottom: 10px;
    padding: 12px 20px;
  }

  .user-dashboard .dashboard-menu .navbar .navbar-nav {
    margin-top: 20px;
  }

  .user-dashboard .dashboard-menu .navbar {
    padding: 15px;
  }

  .user-dashboard .dashboard-menu .navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-bottom: 0px;
  }

  .user-dashboard {
    padding: 60px 0;
  }

  .user-dashboard .user-statics .single-statics {
    margin-bottom: 20px;
    padding: 20px;
  }

  .user-dashboard .user-benmathew {
    padding: 20px;
    margin-bottom: 30px;
  }

  .user-dashboard .transaction-chart {
    padding: 20px;
  }

  .user-dashboard .transactions-table {
    padding: 40px 20px 35px;
    margin-top: 30px;
  }

  .misco-data-table.dataTable {
    width: 1000px !important;
  }

  .user-dashboard .transactions-table .dataTables_wrapper .dataTables_info {
    padding-top: 15px;
    padding-left: 0;
    float: none;
    text-align: center;
  }

  .user-dashboard .transactions-table .dataTables_wrapper .dataTables_paginate {
    padding-top: 15px;
    float: none;
    text-align: center;
  }

  .user-dashboard .transactions-table .dataTables_wrapper .dataTables_length label select {
    width: 50px;
    height: 35px;
  }

  .user-dashboard .transactions-table .dataTables_wrapper .dataTables_filter label input {
    height: 35px;
    width: 70%;
  }

  .user-dashboard .transactions-table .dataTables_wrapper .dataTables_filter label {
    margin-bottom: 25px;
  }

  .user-dashboard .transactions-table .dataTables_wrapper .dataTables_length label {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .user-dashboard .dashboard-menu .navbar .navbar-nav .nav-item .nav-link {
    padding: 15px 23px;
  }
}
.svg-gmw {
  display: inline-block;
  background-image: url('https://is99.online/assets/img/icon/provider/gmw.svg');
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
  width: 32px;
  background-size: 32px;
}
.svg-pragmatic-slot-mania {
	display: inline-block;
	background-image: url('https://is99.online/assets/img/icon/provider/pragmatic-slot-mania.svg');
	background-position: center;
	background-repeat: no-repeat;
	height: 30px;
	width: 32px;
}
.svg-btg {
	display: inline-block;
	background-image: url('https://is99.online/assets/img/icon/provider/btg.svg');
	background-position: center;
	background-repeat: no-repeat;
	height: 30px;
	width: 32px;
}
.nav-link i {
	margin-right: 10px;
}

.antirungkad .modal-title {
  color: #ffd800;
}
.rungkad .modal-title {
  color: #fff;
}
#polaGacorModal .percents {
  position: relative;
  background: #fff;
  border-radius: 5px;
}
#polaGacorModal #percentText {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #000;
  font-weight: 600;
  text-shadow: 1px 1px #fff;
}
#polaGacorModal .percentBar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 5px 0 0 5px;
}
#polaGacorModal .game-img {
  min-height: 200px;
  background: #fff;
  color: #fff;
}
.antirungkad .modal-body {
  background: linear-gradient(180deg, rgba(102,0,0,1) 0%, rgba(89,0,0,1) 50%, rgba(43,0,0,1) 100%);
}
.rungkad .modal-body {
  background: #1A1A1A;
}
#polaGacorModal .modal-header {
  background: linear-gradient(180deg, rgba(222,3,3,1) 0%, rgba(135,0,0,1) 100%);
  color: #fff;
  text-transform: uppercase;
  padding: 0 0 0 2rem;
  border: 0;
}
#polaGacorModal .polaClose {
  font-size: 2rem;
  padding: .75rem 1.25rem;
  background: #fff;
  color: #b40001;
  font-weight: 700;
  cursor: pointer;
}
.antirungkad .polaTime h3, .antirungkad .polaContent h3 {
  margin: 0;
  color: #ffd800;
}
.rungkad .polaTime h3, .rungkad .polaContent h3 {
  margin: 0;
  color: #FF0000;
}
.jamgacorRange {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
#polaGacorModal .modal-footer {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
}
#polaGacorModal .modal-footer > * {
  margin: 0;
}
.antirungkad .modal-footer {
  background: #2a0001;
}
.rungkad .modal-footer {
  background: #1a1a1a;
}
.pola {
  color: #fff;
  font-size: 1.25rem;
}
#polaGacorModal .modalfooterLink {
  display: block;
  height: 100%;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}
#polaGacorModal .modalfooterLink.main {
  background: linear-gradient(180deg, rgba(75,227,85,1) 0%, rgba(0,133,7,1) 100%);
}
#polaGacorModal .modalfooterLink.tutup {
  background: linear-gradient(180deg, rgba(214,214,214,1) 0%, rgba(117,117,117,1) 100%);
}
.bacaPola {
  background: linear-gradient(180deg, rgba(0,149,255,1) 0%, rgba(0,91,176,1) 100%);
  color: #fff;
  font-size: 1.25rem;
  text-transform: uppercase;
  border-radius: 5px;
}
.bacaPola:hover, .bacaPola:focus {
  background: #fff;
  color: #006acd;
}
.play-button .btn {
  background: rgb(21,194,192,1);
  background: linear-gradient(180deg, rgba(0,149,255,1) 0%, rgba(0,91,176,1) 100%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 10px;
  color: #fff;
  height: 1.5rem;
  line-height: 1.2rem;
  text-transform: uppercase;
  text-shadow: 1px 1px rgba(0,0,0,0.25);
  padding: .1rem;
}
.catatan {
  font-size: 16px;
  text-transform: uppercase;
}
.catatan span {
  color: rgba(222,3,3,1);
}
/*
@media(max-width: 1024px) {
	.games .all-games .single-game .part-text a {
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: transparent;
		font-size: 0;
	}
	.games .all-games .single-game .part-text a:hover {
		background: transparent;
	}
	.def-btn:after {
		display: none;
	}
}
*/