body {
  font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, 0.71);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  background: #151436;
  /*background-image: url(../../assets/img/bg_purple_k4games.png);*/
}

a {
  text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}

.container {
  padding: 0;
}

.container-fluid {
  max-width: 1320px;
  padding: 0;
}

.master {
  width: 100%;
  float: left;
  position: relative;
  height: auto !important;
}

.left-sidebar {
  width: 300px;
  height: 100vh;
  background: #262653;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  padding: 40px 0 0px 40px;
}

@media only screen and (max-width: 991px) {
  .left-sidebar {
    width: 100%;
    z-index: 9;
    height: 80px;
    padding: 0;
  }
}

@media only screen and (max-width: 991px) {
  .side-header {
    width: 100%;
    height: 80px;
    background: #262653;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px 0 15px;
  }
}

.icon-navbar {
  font-size: 35px;
}

.site-logo {
  margin-bottom: 46px;
  width: 212px;
}

@media only screen and (max-width: 991px) {
  .site-logo {
    margin-bottom: 0;
  }
}

.burger-left, .burger-right {
  cursor: pointer;
}

.left-categories {
  width: 100%;
  float: left;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

.left-categories::-webkit-scrollbar {
  width: 7px;
  height: 19px;
}

.left-categories::-webkit-scrollbar-track {
  background: #3b3b73;
}

.left-categories::-webkit-scrollbar-thumb {
  background-color: #111124;
  border-radius: 10px;
}

/* Hover */

.left-categories::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.left-categories li {
  width: 100%;
  float: left;
  position: relative;
  margin-bottom: 15px;
  padding-right: 15px;
  list-style: none;
}

.left-categories li a {
  display: block;
  position: relative;
  padding: 18px 10px 10px 60px;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  height: 60px;
  z-index: 2;
  transition: var(--anim);
  -moz-transition: var(--anim);
  -webkit-transition: var(--anim);
}

.left-categories li a:hover {
  color: rgba(140, 88, 250, 1);
}

.left-categories .category-item.active a {
  background: rgb(140, 88, 250, 1);
  background: linear-gradient(270deg, rgba(140, 88, 250, 1) 0%, rgba(103, 88, 250, 1) 100%);
  color: #fff;
  border-radius: 100px;
}

.left-categories li .g-icon {
  left: 10px;
  top: 10px;
}

:root {
  --anim: all ease-out 0.3s;
  --solid: rgb(103, 88, 250);
  --linear: linear-gradient(270deg, rgba(103, 88, 250, 1) 0%, rgba(140, 88, 250, 1) 100%);
  --color1: #151436;
  --color2: rgb(38, 38, 83);
}

.g-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #313169;
  position: absolute;
  left: 0;
  transition: var(--anim);
  -moz-transition: var(--anim);
  -webkit-transition: var(--anim);
}

@media only screen and (max-width: 991px) {
  .left-categories {
    position: absolute;
    top: 80px;
    left: -100vw;
    max-height: calc(100vh - 80px);
    background: #262653;
    padding: 20px 0 40px 30px;
    transition: var(--anim);
    -moz-transition: var(--anim);
    -webkit-transition: var(--anim);
  }
}

@media only screen and (max-width: 991px) {
  .left-categories.show {
    left: 0;
    right: 0;
  }
}

@media only screen and (max-width: 991px) {
  .left-categories {
    position: fixed;
    top: 80px;
    left: -100vw;
    max-height: calc(100vh - 80px);
    background: #262653;
    padding: 20px 0 40px 30px;
    transition: var(--anim);
    -moz-transition: var(--anim);
    -webkit-transition: var(--anim);
  }
}

/* main */

.main-content {
  width: calc(100% - 300px);
  height: auto;
  float: right;
  background: #151436;
  background-image: url(../../assets/img/bg_purple_k4games.png);
}

@media only screen and (max-width: 991px) {
  .main-content {
    width: 100%;
    padding-top: 80px;
  }
}

.main-content > * {
  padding: 24px !important;
}

@media only screen and (max-width: 991px) {
  #mainNav {
    display: none;
  }
}

.sidebar-right {
  position: fixed;
  right: -100%;
}

@media only screen and (max-width: 991px) {
  .sidebar-right {
    position: fixed;
    z-index: 9;
    background: #262653;
    height: calc(100vh - 80px);
    left: 100%;
    top: 80px;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
    transition: var(--anim);
    -moz-transition: var(--anim);
    -webkit-transition: var(--anim);
  }
}

@media only screen and (max-width: 991px) {
  .sidebar-right.show {
    left: 0;
    width: 100%;
    padding-top: 20px;
    padding-left: 30px !important;
    overflow-y: auto;
    padding-right: 30px !important;
    padding-bottom: 24px;
  }
}

@media (min-width: 991px) {
  .search {
    width: 33%;
  }
}

