body {
	margin: 0;
	padding: 0;
	font-family: Roboto, sans-serif;
	font-weight: 400;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 14px
}

h1, h2, h3, h4, h5, h6 {
	font-family: Roboto Condensed, serif
}

#frontend-body {
	min-height: 100vh
}

a {
	outline: none !important;
	text-decoration: none !important
}

#frontend-header {
	position: absolute;
	height: 60px;
	width: 100%;
	background-color: rgba(0, 0, 0, .4) !important;
	background-color: var(--theme-bg) !important;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	display: flex
}

#frontend-header .header-logo img {
	height: 50px;
	margin: 5px 10px
}

#frontend-header .header-menu {
	margin-left: auto;
	margin-right: 20px
}

#frontend-header .header-menu .btn {
	color: #fff;
	color: var(--theme-color);
	padding: 16px 20px;
	font-weight: 400;
	font-size: 20px;
	display: inline-block;
}

#frontend-header .header-menu .btn:hover {
	color: #1e88e5
}

a, a:VISITED {
	color: #1773c6
}

a:hover {
	color: #1e88e5
}

.frontend-home {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100vh
}

.frontend-home-video {
	overflow: hidden;
	background: #000;
	z-index: -99
}

.frontend-home-video, .frontend-home-video video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none
}

.frontend-home-video video {
	-o-object-fit: cover;
	object-fit: cover
}

.frontend-home-label {
	margin-top: calc(50vh - 200px);
	color: #fff;
	color: var(--theme-color);
	text-align: center;
}

.frontend-home-label h1 {
	font-size: 10vh;
	font-weight: 300;
	color: #fff;
}

.frontend-home-label h2 {
	font-size: 6vh;
	font-weight: 300;
	color: #fff;
}

.frontend-bg {
	background-image: url(/images/login-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat
}

.frontend-form {
	display: flex !important;
	justify-content: center !important;
}

#frontend-popup {
	position: fixed;
	width: auto;
	left: 50%;
	transform: translateX(-50%);
	top: 120px;
	background-color: rgba(0, 0, 0, 0.4);
	background-color: var(--theme-bg);
	display: flex;
	height: 0;
	justify-content: center;
}

#frontend-popup.frontend-popup-show {
	height: auto;
}

#frontend-popup-panel {
	width: 600px;
	margin: auto;
	padding: 50px;
	background-color: rgba(0, 0, 0, 0.4);
	background-color: var(--theme-bg);
	margin-top: 0px;
	opacity: 0;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 1px 0px, rgba(0, 0, 0, 0.1) 0px
		1px 2px 0px;
	-moz-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.frontend-popup-show #frontend-popup-panel {
	opacity: 1;
}

#frontend-popup-header {
	color: #eee;
	color: var(--theme-color);
	font-size: 30px;
	text-transform: uppercase;
	margin-bottom: 20px;
	text-align: center;
	letter-spacing: 5px;
}

#frontend-popup-content {
	font-size: 22px;
	color: #eee;
	color: var(--theme-color);
	white-space: pre-line;
	text-align: center;
	line-height: 2;
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: .25rem
}

.card>hr {
	margin-right: 0;
	margin-left: 0
}

.card-body {
	flex: 1 1 auto;
	padding: 1.25rem
}

.card-title {
	margin-bottom: .75rem
}

.card-subtitle {
	margin-top: -.375rem
}

.card-subtitle, .card-text:last-child {
	margin-bottom: 0
}

.card-link:hover {
	text-decoration: none
}

.card-link+.card-link {
	margin-left: 1.25rem
}

.card-header {
	padding: .75rem 1.25rem;
	margin-bottom: 0;
	background-color: rgba(0, 0, 0, .03);
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.card-header:first-child {
	border-radius: 4px 4px 0 0;
}

.card-footer {
	padding: .75rem 1.25rem;
	background-color: rgba(0, 0, 0, .03);
	border-top: 1px solid rgba(0, 0, 0, .125);
	font-size: 18px;
}

.card-footer:last-child {
	border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
}

.black-form .card {
	margin-top: calc(50vh - 300px);
	margin-bottom: auto;
	width: 500px;
	background-color: rgba(0, 0, 0, 0.4) !important;
	background-color: var(--theme-bg) !important;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 1px 0px, rgba(0, 0, 0, 0.1) 0px
		1px 2px 0px;
}

@media screen and (max-height: 800px) {
	.black-form .card {
		margin-top: calc(50vh - 180px);
	}
}

.black-form .card-header h1 {
	color: #eee;
	color: var(--theme-color);
	letter-spacing: 1px;
	margin: 5px 17px;
	text-transform: uppercase;
	text-align: center;
	font-weight: var(--theme-font-weight);
	font-size: 35px;
}

.text-white {
	color: #fff;
	color: var(--theme-color);
}

.text-footer {
	text-align: center;
	color: #eee;
	color: var(--theme-color);
}

.privacy-container {
	position: absolute;
    width: calc(80% - 120px);
    left: 10%;
    top: 10%;
    padding: 30px 60px;
    max-height: calc(100vh - 20%);
    color: #eee;
    color: var(--theme-color);
    background-color: rgba(0,0,0,0.4);
    background-color: var(--theme-bg);
    overflow: auto;
}


.privacy-container::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: rgba(0,0,0,0.4);
    background-color: var(--theme-bg);
}

