/* DEFAULT BUTTON */
.button
{
	display: inline-block;
	border: 1px solid #e6e6e6;
	background-color: #ffffff;
	color: #222222;
	padding: 8px 16px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	font-family: inherit;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1.3rem;
}
.button:hover
{
	background-color: #E6E6E6;
	color: inherit;
}
.button:focus
{
	outline: none;
}

/* VARIANTS */
.primary-button
{
	border: 1px solid #ff7e00;
	background-color: #ff7e00;
	color: #ffffff;
}
.primary-button:hover
{
	background-color: #ff6b00;
	color: #ffffff;
}

.critical-button
{
	border: 1px solid #e60000;
	background-color: #e60000;
	color: #ffffff;
}
.critical-button:hover
{
	background-color: #c60000;
	color: #ffffff;
}

/* SPECIAL BUTTONS */
.follow-button
{
	font-size: 20px;
	padding: 16px 52px;
	line-height: 1rem;
}

.rounded-button
{
	padding: 10px 30px;
    margin: 5px;
    border-radius: 50px;
    font-family: 'Montserrat';
	line-height: 1rem;
}
.rounded-button img
{
	padding-top: 3px;
}