/* Eric Meyer's CSS reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

html {
    width: 100%;
    height: 100%;
}

body {
    line-height: 1;
    background-color:#000;
}

ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* Typography*/
@font-face {
    font-family: 'DPuntillas';
    src: url('../fonts/d-puntillas-D-to-tiptoe.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* CUSTOM CSS *********************************************************************************************************/
div {
	position: absolute;
}

.accelerated {
    /* This class makes sure that all elements are hardware accelerated*/
    /* Generally - all the Html elements on the stage should have this class attached */
    -webkit-transform: translateZ(0px);
    transform: translateZ(0px);
    
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility:hidden;
    backface-visibility: hidden;
}

#viewporter {
    background-color:#000;
    font-family:'DPuntillas', arial, sans-serif;
    overflow: hidden;
}

#orientationWarning {
    width:100%;
    height:100%;
    display: none;
    background:url('../assets/orientationWarning.png') no-repeat center center #000;
}

#requirementsFailed {
    width:100%;
    height:100%;
    display: none;
    background:url('../assets/requirementsWarning.png') no-repeat center center #000;
}

.stageEndScreens {
    -webkit-transition: -webkit-transform 1.00s;
    transition: transform 1.00s;
}

.treasureMeterTransform {
    -webkit-transition: -webkit-transform 0.25s;
    transition: transform 0.25s;
}