/**
* 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='email'],
	div.input-hypnobox input[type='tel'],
	div.input-hypnobox input[type='password'],
	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;
	}
/**
* @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;
				white-space: nowrap;
			}
			.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;*/
}
.botao-hypnobox-atendimento-menu-whats{
	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;
	margin-top: 2px;

	/*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{
	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.cinza{
	background:url('../img/ico-fechar-cinza.png') no-repeat scroll 94px center #f6f6f6;
	color:#c7c7c7;
	margin-top:2px;
}

.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:225px;

	/*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.bt-ir-timeline{
	background: #4d4d4d;
	color: #fff;
}

.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: 83px;
}

.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%;
}
.modal-form label {
	display: block;
}

.modal-form input {
	width: 100%;
    border-radius: 12px;
    border: solid 1px #bababa;
    padding: 0 8px;
    line-height: 22px;
}

.custom-input.error input {
	border: solid 1px #dd0000;
}

#copyLink{ 
	background-color: #adce5b;
}

.tooltip .tooltiptext {
	display: none;
	width: 120px;
	background-color: rgba(0, 0, 0, 0.674);
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	top: 95%;
	left: 52%;
	margin-left: -60px;
  }

  .tooltipteste{ 
	transition: 10s;
  }
  
  .tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent rgba(0, 0, 0, 0.674) transparent;
  }

  .select-multiple-wrap-v2.error {
    border-color: #fb9d9d;
    box-shadow: 0px 0px 6px #fb9d9d;
    border-radius: 20px;
}
.select-multiple-wrap-v2 .hbox-multi-select-v2 {
	background: #ffffff;
	border-radius: 12px;
	box-sizing: border-box;
	color: #726e6e;
	display: block;
	font-size: 12px;
	font-family: 'open_sansregular', Arial, sans-serif;
	height: 35px;
	line-height: 36px;
	padding-left: 8px;
	position: relative;
	padding-right: 46px;
	overflow: hidden;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-left: 4%;
	width: 88%;
	margin-top:3%;
	font-size:93%;
	outline: #c1bfbf 1px solid;
}

.select-multiple-wrap-v2 .hbox-multi-select-v2: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-v2 .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: 25%;
	z-index: 8;
}

.box-multiple-v2{
	display: none;
}

.select-multiple-wrap-v2{
	border-bottom: 1px solid #C1C1C1C1;
	margin:10px;
}

.select-multiple-wrap-v2 .box-multiple-v2 {
	background: transparent;
	border-radius: 6px;
	box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
	left: 0;
	opacity: 0;
	padding: 4px;
    right: 0;
	top: 30px;
	visibility: hidden;
	z-index: 10;
	transition: opacity 0.3s, margin 0.3s, visibility 0.1s 0.4s;
}
.select-multiple-wrap-v2 .box-multiple-v2.active {
	margin-top: 0px;
	opacity: 0.96;
	visibility: visible;
	transition: opacity 0.3s 0.1s, margin 0.3s 0.1s, visibility 0.01s;
	display:grid;
	width: 86%;
	margin-right: 0px;
	margin-left: 8px;
	margin-top: -35px;

}
.select-multiple-wrap-v2 .box-multiple-v2:before {
	border-bottom: 11px solid #ffffff;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	content: '';
	position: absolute;
	right: 24px;
	top: -11px;
	display:none;
}

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

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

.select-multiple-wrap-v2.with-label {
	background: #ffffff;
	border-radius: 12px;
}
.select-multiple-wrap-v2.with-label .hbox-multi-select {
	background: transparent;
	border: none;
	padding-left: 86px;
	z-index: 1;
}
.select-multiple-wrap-v2.with-label .count-box {
	top: 2px;
}
.select-multiple-wrap-v2.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: 83px;
}

#label-input-v2{
	padding: 0 15px;
    color: #a19f9f;
    font-size: 15px;
    white-space: pre;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}

/* .label-input.emUso,
#label-input-v2.emUso, 
#category-wrapper-expand-more-arrow.emUso, 
#category-wrapper-expand-less-arrow.emUso {
	color: #87BF3E;
} */

fieldset.checkboxV2 {
	line-height: 20px;
    margin: 10px;
    padding: 0 10px;
    padding-bottom: 1vh;
    color: #6C6C6C;
    border-bottom: 1px solid #C1C1C1C1;
}

fieldset.checkboxV2.horizontal {
    display: grid;
    justify-items: start;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    grid-template-rows: repeat(1,1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

fieldset.checkboxV2.vertical {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
}

label.checkboxV2 {
	display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

label.checkboxV2 input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkboxV2Checkmark {
	position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: transparent;
    border-radius: 25%;
    border: 2px solid #6C6C6C;
}

fieldset.checkboxV2.vertical label.checkboxV2 {
	max-width: 35vh;
}

label.checkboxV2:hover {
    color: #6c6c6c82;
}

label.checkboxV2:hover input ~ .checkboxV2Checkmark {
	background-color: #ccc;
}

label.checkboxV2 input:checked ~ .checkboxV2Checkmark {
	background-color: #fff;
}

.checkboxV2Checkmark:after {
	content: "";
  	position: absolute;
  	display: none;
}

label.checkboxV2 input:checked ~ .checkboxV2Checkmark:after {
	display: block;
}

label.checkboxV2 .checkboxV2Checkmark:after {
	left: 4px;
  	width: 5px;
  	height: 10px;
  	border: solid #6C6C6C;
  	border-width: 0 3px 3px 0;
  	-webkit-transform: rotate(45deg);
  	-ms-transform: rotate(45deg);
  	transform: rotate(45deg);
}

label.checkboxV2 .checkboxV2Checkmark.frio:after,
label.checkboxV2 .checkboxV2Checkmark.morno:after,
label.checkboxV2 .checkboxV2Checkmark.quente:after {
    border: solid #ffffff;
	border-width: 0 3px 3px 0;
}

label.checkboxV2 input:checked ~ .checkboxV2Checkmark.frio {
    background-color: #4C8FB7;
    border: 2px solid #4C8FB7;
}

label.checkboxV2 input:checked ~ .checkboxV2Checkmark.morno {
    background-color: #F19F39;
    border: 2px solid #F19F39;
}

label.checkboxV2 input:checked ~ .checkboxV2Checkmark.quente {
    background-color: #FF0000;
    border: 2px solid #FF0000;
}

input.checkboxV2 {
	cursor: pointer;
}

p.checkboxV2 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

fieldset.checkboxV2.vertical p.checkboxV2 {
	width: 100%;
}

fieldset.checkboxV2.horizontal p.checkboxV2 {
	min-width: 7.5vh;
	max-width: 15vh;
}

div.input-hypnobox.periodoV2 {
    margin: 10px 20px;
    width: 80%;
    border-radius: 12px;
    height: 35px;
    line-height: 36px;
	border: 1px solid #C3C3C3C3;
    background: #ffffff;
    color: #726e6e;
    box-sizing: border-box;
    font-family: 'open_sansregular', Arial, sans-serif;
    text-decoration: none;
    text-overflow: ellipsis
}

div.input-hypnobox.periodoV2 > p{
    font-family: 'open_sansregular', Arial, sans-serif;
    line-height: 36px;
    color: #726e6e;
    text-decoration: none;
    text-overflow: ellipsis;
    font-size: 93% !important;
}

.box-periodo-filtro-v2 {
	border-radius:12px;
	padding:4px;
    right: 50px;
	z-index:15;
	border: 1px solid #c3c3c3;
	position: fixed;
    display: none;
    flex-direction: row;
    justify-content: space-between;
	background:#ffffff;
	overflow:hidden;
}

.radioV2{
	margin: 4% 0% 2% 4%;
    display: grid;
    justify-items: start;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-template-rows: repeat(1,1fr);
    line-height: 20px;
}

label.radioV2{
	cursor: pointer;
}

p.radioV2 {
	margin-left:0%;
	font-family: 'Raleway', 'sans-serif', 'open_sans_condensedbold';
	color:#6C6C6C;
}

span.radioV2Check{
	margin-left: 10px;
}

input[type="radio"].radioV2:checked {
    background-color: #F2F2F2;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 14px;
    height: 14px;
    border: 2px solid #87BF3E;
    border-radius: 50%;
    position: relative;
	top: 10%;
}

.radioV2 input[type="radio"]:checked::after {
    background-color: #87BF3E;
}

.radioV2 input[type="radio"] {
	cursor: pointer;
    width: 14px;
    height: 14px;
    transform: scale(1.5);
    border: 1px solid #6C6C6C;
    border-radius: 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	position: relative;
    top: 10%;
}

.radioV2 input[type="radio"]::after {
    content: '';
    width: 7px; 
    height: 8px;
    background-color: #F2F2F2; 
    border-radius: 50%; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radioV2 input[type="radio"]:not(:checked):hover {
    border: 2px solid #6c6c6c82;
}

.radioV2 input[type="radio"]:not(:checked):hover::after {
    background-color: #6c6c6c82;
}

.radioV2 input[type="radio"]:not(:checked) ~ p.radioV2:hover {
    color: #6c6c6c82;
}

@media screen and (max-width: 768px) {
    .radioV2.horizontal label {
        display: -webkit-inline-box;
    }
}
@media screen and (min-width: 769px) {
    .radioV2.horizontal label {
        display: -webkit-inline-box;
    }
}

.containerTextInputV2 {
	border-bottom: 1px solid #C1C1C1C1;
    margin: 10px;
    height: 50px;
}

.textInputV2 {
    border-radius: 12px;
    font-size: 12px !important;
    height: 35px;
    line-height: 36px;
    padding-left: 8px;
    width: 88%;
    padding-right: 46px;
    margin-left: 4%;
    margin-top: 3%;
	background: #fbfbfb !important;
    color: #837575 !important;
    box-sizing: border-box;
    display: block;
    font-family: 'open_sansregular', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid #C3C3C3C3;
}

.select-multiple-wrap-v2 > .box-selected {
    max-height: 100px;
	overflow-y: auto;
	padding: 0;
}

.select-multiple-wrap-v2 > .box-selected::-webkit-scrollbar {
	width: 4px;
	padding: 4px;
}

.select-multiple-wrap-v2 > .box-selected::-webkit-scrollbar-thumb {
    background-color: #545454;
}

.select-multiple-wrap-v2 > .box-selected::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

.select-multiple-wrap-v2 > .box-selected > .select2-container > .select2-choices {
	display: flex;
    border: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
	background-color: unset;
}

.select-multiple-wrap-v2 > .box-selected > .select2-container > .select2-choices > .select2-search-choice {
	background: #b0b0b0;
    border: none;
    border-radius: 50px;
    box-shadow: none;
    color: #6C6C6C;
    font-family: 'open_sans_condensedbold', Arial, sans-serif;
    font-size: 12px;
    line-height: 15px;
    width: 38%;
    margin: 4px;
    padding: 4px 8px;
    white-space: pre;
}

.select-multiple-wrap-v2 > .box-selected > .select2-container > .select2-choices > .select2-search-choice > div {
	text-overflow: ellipsis;
    overflow: hidden;
}

@media screen and (max-width: 900px) {
	#filter-v2-modal-open > .modal-hypnobox__headerv2 h1 {
		font-size: 5vh !important;
	}

	.btn-green {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-around;
		align-items: center;
		font-size: 3vh !important;
	}

	.btn-gray {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-around;
		align-items: center;
		font-size: 3vh !important;
	}

	.modal-hypnobox__footerv2 > p {
		font-size: 2.5vh !important;
	}
}