@import url("https://use.typekit.net/jvl6ifv.css");
@font-face
{
	font-family:'raleway';
	src: url(./fonts/raleway_regular.woff2) format('woff2');
}
:root
{
	--color-FLEX-logo-start: #000;
	--color-FLEX-logo-end: #000;

	--form-font: var(--font-family);
}

.js-loading *,
.js-loading *:before,
.js-loading *:after
{
	animation-play-state: paused !important;
}

body
{
	grid-template-rows: 283px minmax(399px, 1fr) 90px;
}
form
{
	position: relative;
}

@keyframes kf-FLEX-type
{
	0%
	{
		font-weight: normal;
	}
	30%
	{
		letter-spacing: 0px;
		margin-left: 0;
		font-weight:900;
		-webkit-text-stroke: 1px var(--color-FLEX-logo-start);
	}
	55%
	{
		letter-spacing: 0px;
		margin-left: 0;
		font-weight:900;
		-webkit-text-stroke: 1px var(--color-FLEX-logo-start);
	}
	100%
	{
		font-weight:normal;
		letter-spacing: 46px;
		margin-left: 24px;
	}
}
@keyframes kf-FLEX-move
{
	100%
	{
		bottom: 0;
	}
}
@keyframes kf-FLEX-text-color
{
	100%
	{
		color: var(--color-FLEX-logo-end);
	}
}
@keyframes kf-FLEX-logo-color
{
	100%
	{
		background: var(--color-FLEX-logo-end);
	}
}
#Page_Footer
{
	animation: kf-FLEX-move 500ms ease-out 2500ms forwards;
	bottom: 45%;
	height: 90px;
	position: absolute;
	width: 100%;
	z-index: 3;
}
#Page_Footer::before
{
	animation:
		kf-FLEX-type 1500ms ease-in-out forwards 200ms,
		kf-FLEX-text-color 1.5s ease-in-out 2s forwards;
	color: var(--color-FLEX-logo-start);
	content: "FLEX";
	font-family:sans-serif;
	font-size: 14px;
	left: 50%;
	letter-spacing: 46px;
	line-height: 16px;
	margin-left: 24px;
	position: absolute;
	top: 51px;
	transform: translateX(-50%);
}
#Page_Footer::after
{
	animation: kf-FLEX-logo-color 1.5s ease-in-out 2s forwards;
	background: var(--color-FLEX-logo-start);
	content: "";
	height: 100%;
	position: absolute;
	width: 100%;
	-webkit-mask: url(/_assets/images/ui/login/TVC_footer_200324_1425.png) 50% 0 no-repeat;
}

body:not(.Register) .register-only,
body.Register .login-only
{
	max-height: 0;
	max-width: 0;
	overflow: hidden;
	position: absolute;
    visibility: hidden;
}
button.login-only.register::before
{
    content: "register...";
}
button.forgot::before
{
	content: "forgot your login?";
}
button.register-only.cancel::before
{
    content: "cancel";
}
button.register-only.register::before
{
	content: "register";
}
button.login::before
{
	content: "login";
}

:root
{
	--help-delay-start: 4500ms;
}
.help-registration
{
	bottom: 50%;
	right: 50%;
	--help-title: "Registering for Site Access";
}

.browser-IE
{
	background: #C00;
	box-sizing: border-box;
	color: #FFF;
	font-size: 30px;
	left: 50%;
	min-width: 800px;
	text-align: center;
	transform: translateX(-50%);
	padding: 20px;
	position: absolute;
}
.browser-IE::before
{
	content: "Use of this site requires a modern web browser, such as\A Chrome, Firefox, MS Edge, or Safari.\A Internet Explorer is not supported.";
	white-space: pre-wrap;
}

/* --------------- LOGIN STYLE START HERE -------------- */

body {
	font-family: var(--font-familly);
	color: #333;
	font-size: 14px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: none;
}

form {
	display: grid;
	position: absolute;
	top: 40%;
	padding-left: 40px;
	z-index: 2;
	
	animation: slide-in-fwd-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation-delay: 7s;
}
  
  @keyframes slide-in-fwd-center {
	0% {
		transform: translateZ(-1400px);
	  	opacity: 0;
	}
	100% {
		transform: translateZ(0);
	  	opacity: 1;
	}
  }

form div {
	font-size: 12px;
	text-align: left;
	grid-area: 6 / 1 / 9 / 2;
	margin-top: 30px;
	color: #095faa;
	font-style: italic;
	padding:10px
}