@media (max-width: 991px) {
  .search {
    margin-bottom: 35px;
  }
}

.search-form {
  line-height: 1;
  position: relative;
  padding: 0 !important;
}

.search-form label {
  padding: 0;
  vertical-align: middle;
  margin: 0;
  width: 100%;
  line-height: 1;
  position: relative;
}

.search-form .search-input {
  background: rgba(0,0,0,.35)!important;
  background-image: none !important;
  padding: 0 12px;
  margin: 0;
  outline: 0 !important;
  font-size: 14px !important;
  height: 36px;
  min-height: 0;
  line-height: 1;
  width: 100%;
  box-sizing: border-box;
  border-radius: 20px !important;
  border: none;
  font-weight: 800;
  color: white !important;
  font-family: 'Maven Pro';
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2);
}

.search-form .search-submit {
  text-decoration: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 10px !important;
  width: auto;
  display: inline-block !important;
  box-shadow: none !important;
  outline: 0;
  margin: 0;
  font-size: 14px !important;
  border: none;
  line-height: 31px;
  height: 36px;
  text-transform: capitalize;
  vertical-align: middle;
  transition: background-color .1s ease-in-out;
  box-sizing: border-box;
  border-radius: 0px 20px 20px 0px !important;
  color: #57aaff;
}

input::placeholder {
  color: #f9f9f9 !important;
  font-family: 'Nunito';
}

li.nav-item a {
  display: inline-block;
  padding: 13px 20px !important;
  color: #fff;
  font-size: 14px;
}

/* section title */

.section-title {
  position: relative;
  padding-left: 60px;
  padding-top: 6px;
  color: #fff;
  margin-bottom: 20px;
}

.section-title {
  font-size: 1.3rem;
}

.section-title h3, .section-title h2 {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}

.section-title .g-icon {
  top: 0;
}

/* slide */

.slider-container {
  position: relative;
  margin: 0 auto;
}

.slider {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 50%;
  max-width: 50%;
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
}

@media (min-width: 320px) {
  .slide {
    max-width: 33.33%;
    min-width: 33.33%;
  }
}

@media (min-width: 460px) {
  .slide {
    max-width: 25%;
    min-width: 25%;
  }
}

@media (min-width: 640px) {
  .slide {
    max-width: 16.6%;
    min-width: 16.6%;
  }
}

@media (min-width: 768px) {
  .slide {
    max-width: 12.5%;
    min-width: 12.5%;
  }
}

@media (min-width: 1024px) {
  .slide {
    max-width: 10%;
    min-width: 10%;
  }
}

@media (min-width: 1200px) {
  .slide {
    max-width: 8.333%;
    min-width: 8.333%;
  }
}

.prev {
  border-radius: 40px;
  left: 0;
}

.next {
  border-radius: 40px;
  right: 0;
}

.slides .game-item {
  position: relative;
  margin-left: 8px;
  margin-right: 8px;
}

