﻿/*   Global   */
/*############*/

@font-face {
	font-family: BrownStd;
	src: url(../fonts/BrownStd-Regular.otf);
	font-weight: normal;
}

@font-face {
	font-family: BrownStd;
	src: url(../fonts/BrownStd-Light.otf);
	font-weight: lighter;
}

@font-face {
	font-family: BrownStd;
	src: url(../fonts/BrownStd-Bold.otf);
	font-weight: bold;
}

body {
	margin: 0;
	font-family: BrownStd, Futura, sans-serif;
	font-weight: normal;
	background-color: rgb(246, 246, 240);
}

input
{
	font-family: BrownStd;
	font-weight: lighter;
}

button
{
	font-family: BrownStd;
	font-weight: normal;
}

a.btn,
button.btn,
label.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

	height: 50px;
	padding-left: 2.5em;
	padding-right: 2.5em;
	box-sizing: border-box;

	margin-top: 2.5em;
	margin-bottom: 2.5em;
	border-radius: 25px;

	box-shadow: none;
	border: none;
	font-size: 1em;
	font-weight: 500;
	color: white;
	letter-spacing: 0.5px;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
	cursor: pointer;

	text-decoration: none;
}

a.btn.primary,
button.btn.primary,
label.btn.primary
{
	background-image: linear-gradient(rgb(86, 192, 114), rgb(72, 178, 100));
}

a.btn.secondary,
button.btn.secondary,
label.btn.secondary
{
	background-color: white;
	color: rgb(71, 71, 71);
	text-shadow: none;
	border: 1px solid rgb(86, 192, 114);
}

.hidden
{
	display: none;
}

.bold
{
	font-weight: bold;
}

/*   Login    */
/*############*/

.login-container
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.login-container .logo
{
	display: flex;
	align-items: center;
	justify-content: center;

	margin-top: 4em;
	margin-bottom: 4em;
}

.login-container .logo img
{
	display: inline-block;
	width: 40px;
	height: 40px;
}

.login-container .logo h1
{
	display: inline-block;
	font-weight: normal;
	color: rgb(71, 71, 71);

	margin: 0em 0.25em 0em 0.25em;
}

.login-container .login-box
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	max-width: 500px;
	box-sizing: border-box;
	padding: 4em;
	background-color: white;
	border-radius: 1.5em;
	/*border: 1px solid rgb(240, 240, 240);*/
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.login-container .login-box h1
{
	padding: 0;
	margin: 0;
	font-weight: bold;
	font-size: 1.5em;
	color: rgb(71, 71, 71);
	letter-spacing: 0.25px;

}

.login-container .login-box p
{
	font-size: 1em;
	font-family: BrownStd;
	font-weight: lighter;
	font-size: 1.25em;
	letter-spacing: 0.75px;
	color: rgb(71, 71, 71);
}

	.login-container .login-box p.small {
		font-size: 0.9em;
	}


.login-container .login-box form
{
	display: flex;
	flex-direction: column;
	align-self: flex-start;
	width: 100%;
	font-size: 1em;
	margin-top: 1em;
}

.login-container .login-box form input
{
	align-self: flex-start;

	font-size: 1em;

	width: 100%;
	margin-top: 3em;
	padding-bottom: 0.5em; 

	border: 0;
	border-bottom: 1px solid rgb(238, 237, 228);

	outline: none;
	letter-spacing: 0.25px;
}

.login-container .login-box input[type="checkbox"]
{
	width:auto;
	margin-top:1em;
	margin-right:1em;
}

.login-container .login-box a.btn
{
	width: 100%;
}

.login-container .login-box a.password-reset
{
	color: rgb(71, 71, 71);
	font-size: 0.75em;
	letter-spacing: 1px;
	font-weight: normal;

	cursor: pointer;
	text-decoration: none;
}

.download-links
{
	padding-top: 20px;
	display: flex;
	justify-content: space-around;
	width: 100%;
}

