:root
{
	--color-FLEX-logo-start: #CCC;
	--color-FLEX-logo-end: #CCC;

	--form-font: var(--font-family);
    --button-color: #fff; 
}

@font-face
{
	font-family: "Archivo";
	src: url(./fonts/Archivo_Expanded-Bold.ttf) format('opentype');
    font-style:normal;
    font-weight: 700;
}
@font-face
{
	font-family: "Archivo";
	src: url(./fonts/Archivo_Expanded-Regular.ttf) format('opentype');
    font-style: normal;
    font-weight: 400;
}

.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: 5;
}
#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 ---------------------- */

:root {
	--light-blue-color: #007dad;
	--theme-dark-blue: #171b25;
	--bg-color: #F4F6FA;
	--font-normal: "Archivo";
    --font-bold: "Archivo";
}

body {
	overflow: hidden;
	color: var(--theme-dark-blue);
	background-color: var(--theme-dark-blue);
}

body::after {
	position: absolute;
	background: url(/_customers/images/ui/IronBowTechnologies/binary-code.png);
	content:'';
    top:0px;
    left: 0px;
    width:100%;
    height:100%;
    z-index:-1;
    opacity: 0.01;
	animation: 5s binary ease-in-out infinite both;	
}

@keyframes binary {
	0% {
		opacity: 0.015;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 0.015;
	}
}

.front-video {
	position: fixed;
	z-index: 1;	 
	/* display: none; */
}

.front-video video {
	-webkit-filter: opacity(15%); /* Safari 6.0 - 9.0 */
	filter: opacity(15%);
	object-fit: cover;
	position: fixed;
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: fit-content;
	animation: 1s formAni ease 10s both;
}

form {
	display: grid;
	padding: 100px 20px 50px 20px;	
	position: fixed;
	top: 0px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	min-height: 300px;
	max-height: 320px;
	height: min-content;
	min-width: 390px;
	width: fit-content;
	color: #000;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.40);
	font-family: var(--font-normal);
	background-repeat: no-repeat;
	background-position: center 10px;
	background-size: 200px;
	/* display: none; */
	
	z-index: 3;
	animation: 1s formAni ease 10s both;
}

@keyframes formAni {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

form div {
	font-size: 12px;
	text-align: left;
	grid-area: 6 / 1 / 9 / 2;
	margin-top: 60px;
	color: #ccc;
	background: rgba(0, 0, 0, 0.40);
	font-style: normal;
	padding:10px;
}

input {
	padding: 10px 20px;
	color: #787878;
	border-radius: 2px;
	border-bottom: 1px solid #CBCBCB;
	border-left: none;
	border-top: none;
	border-right: none;
	background: rgba(255, 255, 255, 0.05);
	font-size: 10px;
	outline: none;
	margin-top: 10px;
	width: 400px;
	height: 40px;
}

input[name="email"] {
	grid-area: 2 / 1 / 3 / 2;
}

input[name="password"] {
	grid-area: 3 / 1 / 4 / 2;	
}

input[name="code"] {
	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: var(--theme-dark-blue);
	cursor:pointer;
	font-family: var(--font-kelson-bold);
	font-weight: 800;
	font-size: 14px;
	letter-spacing: .5px;
	text-transform: uppercase;
	outline: none;
	display: block;
	margin-top: 10px;
	height: 40px;
	width: 195px;
  border-radius: 2px;
}

button.login-only.login {
	background: #007DAD;
	cursor: pointer;
  	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	background: #ca2d06;
	transition: 0.3s;
}

button.login-only.register {
	background: #C3C3C3;
	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: #ccc;
	width: 100%;
	text-align: left;
	font-weight: 400;
	line-height: 65px;
	cursor: pointer;
	font-size: 12px;
	grid-area: 5 / 1 / 8 / 2;
	margin-top: 15px;
	height: 20px;
}

button.login-only.forgot:hover {
	color: #fff;
	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: #ccc;
	color: #fff;
	transition: 0.3s;
}

button.register-only.cancel {
	background: #15BEF0;
	margin-left: 205px;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.cancel:hover {
	background: #ccc;
	transition: 0.3s;
}

/* FRONT LOGO */
.front-logo {
	position: fixed;
	z-index: 5;
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 60%;
	min-width: 1000px;
    height: fit-content;
	animation: 1s logoMain-ani ease-in-out 8s forwards;
}

@keyframes logoMain-ani {
	0% {
		transform: scale(1);
		
	}
	100% {
		transform: scale(.2)
				   translateY(-500px)
				   translateX(0px);	
			
	}
}

:root {
	--animation-delay: 2.8s;
}

.cls-1	{
	fill:#007dad;
}

.cls-2	{
	fill:#c0c0c0;
	animation: slide-in-bck-center 3s cubic-bezier(0.93, 0.01, 0.22, 0.99) both;
	animation-delay: var(--animation-delay);
}
polygon.cls-1, path.cls-1, rect.cls-1 {
	animation: slide-in-fwd-center 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation-delay: calc(var(--animation-delay) + 4s);
}

@keyframes slide-in-fwd-center {
	0% {
	  opacity: 0;
	  filter: blur(6px);
	}
	100% {
	  opacity: 1;
	}
}  
  
.cls-2:nth-child(1) {
	animation-delay: calc(var(--animation-delay) + 0s);
}
.cls-2:nth-child(2) {
	animation-delay: calc(var(--animation-delay) + .30s);
}
.cls-2:nth-child(3) {
	animation-delay: calc(var(--animation-delay) + .40s);
}
.cls-2:nth-child(4) {
	animation-delay: calc(var(--animation-delay) + .50s);
}
.cls-2:nth-child(5) {
	animation-delay: calc(var(--animation-delay) + .60s);
}
.cls-2:nth-child(6) {
	animation-delay: calc(var(--animation-delay) + .30s);
}
.cls-2:nth-child(7) {
	animation-delay: calc(var(--animation-delay) + .20s);
}

@keyframes slide-in-bck-center {
	0% {
	  transform: scale(5);	  
	  transform: translateX(200px);
	  filter: blur(8px);
	  opacity: 0;
	}
	100% {
	  transform: scale(1);
	  opacity: 1;
	  filter: blur(0px);
	}
  }


  @media
  only screen and (width <= 900px) { 
		.front-logo {
			left: -50px;
		}
  }
  @media
  only screen and (width <= 600px) { 
		.front-logo {
			left: -240px;
		}
  }