﻿@import url('https://fonts.googleapis.com/css?family=Muli:300,400,600,700');

html {
    font-size: 62.5%;
    box-sizing: border-box;     
    background: no-repeat center center fixed;
    background-size: cover;
    background-color:rgba(0, 174, 255, 0.25);
    background-image:url(/Content/images/login/atmosphere1.jpg);
    height:100vh;
    /*transition: all 1s ease;*/
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
	margin: 0;
	padding: 0;
	font-family: Muli;
	font-size: 1.4rem;
	color: #333;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
h1 {
	font-family: Muli;
	font-size: 4.0rem;
	font-weight: 300;
	color: #0076c0;
}
h2 {
    font-family: Muli;
    font-size: 2.6rem;
    font-weight: 300;
    color: #666;
}
h3 {
    font-family: Muli;
    font-size: 2.0rem;
    font-weight: 300;
    color: #00aeff;
    margin-top:30px;
}
p {
	font-size: 1.4rem;
	font-weight: 300;
	color: #333;
	margin: 0.25em 0;
	padding: 0.25em 0;
	line-height: 2.2rem;
}
a, a:active, a:focus {
    color: #0076c0;
}
a:hover {
    color: #594a3c;
}
footer {
	padding: 20px 30px;
}
footer p {
	font-size: 1.2rem;
}


/*************************** LOGIN ***************************/

#container {
	width: 100%;
	flex: 1;
	align-self: flex-start;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px;
	padding: 50px;
}
#page {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1000px;
	background-color: #fff;
	border-radius: 10px;
	padding: 40px;
	box-shadow: 0px 1px 8px 1px rgba(204,204,204,0.5);
}
#page .logo img {
	width: 150px;
}
#page h1 {
	font-size: 3.0rem;
}
#page-wrapper {
	margin: 10px 0 30px 0;
}
@media print {
	#page {
		max-width: 100%;
		box-shadow: none;
		padding: 0;
	}
	#page h1, #page h2 {
		page-break-after: avoid;
	}
}
#login, #announcements {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 450px;
	height: 600px;
	background-color: #fff;
	border-radius: 10px;
	padding: 30px 35px;
	box-shadow: 0px 1px 8px 1px rgba(204,204,204,0.5);
}
.free-trial-layout #login, .free-trial-layout #announcements {
	height: 660px;
}

@media (max-width:550px) {
	#container {
		gap: 20px;
		padding: 20px;
	}
	#announcements {
		padding: 30px 20px 10px 30px;
	}
}

#login-wrapper h1, #login-wrapper h2 {
	margin: 10px 0;
}
#login-wrapper h3 {
	margin-bottom: 10px;
}

#login .logo {
	text-align: left;
	margin-bottom: 16px;
}
#login .logo img {
	width:150px;
}
#login .assistant {
	width:100%;
    position:absolute;
    bottom:15px;
}
#login .rob {
	margin:0;
	padding:0;
	display:inline-block;
}

#login .rob img {
    width: 60px;
	margin-bottom: 10px;
}

#external-login {
	/*display:inline-block;*/
	vertical-align: top;
}

#external-login form {
	margin: 0;
}

#login .header {
	position:absolute;
	top:0;
	right:0;
	padding:30px 35px;
}
.btn-switch {
	padding: 8px;
	background-color: #0093cd;
}
.btn-switch i {
	margin:0;
}

/*************************** ANNOUNCEMENTS ***************************/

#announcements h2 {
	margin: 0 0 20px 0;
	padding: 0;
	font-size: 2.2rem;
	font-weight: 400;
	color: #00aeff;
	text-align: left;
}
#announcements h2 i {
	margin-right: 5px;
}
#announcements .list {
	height:calc(100% - 60px);
	/*overflow-y: scroll;*/
    overflow-y:auto;
}
.announcement {
	display: block;
	border-radius: 10px;
	/*background-color: #00aeff;*/
	border:1px solid #00aeff;
	padding: 15px;
	width:calc(100% - 10px);
	margin-bottom: 15px;
}
.free-trial-layout .announcement {
	width: 100%;
	margin-bottom: 0;
}
.announcement h3 {
	padding: 0;
	margin: 0 0 10px 0;
	font-size: 1.6rem;
	font-weight: 700;
	color: #333;
}
.announcement p.posted {
	padding: 0;
	margin: 0 0 5px 0;
	font-size: 1.2rem;
	line-height: 1.2rem;
	color: #aaa;
}
.announcement p.posted span {
	color: #00aeff;
}
.announcement p {
	padding: 5px 0;
	margin: 5px 0;
	font-size: 1.4rem;
	line-height: 2.0rem;
	font-weight: 300;
	color: #333;
}

