:root{
	--roxo:#6667AB;
	--roxo-hover:#6667AB60;
	/*--roxo:rgb(40,8,73);*/
	/*--roxo-hover: rgba(40,8,73,0.5);*/
	--cinza:rgb(248,248,248);
	--chumbo:rgb(161,166,180);
	/*--verde:#E4FDE1;*/
	/*--verde-claro:#F4FFF1;*/
	--verde:rgb(17,152,34);
	--verde-claro:rgb(35,231,61);
	/*--marrom:#5C5552;*/
	--marrom:#7C6560;
	--preto:#242227;
}
*{
	outline:none !important;
	transition:ease-out 0.2s;
	-webkit-appearance:none;
}
.btn-primary{
	background-color:var(--verde);
	border-color:var(--verde);
}
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover{
	background-color:var(--verde-claro);
	border-color:var(--verde-claro);
}
.btn-primary.disabled,
.btn-primary:disabled {
	background-color:var(--verde);
	border-color:var(--verde);
}
.btn{
	transition: .3s;
	box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important
}
.btn:active,
.btn:focus,
.btn:hover{
	outline:none!important;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
	transform: scale(1.05) translateY(-2px);
}











a{
	text-decoration:none;
	transition: .3s;
	position: relative;
	display: inline-flex;
	color: white;
}
a span,.a span{
  position: relative;
  overflow: hidden;
  transition: 0.6s;
}
a span .out,.a span .out{
  display: inline-flex;
}
a span .in,.a span .in{
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(100%);
}
a:hover span .out,.a:hover span .out{
  opacity: 0;
  transform: translateX(-100%);
}
a:hover span .in,.a:hover span .in{
  opacity: 1;
  transform: translateX(0);
}

html,body{
	font-family: 'Open Sans', sans-serif;
	font-size:16px;
}
.josefin{
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 300;
}
body{
	background:var(--preto);
	color:#fffff;
}
hr{
	color:#fff;
}
#rodape{
	color:#fff;
}
#rodape a{
	text-decoration:underline;
	font-weight:700;
	color:inherit!important;
}
.personalizado:nth-child(even){
	background-color:#ccc;
}
.card{
	background-color: var(--cinza);
}
.link{
	outline:none!important;
	border:0!important;
	overflow:none!important;
	box-shadow:none!important;
	transition:.3s;
	max-width:400px;
}
.link:active,
.link:focus,
.link:hover{
	box-shadow:0px 0px 10px var(--preto)!important;
}
#logo{
	mix-blend-mode: lighten;
}
#logonovo{
	border:1px solid #ccc;
	width:200px;
	height:200px;
	background:#ddd;
	color:#666;
	text-align:center;
	cursor:pointer;
	display:flex;
	justify-content:center;
	flex-direction:column;
	transition:.3s;
	font-size:30px;
	display:inline-block;
}
#logonovo strong{
	font-size:40px;
}
#logonovo:focus,
#logonovo:hover{
	box-shadow:0px 0px 10px var(--preto)!important;
}
input[type=checkbox]{
	display:none;
}
input[type=checkbox] + label {
	margin: auto;
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
	min-height:24px;
	display:flex;
}
input[type=checkbox] + label > span {
	display: inline-block;
	vertical-align: middle;
	transform: translate3d(0, 0, 0);
}
input[type=checkbox] + label > span:first-child {
	position: relative;
	width: 18px;
	height: 18px;
	min-width:18px;
	border-radius: 3px;
	transform: scale(1);
	vertical-align: middle;
	border: 1px solid var(--chumbo);
	transition: all 0.2s ease;
	margin-top:3px;
}
input[type=checkbox] + label > span:first-child svg {
	position: absolute;
	top: 3px;
	left: 2px;
	fill: none;
	stroke:var(--cinza);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 16px;
	stroke-dashoffset: 16px;
	transition: all 0.3s ease;
	transition-delay: 0.1s;
	transform: translate3d(0, 0, 0);
}
input[type=checkbox] + label > span:first-child:before {
	content: "";
	width: 100%;
	height: 100%;
	background:var(--verde);
	display: block;
	transform: scale(0);
	opacity: 1;
	border-radius: 50%;
}
input[type=checkbox] + label > span:last-child {
	padding-left: 8px;
}
input[type=checkbox] + label:hover > span:first-child {
	border-color:var(--verde);
}
input[type=checkbox]:checked + label > span:first-child {
	background:var(--verde);
	border-color:var(--verde);
	animation: wave 0.4s ease;
}
input[type=checkbox]:checked + label > span:first-child svg {
	stroke-dashoffset: 0;
}
input[type=checkbox]:checked + label > span:first-child:before {
	transform: scale(3.5);
	opacity: 0;
	transition: all 0.6s ease;
}
@keyframes wave {
	50%{transform: scale(0.9);}
}