input {
	padding: 10px 20px;
	color: #333;
	background: #e1e1e1;
	border: 1px solid #e6e6e6;
	font-size: 18px;
	outline: none;
	margin-top: 10px;
	width: 400px;
}

input[name="email"] {
	height: 45px;
	grid-area: 2 / 1 / 3 / 2;
}

input[name="password"] {
	height: 45px;
	grid-area: 3 / 1 / 4 / 2;	
}

input[name="code"] {
	height: 50px;
	grid-area: 4 / 1 / 5 / 2;
}

input[name="code"]::placeholder {
	color: #ccc;
}

::placeholder {
	color: #888888;
	font-family: var(--form-font);
	font-size: 14px;
	font-weight: 400;
}

button
{
	border: none;
	color: #fff;
	cursor:pointer;
	font-family: var(--form-font);
	font-weight: 600;
	font-size: 18px;
	letter-spacing: .5px;
	text-transform: uppercase;
	outline: none;
	display: block;
	margin-top: 20px;
	height: 45px;
	width: 195px;
}

button.login-only.login {
	background: #F36600;
	color: #fff;	
	cursor: pointer;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	background: #ca2d06;
	transition: 0.3s;
}

button.login-only.register {
	background: #8CC63F;
	margin-left: 205px;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: #0ba57c;
	transition: 0.3s;
}

button.login-only.forgot {
	background: none;
	color: #0f609b;
	width: 50%;
	text-align: left;
	font-weight: 400;
	line-height: 55px;
	cursor: pointer;
	font-size: 14px;
	grid-area: 5 / 1 / 8 / 2;
	margin-top: 30px;
	height: 20px;
}

button.login-only.forgot:hover {
	color: #f87d01;
	font-weight: 400;
	transition: 0.3s;
}

button.register-only.register {
	background:#8CC63F;
	color: #fff;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.register:hover {
	background: #15BEF0;
	color: #fff;
	transition: 0.3s;
}

button.register-only.cancel {
	background: #000000;
	margin-left: 200px;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.cancel:hover {
	background: #383838;
	transition: 0.3s;
}

.form_logo img {
	width: 350px;
	position: absolute;
	top: 22%;
	padding-left: 100px;
	z-index: 2;
	animation: 0.6s formLogo_Ani cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation-delay: 6s;
}
/*
.form_logo img {
	position: absolute;
	top: 22%;
	padding-left: 150px;
	z-index: 2;

	animation: 1s formLogo_Ani ease 7.5s both;
}
*/

@keyframes formLogo_Ani {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.form_whiteBg	{
	background: #fff;
	width: 100%;
	height: 100%;
	animation: 0.9s formWhiteBg cubic-bezier(0.58, 0.02, 0, 0.94) 6s both;
	z-index: 1;
	position: absolute;	
}

@keyframes formWhiteBg {
	0% {
		width: 100%;
	}
	100% {
		width: 500px;
	}
}

.front_logo  	{
	width: 50%;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%, -50%);
	animation: 3s frontLogo_Ani ease-in 3s both;
	z-index: 3;
}
.frontLogotextNormal {
	font-family: "futura-pt";
	font-weight: 400;
	font-style: normal;
}

@keyframes frontLogo_Ani {
	0% {
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
	80% {
		opacity: 1;
		width: 50%;
	}
	100% {
		opacity: 0;
		width: 0;
	}
}

#Layer_2 path {
	        animation: bounce-in-top 1.1s both;
			animation-delay: 3.5s;
}

  @keyframes bounce-in-top {
	0% {
			  transform: translateY(-500px);
			  animation-timing-function: ease-in;
	  opacity: 0;
	}
	38% {
			  transform: translateY(0);
			  animation-timing-function: ease-out;
	  opacity: 1;
	}
	55% {
			  transform: translateY(-65px);
			  animation-timing-function: ease-in;
	}
	72% {
			  transform: translateY(0);
			  animation-timing-function: ease-out;
	}
	81% {
			  transform: translateY(-28px);
			  animation-timing-function: ease-in;
	}
	90% {
			  transform: translateY(0);
			  animation-timing-function: ease-out;
	}
	95% {
			  transform: translateY(-8px);
			  animation-timing-function: ease-in;
	}
	100% {
			  transform: translateY(0);
			  animation-timing-function: ease-out;
	}
  }
  
  .back_imageSlide img {
	position: absolute;
	height: 100%;
	z-index: 0;
	animation: 50s imageSlider ease-out infinite;
	animation-delay: 5s;
  }
  
  @keyframes imageSlider {
	0% {
		transform: translateX(500px);
	}
	100% {
		transform: translateX(-1869px);
	}
  }