.thumb {
  position: relative;
  display: block;
  height: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.thumb img {
  width: 100%;
  border-radius: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.overlay-content .heading {
  margin: 0;
  font-size: .875rem;
  color: white;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
  text-decoration: none;
  display: block;
  line-height: 1;
  max-width: 100%;
  transition: .4s ease-in-out;
}

.content .heading a {
  font-size: 14px;
  letter-spacing: -.02em;
}

.slider-navs {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 16px;
}

.top-games__navs {
  justify-content: center;
  margin-top: 15px;
}

.slider-navs__nav {
  width: 50px;
  height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.top-games__navs {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

@media (min-width: 720px) {
  .slider-navs__nav {
    display: flex;
  }
}

/* new game */

.grid-1, .grid-2, .grid-3 {
  padding: 12px;
  margin: 0;
}

.listing .game-item {
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  background: #262653;
  padding: 10px;
  height: 100%;
}

.list-thumbnail {
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  overflow: hidden;
}

.list-thumbnail img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.grid-1 .list-thumbnail img {
  width: 100%;
}

.list-info {
  position: relative;
  padding: 20px 10px;
}

.list-b-play {
  width: 48px;
  height: 48px;
  background: var(--solid);
  background: var(--linear);
  text-align: center;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  padding-top: 11px;
  padding-left: 3px;
  position: absolute;
  right: 20px;
  top: -24px;
}

.list-title {
  color: #fff !important;
  font-size: 18px;
  font-weight: 500;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-rating {
  color: #9595D1;
  font-size: 14px;
  width: 100%;
  float: left;
}

.star-on {
  color: #FFA73F;
  margin-right: 5px;
  margin-bottom: -3px;
  width: 16px;
  display: inline-block;
  font-size: 13.5px;
  position: relative;
  left: 0px;
  top: -4px;
}

.btn-capsule {
  display: inline-block;
  /*padding: 9px 20px;*/
  padding: 13px 20px;
  min-width: 120px;
  color: #fff;
  background: var(--solid);
  background: var(--linear);
  text-align: center;
  font-size: 14px;
  border-radius: 26px;
  -moz-border-radius: 26px;
  -webkit-border-radius: 26px;
  transition: var(--anim);
  -moz-transition: var(--anim);
  -webkit-transition: var(--anim);
}

.game-item .btn-capsule {
  height: 45px;
  width: 100%;
  display: inline-block;
  padding: 12px 20px;
  margin-bottom: -10px;
  margin-top: 25px;
}

.recomendation .game-item {
  border-radius: 15px;
  float: left;
  width: 100%;
}

.list-game.yml {
  width: 100%;
  float: left;
  padding: 5px;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  position: relative;
}

.list-game.yml .list-thumbnail.yml {
  width: 80px;
  float: left;
  position: relative;
}

.list-game.yml .list-thumbnail.yml img {
  border-radius: 12px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
}

.list-game.yml .list-info.yml {
  width: calc(100% - 80px);
  float: left;
  padding: 10px 60px 0px 20px;
  position: static;
}

.list-game.yml .list-info.yml .list-info-child.yml {
  width: 100%;
  float: left;
  font-size: 8px;
  font-weight: 500;
}

.list-game.yml .list-info.yml .list-info-child.yml .list-title {
  margin-bottom: 10px;
}

.list-info.yml .list-title {
  font-size: 16px;
}

.list-game.yml .list-info.yml .list-b-play {
  position: absolute;
  right: 15px;
  top: calc(50% - 24px);
}

h2 {
  font-size: 24px;
  font-weight: 600;
}

h1, h2, h3, h4 {
  color: #fff;
}

p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.text-area {
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  background: #262653;
  padding: 10px;
  height: 100%;
}

.sm-widget {
  margin-bottom: 30px;
  float: left;
  width: 100%;
  background: #262653;
  padding: 20px;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
}

.list-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

a:hover {
  color: #6758FA;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  margin-top: 30px;
}

.footer-area {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.sm-widget ul li::marker {
  color: #0d6efd;
}

.section-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
}

p.copyright {
  margin-bottom: 0;
  text-align: center;
  position: relative;
}

p.copyright .dsb-panel {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 1024px) {
  p.copyright .dsb-panel {
    position: relative;
    top: 0;
    right: 0;
    display: block;
    margin-top: 15px;
  }
}

/* detail */

.game-player {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  margin-right: 15px;
}

.game-iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 540px;
  max-height: 540px;
}

@media (min-width: 1400px) {
  .game-iframe-container {
    height: 600px;
    max-height: 600px;
  }
}

@media (max-width: 992px) {
  .game-iframe-container {
    padding-top: 56.25% !important;
    height: auto;
  }
}

.game-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 540px;
}

@media (min-width: 1400px) {
  .game-iframe {
    max-height: 640px;
  }
}

.game-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 10px 10px 0 0;
}

/* gg */

.game-info {
  width: 100%;
  /*margin-bottom: 20px;*/
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0px 0px 18px 18px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
}

.header-left {
  width: 50%;
  float: left;
}

.single-title {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.game-info .single-title {
  margin-bottom: 10px;
}

.header-right {
  width: 50%;
  float: left;
  text-align: right;
}

@media only screen and (max-width: 992px) {
  .header-left {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .header-right {
    width: 100%;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .b-action.btn-rgt {
    float: right;
  }
}

.game-info .btn-circle {
  width: 40px;
  height: 40px;
  float: left;
  background: #262653;
  text-align: center;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-info .b-action a {
  margin-top: 10px;
}

.game-info .rating {
  margin-bottom: 10px;
  font-size: 14px;
  color: #9595D1;
}

.game-info .rating .star-off {
  margin-right: 5px;
  color: #5c5b73;
}

.widget-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.wgt-list-game {
  padding: 5px;
  margin: 5px;
}

.wgt-list-game {
  box-shadow: 0px 1px 6px 0px rgba(50, 50, 50, 0.25);
  border-radius: 5px;
}

.wgt-list-thumbnail {
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  overflow: hidden;
}

.wgt-list-thumbnail img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.section-game .sm-widget {
  padding: 10px 20px;
}

.game-details {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 18px;
  clear: both;
}

.game-details h5 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 200%;
}

.highlight-text {
  color: #fff;
}

.single-description {
  font-size: 14px;
  line-height: 200%;
}

.game-category-list, .game-tag-list {
  display: flex;
  flex-wrap: wrap;
}

.cat-item, .tag-item {
  background-color: #262653;
  font-size: 14px;
  padding: 4px 15px;
  border-radius: 10px;
  margin-right: 10px;
  color: #fff;
  margin-bottom: 8px;
}

