/* Global styles for MDreferralPRO */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap");
a, a:visited
{
	color: #006eb7;
}
body
{
	background: #b8e1e2; /* Old browsers */
	background: -moz-linear-gradient(top, #eee 0%, #edeeec 22%, #b8e1e2 78%, #b8e1e2 100%);
	background: -webkit-linear-gradient(top, #eee 0%, #edeeec 22%, #b8e1e2 78%, #b8e1e2 100%);
	background: linear-gradient(to bottom, #eee 0%, #edeeec 22%, #b8e1e2 78%, #b8e1e2 100%);
	background-attachment: fixed;
	color: #333;
	display: flex;
	flex-direction: column;
	font-family: "Raleway", Helvetica, Arial, Sans-Serif;
	min-height: calc(100vh - 1.2rem);
	position: relative;
}
button, input[type="reset"], input[type="submit"], input[type="button"], [role="button"]
{
	background-color: #2bbed8;
	border-color: #047c8f;
	border-radius: 8px;
	border-style: solid;
	border-width: 1px;
	color: #fff;
	cursor: pointer;
	font-size: 10pt;
	font-weight: 700;
	padding: 5px 15px 6px;
	width: auto;
}
button:hover, input[type=reset]:hover, input[type=submit]:hover, input[type=button]:hover
{
	background-color: #56cbe0;
}
button.active, button:active, input[type=reset]:active, input[type=submit]:active, input[type=button]:active
{
	background-color: #0299c4;
}
button:disabled, input[type=reset]:disabled, input[type=submit]:disabled, input[type=button]:disabled
{
	background-color: #8ca6aa;
	border-color: #666;
	cursor: not-allowed;
}
button:disabled, input:disabled
{
	color: #bbb;
}
html
{
	height: 100%;
}
h1
{
	font-size: 1.6em;
	width: 100%;
}
input, select
{
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #ccc;
}
.field-error
{
	-moz-box-shadow: 0 0 4px #900;
	-webkit-box-shadow: 0 0 4px #900;
	background-color: #ffc7c7;
	border-style: solid;
	box-shadow: 0 0 4px #900;
}
.hidden, [hidden]
{
	display: none !important;
}
.icon-definitions
{
	display: none;
}
.processing-spinner
{
	-webkit-animation: spinner 2s linear infinite;
	animation: spinner 1.5s linear infinite;
}
.required-marker
{
	color: #c00000;
	font-size: 1.1em;
	font-weight: 700;
}
.ui-helper-clearfix
{
	overflow: auto;
}
.unicode
{
	font-family: Arial Unicode MS, Lucida Sans Unicode, Calibri, Helvetica, Arial, sans-serif;
}
::selection
{
	background: #fff2a8;
}
::-moz-selection
{
	background: #fff2a8;
}
.notification-alert,
.notification-error,
.validation
{
	background-color: #fff;
}
/* Class for button which perform dangerous actions */
button.danger, input[type="button"].danger
{
	background-color: #d8452b;
	border-color: #8f1704;
}
button.danger:hover, input[type="button"].danger:hover
{
	background-color: #e06b56;
}
button.danger:active, input[type="button"].danger:active
{
	background-color: #c42d02;
}
@-webkit-keyframes spinner
{
	from { -webkit-transform: rotate(0deg); }
	to { -webkit-transform: rotate(360deg); }
}
@keyframes spinner
{
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}