@import url("https://use.typekit.net/jvl6ifv.css");

:root
{
	--color-FLEX-logo-start: #136BBC;
	--color-FLEX-logo-end: #136BBC;

	--form-font: "brandon-grotesque", sans-serif;
    --color: #441d1f;
}
@font-face
{
	font-family: "brandon-grotesque", sans-serif;
	src: url(./fonts/BrandonGrotesque-Regular.otf) format('otf');
}

.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;
}
/* ------------------- FORM STYLE START HERE! -------------- */
body {
    margin: 0;
    padding: 0;
	background: #000;
	overflow: hidden;
}

body::before {
	display: none;
}

form {
	display: grid;
	padding: 50px 20px 30px 20px;
	position: fixed;
	top: 0px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	min-height: 240px;
	max-height: 300px;
	height: min-content;
	min-width: 390px;
	width: fit-content;

	color: #000;
	border-radius: 4px;
	/* border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(255, 255, 255, 0.09); */
	font-family: var(--font-kelson-normal);
	
	z-index: 3;
	animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 10.5s both;
}

@keyframes formAni {
	0% {
		opacity: 0;
		transform: scaleY(0.4);
    	transform-origin: 0% 100%;
	}
	100% {
		opacity: 1;
		transform: scaleY(1);
    	transform-origin: 0% 100%;
	}
}

form div {
	font-size: 12px;
	text-align: left;
	grid-area: 6 / 1 / 9 / 2;
	margin-top: 40px;
	color: #136BBC;
	font-style: normal;
	padding:10px;
	letter-spacing: 1px;
}

input {
	padding: 10px 20px;
	color: #333;
	background: #fff;
	border: 1px solid #adadad;
	font-size: 18px;
	outline: none;
	margin-top: 10px;
	width: 400px;
	height: 40px;
    border-radius: 0px;
}

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: #fff;
	cursor:pointer;
	font-family: var(--font-kelson-bold);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: .5px;
	text-transform: uppercase;
	outline: none;
	display: block;
	margin-top: 10px;
	height: 40px;
	width: 195px;
    border-radius: 0px;
}

button.login-only.login {
	background: #E48900;
	color: #fff;	
	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: #136BBC;
	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: #858585;
	width: 50%;
	text-align: left;
	font-weight: 400;
	line-height: 65px;
	cursor: pointer;
	font-size: 13px;
	grid-area: 5 / 1 / 8 / 2;
	margin-top: 15px;
	height: 20px;
}

button.login-only.forgot:hover {
	color: #000000;
	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: #136BBC;
	margin-left: 205px;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.cancel:hover {
	background: #383838;
	transition: 0.3s;
}

/* .frontLogoSvg  {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
} */

/* FRONT LOGO "V" */

/* white BG */
.whiteBG {
	background: #FFF;
	position: absolute;
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 600px;
	z-index: -1;
	animation: scale-in-ver-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 9s both;
}

@keyframes scale-in-ver-center {
	0% {
	  transform: scaleY(0);
	  opacity: 1;
	}
	100% {
	  transform: scaleY(1);
	  opacity: 1;
	}
  }

.frontLogo_v {
	animation: vomelaLogo 6s cubic-bezier(0.250, 0.460, 0.450, 0.940) 3s both;
	/* animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 5s both; */		
}

@keyframes vomelaLogo {
	0% {
	  transform: rotateY(-90deg); 
	  opacity: 0;
	}
	25% {
	  transform: rotateY(0);
	  opacity: 1;
	}
	30% {	transform: translateX(0);	 }
	40% {	transform: translateX(-90%); }
	75% {	transform: translateX(-90%); }
	100% {	transform: translateX(-90%); }
  }

.frontLogoText {
	position: absolute;
    top: 0;
    left: 20%;
    right: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
	z-index: 5;
	animation: frontLogoText 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) 6s both;
}

@keyframes frontLogoText {
	0% {
	  letter-spacing: 1em;
	  opacity: 0;
	}
	40% {  opacity: 0.6; }

	100% {
	  letter-spacing: normal;
	  opacity: 1;
	}
  }

.logoMain {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
	animation: 1s logoMain-ani ease-in-out 8s forwards;
}

