

.view.clicker > .click-area {
    xborder:5px solid red;
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
	justify-content: center;
	align-items: center;
}



.view.clicker > .click-area > .graphic-cont {
    xborder:5px solid red;
    width:100%;
    height:100%;
    display:flex;
	justify-content: center;
	align-items: center;
    
}

.view.clicker > .click-area  > .graphic-cont > .graphic {
    xborder:5px solid red;
    width:100%;
    height:100%;
    display:flex;
	justify-content: center;
	align-items: center;
    font-size:10em;
    transition: all 0.1s;
    text-shadow: 5px 5px 10px rgba(0,0,0, 0.99);
}

.view.clicker > .click-area  > .graphic-cont > .graphic.pushed {
    transform: scale(0.9);
    color:rgb(173, 182, 173);
    text-shadow: 0px 0px 0px rgba(0,0,0, 0);
} 