body {
  margin: 0;
}

.background {
    background: #b1b1b1;
    border-spacing: 0;
    border-collapse: collapse;
}

.background td {
    padding: 0;
    margin: 0;
    width: 20px;
}

.actor {
    position: absolute;
}

.lava {
    background: rgb(255, 83, 83);
}

.wall {
    background: #ffffff;
}

.coin {
    background: rgb(241, 229, 5);
    border-radius: 100%;
}

.player {
    background: #4cab24; 
}

.lost .player {
    background: rgb(160, 64, 64);
}

.won .player {
    box-shadow: -4px -7px 10px white, -4px -7px 10px white;
}

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

#win-msg,
#lose-msg {
    max-width: 600px;
    margin: 0px auto;
    padding-top: 0;
    text-align: center;
    position: relative;
    display: none;
    color: #fff;
}

#win-msg img,
#lose-msg img {
    max-width:70%;
}

#win-msg h1,
#lose-msg h1,
#win-msg h3 {
    /*color: #5c94fc;*/
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);*/
    text-align: center;
    margin-top:5px;
    margin-bottom:5px;
}

.restart-btn {
    background: #5c94fc;
    color: #ffffff;
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #5c94fa;
}

#jump-btn {
    margin: auto;
    display: block;
    border-radius: 50%;
    padding: 42px 24px;
    background-color: rgba(255,255,255,0.5);/*#1b75bc;*/
    border: none;/*2px solid #000;*/
	font-size: 32px;
    cursor:pointer;
    color:#ffffff;
    opacity: 0.5;
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
	/*text-shadow:1px 1px #fff;*/
    /*
	color: #ed1c24;
	-moz-text-fill-color: #ed1c24;
    -webkit-text-fill-color: #ed1c24;
	-moz-text-stroke-color: #fff;
    -webkit-text-stroke-color: #fff;
	-moz-text-stroke-width: 1.2px;  
    -webkit-text-stroke-width: 1.2px;
    */
}
.reg-txt {
		text-align: center;
    display: block;
    color: #fff;
    font-weight: 400;
    font-size: 10px;
    margin-top: 10px;
}
body > .cc-window {
  padding:40px !important;
  text-align:center;
}
#privacypolicy {
  max-width:90%;
  width:1024px;
  text-align:left;
  margin:60px auto;
  position:relative;
}
div.cc-compliance {
  display: block;
}
div.cc-compliance > a {
  flex:none;
  display:block;
}
div.cc-compliance > a:first-child {
  position:absolute;
  bottom:-50%;
}
.scores-wrapper {
    text-align: center;
    max-width:500px;
    width:90%;
    margin:auto;
}
.scores-wrapper h2 {
	padding:15px 25px;
    background-color: #1b75bc;
    border-radius: 10px;
    border: 2px solid #000;
	color: #ed1c24;
	font-size: 32px;
	-moz-text-fill-color: #ed1c24;
    -webkit-text-fill-color: #ed1c24;
	-moz-text-stroke-color: #fff;
    -webkit-text-stroke-color: #fff;
	-moz-text-stroke-width: 1.2px;  
    -webkit-text-stroke-width: 1.2px;
    margin-bottom:10px;
}
#highscores {
    padding:25px;
    background-color: #1b75bc;
    border:2px solid black;
    list-style: none;
    border-radius:10px;
    font-size:24px;
    color:#fff;
}
#highscores li span {
    display:inline-block;
    margin-bottom:5px;
}
#highscores li span {
    width:67%;
}
#highscores li:first-child span {
	color: #ed1c24;
	font-size: 28px;
	-moz-text-fill-color: #ed1c24;
    -webkit-text-fill-color: #ed1c24;
	-moz-text-stroke-color: #fff;
    -webkit-text-stroke-color: #fff;
	-moz-text-stroke-width: 1.2px;  
    -webkit-text-stroke-width: 1.2px;
    padding-bottom:12px;
}
#highscores li span:first-child,
#highscores li span:last-child {
    width:16%;
}
@media all and (min-width:1025px) {
    #jump-btn {
        display:none !important;
    }
    #page-wrapper {
        padding-top:90px;
    }
}
@media all and (max-width:767px) {
    #highscores li:first-child span {
        font-size:18px;
    }
    #highscores {
        padding:20px 4px;
        font-size:16px;
    }
}