
/***** GENERAL *****/


@font-face {
    font-family: Mario;
    src: url(../fonts/super-mario-bros.ttf);
}

@font-face {
    font-family: PressStart;
    src: url(../fonts/retro.ttf);
}


body{
  	padding-top: 18px;

	font-family: Mario, PressStart, monospace;
	background-color: #fff;
	color: #333;
	font-size: 20px;

	background: url(../images/bg.svg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

h3{
	font-size: 20px;
}
p {
    margin: 0 0 6px;
}

a{
	color: #0059b3;
}

a:hover{
	color: #0059b3;
	text-decoration: none;
}

.hand{
	cursor: pointer; cursor: hand;
}

.ui-effects-wrapper {
        display:inline;
    }

.center{
	text-align: center
}

/***** MAIN MENU *****/

.content{
	display: none;
}

.menu-logo{
	margin-bottom:19px;
	width: 35%;
}
@media (max-width: 480px) {
    .menu-logo{ width: 85%;}
}

.menu-item{
	cursor: pointer; cursor: hand;
}

.menu-item td:nth-child(2) div{
	padding-bottom:6px;
}

.menu-table{
	margin-top: 3px;
}

.highscore-wrap{
	color: #CC0000;
}
.highscore-menu{
	margin-top: -10px; margin-left: -40px;
}

.username{
	font-size:16px;
	margin-top: 15px;
	color: gray;
}

/***** ICONS *****/
.arrow{
	width: 22px;
	height: 24px;
	background-size: 22px 24px;
	background-repeat: no-repeat;
	display: inline-block;
	background-image: url(../images/arrow.svg);
	margin-right: 3px;
	visibility:hidden;
}

#volume-control{
	margin-bottom: -10px;
	margin-left: 10px;
}

.vol-on{
	background-image: url(../images/volume_on.svg);
}
.vol-off{
	background-image: url(../images/volume_off.svg);
}

/***** GAME *****/


.ncoins, .p1-coins, .p2-coins{
	display:inline-block; 
	padding-left:40px;
	padding-top:2px;
}

.icon-lg{
	width: 35px;
	height: 35px;
	background-size: 35px 35px;
	background-repeat: no-repeat;
	display: inline-block;
}

.icon-sm{
	width: 30px;
	height: 30px;
	background-size: 30px 30px;
	background-repeat: no-repeat;
	display: inline-block;
	margin-top: 11px;
	margin-right: 3px;
}


.heart-empty{
	background-image: url(../images/heart_empty.svg);
	
}

.heart-full{
	background-image: url(../images/heart_full.svg);
}

.coin{
	background-image: url(../images/retro_coin.png);
}


/* GAME CONTENT */
.lives-summary, .coins-summary, .bonus{
	display:none;
}


.chatbox{
    border: 3px solid black;
    padding: 5px;
    width: 100%;
    height: 200px;

    overflow: scroll;
}

input[type="text"]{
	-webkit-appearance: none;
    outline: none;
    border: 3px solid black;
    padding: 5px 10px;
    text-align: left;
    background-color : #eeeeee; 
}

#guess-input, #multip-guess-input{
    width: 150px;
}

#submit-btn, #submit-btn{
	display:none;
}

.btn-game{
    margin-left: 5px;
    /*font-size: 18px;*/
}


.results-table tr td:first-child{
	text-align: left;
}

.results-table{
	width:100%;
	/*font-size:18px;*/
}

.row-spacer td{
	padding-top: 20px;
}

.new-highscore, .multip-win, .multip-win-round{
	color: #D9CF41;
}


.social img{
	height: 30px;
}

.section-title{
	color: #CC0000;
}

.lead{
	font-size:16px !important;
}

.error{
	color: #CC0000;
}
#scoreboard-error{
	color: #CC0000;
}


#multip-results-wrap{
	margin-bottom: 30px;
}
.chatbox-username-1{
	color: #CC0000;
}

.chatbox-username-2{
	color: #0059b3;
}

.loadingdots{
	margin-bottom: 30px;
}

.ribbon-banner {
   display: block;
   position: absolute;
   top: 50px;
   left: -120px;
   width: 400px;
   height: 50px;
   line-height: 50px;
   text-align: center;
   opacity: 0.7;
   -webkit-transform: rotate(-45deg);
   -moz-transform:    rotate(-45deg);
   -ms-transform:     rotate(-45deg);
   transform:         rotate(-45deg);
   font-size: 19px;
   font-weight: 700;
   color: white;
   background-color: red;
   border: 1px solid white;
   z-index: 500;
   }

/*ANIMATIONS*/
/*BLINK*/
.blink {
  animation: blink 1s steps(5, start) infinite;
  -webkit-animation: blink 1s steps(5, start) infinite;
}
@keyframes blink {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink {
  to {
    visibility: hidden;
  }
}
