
 a.button {
	 display: inline-block;
	 box-sizing: border-box;
	 vertical-align: middle;
	 padding: 0.85em 24px;
	 text-align: center;
}
 button, button:active, .button, .button:visited {
	 position: relative;
	 overflow: hidden;
	 border-style: none;
	 padding: 0 24px;
	 height: 56px;
	 border-radius: 10px;
	 cursor: pointer;
   	 font-family: 'Gotham A','Gotham B',Helvetica,sans-serif;
	 font-size: 14px;
	 box-shadow: 0px 16px 24px 0px rgba(0,0,0,0.2);
	 color: #000;
	 letter-spacing: 0.2em;
   font-weight: 700;
}
 button:before, button:active:before, .button:before, .button:visited:before {
	 content: ' ';
	 display: block;
	 position: absolute;
	 left: 0;
	 right: 0;
	 bottom: 0;
	 top: 0;
	 z-index: 1;
	 background-color: ;
	 opacity: 0;
	 transition: opacity 500ms;
}
 button:hover:before, button:active:hover:before, .button:hover:before, .button:visited:hover:before {
	 opacity: 0.1;
}
 button.noshadow, button:active.noshadow, .button.noshadow, .button:visited.noshadow {
	 box-shadow: none;
}
 button.green, a.button.green {
	 background-color: #6CC72B;
}
 