@keyframes logoMain-ani {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(.3)
				   translateY(-400px)
				   translateX(-100px);
	}
}
  /*  Triangles  */

 .triangles {
	width: 225px;
	position: fixed;
	z-index: 2;
	top: calc(50% + -398px);
	animation: 1s triangle-ani ease-in 0s both;
} 
@keyframes triangle-ani {
	0% 	 { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes animate-svg-stroke-1 {
	0% {
	  stroke-dashoffset: 828.1881103515625px;
	  stroke-dasharray: 828.1881103515625px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 828.1881103515625px;
	}
  }
  
  @keyframes animate-svg-fill-1 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(89, 44, 130);
	}
  }
  
  .svg-elem-1 {
	animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 11s both,
				 animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 11.8s both;
  }
  
  @keyframes animate-svg-stroke-2 {
	0% {
	  stroke-dashoffset: 828.1881103515625px;
	  stroke-dasharray: 828.1881103515625px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 828.1881103515625px;
	}
  }
  
  @keyframes animate-svg-fill-2 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(89, 44, 130);
	}
  }
  
  .svg-elem-2 {
	animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 11.12s both,
				 animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 11.9s both;
  }
  
  @keyframes animate-svg-stroke-3 {
	0% {
	  stroke-dashoffset: 825.5900268554688px;
	  stroke-dasharray: 825.5900268554688px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 825.5900268554688px;
	}
  }
  
  @keyframes animate-svg-fill-3 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(100, 140, 28);
	}
  }
  
  .svg-elem-3 {
	animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 11.24s both,
				 animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 12s both;
  }
  
  @keyframes animate-svg-stroke-4 {
	0% {
	  stroke-dashoffset: 825.5895385742188px;
	  stroke-dasharray: 825.5895385742188px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 825.5895385742188px;
	}
  }
  
  @keyframes animate-svg-fill-4 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(193, 78, 0);
	}
  }
  
  .svg-elem-4 {
	animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 11.36s both,
				 animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 12.100000000000001s both;
  }
  
  @keyframes animate-svg-stroke-5 {
	0% {
	  stroke-dashoffset: 825.590087890625px;
	  stroke-dasharray: 825.590087890625px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 825.590087890625px;
	}
  }
  
  @keyframes animate-svg-fill-5 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(0, 174, 239);
	}
  }
  
  .svg-elem-5 {
	animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 11.48s both,
				 animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 12.200000000000001s both;
  }
  
  @keyframes animate-svg-stroke-6 {
	0% {
	  stroke-dashoffset: 825.5900268554688px;
	  stroke-dasharray: 825.5900268554688px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 825.5900268554688px;
	}
  }
  
  @keyframes animate-svg-fill-6 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(193, 78, 0);
	}
  }
  
  .svg-elem-6 {
	animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 11.6s both,
				 animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 12.3s both;
  }
  
  @keyframes animate-svg-stroke-7 {
	0% {
	  stroke-dashoffset: 825.5901489257812px;
	  stroke-dasharray: 825.5901489257812px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 825.5901489257812px;
	}
  }
  
  @keyframes animate-svg-fill-7 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(184, 188, 35);
	}
  }
  
  .svg-elem-7 {
	animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 11.72s both,
				 animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 12.4s both;
  }
  
  @keyframes animate-svg-stroke-8 {
	0% {
	  stroke-dashoffset: 825.5900268554688px;
	  stroke-dasharray: 825.5900268554688px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 825.5900268554688px;
	}
  }
  
  @keyframes animate-svg-fill-8 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(211, 145, 0);
	}
  }
  
  .svg-elem-8 {
	animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 11.84s both,
				 animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 12.5s both;
  }
  
  @keyframes animate-svg-stroke-9 {
	0% {
	  stroke-dashoffset: 825.5901489257812px;
	  stroke-dasharray: 825.5901489257812px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 825.5901489257812px;
	}
  }
  
  @keyframes animate-svg-fill-9 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(213, 80, 99);
	}
  }
  
  .svg-elem-9 {
	animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 11.96s both,
				 animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 12.600000000000001s both;
  }
  
  @keyframes animate-svg-stroke-10 {
	0% {
	  stroke-dashoffset: 828.1941528320312px;
	  stroke-dasharray: 828.1941528320312px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 828.1941528320312px;
	}
  }
  
  @keyframes animate-svg-fill-10 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(0, 174, 239);
	}
  }
  
  .svg-elem-10 {
	animation: animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 12.08s both,
				 animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 12.700000000000001s both;
  }
  
  @keyframes animate-svg-stroke-11 {
	0% {
	  stroke-dashoffset: 828.1881103515625px;
	  stroke-dasharray: 828.1881103515625px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 828.1881103515625px;
	}
  }
  
  @keyframes animate-svg-fill-11 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(211, 145, 0);
	}
  }
  
  .svg-elem-11 {
	animation: animate-svg-stroke-11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 12.2s both,
				 animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 12.8s both;
  }
  
  @keyframes animate-svg-stroke-12 {
	0% {
	  stroke-dashoffset: 828.1881103515625px;
	  stroke-dasharray: 828.1881103515625px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 828.1881103515625px;
	}
  }
  
  @keyframes animate-svg-fill-12 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(194, 4, 48);
	}
  }
  
  .svg-elem-12 {
	animation: animate-svg-stroke-12 1s cubic-bezier(0.47, 0, 0.745, 0.715) 12.32s both,
				 animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 12.9s both;
  }
  
  