/**
* CSS de customizacao dos campos de formularios e botoes
*
* @author Jean Yoshioka, Pedro Anjos
* @copyright Hypnobox
* @date 20/08/2014
*/

/**
* @description
* Reseta os elementos para padronizacao
*/
input, textarea{
	color:#4d4d4d;
	padding:0;
	margin:0;
}
/*** @description
* Padroniza o placeholder para italico e cinza
*/
.input-hypnobox input::-webkit-input-placeholder{
   	color:#c9c9c9;
	font-family:'open_sansitalic', Arial, sans-serif;
	opacity:1;
}
.input-hypnobox input::-moz-placeholder{  /* Firefox 19+ */
   	color:#c9c9c9;
	font-family:'open_sansitalic', Arial, sans-serif;
	opacity:1;
}
.input-hypnobox input:-ms-input-placeholder{
 	color:#c9c9c9;
	font-family:'open_sansitalic', Arial, sans-serif;
	opacity:1;
}
.textarea-hypnobox textarea::-webkit-input-placeholder{
   	color:#c9c9c9;
	font-family:'open_sansitalic', Arial, sans-serif;
	opacity:1;
}
.textarea-hypnobox textarea::-moz-placeholder{  /* Firefox 19+ */
   	color:#c9c9c9;
	font-family:'open_sansitalic', Arial, sans-serif;
	opacity:1;
}
.textarea-hypnobox textarea:-ms-input-placeholder{
 	color:#c9c9c9;
	font-family:'open_sansitalic', Arial, sans-serif;
	opacity:1;
}

/**
* @description
* Input padrao e temas
*/
div.input-hypnobox{
	background:#ffffff;
	border-radius:12px;
	box-sizing:border-box;
	float:left;
	height:24px;
	line-height:24px;
	padding:0 8px;
	position:relative;

	/*IE7~IE8 FIX*
	z-index:1\9;
	position:relative\9;
	behavior:url('PIE.htc')\9;*/
}
	div.input-hypnobox input[type='text']{
		background:transparent;
		border:0;
		float:left;
		font-size:12px;
		font-family:'open_sansregular', Arial, sans-serif;
		height:100%;
		outline:none;
		width:100%;

		line-height:22px\9;
	}
	div.input-hypnobox input[type='password']{
		background:transparent;
		border:0;
		float:left;
		font-size:12px;
		font-family:'open_sansregular', Arial, sans-serif;
		height:100%;
		margin:0;
		outline:none;
		width:100%;

		line-height:22px\9;
	}
/**
* @description
* Temas
*/
	div.input-hypnobox.branco{
		background-color:#ffffff;
		border:1px solid #bababa;
		line-height:22px;

		*height:22px;
	}
	div.input-hypnobox.cinzaclaro{
		background-color:#f0f0f0;
	}

	div.input-hypnobox.sem-borda{
		border:none;
	}

	div.input-hypnobox.peq{
		border:none;
		height:20px;
		line-height:20px;
	}
	div.input-hypnobox i.seta-input{
		border-color:#d0d0d0 transparent;
		border-style:solid;
		border-width:4px 3px 0;
		position:absolute;
		right:6px;
		top:50%;
		margin-top:-1px;
		z-index:1;
	}

div.input-botao-hypnobox{
	padding-right:0;
}
div.input-botao-hypnobox.com-borda .botao-hypnobox{
	float:left;
	margin-top:-1px;
	margin-right:-1px;
}
/**
* @description
* INPUT com borda verde (usada para foco em campo INPUT)
*/
div.input-hypnobox.focus{
	border-color:#adce5b;
	box-shadow:0 0 6px #adce5b;
}
/**
* @description
* INPUT com borda vermelha (usada para erros em INPUT no formulario)
*/
div.input-hypnobox.error{
	border-color:#fb9d9d;
	box-shadow:0 0 6px #fb9d9d;
}

.select2-container.error {
    border-color: #fb9d9d;
    border-radius: 13px;
    box-shadow: 0 0 6px #fb9d9d;
}

/**
* @description
* Textarea padrao e temas
*/
.textarea-hypnobox{
	border:1px solid #bababa;
	background:#ffffff;
	border-radius:12px;
	box-sizing:border-box;
	float:left;
	padding:6px 6px;
	position:relative;

	/*IE7~IE8 FIX*
	z-index:1\9;
	position:relative\9;
	behavior:url('PIE.htc')\9;*/
}
	.textarea-hypnobox textarea{
		background:transparent;
		border:0;
		float:left;
		font-size:12px;
		font-family:'open_sansregular', Arial, sans-serif;
		margin:0;
		outline:none;
		padding:0;
		resize:none;
	}
