#more-games-button{
    display: none;
    position: absolute;    

    padding: 5px;
    
    width: 10%;
    height: 10%;
    
    min-width: 40px;
    min-height: 40px;      
    
    bottom: 10px;
    left: 10px;
    
    background-position: center cener;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../sprites/moregames.png);
    
    cursor: pointer;
}


#more-games-button {
    -webkit-animation: pulse2 1s linear infinite;
    -moz-animation: pulse2 1s linear infinite;
    -ms-animation: pulse2 1s linear infinite;
    animation: pulse2 1s linear infinite;
}

.more-games-dialog-content{
    position: absolute;
    width: 80%;
    height: 70%;  
    
    left: 10%;
    top: 100%;
    
    background-color: #77c828;
    
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;    

    -webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    0px 0px 5px 0px rgba(50, 50, 50, 0.75);
    box-shadow:         0px 0px 5px 0px rgba(50, 50, 50, 0.75);    
}

.more-games-dialog-exit{
    background-image: url(../sprites/moregames_exit.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    
    width: 10%;
    height: 10%;  
    
    top: 1%;
    right: -11%;  
    
    min-width: 40px;
    min-height: 40px;    
    
    position: absolute;
    
    cursor: pointer;
}

.more-games-dialog-exit-show{
    right: 1%;  
}

.more-games-dialog-logo{
    background-image: url(../sprites/ctl_logo_moregames.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    
    width: 30%;
    height: 8%;
    
    position: absolute;
    bottom: 2%;
    right: 2%; 
    
    -ms-transform: translate(0%, 0px); /* IE 9 */
    -webkit-transform: translate(0%, 0px); /* Safari */
    transform: translate(0%, 0px);    
    
    background-color: #fff;
    
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;    
}

.embed-and-earn{
    position: absolute;
    bottom: 2%;
    left: 2%;
    width: 60%;
    color: #fff;
    font-family: Arial;
	line-height: 12px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
	
}

.embed-and-earn a{
    text-decoration: none;
    color: #fff;
    font-style: italic;
    padding: 3px;
    background-color: #ff8c1c;
    display: inline-block;
    border-radius: 5px;
    margin-right: 2%;
    text-align: center;
}

.embed-and-earn a:nth-child(2){
	background-color: #44a5ab;
}

.embed-and-earn a:hover,
.embed-and-earn a:visited{
	color: #fff;	
}

.more-games-dialog-scrolling{
    top: 2%;
    left: 2%;
    position: absolute;
    width: 96%;
    height: 86%;
    background-color: #fff;     
    overflow: auto;    
    
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    
    -webkit-box-shadow: inset 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    inset 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
    box-shadow:         inset 0px 0px 10px 0px rgba(50, 50, 50, 0.75); 
}

.more-games-dialog-content-show{
   top: 15%; 
}

.more-games-dialog-wrapper,
.more-games-dialog-block{
     position: absolute;
     width: 100%;
     height: 100%;
 }
 
 .more-games-dialog-exit,
 .more-games-dialog-content,
 .more-games-dialog-block{
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;    
 }
 
 .more-games-dialog-block{
     background-color: #000;
     opacity: 0;   
 }
 
 .more-games-dialog-block-show{
     opacity: 0.5;  
 }
 
 .more-games-dialog-tile{
    /*width: 33.333%;*/
   /* height: 100px;*/
    position: relative;
    display: inline-block;
    
    width: -moz-calc(20% - 5%);
    width: -webkit-calc(20% - 5%);
    width: -o-calc(20% - 5%);
    width: calc(20% - 5%);    
    
    margin: 2.5%;    
 }
 
 
 .more-games-dialog-tile:hover > img{
     opacity: 0.7;
 }
 
 .more-games-dialog-tile img{
    width: 100%;
    
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;   
    
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;      
 }
 
.more-games-dialog-tile div{
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;  
    
    position: absolute;
    width: 100%;
    height: 100%;
    
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;            
}

 @media (max-width: 1024px){
    .more-games-dialog-tile{
        width: -moz-calc(25% - 5%);
        width: -webkit-calc(25% - 5%);
        width: -o-calc(25% - 5%);
        width: calc(25% - 5%);  
    }
 }


 @media (max-width: 600px){
    .more-games-dialog-tile{
        width: -moz-calc(33.333% - 5%);
        width: -webkit-calc(33.333% - 5%);
        width: -o-calc(33.333% - 5%);
        width: calc(33.333% - 5%);  
    }
 }

 @media (max-width: 450px){
    .more-games-dialog-tile{
        width: -moz-calc(50% - 5%);
        width: -webkit-calc(50% - 5%);
        width: -o-calc(50% - 5%);
        width: calc(50% - 5%);
        margin: 2.5%;  
    }
 }
  
  
  /*
@keyframes "pulse2" {
 0% {
    -webkit-transform: scale(1.1);
   	-moz-transform: scale(1.1);
   	-o-transform: scale(1.1);
   	-ms-transform: scale(1.1);
   	transform: scale(1.1);
 }
 50% {
    -webkit-transform: scale(0.8);
   	-moz-transform: scale(0.8);
   	-o-transform: scale(0.8);
   	-ms-transform: scale(0.8);
   	transform: scale(0.8);
 }
 100% {
    -webkit-transform: scale(1);
   	-moz-transform: scale(1);
   	-o-transform: scale(1);
   	-ms-transform: scale(1);
   	transform: scale(1);
 }

}

@-moz-keyframes pulse2 {
 0% {
   -moz-transform: scale(1.1);
   transform: scale(1.1);
 }
 50% {
   -moz-transform: scale(0.8);
   transform: scale(0.8);
 }
 100% {
   -moz-transform: scale(1);
   transform: scale(1);
 }

}

@-webkit-keyframes "pulse2" {
 0% {
   -webkit-transform: scale(1.1);
   transform: scale(1.1);
 }
 50% {
   -webkit-transform: scale(0.8);
   transform: scale(0.8);
 }
 100% {
   -webkit-transform: scale(1);
   transform: scale(1);
 }

}

@-ms-keyframes "pulse2" {
 0% {
   -ms-transform: scale(1.1);
   transform: scale(1.1);
 }
 50% {
   -ms-transform: scale(0.8);
   transform: scale(0.8);
 }
 100% {
   -ms-transform: scale(1);
   transform: scale(1);
 }
 
*/

@keyframes "pulse2" {
 0% {
    -webkit-transform: scale(1);
   	-moz-transform: scale(1);
   	-o-transform: scale(1);
   	-ms-transform: scale(1);
   	transform: scale(1);
 }
 50% {
    -webkit-transform: scale(0.8);
   	-moz-transform: scale(0.8);
   	-o-transform: scale(0.8);
   	-ms-transform: scale(0.8);
   	transform: scale(0.8);
 }
 100% {
    -webkit-transform: scale(1);
   	-moz-transform: scale(1);
   	-o-transform: scale(1);
   	-ms-transform: scale(1);
   	transform: scale(1);
 }

}

@-moz-keyframes pulse2 {
 0% {
   -moz-transform: scale(1);
   transform: scale(1);
 }
 50% {
   -moz-transform: scale(0.8);
   transform: scale(0.8);
 }
 100% {
   -moz-transform: scale(1);
   transform: scale(1);
 }

}

@-webkit-keyframes "pulse2" {
 0% {
   -webkit-transform: scale(1);
   transform: scale(1);
 }
 50% {
   -webkit-transform: scale(0.8);
   transform: scale(0.8);
 }
 100% {
   -webkit-transform: scale(1);
   transform: scale(1);
 }

}

@-ms-keyframes "pulse2" {
 0% {
   -ms-transform: scale(1);
   transform: scale(1);
 }
 50% {
   -ms-transform: scale(0.8);
   transform: scale(0.8);
 }
 100% {
   -ms-transform: scale(1);
   transform: scale(1);
 }

 