* {
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -o-user-select: none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
html,body {
    overflow: hidden;
}
body {
    font-family: Arial;
    background: url(../imgs/bg.jpg);
}
.health {
    background: red;
}
.mana {
    background: navy;
}
@keyframes pulse {
    0% {
     transform: scale(1, 1);
    }

    50% {
     transform: scale(1.1, 1.1);
    }

    100% {
    transform: scale(1, 1);
    }
}

.cdtext {
    display: block;
    width: 30px;
    font-size: 2em;
    text-align: center;
    vertical-align: middle;
    margin: 0 auto;
    position: relative;
    top: -100%;
}
.consumable {
    animation: pulse 1s linear infinite;
}
.notificationBottom {
    background: rgba(0,0,0,.2);
    color: black;
    display: none;
    position: absolute;
    bottom: 10px;
    right: 10px;
    border: 1px solid black;
    box-shadow: 3px 3px 3px #ccc;
    z-index: 1000;
    width: 200px;
    height: 50px;
    padding: 10px;
}
.notificationInside {
    color: white;
    text-transform: uppercase;
    display: none;
    position: absolute;
    text-shadow: 1px 1px #ff0000;
    z-index: 1000;
}
.selected {
    border: 2px solid red;
    box-sizing: border-box;
    border-radius: 40px;
}
#stage {
    cursor: crosshair;
}
.player {
    cursor: pointer;
}
#start-button {
    background: violet;
    color: #fff;
    font-size: 300%;
    display: block;
    margin:  50px auto;
    padding: 40px;
    border: 3px solid black;
    border-radius: 50px;
    cursor: pointer;
}
#score {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: .7;
    background: yellow;
    border: 1px solid black;
    padding: 10px;
    width: 200px;
    text-align: center;
    font-size: 300%;
    text-shadow: 3px 3px 3px #ccc;
    display: none;
}
#toolbar {
    position: fixed;
    bottom: 0;
    right: 0;
    background: silver;
    overflow: hidden;
    border: 1px solid black;
    padding: 3px;
    margin: 0 auto;
}
#toolbar button {
    font-size: 130%;
}

#button-shot {
}
#button-heal {
}
#button-pause {
}
@media only screen and (min-width: 768px) {
    #toolbar button {
        font-size: 300%;
    }    
}
.shot {
    width: 100%;
    height: auto;
}
.damage {
    position: absolute;
    color: orange;
    font-weight: bold;
    font-size: 250%;
    text-shadow: 3px 3px 3px #000;
}