@import "../orange/button.css";

.style.button:not([hidden])
{
	box-shadow: none;
	text-shadow: none;
	border-radius: 0;
	display: inline-block;
	box-sizing: border-box;
	height: auto;
	margin: 0;
	padding: .8em 2em .85em;
	font-weight: 400;
	line-height: 1.3;
	font-size: 20px;
	text-decoration: none;
	color: #1d5ca3;
	background: 0 0;
	border: 1px solid #1d5ca3;
	-webkit-transition: color .35s,border-color .35s,background-color .35s;
	transition: color .35s,border-color .35s,background-color .35s;
	cursor: pointer;
	text-align: center;
	background-color: white;
}

.style.button:not([hidden]):hover
{
	background-color: #1d5ca3;
	border-color: #1d5ca3;
	color: #fff;
	-webkit-transition-duration: .175s;
	transition-duration: .175s;
	text-decoration: none;
}

.style.button.obscure
{
	color: slategray;
	border-color: slategray;
}

.style.button.obscure:hover
{
	border-color: darkslategray;
	background-color: slategray;
	background: slategray;
}

.style.button.warning
{
	border-color: #FA691B;
}

.style.button.warning:hover
{
	background-color: #FA691B;
	background: #FA691B;
	border-color: #CD4903;
}

.style.button.small
{
	margin: 0;
	padding: 0.5em 1.25em;
	font-size: small;
}

.style.button[disabled="disabled"],
.style.button[disabled="disabled"]:hover,
.style.button.disabled,
.style.button.disabled:hover
{
	background: #DDD;
	color: #555;
	box-shadow: none;
	text-shadow: none;
}