.download-links a img {
	width: 160px;
}


/*   Legals   */
/*############*/

.legal-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

	.legal-container .logo {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 4em;
		margin-bottom: 4em;
	}

		.legal-container .logo img {
			display: inline-block;
			width: 40px;
			height: 40px;
		}

		.legal-container .logo h1 {
			display: inline-block;
			font-weight: normal;
			color: rgb(71, 71, 71);
			margin: 0em 0.25em 0em 0.25em;
		}

	.legal-container .legal-content {
		padding: 0 20px;
		max-width: 1200px;
		text-align: left;
	}

/*   Main App   */
/*##############*/


/* Side navigation styles */

.nav
{
	min-height: 100vh;
	background-color: white;
}

.flex-column
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.nav .logo
{
	display: flex;
	align-items: center;
	justify-content: center;

	margin-top: 4em;
	margin-bottom: 4em;
}

.nav .logo img
{
	display: inline-block;
	width: 30px;
	height: 30px;
}

.nav .logo h1
{
	display: inline-block;
	font-weight: bold;
	color: rgb(71, 71, 71);

	margin: 0em 0.25em 0em 0.25em;
}

.nav .nav-content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.nav ul {
	padding: 0;
	margin: 0;
	align-self: flex-start;
}

.nav ul li
{
	display: flex;
	align-items: center;

	align-self:flex-start;

	color: rgb(169, 169, 169);
	margin-top: 1.75em;
	margin-bottom: 1.75em;
	list-style-type: none;
}

.nav ul li a
{
	text-decoration: none;
	color: inherit;
}

.nav ul li:before
{
	background-size: 25px 25px;
	display: inline-block;
	width: 25px;
	height: 25px;
	content: "";
	margin-right: 1.5em;
}

.nav ul li.dashboard:before
{
	background-image: url(../img/icons/dashboard.png);
}

.nav ul li.add-users:before
{
	background-image: url(../img/icons/add_users.png);
}

.nav ul li.view-users:before
{
	background-image: url(../img/icons/view_users.png);
}

.nav ul li.settings:before {
	background-image: url(../img/icons/settings.png);
}

.nav ul li.logout {
	margin-top: 4em;
}

.nav ul li.logout:before {
	background-image: url(../img/icons/logout.png);
}


.nav ul li.active
{
	color: rgb(71, 71, 71);
}

@media (max-width: 768px)
{
	.nav
	{
		min-height: unset;
	}

	.nav ul li
	{
		width: 100%;
		margin: 0.75em !important;
	}

	.nav .logo
	{
		margin: 0.75em !important;
	}

	.nav .flex-column
	{
		padding: 2em;
		justify-content: flex-start;
		align-items: flex-start;
	}
}

/* Main content styles */

.content
{
	height: 100vh;
	overflow-y: scroll;
	background-color: rgb(246, 246, 240);
	border-left: 1px solid rgb(241, 240, 333);
}

.content-container
{
	width: 80%;
	max-width: 1024px;
	/*background-color: blue;*/
	padding: 4em;
}