/*************************** SPEECH BUBBLE ***************************/
.speech-bubble {
	position: relative;
	font-size: 1.4rem;
	line-height: 2.0rem;
	padding: 10px 15px;
	width: calc(100% - 70px);
	min-width: 260px;
	min-height: 80px;
	margin: 1em 0 1.6em;
	border: 1px solid #00aeff;
	color: #333;
	background: #fff;
	/* css3 */
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.speech-bubble p {
    padding:0;
    margin:5px 0;
    font-size:1.4rem;
    line-height:2.0rem;
    color:#333;
}
.speech-bubble.left {
	margin-left:30px;
}
.speech-bubble.right {
	margin-right:30px;
}
.speech-bubble:before {
	content:"";
	position:absolute;
	bottom:-15px; /* value = - border-top-width - border-bottom-width */
	left:29px; /* controls horizontal position */
	border-width:15px 15px 0;
	border-style:solid;
	border-color:#00aeff transparent;
	/* reduce the damage in FF3.0 */
	display:block;
	width:0;
}
/* creates the smaller  triangle */
.speech-bubble:after {
	content:"";
	position:absolute;
	bottom:-14px; /* value = - border-top-width - border-bottom-width */
	left:30px; /* value = (:before left) + (:before border-left) - (:after border-left) */
	border-width:14px 14px 0;
	border-style:solid;
	border-color:#fff transparent;
	/* reduce the damage in FF3.0 */
	display:block;
	width:0;
}
/* creates the larger triangle */
.speech-bubble.top:before {
	top:-20px; /* value = - border-top-width - border-bottom-width */
	bottom:auto;
	left:auto;
	right:40px; /* controls horizontal position */
	border-width:0 20px 20px;
}
/* creates the smaller  triangle */
.speech-bubble.top:after {
	top:-19px; /* value = - border-top-width - border-bottom-width */
	bottom:auto;
	left:auto;
	right:41px; /* value = (:before right) + (:before border-right) - (:after border-right) */
	border-width:0 19px 19px;
}
/* creates the larger triangle */
.speech-bubbleleft:before {
	top:10px; /* controls vertical position */
	bottom:auto;
	left:-30px; /* value = - border-left-width - border-right-width */
	border-width:15px 30px 15px 0;
	border-color:transparent #00aeff;
}
/* creates the smaller  triangle */
.speech-bubble.left:after {
	top:16px; /* value = (:before top) + (:before border-top) - (:after border-top) */
	bottom:auto;
	left:-21px; /* value = - border-left-width - border-right-width */
	border-width:9px 21px 9px 0;
	border-color:transparent #fff;
}
/* creates the larger triangle */
.speech-bubble.right:before {
	top:10px; /* controls vertical position */
	bottom:auto;
	left:auto;
	right:-30px; /* value = - border-left-width - border-right-width */
	border-width:15px 0 15px 30px;
	border-color:transparent #00aeff;
}
/* creates the smaller  triangle */
.speech-bubble.right:after {
	top:16px; /* value = (:before top) + (:before border-top) - (:after border-top) */
	bottom:auto;
	left:auto;
	right:-21px; /* value = - border-left-width - border-right-width */
	border-width:9px 0 9px 21px;
	border-color:transparent #fff;
}


/*************************** FORMS (EXPERIMENTAL) ***************************/

form {
    margin: 10px 0;
}
.field {
	position: relative;
	display: flex;
	flex-flow: column-reverse;
	margin-bottom: 7px;
}
/**
* Add a transition to the label and input.
* I'm not even sure that touch-action: manipulation works on
* inputs, but hey, it's new and cool and could remove the
* pesky delay.
*/
.field label, .field input, .field textarea {
	transition: all 0.2s;
	touch-action: manipulation;
}
.field input, .field textarea {
	font-size: 1.8rem;
	border: 0;
	font-family: inherit;
	-webkit-appearance: none;
	border-radius: 0;
	padding: 5px 0;
	cursor: text;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #fff;
	/*background-color: transparent;*/
}
.field input:focus, .field textarea:focus {
	outline: 0;
	border-bottom: 1px solid #00aeff;
}
.field label {
	/*letter-spacing: 0.05em;	  */
	color: #999;
}
/**
* Translate down and scale the label up to cover the placeholder,
* when following an input (with placeholder-shown support).
* Also make sure the label is only on one row, at max 2/3rds of the
* field—to make sure it scales properly and doesn't wrap.
*/
.field input:placeholder-shown + label, .field textarea:placeholder-shown + label {
	cursor: text;
	max-width: 66.66%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transform-origin: left bottom;
	transform: translate(0, 2.4rem) scale(1.4);
	font-size:0.8em;
}
/**
* By default, the placeholder should be transparent. Also, it should
* inherit the transition.
*/
::-webkit-input-placeholder, ::placeholder {
	opacity: 0;
	transition: inherit;
}
/**
* Show the placeholder when the input is focused.
*/
.field input:focus::-webkit-input-placeholder, .field textarea:focus::-webkit-input-placeholder,
.field input:focus::placeholder, .field textarea:focus::placeholder {
	opacity: 0.4;
}
/**
* When the element is focused, remove the label transform.
* Also, do this when the placeholder is _not_ shown, i.e. when
* there's something in the input at all.
*/
.field input:not(:placeholder-shown) + label,
.field input:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field textarea:focus + label {
	transform: translate(0, 0) scale(1);
	cursor: pointer;
	font-size: 0.8em;
}
.field input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}
.field span.help {
	position:absolute;
	right:0;
	top:30px;
    font-size:1.4rem;
}
.field span.help a {
	font-size:1.4rem;
}
.field span.validation {
	position:absolute;
	right:0;
	top:3px;
    font-size:1.2rem;
    color:#ff6600;
}
.field span.validation a {
	font-size:1.2rem;
}

