/* GENERAL */
html, body {
	background: #fff;
	width: 100%;
	height:100%;
	overflow:hidden;
}

body {
	/*background: url(../img/fondo.jpg) repeat-x top center;
	background-size:100% 100%;*/
	background: #fff;
	color: #1D1D1B;
	font-family: 'Graphik-Regular', sans-serif;
	line-height: 1.2;
	margin: 0;
	font-size: 20px;
}

* {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}

img {
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}

/* LAYOUT */
#ce-wrapper {
	position: absolute;
	width: 1400px;
	height: 800px;
	overflow-x: hidden;
	margin: auto;
	-ms-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
	-webkit-font-smoothing: antialiased;
}
#wrapper-contenido {
	position:absolute;
	width:1400px; 
	height:800px; 
	overflow:hidden;
	margin-top:0px;
	z-index:-1;
}

.contenido {
	position: relative;
    width: 1400px;
    min-height: 800px;
    box-sizing: border-box;
    margin-top: 0;
}

/* HEADER */
.header {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:115px;
	box-sizing: border-box;
	margin: 0 auto;
	z-index:10;
}

.logo {
	position:absolute;
	top:30px;
	left:35px;
	width:300px;
}
.puntuacion {
	position: absolute;
    top: 0px;
    right: 0;
    width: 225px;
    height: 56px;
    padding: 16px 0px 16px 30px;
    text-align: center;
    background-color: #1D1D1B;
	color: #fff;
    overflow: visible;
}
.puntuacion img {
	position: absolute;
    top: -6px;
    left: -29px;
    width: 73px;
}

/* BUTTONS */
.tooltip {
	position: absolute;
    top: 86px;
    min-width: 100px;
    background: #fe0202;
    color: #302000;
    border-radius: 5px;
    font-size: 12px;
    text-align: center;
    padding: 5px;
	
    display: none;
}
.tooltip:before {
	content: '\f0d8';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    color: #fe0202;
    font-size: 30px;
    position: absolute;
    z-index: 2;
    top: -24px;
    left: 45%;
}
.hastooltip:hover .tooltip {
	display: block;
}
.puntuacion .tooltip {
	left: 143px;
}