.privacy-container::-webkit-scrollbar
{
    width: 5px;
    background-color: #F5F5F5;
}

.privacy-container::-webkit-scrollbar-thumb
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #FFF;
    background-color: var(--theme-color);
}


.privacy-container h1 {
	text-align: center;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 30px;
	color: #eee;
    color: var(--theme-color);
}

.privacy-container h2 {
	font-weight: 400;
	font-size: 20px;
	color: #eee;
    color: var(--theme-color);
}

.privacy-container h3 {
	font-weight: 400;
	color: #eee;
    color: var(--theme-color);
}

.privacy-container p {
    font-size: 16px;
    line-height: 1.5;
    color: #eee;
    color: var(--theme-color);
}

/* FORM INPUT */
form {
	width: 100%;
}

input::-webkit-input-placeholder, button {
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

input:focus:-moz-placeholder, input:focus::-moz-placeholder, button {
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.group {
	position: relative;
	margin: 30px 20px;
}

.group:FIRST-CHILD {
	margin-top: 10px;
}

input {
	font-size: 18px;
	padding: 4px 0px 6px 0;
	display: block;
	width: 100%;
	border: none;
	border-bottom: 1px solid #1e88e5;
	background: none;
	background-color: transparent;
	color: white;
	color: var(--theme-color);
}

input:-webkit-autofill {
	-webkit-text-fill-color: white !important;
	-webkit-text-fill-color: var(--theme-color) !important;
	-webkit-box-shadow: 0 0 0px 50px var(--theme-bg) inset !important;
}

input:focus, input:-webkit-autofill:focus {
	outline: none;
}

label {
	color: #888;
	font-size: 18px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 0px;
	top: 5px;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
}

input.dirty ~ label, input:focus ~ label {
	top: -20px;
	font-size: 14px;
	color: #1e88e5;
}

input:-webkit-autofill ~ label{
	top: -20px;
	font-size: 14px;
	color: #1e88e5;
}

input:-moz-autofill ~ label{
	top: -20px;
	font-size: 14px;
	color: #1e88e5;
}

input:autofill ~ label{
	top: -20px;
	font-size: 14px;
	color: #1e88e5;
}

.required:AFTER {
	content: '*';
	position: absolute;
	color: #ff5252;
}

.line {
	position: relative;
	display: block;
	width: 100%;
}

.line:before, .line:after {
	content: '';
	height: 2px;
	width: 0;
	bottom: 1px;
	position: absolute;
	background: #1e88e5;
	transition: 0.2s ease all;
	-moz-transition: 0.2s ease all;
	-webkit-transition: 0.2s ease all;
}

input:focus ~ .line:before, input:focus ~ .line:after {
	width: 100%;
}

.highlight {
	position: absolute;
	height: 50%;
	width: 100px;
	top: 25%;
	left: 0;
	pointer-events: none;
	opacity: 0.5;
}

input:focus ~ .highlight {
	-webkit-animation: inputHighlighter 0.3s ease;
	-moz-animation: inputHighlighter 0.3s ease;
	animation: inputHighlighter 0.3s ease;
}

.group-checkbox {
	display: block;
	position: relative;
	padding-left: 35px;
	font-size: 18px;
	line-height: 24px;
	color: #eee;
	color: var(--theme-color);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.group-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 20px;
	width: 20px;
	top: 0;
	left: 0;
	z-index: 2;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
}

/* On mouse-over, add a grey background color */
.group-checkbox:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.group-checkbox input:checked ~ .checkmark {
	background-color: #1e88e5;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.group-checkbox input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.group-checkbox .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.submit-container {
	text-align: right;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	padding: 5px 17px;
	color: #eee;
	color: var(--theme-color);
	font-size: 28px;
	letter-spacing: 1px;
}

.signup-button {
	padding: 15px;
}

button:hover, button:focus {
	color: #1e88e5;
	outline: none !important;
}

.error-label {
	color: #F44336;
	font-size: 12px;
	padding-top: 5px;
	display: none;
}

.show-error {
	display: block;
}

.global-error-label {
	padding-top: 0px;
	padding-left: 20px;
}

.group-captcha {
	display: inline-block;
	float: left;
	margin: 0px 10px;
	transform: scale(0.9);
	transform-origin: 0 0;
}

@-webkit-keyframes inputHighlighter {
	from { background:#1e88e5; }
	to { width: 0; background: transparent; }
}

@-moz-keyframes inputHighlighter {
	from { background:#1e88e5; }
	to { width: 0; background: transparent; }
}

@keyframes inputHighlighter {
	from { background:#1e88e5; }
	to { width: 0; background: transparent; }
}