.buttons {
	margin: 20px 0;
}
button {
	width: 100%;
	-webkit-appearance: none;
	border: 1px solid #eee;
	padding: 12px 25px;
	font-family: Muli;
	font-size: 1.8rem;
	line-height: 1.8rem;
	background-color: #00aeff;
	color: #fff;
	cursor: pointer;
	margin-bottom: 5px;
	border-radius: 5px;
}
button:hover {
	opacity: 0.7;
}
button.nohover:hover {
	opacity: 1.0;
}
button.reset, button.cancel {
	background-color: #ccc;
}
button.loading {
    display:none;   /* don't display by default */
    opacity:0.5;
    cursor:default;
}
button i {
    margin-right:5px;
}
button.google {
	background-color: rgb(66, 133, 244);
}

button.external {
    font-size: 1.1em;
}

.checkbox {
	position:relative;
	margin:12px 0;
	text-align: left;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.checkbox.pad-top {
	margin-top:24px;
}
.checkbox input[type="checkbox"] {
	cursor:pointer;
	align-self: flex-start;
}
.checkbox label {
	color: #999;
	margin-left: 4px;
	font-size: 1.2rem;
	cursor:pointer;
}
.checkbox label strong {
	color:#888;
}
.checkbox .external-link {
	font-size:0.8em;
	margin-left: 2px;
}
.checkbox .external-link .icon {
	margin:0 4px;
}
.checkbox span.validation {
	position:absolute;
	right:0;
	top:-12px;
    font-size:1.2rem;
    color:#ff6600;
}
.checkbox span.validation a {
	font-size:1.2rem;
}
.validation-summary-errors {

}
.validation-summary-errors ul {
    padding-left:0;
}
.validation-summary-errors ul li {
    font-size:1.2rem;
    list-style-type:none;
    color:#ff6600;
}

.radiobuttons {
	margin:10px 0;
}
.radiobuttons label {
	margin: 4px 0;
	display:block;
	vertical-align:middle;
	cursor:pointer;
}

.features p {
	position: relative;
	margin: 2px 0;
	padding: 2px 0;
	text-align: left;
	padding-left: 24px;
}
.features p::before {
    position:absolute;
    left:0;
    font-family: FontAwesome;
    content: "\f00c";
    color:#00aeff;
}
.small-print {
	margin-top:15px;
}
.small-print p {
	font-weight:300;
	font-size:0.95em;
}
.small-print ul {
	padding-left: 24px;
	list-style-type: circle;
	margin-top:5px;
}
.small-print li {
	font-weight:300;
	font-size:0.9em;
}

.field select {
	padding: 8px;
	margin-top: 10px;
	border-color: #ccc;
	color: #666;
	font-family: Muli;
	font-size: 14px;
	border-radius: 3px;
}

.field-columns-2 {
	display: flex;
	flex-direction: row;
	gap: 10px;
}
.field-columns-2 .field {
	width: calc(50% - 5px);
}
.recaptcha {
	position: relative;
	margin: 14px 2px 0;
	opacity: 0.8;
}
.recaptcha iframe {
    position: absolute;
    left: 0;
    top: 0;
}


/********** 22/12/17, DCE, Tooltip Styles **********/

/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
	position: relative;
	/*cursor: pointer;*/
}

	/* Base styles for the entire tooltip */
	[data-tooltip]:before,
	[data-tooltip]:after,
	.tooltip:before,
	.tooltip:after {
		position: absolute;
		visibility: hidden;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
		opacity: 0;
		-webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
		-moz-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
		transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		pointer-events: none;
		z-index: 9999;
	}

	/* Show the entire tooltip on hover and focus */
	[data-tooltip]:hover:before,
	[data-tooltip]:hover:after,
	.tooltip:hover:before,
	.tooltip:hover:after {
		visibility: visible;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
		opacity: 1;
	}

	/* Base styles for the tooltip's directional arrow */
	.tooltip:before,
	[data-tooltip]:before {
		z-index: 901;
		border: 6px solid transparent;
		background: transparent;
		content: "";
	}

	/* Base styles for the tooltip's content area */
	.tooltip:after,
	[data-tooltip]:after {
		z-index: 900;
		padding: 8px;
		background-color: rgb(0 147 205 / 0.90);
		color: #fff;
		content: attr(data-tooltip);
		font-size: 1.2rem;
		line-height: 1.2;
		text-align: center;
		border-radius: 3px;
		min-width: 120px;
		display: inline-block;
		box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
	}

	.tooltip.wider:after,
	.tooltip-right.wider:after,
	[data-tooltip].wider:after {
		min-width: 300px;
	}


	/* Directions */

	/* Top (default) */
	[data-tooltip]:before,
	[data-tooltip]:after,
	.tooltip:before,
	.tooltip:after,
	.tooltip-top:before,
	.tooltip-top:after {
		bottom: 100%;
		left: 50%;
	}

	[data-tooltip]:before,
	.tooltip:before,
	.tooltip-top:before {
		margin-left: -6px;
		margin-bottom: -12px;
		border-top-color: rgb(0 147 205 / 0.90);
	}

	/* Horizontally align top/bottom tooltips */
	[data-tooltip]:after,
	.tooltip:after,
	.tooltip-top:after {
		margin-left: -80px;
	}

	[data-tooltip]:hover:before,
	[data-tooltip]:hover:after,
	.tooltip:hover:before,
	.tooltip:hover:after,
	.tooltip-top:hover:before,
	.tooltip-top:hover:after {
		-webkit-transform: translateY(-12px);
		-moz-transform: translateY(-12px);
		transform: translateY(-12px);
	}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
	right: 100%;
	bottom: 50%;
	left: auto;
}

.tooltip-left:before {
	margin-left: 0;
	margin-right: -12px;
	margin-bottom: 0;
	border-top-color: transparent;
	border-left-color: rgb(0 147 205 / 0.90);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after {
	-webkit-transform: translateX(-12px);
	-moz-transform: translateX(-12px);
	transform: translateX(-12px);
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
	top: 100%;
	bottom: auto;
	left: 50%;
}

.tooltip-bottom:before {
	margin-top: -12px;
	margin-bottom: 0;
	border-top-color: transparent;
	border-bottom-color: rgb(0 147 205 / 0.90);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after {
	-webkit-transform: translateY(12px);
	-moz-transform: translateY(12px);
	transform: translateY(12px);
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
	bottom: 50%;
	left: 100%;
}

.tooltip-right:before {
	margin-bottom: 0;
	margin-left: -12px;
	border-top-color: transparent;
	border-right-color: rgb(0 147 205 / 0.90);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after {
	-webkit-transform: translateX(12px);
	-moz-transform: translateX(12px);
	transform: translateX(12px);
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
	top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
	margin-left: 0;
	margin-bottom: -16px;
}

.required::after {
	content: "*";
	font-weight: bold;
	color: #ff6600;
}