/**
* @description
* TEXTAREA com borda verde (usada para foco em campo TEXTAREA)
*/
div.textarea-hypnobox.focus{
	border-color:#adce5b;
	box-shadow:0 0 6px #adce5b;
}
/**
* @description
* TEXTAREA com borda verde (usada para erro em campo TEXTAREA)
*/
div.textarea-hypnobox.error{
	border-color:#fb9d9d;
	box-shadow:0 0 6px #fb9d9d;
}

/**
* @description
* Select padrao e temas
*/
.select-hypnobox{
	background-color:#ffffff;
	border-radius:12px;
	box-sizing:border-box;
	float:left;
	height:24px;
	line-height:24px;
	position:relative;

	/*IE7~IE8 FIX*
	z-index:1\9;
	position:relative\9;
	behavior:url('PIE.htc')\9;*/
}
	.select-hypnobox select{
		background:#ffffff;
		border:0;
		cursor:pointer;
		font-size:12px;
		font-family:'open_sansregular', Arial, sans-serif;
		height:100%;
		left:0;
		margin:0;
		opacity:0;
		outline:none;
		position:absolute;
		top:0;
		width:100%;
		z-index:2;
		/*IE7 FIX*/
		filter:alpha(opacity=0);
		/*IE8 FIX*/
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
		.select-hypnobox div.mascara-select{
			float:left;
			height:100%;
			padding-left:8px;
			padding-right:20px;
			overflow:hidden;
			box-sizing:border-box;
		}
			.select-hypnobox div.mascara-select span.texto-select{
				color:#4d4d4d;
				font-size:12px;
				font-family:'open_sansregular', Arial, sans-serif;
			}
			.select-hypnobox div.mascara-select i.seta-select{
				border-color:#d0d0d0 transparent;
				border-style:solid;
				border-width:5px 3px 0;
				position:absolute;
				right:8px;
				top:50%;
				margin-top:-1px;
				z-index:1;
			}

	/* EXCECAO DASHBOARD */
	.select-hypnobox .select-dashboard{
		left:-80px;
		width:194px;
	}

/**
* @description
* Temas
*/
	.select-hypnobox.branco{
		background-color:#ffffff;
		border:1px solid #bababa;
		line-height:22px;
	}
		.select-hypnobox.branco div.mascara-select span.texto-select{
			color:#4d4d4d;
		}
		.select-hypnobox.branco div.mascara-select i.seta-select{
			border-color:#d0d0d0 transparent;
		}

	.select-hypnobox.cinzaclaro{
		background-color:#f0f0f0;
		line-height:24px;
	}
		.select-hypnobox.cinzaclaro div.mascara-select span.texto-select{
			color:#4d4d4d;
		}
		.select-hypnobox.cinzaclaro div.mascara-select i.seta-select{
			border-color:#d0d0d0 transparent;
		}

	.select-hypnobox.cinza{
		background-color:#e0e0e0;
	}
		.select-hypnobox.cinza div.mascara-select span.texto-select{
			color:#9e9e9e;
		}
		.select-hypnobox.cinza div.mascara-select i.seta-select{
			border-color:#828282 transparent;
		}

	.select-hypnobox.cinzaescuro{
		background-color:#4d4d4d;
	}
		.select-hypnobox.cinzaescuro div.mascara-select span.texto-select{
			color:#ffffff;
		}
		.select-hypnobox.cinzaescuro div.mascara-select i.seta-select{
			border-color:#ffffff transparent;
		}

	.select-hypnobox.incorporadora{
		background-color:#b4b4b4;
	}
		.select-hypnobox.incorporadora div.mascara-select {
			padding-left: 12px;
		}
		.select-hypnobox.incorporadora div.mascara-select span.texto-select{
			color:#ffffff;
			font-family:'open_sans_condensedbold', Arial, sans-serif;
			text-transform: uppercase;
		}
		.select-hypnobox.incorporadora div.mascara-select i.seta-select{
			border-color:#ffffff transparent;
		}

	.select-hypnobox.sem-borda{
		border:none;
		line-height:24px;
	}

	.select-hypnobox.peq{
		border:none;
		height:20px;
		line-height:20px;
	}

	.select-hypnobox.disabled{
		opacity:0.5 !important;
	}
		.select-hypnobox.disabled select{
			cursor:default;
		}
/**
* @description
* SELECT com borda verde (usada para foco em campo SELECT)
*/
.select-hypnobox.focus{
	border-color:#adce5b;
	box-shadow:0 0 6px #adce5b;
}
/**
* @description
* SELECT com borda vermelha (usada para erros em SELECT no formulario)
*/
.select-hypnobox.error{
	border-color:#fb9d9d;
	box-shadow:0 0 6px #fb9d9d;
}

/**
* @description
* Caixa do checkbox padrao
*/
label.caixa-checkbox-hypnobox-padrao{
	background:#e1e1e1;
	border-radius:11px;
	box-sizing:border-box;
	color:#a1a1a1;
	cursor:pointer;
	float:left;
	font-family:'open_sans_condensedbold', Arial, sans-serif;
	font-size:12px;
	height:22px;
	line-height:23px;
	padding:0 10px 0 8px;
	text-transform:uppercase;
}
label.caixa-checkbox-c-cinzaescuro{
	background-color:#4d4d4d;
	color:#ffffff;
}
label.caixa-checkbox-c-cinzafumaca{
	background-color:#e0e0e0;
}
label.caixa-checkbox-c-brancofumaca{
	background-color:#f6f6f6;
}
label.caixa-checkbox-c-branco{
	background-color:#ffffff;
}
label.caixa-checkbox-hypnobox-padrao.peq{
	height:20px;
	line-height:20px;
}
/**
* @description
* Checkbox padrao
*/
.checkbox-hypnobox{
	background:url("../img/sprite-checkbox-hypnobox.png") no-repeat 0 0 transparent;
	/*display:inline-block;*/
	float:left;
	height:13px;
	position:relative;
	*top:2px;
	width:13px;
	z-index:1;
}
	.checkbox-hypnobox:hover{
		background-position:0 -13px;
	}
	.checkbox-hypnobox.checked{
		background-position:-13px 0;
	}
		.checkbox-hypnobox.checked:hover{
			background-position:-13px -13px;
		}
	.checkbox-hypnobox.disabled{
		background-position:0 -26px;
	}
	.checkbox-hypnobox.focus{
		background-position:0 -13px;
	}
	.checkbox-hypnobox.checked.focus{
		background-position:-13px -13px;
	}
	.checkbox-hypnobox input[type="checkbox"]{
		cursor:pointer;
		height:13px;
		left:0;
		margin:0;
		opacity:0;
		outline:none;
		position:absolute;
		top:0;
		width:13px;
		z-index:2;
		/* CSS hacks */
		_noFocusLine:expression(this.hideFocus=true);
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter:alpha(opacity=0);
		-khtml-opacity:0;
		-moz-opacity:0;
	}
	.caixa-checkbox-hypnobox-padrao .checkbox-hypnobox{
		margin-right:4px;
		margin-top:5px;
	}
	.caixa-checkbox-hypnobox-padrao.peq .checkbox-hypnobox{
		margin-top:4px;
	}
/*Inicio Radio - Pedro*/
.radio-hypnobox{
	background:url("../img/sprite-radio-hypnobox.png") no-repeat 0 0 transparent;
	float:left;
	width:13px;
	height:13px;
	position:relative;
	*top:2px;
	z-index:1;
}
.radio-hypnobox:hover{
	background-position:0 -13px;
}
.radio-hypnobox.checked{
	background-position:-13px 0;
}
.radio-hypnobox.checked:hover{
	background-position:-13px -13px;
}
.radio-hypnobox input[type="radio"]{
	cursor:pointer;
	height:16px;
	left:0;
	margin:0;
	opacity:0;
	outline:none;
	position:absolute;
	top:0;
	width:16px;
	z-index:2;
	/* CSS hacks */
	_noFocusLine:expression(this.hideFocus=true);
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter:alpha(opacity=0);
	-khtml-opacity:0;
	-moz-opacity:0;
}
	.caixa-checkbox-hypnobox-padrao .radio-hypnobox{
		margin-right:4px;
		margin-top:5px;
	}
	.caixa-checkbox-hypnobox-padrao.peq .radio-hypnobox{
		margin-top:4px;
	}
/*Fim Radio - Pedro*/

/**
* @description
* Botao padrao do sistema e suas variacoes
*/
.botao-hypnobox-padrao{
	border-radius:12px;
	cursor:pointer;
	font-family:'open_sans_condensedbold', Arial, sans-serif;
	font-size:12px;
	height:24px;
	line-height:24px;
	*line-height:25px;
	position:relative;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
	width:78px;

	/*IE7~IE8 FIX*
	z-index:1\9;
	position:relative\9;
	behavior:url('PIE.htc')\9;*/
}
button.botao-hypnobox-padrao{
	border:none;
	line-height:23px;
}
.botao-hypnobox-responsivo{
	border-radius:12px;
	cursor:pointer;
	font-family:'open_sans_condensedbold', Arial, sans-serif;
	font-size:12px;
	height:24px;
	line-height:25px;
	padding:0 14px;
	position:relative;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
}
.botao-hypnobox-formulario{
	border-radius:14px;
	cursor:pointer;
	font-family:'open_sans_condensedbold', Arial, sans-serif;
	font-size:14px;
	height:27px;
	line-height:27px;
	padding:0 14px;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;

	/*IE7~IE8 FIX*
	z-index:1\9;
	position:relative\9;
	behavior:url('PIE.htc')\9;*/

	/*OLD
	width:129px;
	*/
}
.botao-hypnobox-atendimento-menu{
	background:#adce5b;
	border-radius:14px;
	color:#2b2b2b;
	cursor:pointer;
	font-family:'open_sansbold', Arial, sans-serif;
	font-size:11px;
	height:18px;
	line-height:18px;
	padding:0 10px;
	text-align:left;
	text-decoration:none;
	text-transform:uppercase;
	width:143px;

	/*IE7~IE8 FIX*
	z-index:1\9;
	position:relative\9;
	behavior:url('PIE.htc')\9;*/
}
button.botao-hypnobox-formulario{
	border:none;
	line-height:26px;
}
/*.botao-hypnobox-padrao{
	border-radius:12px;
	font-family:'open_sans_condensedbold', Arial, sans-serif;
	font-size:12px;
	height:24px;
	line-height:24px;
	*line-height:25px;
	position:relative;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
	width:78px;

	/*IE7~IE8 FIX*
	z-index:1\9;
	position:relative\9;
	behavior:url('PIE.htc')\9;*
}*/
.botao-hypnobox-adicionar{
	background:url('../img/botao-adicionar.png') no-repeat 4px 2px;
	border-radius:17px;
	float:left;
	font-family:'open_sans_condensedbold', Arial, sans-serif;
	font-size:14px;
	height:27px;
	line-height:27px;
	padding:0 10px 0 30px;
	text-align:left;
	text-decoration:none;
	text-transform:uppercase;
	width:auto;
}
.botao-hypnobox-adicionar:hover{
	background-color:#c3c3c3;
	color:#ffffff;
}
.botao-hypnobox-adicionar-upload:hover{
	background-color:#4d4d4d;
	color:#ffffff;
}
.botao-hypnobox-limpar-filtros{
	background:url("../img/ico-fechar.png") no-repeat scroll 94px center #4d4d4d; /*#6b6b6b*/
	border-radius:12px;
	color:#ffffff;
	float:left;
	font-family:'open_sans_condensedbold', Arial, sans-serif;
	font-size:12px;
	height:24px;
	line-height:25px;
	padding:0 28px 0 12px;
	text-align:left;
	text-decoration:none;
	text-transform:uppercase;
	width:auto;
}
.botao-hypnobox-limpar-filtros.cinza{
	background:url('../img/ico-fechar-cinza.png') no-repeat scroll 94px center #f6f6f6;
	color:#c7c7c7;
	margin-top:2px;
}
.botao-hypnobox-menu{
	background:#b4b4b4;
	border-radius:8px;
	color:#ffffff;
	font-family:'open_sans_condensedbold', Arial, sans-serif;
	font-size:10px;
	height:16px;
	line-height:16px;
	padding:0 6px;
	text-decoration:none;
	text-transform:uppercase;
	width:113px;
}
.botao-hypnobox-menu:hover{
	background-color:#adce5b;
}
.botao-tabela2{
	border-radius:11px;
	float:left;
	height:22px;
	line-height:23px;
	/**line-height:23px;*/
	text-align:left;
	text-indent:12px;
	/*width:169px;*/
	width:205px;

	/*IE7~IE8 FIX*
	z-index:1\9;
	position:relative\9;
	behavior:url('PIE.htc')\9;*/
}
.botao-tabela2:hover{
	background-color:#adce5b;
}
.botao-hypnobox-detalhes{
	background:#c7c7c7;
	border-radius:12px;
	color:#ffffff;
	font-family:'open_sans_condensedbold', Arial, sans-serif;
	font-size:10px;
	padding:4px 12px;
	text-decoration:none;
	text-transform:uppercase;
}
.botao-hypnobox-detalhes:hover{
	background-color:#adce5b;
}
.botao-c-branco{
	background-color:#ffffff;
	color:#a1a1a1;
}
.botao-c-cinzaescuro{
	background-color:#4d4d4d;
	color:#ffffff;
}
.botao-c-cinzamenu{
	background-color:#898989;
	color:#ffffff;
}
.botao-c-cinza{
	background-color:#eaeaea;
	color:#a1a1a1;
}
.botao-c-cinzatabela{
	background-color:#6b6b6b;
	color:#ffffff;
}
.botao-c-verdehypnobox{
	background-color:#adce5b;
	color:#ffffff;
}
.botao-peq{
	font-size:12px;
	height:20px;
	line-height:20px;
}
.botao-min{
	font-size:10px;
	height:18px;
	line-height:18px;
}
.botao-hypnobox-padrao i.seta-botao{
	border-color:#ffffff transparent;
	border-style:solid;
	border-width:4px 3px 0;
	position:absolute;
	right:8px;
	top:50%;
	margin-top:-1px;
}

.botao-hypnobox{
	border-radius:12px;
	box-sizing:border-box;
	color:#ffffff;
	cursor:pointer;
	font-family:'open_sans_condensedbold', Arial, sans-serif;
	font-size:12px;
	height:24px;
	padding:0 13px;
	position:relative;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
}
a.botao-hypnobox{
	line-height:25px;
}
button.botao-hypnobox{
	border:none;
}
.botao-hypnobox:focus{
	box-shadow:0 0 8px #adce5b;
}
	.botao-hypnobox i.seta-botao{
		border-color:#ffffff transparent;
		border-style:solid;
		border-width:4px 3px 0;
		position:absolute;
		right:8px;
		top:50%;
		margin-top:-1px;
	}
	.botao-hypnobox.minha-conta i.seta-botao{
		right:6px;
	}

	.botao-hypnobox.filtros{
		padding:0 22px;
	}

	.botao-hypnobox.pequeno{
		font-size:11px;
		height:20px;
		line-height:20px;
	}
	.botao-hypnobox.grande{
		border-radius:14px;
		font-size:14px;
		height:27px;
		min-width:120px;
	}
		a.botao-hypnobox.grande{
			line-height:27px;
		}

	.botao-hypnobox.principal{
		background-color:#adce5b;
	}
		.botao-hypnobox.principal:hover{
			background-color:#97bc3a;
			text-shadow:1px 0px 5px #ffffff;
		}
	.botao-hypnobox.branco{
		background-color:#ffffff;
		color:#9b9c9c;
	}
		.botao-hypnobox.branco:hover{
			background-color:#fafafa;
		}

	.botao-hypnobox.vender{
		background-color:#477530;
		color:#f2f2f2;
	}
		.botao-hypnobox.vender:hover{
			background-color:#f2f2f2;
            color: #477530;
		}
	.botao-hypnobox.reprovar{
		background-color:#ff0d3b;
		color:#f2f2f2;
	}
		.botao-hypnobox.reprovar:hover{
			background-color:#f2f2f2;
            color: #ff0d3b;
		}

	.botao-hypnobox.secundario{
		background-color:#b0b0b0;
	}
		.botao-hypnobox.secundario:hover{
			background-color:#a0a0a0;
		}

	.botao-hypnobox.neutro{
		background-color:#4d4d4d;
	}
		.botao-hypnobox.neutro:hover{
			background-color:#2f2f2f;
			text-shadow:1px 0px 5px #ffffff;
		}

	.botao-hypnobox.ofertaativa{
		background-color:#ea1f43;
	}
		.botao-hypnobox.ofertaativa:hover{
			background-color:#ce1b3b;
			text-shadow:1px 0px 5px #ffffff;
		}

	.botao-hypnobox.vermelho{
		background-color:#f42121;
	}
		.botao-hypnobox.vermelho:hover{
			background-color:#e72020;
			text-shadow:1px 0px 5px #ffffff;
		}

	.botao-hypnobox.azul{
		background-color:#11bff8;
	}
		.botao-hypnobox.azul:hover{
			background-color:#0fa6d7;
			text-shadow:1px 0px 5px #ffffff;
		}

	.botao-hypnobox.verde-escuro{
		background-color:#477530;
	}
		.botao-hypnobox.verde-escuro:hover{
			background-color:#40692b;
			text-shadow:1px 0px 5px #ffffff;
		}

	.botao-hypnobox.laranja{
		background-color:#f0a12f;
	}
		.botao-hypnobox.laranja:hover{
			background-color:#e69a2d;
			text-shadow:1px 0px 5px #ffffff;
		}

	.botao-hypnobox.desabilitado{
		background-color:#eaeaea;
		color:#b4b4b4;
	}

	/* EXCESSAO */
	.botao-hypnobox.sair{
		font-size:11px;
		height:16px;
		line-height:16px;
		padding:0 8px;
	}

    .botao-hypnobox.sorteio{
		font-size:11px;
		height:17px;
		line-height:17px;
		padding:0 8px 0 20px;
	}
	.botao-hypnobox.sorteio:before {
    	background: url('../img/sprite-checkbox-hypnobox.png') no-repeat;
    	content: '';
    	height: 13px;
    	left: 4px;
    	position: absolute;
    	top: 2px;
    	width: 13px;
	}
    .botao-hypnobox.sorteio.sorteio-on {
    	background-color: #11bff8;
    }
	.botao-hypnobox.sorteio.sorteio-on:before {
		background-position: -13px 0px;
	}
    .botao-hypnobox.sorteio.sorteio-off {
    	background-color: #c4c4c4;
    }
	.botao-hypnobox.sorteio.sorteio-off:before {
		background-position: 0px 0px;
	}

	.botao-hypnobox.minha-conta{
		font-size:11px;
		height:16px;
		line-height:16px;
		padding:0 16px 0 8px;
	}
	.botao-hypnobox.adicionar{
		border-radius:14px;
		font-size:14px;
		height:27px;
		line-height:27px;
		padding: 0 10px 0 30px;
		position:relative;
		text-align:left;
	}
	.botao-hypnobox.adicionar > .ico-hypnobox{
		background-position:-170px -36px;
		height:23px;
		left:4px;
		position:absolute;
		top:2px;
		width:23px;
	}
	.botao-hypnobox.exportar{
		border-radius:14px;
		font-size:14px;
		height:27px;
		line-height:27px;
		padding: 0 10px 0 30px;
		position:relative;
		text-align:left;
	}
	.botao-hypnobox.exportar > .ico-hypnobox{
		background-position:-60px -99px;
		height:23px;
		left:2px;
		position:absolute;
		top:2px;
		width:23px;
	}
	.botao-hypnobox.exportar-wicon {
	    font-size: 12px;
	    height: 24px;
	    line-height: 25px;
	    padding-left: 28px;
	}
	.botao-hypnobox.exportar-wicon .ico-exportar {
	    background: url('../img/ico-exportar.png') no-repeat;
	    height: 20px;
	    left: 2px;
	    position: absolute;
	    top: 2px;
	    width: 20px;
	}
	.botao-hypnobox.imprimir {
		background-image: url(../img/ico-imprimir.png);
		background-position: 5px center;
		background-repeat: no-repeat;
		border: 4px solid #ffffff;
		border-radius: 18px;
		height: 36px;
		line-height: 29px;
		padding: 0 12px 0 38px;
		position: absolute;
		right: 16px;
		top: -15px;
	}
	.botao-hypnobox.manual {
		font-size: 11px;
		height: 16px;
		line-height: 16px;
		padding: 0 21px 0 8px;
		position: relative;
	}
	.botao-hypnobox.manual:before {
		background: url('../img/ico-download.png') no-repeat;
		content: '';
		height: 10px;
		position: absolute;
		right: 8px;
		top: 3px;
		width: 9px;
	}
	.botao-hypnobox.universidade {
		background-color: #ff7e00;
		font-size: 11px;
		height: 16px;
		line-height: 16px;
		padding: 0 8px;
		position: relative;
	}
	.botao-hypnobox.treinamento {
		background-color: #0e99f1;
		font-size: 11px;
		height: 16px;
		line-height: 16px;
		padding: 0 8px;
		position: relative;
	}
	/* EXCESSAO */

.select2-container.gray {
	box-sizing: border-box;
	float: left;
	position: relative;
	z-index: 5;
}
.select2-container.gray .select2-choices {
	background: #f0f0f0;
	border: none;
	border-radius: 12px;
	box-shadow: none;
	margin: 0;
	min-height: 24px;
	padding: 0;
	width: 100%;
}
.select2-container.select2-container-active.gray .select2-choices {
	border: none;
	box-shadow: none;
	height: auto!important;
}
.select2-container.select2-dropdown-open.gray .select2-choices {
	border-radius: 12px 12px 0 0;
	height: auto!important;
}
.select2-container.gray .select2-choices .select2-search-choice {
	background: transparent;
	border: 0;
	box-shadow: none;
	color: #4d4d4d;
	font-family: 'open_sansregular', Arial, sans-serif;
	font-size: 12px;
	line-height: 24px;
	margin: 0 2px;
	padding: 0 0 0 14px;
}
.select2-container.gray .select2-choices .select2-search-field input {
	color: #4d4d4d;
	font-family: 'open_sansregular', Arial, sans-serif;
	font-size: 12px;
	line-height: 24px;
	margin: 0;
	padding: 0 0 0 8px;
}
.select2-container.gray .select2-search-choice-close {
	top: 6px;
}
.select2-drop.gray {
	border: 0;
}
.select2-drop-active.gray {
	background: #f0f0f0;
	border: 0;
	margin-left: 0;
}

.period-hbox {
	background: #ffffff;
	border: 1px solid #bababa;
	border-radius: 12px;
	display: inline-block;
	padding: 0 8px;
	position: relative;
}
.period-hbox > input {
	background: transparent;
	border: none;
	color: #4d4d4d;
	float: left;
	font-family: 'open_sansregular', Arial, sans-serif;
	font-size: 12px;
	height: 22px;
}
.period-hbox > span {
	color: #4d4d4d;
	float: left;
	font-family: 'open_sansregular', Arial, sans-serif;
	font-size: 12px;
	line-height: 22px;
	margin: 0 5px;
}
.period-hbox .box-period {
	background: #e6e6e6;
	border-radius: 6px;
	left: 50%;
	opacity: 0;
	padding: 8px;
	position: absolute;
	top: 56px;
	transform: translateX(-50%);
	visibility: hidden;
	z-index: 5;

	transition: opacity 0.3s, top 0.3s, visibility 0.1s linear 0.3s;
}
.period-hbox .box-period.active {
	opacity: 1;
	top: 26px;
	visibility: visible;

	transition: opacity 0.3s, top 0.3s, visibility 0s;
}
.period-hbox .box-period > div {
	float: left;
	margin-left: 12px;
}
.period-hbox .box-period > div:first-child {
	margin-left: 0;
}

.period-hbox.date > input {
	width: 64px;
}
.period-hbox.date .box-period {
	width: 370px;
}

.period-hbox.time > input {
	width: 31px;
}
.period-hbox.time .box-period {
	width: 164px;
}
.period-hbox.time .box-period > div.xdsoft_datetimepicker {
	margin-left: 0;
}
.period-hbox.time .box-period > div.xdsoft_datetimepicker:last-child {
	margin-left: 12px;
}

.blockade-input{
    color: #777 !important;
}

/* Select multiples */
.select-multiple-wrap {
	float: left;
	position: relative;
	width: 191px;
}

.select-multiple-wrap.error {
    border-color: #fb9d9d;
    box-shadow: 0px 0px 6px #fb9d9d;
    border-radius: 20px;
}
.select-multiple-wrap .hbox-multi-select {
	background: #f0f0f0;
	border-radius: 12px;
	box-sizing: border-box;
	color: #4d4d4d;
	display: block;
	font-size: 12px;
	font-family: 'open_sansregular', Arial, sans-serif;
	height: 24px;
	line-height: 24px;
	padding-left: 8px;
	position: relative;
	padding-right: 46px;
	overflow: hidden;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.select-multiple-wrap .hbox-multi-select:after {
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	border-top: 5px solid #d0d0d0;
	content: '';
	margin-top: -2.5px;
	position: absolute;
	right: 8px;
	top: 50%;
	z-index: 1;
}
.select-multiple-wrap .count-box {
	background: #c6c6c6;
	border-radius: 2px;
	color: #ffffff;
	font-family: 'open_sans_condensedbold', Arial, sans-serif;
	font-size: 12px;
	height: 20px;
	line-height: 20px;
	padding: 0 6px;
	position: absolute;
	right: 20px;
	text-decoration: none;
	top: 2px;
	z-index: 8;
}
.select-multiple-wrap .box-multiple {
	background: #ffffff;
	border-radius: 6px;
	box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
	left: 0;
	margin-top: 20px;
	opacity: 0;
	padding: 4px;
	position: absolute;
    right: 0;
	top: 30px;
	visibility: hidden;
	z-index: 10;
	transition: opacity 0.3s, margin 0.3s, visibility 0.1s 0.4s;
}
.select-multiple-wrap .box-multiple.active {
	margin-top: 0px;
	opacity: 0.96;
	visibility: visible;
	transition: opacity 0.3s 0.1s, margin 0.3s 0.1s, visibility 0.01s;
}
.select-multiple-wrap .box-multiple:before {
	border-bottom: 11px solid #ffffff;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	content: '';
	position: absolute;
	right: 24px;
	top: -11px;
}

.select-multiple-wrap.white .hbox-multi-select {
	background: #ffffff;
	border: 1px solid #bababa;
	line-height: 22px;
}
.select-multiple-wrap.white .count-box {
	top: 1px;
}
.select-multiple-wrap.white .box-multiple {
	background: #f2f2f2;
}
.select-multiple-wrap.white .box-multiple:before {
	border-bottom-color: #f2f2f2;
}

.select-multiple-wrap.modalFix .box-multiple {
	position: fixed;
}
.hbox-multi-select.error{
    border-color:#fb9d9d;
    box-shadow:0 0 6px #fb9d9d;
}

.select-multiple-wrap.with-label {
	background: #ffffff;
	border-radius: 12px;
}
.select-multiple-wrap.with-label .hbox-multi-select {
	background: transparent;
	border: none;
	padding-left: 86px;
	z-index: 1;
}
.select-multiple-wrap.with-label .count-box {
	top: 2px;
}
.select-multiple-wrap.with-label > span {
	background: #b4b4b4;
	border-radius: 10px;
	color: #ffffff;
	font-family:'open_sans_condensedbold', Arial, sans-serif;
	font-size: 12px;
	height: 20px;
	left: 2px;
	line-height: 21px;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 2px;
	width: 78px;
}

.wrapper-fila-platao .select-multiple-wrap.disabled .hbox-multi-select {
    pointer-events: none;
}

.wrapper-fila-platao .select-multiple-wrap .hbox-multi-select {
	height: 20px;
	line-height: 20px;
}
.wrapper-fila-platao .select-multiple-wrap .hbox-multi-select:after {
	margin-top: -1.5px;
}
.wrapper-fila-platao .select-multiple-wrap .count-box {
        height: 16px;
        line-height: 16px;
	top: 2px;
}

.select-title {
	background: #f6f6f6;
	border-radius: 12px;
	display: inline-block;
	height: 24px;
	left: 12px;
	line-height: 25px;
	padding: 0 20px 0 94px;
	position: absolute;
	top: -12px;
}
.select-title:after {
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	border-top: 5px solid #4d4d4d;
	content: '';
	position: absolute;
	right: 8px;
	top: 10px;
}
.select-title > label {
	background: #4d4d4d;
	border-radius: 10px;
	color: #ffffff;
	font-family: 'open_sans_condensedbold', Arial, sans-serif;
	font-size: 12px;
	height: 20px;
	left: 2px;
	line-height: 21px;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 2px;
	width: 86px;
}
.select-title > span {
	color: #4d4d4d;
	display: inline-block;
	font-family: 'open_sans_condensedbold', Arial, sans-serif;
	font-size: 12px;
	text-transform: uppercase;
}
.select-title > select {
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.adicionar-regiao-list {
	background: #0b0b0b;
	color: #ffffff;
	text-transform: uppercase;
	border-radius: 20px;
	padding: 10px 15px;
}
