/**
 * Buttons
 */
.button
{
    width: auto;
	background: transparent;
	border: 2px solid #222222;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-weight: 600;
	display: inline-block;
	padding: 6px 16px;
	margin-bottom: 1.5em;
	color: #222222;
	text-decoration: none;
	position: relative;
	z-index: 999;
	cursor: pointer;
	box-shadow: 0 2px 0 rgba( 0, 0, 0, 0.1 );
	-webkit-transition: 250ms linear all; 
	-moz-transition: 250ms linear all; 
	transition: 250ms linear all; 
}

a.button
{
    color: #222222!important;
}

.small.button
{
	font-size: 12px;
}

.medium.button
{
	font-size: 18px;
	line-height: 1;
}

.large.button
{
	font-size: 20px;
	padding: 20px 35px;
}

.rounded.button
{
	border-radius: 25px;
}
/**
 * White
 */
.white.button
{
	border-color: #ffffff!important;
	color: #ffffff!important;
}

.grey.button
{
	border-color: #666666!important;
	color: #666666!important;
}
/**
 * Pink
 */
.pink.button
{
	border-color: #fe57a1!important;
	color: #fe57a1!important;
}
/**
 * Green
 */
.green.button
{
	border-color: #60bfb1!important;
	color: #60bfb1!important;
}
/**
 * Blue
 */
.blue.button
{
	border-color: #2daebf!important;
	color: #2daebf!important;
}
/**
 * Red
 */
.red.button
{
	border-color: #ff0000!important;
	color: #ff0000!important;
}
/**
 * Magenta
 */
.magenta.button
{
	border-color: #a9014b!important;
	color: #a9014b!important;
}
/**
 * Orange
 */
.orange.button
{
	border-color: #F16863!important;
	color: #F16863!important;
}
/**
 * Yellow
 */
.yellow.button
{
	border-color: #ffb515!important;
	color: #ffb515!important;
}
/* states */
.button:hover
{
    border-color: #d7d7d7!important;
    color: #d7d7d7!important;
}
.button:active
{
	top: 1px;
}