
.button,
.button:after,
.button:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index:0;
} 
.hidden {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	pointer-events: none;
}
   
  

/* Common button styles */
.button {
	font-family: Raleway;
	min-width: 150px;
	max-width: 250px;
	display: block;
	margin: 1em;
	padding: 1em 2em;
	border: none;
	background: none;
	color: #5bbd12; 
	vertical-align: middle;
	position: relative; 
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	cursor:pointer;
	z-index:0;
}
.button:focus {
	outline: none;
}
.button > span {
	vertical-align: middle;
}

/* Text color adjustments (we could stick to the "inherit" but that does not work well in Safari) */
 

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

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

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


/* Simple button style */
.button--simple {
	overflow: hidden;
	padding: 0;
	width: 260px;
}
.button--simple.button--inverted {
	color: #fff;
}
.button--simple::before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0%;
	width: 100%;
	height: 100%;
	background: #5bbd12;
	color:#FFF;
	-webkit-transform: translate3d(0, 200%, 0);
	transform: translate3d(0, 200%, 0);
	z-index:0;
}
.button--simple.button--inverted::before {
	background: #fff;
	color: #5bbd12;
}
.button--simple > span {
	display: block;
}
.button--simple::before,
.button--simple > span {
	padding: 1em 0.7em;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	z-index:0;
}
.button--simple:hover::before {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.button--simple:hover > span {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);