.content-container .header
{
	display: flex;
	align-items: center;
	justify-content: space-between;

	padding-bottom: 1em;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.content-container .header h1
{
	display: inline-block;
	
	margin: 0;
	padding: 0;

	color: rgba(71, 71, 71);
	font-size: 1.75em;
}

.content-container .header img
{
	display: inline-block;
	max-height: 50px;
}

@media (max-width: 768px)
{
	.content
	{
		min-height: unset;
	}
}

.footer {
    text-align: center;
}

	.footer .container {
		width: 475px;
		border-top: 1px solid lightgrey;
		margin: 4em 0 2em 0;
		padding: 0.5em;
		display: inline-flex;
		flex-direction: row;
		justify-content: space-between;
	}

		.footer .container div.left {
			font-size: 0.7em;
			text-transform: uppercase;
			color: grey;
			display: inline-block;
		}

		.footer .container div.right {
			text-align: right;
		}

		.footer .container a {
			font-size: 0.7em;
			text-transform: uppercase;
			margin-left: 1em;
			color: grey;
		}

/* Display the nav the side until display gets too small */
/* ######################################################*/

.main
{
	display: flex;
	flex-direction: column;
}

.nav
{
	order: -1;
	min-height: auto;
}

@media (min-width: 768px) {

	.main
	{
		flex-direction: row;
		flex: 1;
	}

	.content
	{
		flex: 1;
	}

	.nav
	{
		/* 12em is the width of the columns */
		flex: 0 0 300px;
	}
}

/*TODO: Split these out into separate css files stop make it easier to manage */ 
/* Then include the specific style sheet for each page, basically namespacing the styles */

/*   Dashboard Styles   */
/* #################### */

.body p
{
	font-size: 1.25em;
	color: rgb(71, 71, 71);
}



.intro {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 2em 0;
}

.intro .user-licenses-container {

}

.intro .user-licenses-container h5 {
	margin: 0.5em 0;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 0.6em;
	text-align: right;
	color: rgb(88, 88, 88);
}

.intro .user-licenses-container h4 {
	margin: 0;
	font-size: 2em;
	font-weight: lighter;
	color: rgb(106, 122, 137);
}

.intro .user-licenses-container span.bold {
	font-weight: bold;
}

.invite-info-container {
	background-color: white;
	padding: 2em;
	border-radius: 0.5em;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.invite-info-container h1
{
	text-align: center;
	font-family: BrownStd;
	font-weight: lighter;
	color: rgb(71, 71, 71);
	font-size: 1.5em;
}

.invite-info-container .info-row
{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 2em;
}

	.invite-info-container .info-section {
		margin: 0 auto;
		padding: 2em;
	}

.invite-info-container .info-section .info-description
{
	display: block;
	font-size: 0.7em;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgb(71, 71, 71);
	text-align: center;
}

.invite-info-container .info-section .info-number
{
	display: block;
	font-size: 4em;
	font-weight: lighter;
	text-align: center;
	font-weight: bold;
}

.invite-info-container .info-section .info-number.grey {
	color: rgb(106, 122, 137);
}

.invite-info-container .info-section .info-number.green {
	color: rgb(86, 192, 114);
}

.invite-info-container .info-section .info-number.orange {
	color: rgb(249, 150, 87);
}

.invite-info-container .info-section .info-number.red {
	color: rgb(227, 104, 106);
}

@media (max-width: 1024px) {
	.invite-info-container .info-row {
		flex-direction: column;
	}
}

/*   Add Users Styles   */
/* #################### */

p.add-users-subheading
{
	font-weight: lighter;
	margin-top: 2em;
	margin-bottom: 2em;
}

.add-users-container
{
	display: flex;

	justify-content: space-between;
}

.add-users-container h1
{
	font-size: 1.5em;
	font-weight: bold;
	color: rgb(71, 71, 71);
}

.add-users-container p
{
	font-size: 1em;
	font-weight: 100;
	color: rgb(71, 71, 71);
}

.add-users-container .add-manual
{
	width: 55%;
}

.add-users-container .add-manual h1
{
	font-weight: bold;
}

/*.add-users-container .add-manual form
{
	display: flex;
	flex-direction: column;
	align-self: flex-start;
	width: 100%;
	font-size: 1em;
	margin-top: 1em;
	margin-bottom: 2em;
}

	.add-users-container .add-manual form input
	{
		align-self: flex-start;
		width: 100%;
		margin-top: 3em;
		padding-bottom: 0.5em;
		border: 0;
		border-bottom: 1px solid rgb(238, 237, 228);
		font-size: 1em;
		font-weight: 100;
		outline: none;
		letter-spacing: 0.25px;
		background-color: transparent;
	}

	.add-users-container .add-manual form .buttons
	{
		width: 100%;
		display: flex;
		margin-top: 2em;
	}

	.add-users-container .add-manual form .buttons button:first-child
	{
		margin-right: 1em;
	}*/


.add-users-container .add-manual a.btn,
.add-users-container .add-manual button.btn
{
	display: inline-flex;
	font-size: 0.9em;
	width: 150px;
	height: 40px;

	margin: 0.25em 0.25em 0.25em 0em;
}

.add-users-container .add-csv
{
	width: 35%;
}

.add-users-container .add-csv h1
{
	font-weight: bold;
}

.add-users-container .add-csv a.btn
{
	font-size: 0.9em;
	width: 175px;
	height: 40px;
}

.add-users-container .add-csv button.btn
{
	font-size: 0.9em;
	width: 175px;
	height: 40px;
}

.add-users-container .add-csv form
{
	margin-top: 2em;
}

@media (max-width: 768px)
{
	.add-users-container
	{
		flex-direction: column;
	}

	.add-users-container .add-manual
	{
		width: 100%;
	}

	.add-users-container .add-csv
	{
		width: 100%;
	}
}

/*   View Users Styles   */
/* ##################### */

.view-users-container .view-users-header
{
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Filter */

.view-users-container .view-users-header ul.filter
{
	display: inline-block;
	list-style-type: none;
	padding: 0;
}

.view-users-container .view-users-header ul.filter li
{
	display: inline-block;
	font-size: 0.75em;
}

.view-users-container .view-users-header ul.filter li.label
{
	font-weight: lighter;
	padding: 0.5em;
	cursor: default;
}

.view-users-container .view-users-header ul.filter li.button
{
	font-weight: normal;
	padding: 0.5em 2em 0.5em 2em;
	letter-spacing: 1px;
	cursor: pointer;
}

.view-users-container .view-users-header ul.filter li.button.selected
{
	color: white;
	background-color: rgb(71, 71, 71);
	border-radius: 100px;
}

.view-users-container .view-users-header input
{
	-webkit-appearance:none;
	display: inline-block;
	height: 3em;
	width: 20em;

	color: white;
	outline: none;
	border: none;
	border-radius: 1.5em;

	letter-spacing: 0.25px;

	padding-left: 3em;
	color: rgb(71, 71, 71);

	background: url(../img/icons/search.png) no-repeat;
	background-position-x: 1.5em;
	background-position-y: center;
	background-size: 1.25em 1.25em;

	background-color: white;
}

/* Table */
table.invite-table
{
	width: 100%;
	font-weight: lighter;
	margin-top: 2em;
	border-spacing: 0 0;
}

table.invite-table tr.hidden
{
	display: none;
}

table.invite-table thead tr
{

}

table.invite-table thead tr th
{
	text-align: left;
	text-transform: uppercase;
	font-size: 0.75em;
	letter-spacing: 1px;
	color: rgb(71, 71, 71);

	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

table.invite-table th:last-child
{
	text-align: right;
}

table.invite-table td
{
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin: 0;
	vertical-align: middle;
}

table.invite-table td:first-child
{
	color: rgb(71, 71, 71);
}

table.invite-table td:not(:first-child)
{
	color: rgb(150, 150, 150);
	font-size: 0.85em;
}

table.invite-table td:last-child
{
	text-align: right;
}

table.invite-table td .action img
{
	width: 1em;
	height: 1em;
	cursor: pointer;
}

/* Make sure if there is more than one action, there is a little bit of space between each action */
table.invite-table td .action img:not(first-child)
{
	margin-left: 0.25em;
}

span.tag
{
	border-radius: 2em;
	padding: 0.25em 1em 0.25em 1em;
	color: white;
	font-weight: normal;
	font-size: 0.75em;
	text-shadow: 0px 1px rgba(0, 0, 0, 0.4);
}

span.tag.positive
{
	background-color: rgb(52, 184, 86);
}

span.tag.neutral
{
	background-color: rgb(124, 140, 155);
}

span.tag.negative
{
	background-color: rgb(227, 104, 106);
}

span.tag.uppercase
{
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* View Users Mobile */
@media (max-width: 1024px)
{
	.view-users-container .view-users-header
	{
		flex-direction: column;
		padding-bottom: 1em;
	}
}

/*   CSV Upload Review   */
/* ##################### */

p.empty-lines-note {
	text-align: center;
	font-size: 1em;
	color: grey;
}

.confirmation-buttons-container form
{
	display: flex; 
	justify-content:flex-end;
}

.confirmation-buttons-container form button.btn,
.confirmation-buttons-container form a.btn
{
	font-size: 0.8em;
	height: 40px;
	margin: 0 0.5em;
}

.info-row
{
	display: flex;
	justify-content: space-between;
	margin-top: 2em;
}

.info-section .info-number
{
	display: block;
	font-size: 3em;
	font-weight: lighter;
}

.info-section:first-child .info-number
{
	font-weight: bold !important;
}

.info-section .info-description
{
	display: block;
	font-weight: 2em;
}

/* Adding the background and little edges that 
   stick out beyond the bounds of the row */

table.invite-table tr.negative td {
	background-color: rgb(255, 225, 225);
	position: relative;
}

table.invite-table tr.duplicate td {
	background-color: rgb(255, 225, 225);
	position: relative;
}

table.invite-table tr.neutral td
{
	background-color: rgb(225, 225, 225);
	position: relative;
}

table.invite-table tr.negative td:first-child:before,
table.invite-table tr.duplicate td:first-child:before,
table.invite-table tr.neutral td:first-child:before,
table.invite-table tr.negative td:last-child:after,
table.invite-table tr.duplicate td:last-child:after,
table.invite-table tr.neutral td:last-child:after {
	content: '';
	position: absolute;
	top: 0;
	background-color: rgb(255, 225, 225);
	height: 100%;
	margin: 0;
	padding: 0;
	width: 1.2em;
}

table.invite-table tr.negative td:first-child:before,
table.invite-table tr.duplicate td:first-child:before,
table.invite-table tr.neutral td:first-child:before {
	left: -1.2em;
	border-radius: 2em 0em 0em 2em;
}

table.invite-table tr.negative td:last-child:after,
table.invite-table tr.duplicate td:last-child:after,
table.invite-table tr.neutral td:last-child:after {
	right: -1.2em;
	border-radius: 0 2em 2em 0;
}

table.invite-table tr.negative td:first-child:before,
table.invite-table tr.duplicate td:first-child:before,
table.invite-table tr.negative td:last-child:after,
table.invite-table tr.duplicate td:last-child:after
{
	background-color: rgb(255, 225, 225);
}

table.invite-table tr.neutral td:first-child:before,
table.invite-table tr.neutral td:last-child:after {
	background-color: rgb(225, 225, 225);
}

/*   CSV Upload Complete   */
/* ####################### */

a.text-link {
	color: rgb(86, 192, 114);
}

a.text-link:hover {
	color: rgb(66, 172, 94);
}

/* Settings Page */
/* ############# */

.settings-container {

	padding-top: 1em;
}

	.settings-container h1 {
		font-size: 1.5em;
		font-weight: bold;
		color: rgb(71, 71, 71);
	}

	.settings-container p {
		font-size: 1em;
		font-weight: 100;
		color: rgb(71, 71, 71);
	}

	.settings-container .org-details-container {
		display: flex;
		justify-content: space-between;
	}

	.settings-container .manage-business-name {
		flex: 1;
	}

		.settings-container .manage-business-name h1 {
			font-weight: bold;
		}

		.settings-container .manage-business-name h2 {
			font-size: 0.6em;
			font-weight: bold;
			text-transform: uppercase;
			letter-spacing: 1px;
			color: rgb(71, 71, 71);
			margin-top: 4em;
		}

		.settings-container .manage-business-name p.org-name {
			font-weight: bold;
			font-size: 0.9em;
			padding: 0.5em 0;
		}

		.settings-container .manage-business-name form {
			display: flex;
			flex-direction: column;
			align-self: flex-start;
			width: 100%;
			font-size: 1em;
			margin-top: 1em;
			margin-bottom: 2em;
		}

			.settings-container .manage-business-name form input {
				align-self: flex-start;
				width: 100%;
				margin-top: 3em;
				padding-bottom: 0.5em;
				border: 0;
				border-bottom: 1px solid rgb(238, 237, 228);
				font-size: 1em;
				font-weight: 100;
				outline: none;
				letter-spacing: 0.25px;
				background-color: transparent;
			}

			.settings-container .manage-business-name form .buttons {
				width: 100%;
				display: flex;
				margin-top: 2em;
			}

				.settings-container .manage-business-name form .buttons button:first-child {
					margin-right: 1em;
				}

		.settings-container .manage-business-name a.btn,
		.settings-container .manage-business-name button.btn {
			display: inline-flex;
			font-size: 0.9em;
			width: 150px;
			height: 40px;
			margin: 0.25em 0.25em 0.25em 0em;
		}

	.settings-container .manage-business-logo {
		flex: 1;
	}

		.settings-container .manage-business-logo h1 {
			font-weight: bold;
		}

		.settings-container .manage-business-logo img
		{
			width: 40%;
			height: auto;
			background-color: white;
			padding: 2em;
			border-radius: 1em;

		}

		.settings-container .manage-business-logo a.btn {
			font-size: 0.9em;
			width: 175px;
			height: 40px;
		}

		.settings-container .manage-business-logo button.btn {
			font-size: 0.9em;
			width: 175px;
			height: 40px;
		}

		.settings-container .manage-business-logo form {
			margin-top: 2em;
		}

	.settings-container .manage-administrators {
		margin-top: 2em;
	}

	.settings-container .manage-administrators .btn {
		height: 40px;
		width: 150px;
	}

@media (max-width: 768px) {
	.settings-container .org-details-container {
		flex-direction: column;
	}

		.settings-container .manage-business-name {
			width: 100%;
		}

		.settings-container .manage-business-logo {
			width: 100%;
		}
}

/* Settings -> Edit Name */
/* ##################### */

.settings-edit-name-container {
	padding-top: 1em;
	width: 50%;
}

	.settings-edit-name-container h1 {
		font-size: 1.5em;
		font-weight: bold;
		color: rgb(71, 71, 71);
	}

	.settings-edit-name-container form .buttons .btn {
		height: 40px;
	}

/* Settings -> Add Organisation User */
/* ##################### */

.settings-add-org-user-container {
	padding-top: 1em;
	width: 50%;
}

	.settings-add-org-user-container h1 {
		font-size: 1.5em;
		font-weight: bold;
		color: rgb(71, 71, 71);
	}

	.settings-add-org-user-container form .buttons .btn {
		height: 40px;
	}


/* Settings -> Edit Logo */
/* ##################### */

.settings-edit-logo-container {
	padding-top: 1em;
	width: 50%;
}

	.settings-edit-logo-container h1 {
		font-size: 1.5em;
		font-weight: bold;
		color: rgb(71, 71, 71);
	}

	.settings-edit-logo-container form .buttons .btn {
		height: 40px;
	}

/* Global Mobile */
/* ############# */

@media (max-width: 1024px) {
	body {
		/* Make everything get a bit small at 1024 to fit more in. */
		font-size: 0.8em;
	}

	.login-container .logo {
		margin-top: 2em;
		margin-bottom: 2em;
	}

	.login-container .login-box {
		max-width: 300px;
		padding: 2em;
	}

	.footer .container {
		max-width: 275px;
		margin: 2em 0 1em 0;
	}
}

@media (max-width: 1024px) {
	body {
		/* Make everything get a bit small at 1024 to fit more in. */
		font-size: 0.8em;
	}
}

@media (max-width: 900px) {

	.login-container .logo {
		margin-top: 2em;
		margin-bottom: 2em;
	}

	.login-container .login-box {
		max-width: 300px;
		padding: 2em;
	}

	.footer .container {
		max-width: 275px;
		margin: 2em 0 1em 0;
	}
}

/* Global Form */
/* ########### */

form.wellaware-form {
	display: flex;
	flex-direction: column;
	align-self: flex-start;
	width: 100%;
	font-size: 1em;
	margin-top: 1em;
	margin-bottom: 2em;
}

	form.wellaware-form input {
		align-self: flex-start;
		width: 100%;
		margin-top: 3em;
		padding-bottom: 0.5em;
		border: 0;
		border-bottom: 1px solid rgb(208, 207, 198);
		font-size: 1em;
		font-weight: 100;
		outline: none;
		letter-spacing: 0.25px;
		background-color: transparent;
	}

	form.wellaware-form .buttons {
		width: 100%;
		display: flex;
		margin-top: 2em;
	}

		form.wellaware-form .buttons button:first-child {
			margin-right: 1em;
		}

/* Global Modal */
/* ############ */

/* Styles for the content that is loaded into the modal frame */

div.frame {
	display: flex;
	align-items: center;
	justify-content: center;

	position: fixed;
	/* Takes up the entire viewport */
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	height: 100%;
	z-index: 1000;
	border: 0;
	box-sizing: border-box;
	overflow-x: hidden;
	overflow-y: scroll;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
}

	div.frame.active {
		animation: frameload 0.4s;
		-webkit-animation: frameload 0.4s;
		animation-fill-mode: forwards;
		-webkit-animation-fill-mode: forwards;
	}

@-webkit-keyframes frameload {
	from {
		opacity: 0.5;
	}

	to {
		opacity: 1;
	}
}

@keyframes frameload {
	from {
		opacity: 0.5;
	}

	to {
		opacity: 1;
	}
}

/* Load in animation for the modal content */
.frame .container {
	opacity: 0;
}

	.frame .container.active {
		animation: pageload 0.3s;
		-webkit-animation: pageload 0.3s;
		animation-fill-mode: forwards;
		-webkit-animation-fill-mode: forwards;
	}

@-webkit-keyframes pageload {
	from {
		opacity: 0.5;
		/*-webkit-transform: translateY(2%);*/
		-webkit-transform: scale(0.85);
	}

	to {
		opacity: 1;
		/*-webkit-transform: translateY(0%);*/
		-webkit-transform: scale(1);
	}
}

@keyframes pageload {
	from {
		opacity: 0.5;
		/*transform: translateY(2%);*/
		transform: scale(0.85);
	}

	to {
		opacity: 1;
		/*transform: translateY(0%);*/
		transform: scale(1);
	}
}

.frame .container {
	display: block;
	position: relative;
	width: 24em;
	height: auto;
	text-align: left;
	background-color: white;
	border-radius: 1em;

	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5);
	box-sizing: border-box;

	overflow: hidden;
}

	.frame .container h1,
	.frame .container h2 {
		text-align: center;
		color: rgb(71, 71, 71);
	}

	.frame .container h1 {
		margin-top: 2em;
		margin-bottom: 0;
		font-size: 1.5em;
	}

	.frame .container h2 {
		margin-top: 0.5em;
		font-weight: lighter;
		font-size: 1em;
		max-width: 100%;
		padding: 0 4em;
	}

	.frame .container .buttons {
		border-top: 1px solid rgb(86, 192, 114);
		margin-top: 3em;
		display: flex;
		justify-content: space-around;
		overflow: hidden;
	}

	.frame .container .buttons div {
		padding: 1em;
		cursor: pointer;
		flex: 1;
		text-align: center;

		transition: all 0.15s;

	}

		.frame .container .buttons div:hover {
			background-color: rgb(106, 212, 134);
			color: white;
		}

		.frame .container .buttons div:first-child {
			border-right: 1px solid rgb(86, 192, 114);
		}