body {
  margin: 0;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-display: swap;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #FCFCFC;
  text-align: left;
  background-color: #080618;
  
}

*,
 ::before,
 ::after {
  box-sizing: border-box;
}

a {
  color: #FCFCFC;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #F7F7F7;
}

/*
Grid Start

True Masonry by balazs_sziklai
https://codepen.io/balazs_sziklai*/

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(101px, 1fr));
    grid-gap: 18px;
    grid-auto-rows: minmax(101px, auto);
    grid-auto-flow: dense;
}

.grid-item {
    border-radius: 18px;
	background-color: #0072FF;
	box-shadow: 0 4px 10px 0 rgba(0,0,0,.40); 
    &:nth-child(odd) {
    background-color: #424242;
    }
}

.span-2 {
    grid-column-end: span 2;
    grid-row-end: span 2;


		}

.span-2:hover {
		  animation: shake 150ms 2 linear;
		  -moz-animation: shake 150ms 2 linear;
		  -webkit-animation: shake 150ms 2 linear;
		  -o-animation: shake 150ms 2 linear;
		}

.span-1:hover {
	transition-duration: 0.5s;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);  
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}


@keyframes shake {
		  0% {
		    transform: translate(3px, 0);
		  }
		  50% {
		    transform: translate(-3px, 0);
		  }
		  100% {
		    transform: translate(0, 0);
		  }
		}

		@-moz-keyframes shake {
		  0% {
		    -moz-transform: translate(3px, 0);
		  }
		  50% {
		    -moz-transform: translate(-3px, 0);
		  }
		  100% {
		    -moz-transform: translate(0, 0);
		  }
		}

		@-webkit-keyframes shake {
		  0% {
		    -webkit-transform: translate(3px, 0);
		  }
		  50% {
		    -webkit-transform: translate(-3px, 0);
		  }
		  100% {
		    -webkit-transform: translate(0, 0);
		  }
		}

		@-ms-keyframes shake {
		  0% {
		    -ms-transform: translate(3px, 0);
		  }
		  50% {
		    -ms-transform: translate(-3px, 0);
		  }
		  100% {
		    -ms-transform: translate(0, 0);
		  }
		}

		@-o-keyframes shake {
		  0% {
		    -o-transform: translate(3px, 0);
		  }
		  50% {
		    -o-transform: translate(-3px, 0);
		  }
		  100% {
		    -o-transform: translate(0, 0);
		  }
		}

/*End Grid*/

