html,body{
    margin: 0;
    padding: 0;
    background: #000;
}
.logo{
    padding: 10px 0px;  
}
.logo-left{
    width: 20%;
    text-align: left;
    float: left;
    padding-top: 16px;
}
.logo-left a {
    font-size: 18px;
    color: #fff;
}
.logo-center{
    width: 60%;
    text-align: center;
    float: left;
}
.logo-right{
    width: 20%;
    text-align: right;
    float: left;
}
.logo-center img{
    max-width: 100%;
}
.logo-right a {
    font-size: 10px;
}
#credit-text {
    color: #fff;
    font-size: 12px;
    margin-bottom: -6px;
    margin-top: 8px;
}
#credit-numb{
    color: #f3c600;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0px;
}
ul.filters{
    display: block;
    width: 100%;
    margin: 0;
    padding: 16px 0px 10px 0px;
}

ul.filters > li{
    list-style: none;
    display: inline-block;
    width: 19.51%;
}

ul.filters > li > a{
    display: block;
    color: #434e5e;
    text-decoration: none;
    padding: 5px 20px;
    background-color: #b0b0b0;
    border-radius: 8px;
}

ul.filters > li > a:hover{
    background: rgb(243,199,0);
    background: linear-gradient(0deg, rgba(243,199,0,1) 0%, rgba(255,232,126,1) 100%);
    cursor: pointer;
}

ul.filters > li.active > a{
    color: #000;
    background: rgb(243,199,0);
    background: linear-gradient(0deg, rgba(243,199,0,1) 0%, rgba(255,232,126,1) 100%);
}

.card{
    position: relative;
    margin-bottom: 50px;
    color: #000;
    border-radius: 0;
    border: 1px solid #eee;
    background-color: #000;
    box-shadow: 1px 1px 1.5px rgba(0,0,0,0.075);
}

.card-head{
    position: relative;
    overflow: hidden;
}

.card-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: rgba(67,78,94,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color :#fff;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -ms-transition: ease-in-out 0.2s;
    transition: ease-in-out 0.2s;
}

.card-hover{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40,190,168,0.9);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-direction: column;
    box-sizing: border-box;
    padding: 30px;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -ms-transition: ease-in-out 0.2s;
    transition: ease-in-out 0.2s;
}

.card-body{
    padding-top: 10px;
    padding-bottom: 10px;
}

.game-title{
    font-size: 12px;
    margin-bottom: 0;
    color: #b0b0b0;
}

.card-btn{
    margin-bottom: -40px;
    font-size: 0.9rem;
    background-color: #fff;
    color: #222;
    border: 1px solid #eee;
    border-radius: 0;
    padding-left: 50px;
    padding-right: 50px;
}

.card-btn:hover{
    background-color: #f3c600;
    color: #fff;
}

.item {
    margin-bottom: 16px;
    padding-left: 0px;
    padding-right: 0px;
    cursor: pointer;
}
.item:hover a.game-title{
    color: #f3c600;
}

.game-item img:hover{
    /*filter: gray; /* IE5+ */
    /*-webkit-filter: grayscale(1); /* Webkit Nightlies & Chrome Canary */
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.item:hover .game-img {
  opacity: 0.5;
  -webkit-animation-name: hvr-pulse-shrink;
    animation-name: hvr-pulse-shrink;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.item:hover .middle {
  opacity: 1;
}
.game-img {
    width: 100%;
}
.play-joker {
    background: rgb(243,199,0);
    background: linear-gradient(0deg, rgba(243,199,0,1) 0%, rgba(255,232,126,1) 100%);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
}
a.play-joker, a.play-joker:hover{
    color: #000;
    font-size: 12px;
    text-decoration:none;
}
a.game-title:hover {
    color: #f3c600;
    text-decoration:none;
}
.header {
    background: rgb(243,199,0);
    background: linear-gradient(90deg, rgba(243,199,0,1) 0%, rgba(198,162,0,1) 47%, rgba(255,232,126,1) 100%);
    padding-top: 4px;
}
ul#footer-menu li {
    display:inline;
}
footer{
    padding-bottom: 0px;
    background: rgb(3,3,3);
    background: linear-gradient(0deg, rgba(3,3,3,1) 0%, rgba(60,60,60,1) 100%);
}
.top-line-footer{
    width: 100%;
    height: 4px;
    margin-bottom: 14px;
    background: rgb(243,199,0);
    background: linear-gradient(90deg, rgba(243,199,0,1) 0%, rgba(198,162,0,1) 47%, rgba(255,232,126,1) 100%);
}
.logo-footer p{
    font-size: 10px;
    color: #707071;
    text-align: justify;
}
.footer-text p{
    font-size: 12px;
    color: #707071;
    text-align: justify;
}
.footer-menu-item {
    width: 25%;
    float: left;
    text-align: center;
}
.footer-menu-item a{
    font-size: 12px;
    color: #707071;
    padding-right: 10px;
}
.footer-menu-item a:hover{
    color: #f3c600;
    text-decoration: none;
}
.back-to-top {
 position: fixed;
 bottom: 30px;
 right: 30px;
 z-index: 9999;
 cursor: pointer;
 text-decoration: none;
 transition: opacity 0.2s ease-out;
 background-image: url(../img/scrolltop.png);
}
.back-to-top:hover{
 opacity: 0.7;
}

/* Small devices (landscape phones, 576px and up) */
    @media only screen and (max-width: 576px) and (min-width: 0px) {  
        ul.filters > li {
            width: 49%;
            margin-bottom: 6px;
        }
        #all{
            width: 100% !important;
        }
        .game-title-d, .middle{
            display: none;
        }
        .item {
            margin-bottom: 4px;
        }
        .footer-menu{
            margin-bottom: 10px;
        }
        .footer-text p{
            text-align: center;
            margin-bottom: 4px;
        }
        .logo-footer p {
            text-align: center;
            margin-bottom: 4px;
        } 
        .logo-footer{
            text-align: center;
        }     
        .logo-footer img {
            max-width: 60%;
        }   
        .back-to-top {
            right: 10px;
        } 
        .logo-left{
            width: 15%;
            padding-top: 8px;
        }
        .logo-center{
            width: 55%;
            padding-top: 6px;
        }
        .logo-right{
            width: 30%;
        } 
        #credit-text {
            margin-top: 6px;
        }
           
    }
    /* Extra large devices (large desktops, 1200px and up) */
    @media (min-width: 1200px) {  
        .mobile-item{
            display: none;
        }
    }