

/* Common butt styles */
.butt {
	left:50%;
	width: 200px;
	display: block;
	margin-left: -100px;
	
	padding: 1em 2em;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}
.butt:focus {
	outline: none;
}
.butt > span {
	vertical-align: middle;
}

/* Text color adjustments (we could stick to the "inherit" but that does not work well in Safari) */
.bg-1 .butt {
	color: #37474f;
	border-color: #37474f;
}
.bg-2 .butt {
	color: #ECEFF1;
	border-color: #ECEFF1;
}
.bg-3 .butt {
	color: #fff;
	border-color: #fff;
}

/* Sizes */
.butt--size-s {
	font-size: 15px; 
}
.butt--size-m {
	font-size: 16px;
}
.butt--size-l {
	font-size: 18px;
}

/* Typography and Roundedness */
.butt--text-upper {
	letter-spacing: 2px;
	text-transform: uppercase;
}
.butt--text-thin {
	font-weight: 300;
}
.butt--text-medium {
	font-weight: 500;
}
.butt--text-thick {
	font-weight: 800;
}
.butt--round-s {
	border-radius: 5px;
}
.butt--round-m {
	border-radius: 15px;
}
.butt--round-l {
	border-radius: 40px;
}

/* Borders */
.butt--border-thin {
	border: 1px solid;
}
.butt--border-medium {
	border: 2px solid;
}
.butt--border-thick {
	border: 3px solid;
}

/* Individual butt styles */


/* Moema */
.butt--moema {

	border-radius: 0px;
	background: #fff;
	color: #041d36;
	-webkit-transition: background-color 0.3s, color 0.3s;
	transition: background-color 0.3s, color 0.3s;
}
.butt--moema a{color: #041d36;}
.butt--moema a:hover{color: #fff;}
.butt--moema.butt--inverted {
	

}
.butt--moema::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	bottom: -20px;
	right: -20px;
	background: inherit;
	border-radius: 50px;
	z-index: -1;
	opacity: 0.4;
	-webkit-transform: scale3d(0.8, 0.5, 1);
	transform: scale3d(0.8, 0.5, 1);
}
.butt--moema:hover {
	-webkit-transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
	transition: background-color 0.1s 0.3s, color 0.1s 0.3s;
	color: #ECEFF1;
	background-color: #3D8AA7;
	-webkit-animation: anim-moema-1 0.3s forwards;
	animation: anim-moema-1 0.3s forwards;
}
.butt--moema.butt--inverted:hover {
	color: #fff;
	background-color: #3D8AA7;
}
.butt--moema:hover::before {
	-webkit-animation: anim-moema-2 0.3s 0.3s forwards;
	animation: anim-moema-2 0.3s 0.3s forwards;
}
@-webkit-keyframes anim-moema-1 {
	60% {
		-webkit-transform: scale3d(0.8, 0.8, 1);
		transform: scale3d(0.8, 0.8, 1);
	}
	85% {
		-webkit-transform: scale3d(1.1, 1.1, 1);
		transform: scale3d(1.1, 1.1, 1);
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes anim-moema-1 {
	60% {
		-webkit-transform: scale3d(0.8, 0.8, 1);
		transform: scale3d(0.8, 0.8, 1);
	}
	85% {
		-webkit-transform: scale3d(1.1, 1.1, 1);
		transform: scale3d(1.1, 1.1, 1);
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@-webkit-keyframes anim-moema-2 {
	to {
		opacity: 0;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes anim-moema-2 {
	to {
		opacity: 0;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