.site-content {
  background: #00C5FC;
  background: -webkit-linear-gradient(to right, #0072ff, #00C5FC);
  background: linear-gradient(to right, #0072ff, #00C5FC);
}
.site-container {
  max-width: 1440px;
}
.top-nav {
  font-weight: bold;
  background: #00C5FC;
  background: -webkit-linear-gradient(to right, #0072ff, #00C5FC);
  background: linear-gradient(to right, #0072ff, #00C5FC);
  padding: 0;
}


.text-uppercase {
  text-transform: capitalize  !important;
}

.container  {
   max-width: 1440px;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar-expand-lg {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

a.nav-link {
  color: #FCFCFC!important;
}
li.nav-item:hover {
  border-radius: 14px;
  background-color: #007EFF;
}

.text-white {
  color: #fff !important;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

.copyright {
  background-color: #0083FE;
  color: #BEEBF7;
}

.text-center {
  text-align: center !important;
}

.footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0069FF;
}

img.small-thumb {
  width: 100%;
  border-radius: 18px;
}

.list-content {
  padding: 0px;
}

.list-game {
  border-radius: 5px;
}

.span-1 {
    font-size: 0.72rem;
	line-height: 24px; 
  }

.grid-layout .list-title {
  overflow: hidden;
  margin: .35714em;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  position: relative;
  bottom: 32px;
  margin-bottom: -32px;
  opacity: 0;
  font-weight: bold;
}

@media(hover: hover) and (pointer: fine) {
  .grid-layout .list-game:hover > .list-title {
    opacity: 1;
    transition: all 0.5s ease;
  }
  .list-thumbnail:hover {
    opacity: 0.5;
    transition: all 0.5s ease;
  }
}

.grid-wrapper {
  margin-bottom: 30px;
}

.game-container {
  margin: 10px 0;
}

.list-category {
  position: absolute;
  bottom: 5px;
}

h1.single-title {
    font-size: 1.75rem;
}

h2 {
    font-size: 1.25rem;
	font-weight: bold;
}

.single-title {
  margin-top: 20px;
  padding-bottom: 10px;
  font-weight: bold;
  color: #FCFCFC;
}

.single-center {
  padding: 20px;
  display:inline-block;
  font-weight: bold;
  border-radius: 8px;
  color: #655E7C;
  background-color: #ffffff;
}

.single-info-container {
  padding-bottom: 5px;
  border-bottom: 0px solid #0064FF;
  margin-bottom: 20px;
}

.single-icon {
  background-color: #0064FF;
  margin-right: 10px;
  padding: 8px 16px;
  border-radius: 15px;
  display: inline-block;
  border: 1px solid #ffffff;
  margin-bottom: 10px;
}

.social-share {
  position: relative;
  top: -2px;
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 10px;
}
.social-icon {
  width: 38px;
  height: 38px;
}

.sidebar {
  display: block;
}

.sidebar .list-tile {
  padding: 7px;


}

.sidebar .list-game {
  margin-bottom: 2px;
}

.page-title {
  font-weight: bold;
  margin-top: 20px;
}
h1.singlepage-title {
    font-size: 1.75rem;
}
.singlepage-title {
  padding-bottom: 10px;
  background-color: #ffffff;
  color: #655E7C;
  text-align: center;
  padding: 2px;
  border-radius: 10px;
  font-weight: bold;
  height: 100%;
}

.page-content,

.game-content {
  margin-bottom: 30px;
}

.site-logo {
  padding: 5px;
}

.nav-categories {
  background-color: #0064FF;
  white-space: nowrap;
}

h3.item-title {
  font-weight: bold;
font-size: 1.3rem;
margin: 20px 0;
display: inline-block;
background-color: #0064FF;
color: #FFFFFF;
padding: 10px 20px;
border-radius: 10px;
}

.item-title i,
.single-icon i,
h4 i {
  margin-right: 9px;
}

ul.list-categories {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.list-categories li {
  float: left;
  display: block;
  text-align: center;
  padding: 8px 16px;
  text-decoration: none;
}

.list-categories li:hover {
  background-color: #6190bf;
  color: #fff;
}

#mainNav .container {
	position: relative;
	padding: 0 10px;
}

nav.greedy {
  position: relative;
  display: flex;
  align-items: center;
}

nav.greedy button {
  padding: 6px 16px;
  text-decoration: none;
  border: none;
  background-color: #6190bf;
color: #fff;
}

nav.greedy button.hidden {
  transition: none;
  border-right: 0.5rem solid #b6b6b6;
  width: 0;
  padding: 0;
  overflow: hidden;
  display: none;
}

nav.greedy button::after {
  content: attr(count);
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: #ab31d7;
  color: #f2f2f2;
  border-radius: 50%;
  font-size: 14px;
  line-height: 14px;
  margin-left: 1rem;
  margin-right: calc(-1rem + -8px);
}

ul.links {
  display: flex;
  flex: 1;
  overflow: hidden;
}

ul.links li {
  flex: none;
}

ul.hidden-links {
  position: absolute;
  background: #fff;
  right: 0;
  top: 100%;
  z-index: 1;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
  padding-left: 0;
  box-shadow: 0 4px 12px 0 rgba(43, 43, 43, 0.1);
}

ul.hidden-links li {
  padding-right: 2rem;
}

ul.hidden-links a {
  color: #2c3e50;
}

ul.hidden-links.hidden {
  display: none;
}

ul.hidden-links li {
  padding: 1rem;
  min-width: 220px;
}

ul.hidden-links li:hover {
  background-color: #eee;
}

.cat-list {
  margin-top: 20px;
}

.cat-link {
  padding: 8px 16px;
  background-color: #0064FF;
  margin-right: 10px;
  border-radius: 15px;
}

h4.widget-title {
  font-weight: bold;
  padding-bottom: 10px;
  font-size: 26px;
  border-bottom: 1px solid #0064FF;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: #FFFFFF;
}

.sidebar .row {
  margin-right: 0;
  margin-left: 0;
}

.sidebar .widget {
  margin-bottom: 20px;

}

.bottom-container {
  margin: 30px 0;
}

.banner-ads {
  text-align: center;
  margin: 10px 0;
}

img {
  max-width: 100%;
}

.content-wrapper {
  margin-top: 10px;
}

.pagination-wrapper {
  margin-bottom: 30px;
}

.page-link {
	letter-spacing: 10px;
    font-weight: bolder;
    color: #FFFFFF;
    background-color: #0069FF;
    border: 3px solid #ffffff;
	border-radius:16px;
}

.page-link:hover {
    color: #FFFFFF;
    background-color: #0069FF;
    border-color: #ffffff;
}

.page-item.disabled .page-link {
    color: #ffffff;
    background-color: #0064FF !important;
    border-color: #0098FD;
}

.game-iframe-container {
  position: relative;
  overflow: hidden;
  height: 580px;
  width: 100%;
  border-radius:14px;
}

.game-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.nav-item {
  margin: 0 3px;
}
.search-bar {
  margin-left: 10px;
}
@media (max-width: 992px) {
  #navb {
    margin: 15px 0;
  }
  
  
  .nav-item {
    margin: 0 5;
  }
  li.nav-item:hover {
    background-color: #0064FF;
    border-radius: 0px;
  }
  .nav-link {
    padding-left: 15px!important;
  }
}
@media (max-width: 1440px) {
  .site-container {
    padding: 0;
  }
}
input.search {
  background-color: #ffffff;
  border-color: #0064FF;
}
.btn-search {
  background-color: #009EFD;
}

.txt-stats {
  padding: 12px 16px;
  border-color: #0064FF;
  border-width: 2px;
  margin-right: 0px;
  border-radius: 15px;
  border-style:solid;
}

.stats-vote {
  text-align: right;
  margin-top: 20px;
  
}
.stats-vote i {
  color: #FCFCFC;
  font-size: 30px;
  padding: 6px;
}
.stats-vote i:hover {
  color: #F7F7F7;
  cursor: pointer;
}
.header-left {
  display: inline-block;
}
.header-right {
  display: inline-block;
  float: right;
  margin-left: 30px;
}
.vote-status {
  font-size: 18px;
  font-weight: bold;
}
/* Post list */

.post-item {
  margin-bottom: 3rem !important;
}
.post-media {
  display: flex;
  align-items: flex-start;
}
.post-thumb {
  display: flex;
  margin-right: 1rem;
}
.post-thumb img {
  max-width: none;
}
.post-title {
  margin-bottom: .25rem;
  font-weight: bold;
  font-size: 1.5rem;
}
.post-meta .date {
  color: #8f8f8f;
  font-size: 0.8125rem;
}
.post-meta {
  color: #8f8f8f;
}
.blog-list {
  margin-top: 30px;
}
@media (max-width: 576px) {
  .blog-list .post-thumb {
    display: none;
  }
}

/* End post */

.dropdown-menu {
    position: absolute;
	width: 100%;
    background: #fff;
    background-clip: border-box;
    right: 0;
    top: 100%;
    z-index: 2;
    text-align: left;
    list-style: none;
    font-weight: normal;
    background-clip: padding-box;
    border: 0px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    padding-left: 0;
    box-shadow: 0 4px 12px 0 rgba(43, 43, 43, 0.1);
    margin-top: 10px;
}

.dropdown-icon {
  margin-left: 10px;
}

.pagination-wrapper {
  margin-bottom: 30px;
}


.nav-item {
  position: relative;
}

.nav-item-child {
    padding: 0.6rem 1rem;
    color: #2c3e50;
}

.nav-link-child {
    color: #2c3e50;
}

.nav-item-child:hover {
    background-color: #0064FF;
}

.tus-image {
float:left;
width:74px;
word-wrap:break-word;
word-break:break-all;
text-align:center;
min-height:64px;
font:11px Calibri, Verdana;
border:1px solid #ddd;
background:#fff;
position:relative;
margin:3px;
padding:3px;
}

.tus-karakter {
float:left;
background:url(images/tus.gif) no-repeat;
color:#000000;
font:14px Arial;
font-weight:bold;
width:21px;
height:23px;
margin:0 0 0 25px;
}

.tus-image strong {
position:absolute;
bottom:5px;
left:10px;
word-wrap:break-word;
word-break:break-all;
}