﻿/**
	Propriedades aplicaveis a todos os tipos de tela
	@author soneca
	@since 2013-06-17
*/
html {
	/*impede o zoom*/
	-webkit-content-zooming: none;
	-moz-content-zooming: none;
	-ms-content-zooming: none;
	-o-content-zooming: none;
	content-zooming: none;
	/*impede selecao de elementos*/
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

body {
	overflow: hidden;
	font-family: arial;
	font-size: 14px;
	background: url(../../images/desktop/all/fundo.png);
    background-repeat:repeat;
}

/*desabilitando double-tap-to-zoom no IE10*/
* {
    -ms-touch-action: none;
}

section.ranking *,
section.terms-of-use * ,
section.privacy-policy *,
section#lobby section.salas *{
	-ms-touch-action: auto !important;
}

div.gradiente_fundo {
    background: -ms-radial-gradient(circle at center, rgba(0,0,0,0) 30%,rgba(0,0,0,0.75) 100%);
    background: radial-gradient(circle at center, rgba(0,0,0,0) 30%,rgba(0,0,0,0.75) 100%);
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
}

/* BRSI: A fonte padrão para aplicativos Windows 8 é Segoe UI (light, normal ou bold) */
p {
	font-family: sans-serif;
	font-size: 12px;
}

ul {
	list-style-type: none
}

.hiden {
	display: none;
}

/*alinhamento vertical*/
.vertical-align-center {
	/* Internet Explorer 10 */
	display:-ms-flexbox !important;
	-ms-flex-align:center;

	/* Firefox */
	display:-moz-box !important;
	-moz-box-align:center;

	/* Safari, Chrome, and Opera */
	display:-webkit-box !important;
	-webkit-box-align:center;

	/* W3C */
	display:box !important;
	box-align:center;
}

/*alinhamento horizontal*/
.horizontal-align-center {

	/* Internet Explorer 10 */
	display:-ms-flexbox !important;
	-ms-flex-pack:center;

	/* Firefox */
	display:-moz-box !important;
	-moz-box-pack:center;

	/* Safari, Chrome, and Opera */
	display:-webkit-box !important;
	-webkit-box-pack:center;

	/* W3C */
	display:box !important;
	box-pack:center;
}

/*custom alert*/
.custom-component-alert {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999999;
}
.custom-component-alert .background {
	background-color: #000000;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.3;
}
.custom-component-alert .content {
	background-color: #FFFFFF;
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 150px;
	margin-top: -75px;
}
.custom-component-alert .text-content {
	float: left;
	width: 40%;
	height: 160px;
	margin-left: 20%;
	font-size: 20px;
	padding-top: 40px;
}
.custom-component-alert .button-content {
	float: right;
	width: 40%;
	height: 80px;
	font-size: 16px;
	padding-top: 70px;
}
.custom-component-alert .button-content input[type=button] {
	font-size: 14px;
	border: none;
	cursor: pointer;
	width: 100px;
	height: 40px;
	float: left;
	margin-right: 20px;
}
.custom-component-alert .button-content input[type=button].ok {
	background: #33b033;
	color: #FFFFFF;
}
.custom-component-alert .button-content input[type=button].cancel {
	background: #AFAFAF;
	color: #000000;
}
