.button{
	color: #fff;
	font-weight: 600;
	border: 1px solid #004690;
	border-radius: 34px;
	background: rgb(19,123,183);
	background: -moz-linear-gradient(90deg, rgba(19,123,183,1) 0%, rgba(0,68,138,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(19,123,183,1) 0%, rgba(0,68,138,1) 100%);
	background: linear-gradient(90deg, rgba(19,123,183,1) 0%, rgba(0,68,138,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#137bb7",endColorstr="#00448a",GradientType=1);
	padding: 1em 2em;
	display: inline-block;
	margin-bottom: 1em;
}
.button.outline{
	padding: 1em;
	border-radius: 50%;
	line-height: 0.25em;
	background: transparent;
}
.button:hover{
	color: #004690;
	background: transparent;
}
.button.outline:hover{
	background: rgb(19,123,183);
	background: -moz-linear-gradient(90deg, rgba(19,123,183,1) 0%, rgba(0,68,138,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(19,123,183,1) 0%, rgba(0,68,138,1) 100%);
	background: linear-gradient(90deg, rgba(19,123,183,1) 0%, rgba(0,68,138,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#137bb7",endColorstr="#00448a",GradientType=1);
}
.button.outline:hover img{
	-webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.button.disabled{
	border: 1px solid rgb(100,35,85);
	background: rgb(100,35,85);
	background: -moz-linear-gradient(135deg, rgba(100,35,85,1) 0%, rgba(199,0,31,1) 100%);
	background: -webkit-linear-gradient(135deg, rgba(100,35,85,1) 0%, rgba(199,0,31,1) 100%);
	background: linear-gradient(135deg, rgba(100,35,85,1) 0%, rgba(199,0,31,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#642355",endColorstr="#c7001f",GradientType=1);
	cursor: not-allowed;
    pointer-events: none;
}
