* {
	font-family: GothamPro, "Open Sans", Arial, sans-serif;
}
body {
	margin: 0;
	padding: 0;	
	align-items: stretch;	
	color: #707070;
	
}
.activ-container {
	position: absolute;
	display: flex;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.activ-container .loader {
	display: none;
}
.activ-side-panel {
	width: 33%;
	padding: 40px;
	background-color: #47B8AF;
	color: #F1FFFF;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.activ-slider {
	display: flex;
	justify-content: center;	
}
.activ-slider-handle {
	background-color: #F1FFFF;
	width: 60px;
	height: 4px;
	display: block;
	border-radius: 2px;
	margin: 0 2px;
	transition: background-color 0.6s ease;
}

.activ-slider-handle.active {
	background-color: #008275;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1s;
  animation-name: fade;
  animation-duration: 0.8s;
}

@-webkit-keyframes fade {
  from {opacity: .5} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .5} 
  to {opacity: 1}
}

.activ-logon-panel {
	background-color: #FFF;
	flex-grow: 1;
	padding: 40px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	align-items: center;
	justify-content: space-between;
}
.activ-demo-link {
	text-align: right;	
	width: 100%;
}
.activ-logon-form {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	justify-content: stretch;	
	text-align: center;
	max-width: 400px;
}
.activ-footer {
	margin-top: 30px;
}

.activ-logon-form div {
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	margin-bottom: 15px;
}

.activ-container.loading {
	align-items: center;
	justify-content: center;
}
.activ-container.loading .loader {
	display: block;
}
.activ-container.loading .activ-side-panel, .activ-container.loading .activ-logon-panel {
	display: none;
}



input {
	background-color: #EFEFEF;
	border-radius: 5px;
	padding: 15px;
	border: solid 1px #EFEFEF;
	outline: none;
  	outline-style: round;  	
}
input:focus {
	border: solid 1px #47B8AF;
}


a { 
	color: #47B8AF; 
	font-weight: 700; 
	text-decoration: none; 
}

.activ-logon-button {
	background-color: #47B8AF;
	border-radius: 5px;
	padding: 15px;
	border: solid 1px #47B8AF;
	color: #FFF;
	font-weight: 700;
	margin-bottom: 30px;
	font-size: 1.2em;
}


.logo-mono {
	display: block;
}

.activ-logon-form .logo-colour {
	display: none;	
	justify-content: center;
	align-items: center;
}

.activ-demo-link {
	display: block;
}

.activ-logon-form .activ-demo-link-2 {
	display: none;
}

@media (max-width: 700px) {
	.logo-mono {
		display: none;
	}
	.activ-logon-form {
		margin-top: 0;
	}
	.activ-logon-form .logo-colour {
		display: flex;
	}
	
	.activ-container {
		flex-direction: column; 
	}
	.activ-side-panel {
		background-color: #FFF;
		width: auto;
		display: none;
	}
	.activ-demo-link {
		display: none;	
	}
	
	.activ-logon-form .activ-demo-link-2 {
		display: block;
	}
}

@media (max-width: 310px) {
	.logo-colour svg {
		width: 75%;
	}
}

.hidden {
	display: none !important;
}

.text-black {
	color: #000 !important;
}