:root
{
	--color-FLEX-logo-start: #FFC20F;
	--color-FLEX-logo-end: #FFC20F;

	--form-font: var(--font-family);
    --button-color: #fff;

    --font-kelson-normal: "Kelson Sans-Regular";
    --font-kelson-bold: "Kelson Sans-Regular";
}

@font-face
{
	font-family: "Kelson Sans-Bold";
	src: url(./fonts/Kelson-Bold.otf) format('opentype');
    font-style: normal;
    font-weight: 700;
}
@font-face
{
	font-family: "Kelson Sans-Regular";
	src: url(./fonts/Kelson-Normal.otf) 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 ---------------------- */

body {
	margin: 0;
	padding: 0;
    
	overflow: hidden;
	background: #000;
    font-family: var(--font-kelson-normal);    
}

form {
	display: grid;
	padding: 85px 20px 50px 20px;
	
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  min-height: 300px;
  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: 1s formAni ease 8s 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: 40px;
	color: #FFC20F;
	font-style: normal;
	padding:10px;
}

input {
	padding: 10px 20px;
	color: #333;
	background: #fff;
	border: unset;
	font-size: 18px;
	outline: none;
	margin-top: 10px;
	width: 350px;
	height: 40px;
  border-radius: 2px;
}

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: 800;
	font-size: 18px; 
	text-transform: uppercase;
	outline: none;
	display: block;
	margin-top: 10px;
	height: 40px;
	width: 170px;
  border-radius: 2px;
}

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: #578c00;
	margin-left: 180px;
	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: #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: #15BEF0;
	color: #fff;
	transition: 0.3s;
}

button.register-only.cancel {
	background: #000000;
	margin-left: 180px;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.cancel:hover {
	background: #383838;
	transition: 0.3s;
}

/* ----------------------front logo Animation-------------------------- */
.logo_front {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    width: fit-content;
}

.logo_front svg {
    animation: .5s frontLogoAni ease-out 8s both;  
    width: 400px;
}

@keyframes frontLogoAni {
    0% {
        transform: scale(3);
    }
    100% {
        transform: scale(.6) translateY(calc(50% + -250px));
    }
    
}

 @keyframes animate-svg-stroke-1 {
    0% {
      stroke-dashoffset: 373.8988037109375px;
      stroke-dasharray: 373.8988037109375px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 373.8988037109375px;
    }
  }
  
  @keyframes animate-svg-fill-1 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-1 {
    animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both,
                 animate-svg-fill-1 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4s both;
  }
  
  @keyframes animate-svg-stroke-2 {
    0% {
      stroke-dashoffset: 753.702880859375px;
      stroke-dasharray: 753.702880859375px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 753.702880859375px;
    }
  }
  
  @keyframes animate-svg-fill-2 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-2 {
    animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.12s both,
                 animate-svg-fill-2 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s both;
  }
  
  @keyframes animate-svg-stroke-3 {
    0% {
      stroke-dashoffset: 585.1170654296875px;
      stroke-dasharray: 585.1170654296875px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 585.1170654296875px;
    }
  }
  
  @keyframes animate-svg-fill-3 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-3 {
    animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.24s both,
                 animate-svg-fill-3 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s both;
  }
  
  @keyframes animate-svg-stroke-4 {
    0% {
      stroke-dashoffset: 507.61749267578125px;
      stroke-dasharray: 507.61749267578125px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 507.61749267578125px;
    }
  }
  
  @keyframes animate-svg-fill-4 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-4 {
    animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.36s both,
                 animate-svg-fill-4 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s both;
  }
  
  @keyframes animate-svg-stroke-5 {
    0% {
      stroke-dashoffset: 402.3879699707031px;
      stroke-dasharray: 402.3879699707031px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 402.3879699707031px;
    }
  }
  
  @keyframes animate-svg-fill-5 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-5 {
    animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.48s both,
                 animate-svg-fill-5 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s both;
  }
  
  @keyframes animate-svg-stroke-6 {
    0% {
      stroke-dashoffset: 594.7080078125px;
      stroke-dasharray: 594.7080078125px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 594.7080078125px;
    }
  }
  
  @keyframes animate-svg-fill-6 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-6 {
    animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both,
                 animate-svg-fill-6 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s both;
  }
  
  @keyframes animate-svg-stroke-7 {
    0% {
      stroke-dashoffset: 302.1824645996094px;
      stroke-dasharray: 302.1824645996094px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 302.1824645996094px;
    }
  }
  
  @keyframes animate-svg-fill-7 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-7 {
    animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7199999999999998s both,
                 animate-svg-fill-7 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s both;
  }
  
  @keyframes animate-svg-stroke-8 {
    0% {
      stroke-dashoffset: 459.0357360839844px;
      stroke-dasharray: 459.0357360839844px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 459.0357360839844px;
    }
  }
  
  @keyframes animate-svg-fill-8 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-8 {
    animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.84s both,
                 animate-svg-fill-8 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.7s both;
  }
  
  @keyframes animate-svg-stroke-9 {
    0% {
      stroke-dashoffset: 694.2080688476562px;
      stroke-dasharray: 694.2080688476562px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 694.2080688476562px;
    }
  }
  
  @keyframes animate-svg-fill-9 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-9 {
    animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.96s both,
                 animate-svg-fill-9 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s both;
  }
  
  @keyframes animate-svg-stroke-10 {
    0% {
      stroke-dashoffset: 432.2673645019531px;
      stroke-dasharray: 432.2673645019531px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 432.2673645019531px;
    }
  }
  
  @keyframes animate-svg-fill-10 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-10 {
    animation: animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.08s both,
                 animate-svg-fill-10 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.9s both;
  }
  
  @keyframes animate-svg-stroke-11 {
    0% {
      stroke-dashoffset: 312.3951110839844px;
      stroke-dasharray: 312.3951110839844px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 312.3951110839844px;
    }
  }
  
  @keyframes animate-svg-fill-11 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-11 {
    animation: animate-svg-stroke-11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s both,
                 animate-svg-fill-11 2s cubic-bezier(0.47, 0, 0.745, 0.715) 5s both;
  }
  
  @keyframes animate-svg-stroke-12 {
    0% {
      stroke-dashoffset: 533.4063720703125px;
      stroke-dasharray: 533.4063720703125px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 533.4063720703125px;
    }
  }
  
  @keyframes animate-svg-fill-12 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-12 {
    animation: animate-svg-stroke-12 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.32s both,
                 animate-svg-fill-12 2s cubic-bezier(0.47, 0, 0.745, 0.715) 5.1s both;
  }
  
  @keyframes animate-svg-stroke-13 {
    0% {
      stroke-dashoffset: 995.1495971679688px;
      stroke-dasharray: 995.1495971679688px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 995.1495971679688px;
    }
  }
  
  @keyframes animate-svg-fill-13 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 194, 15);
    }
  }
  
  .svg-elem-13 {
    animation: animate-svg-stroke-13 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.44s both,
                 animate-svg-fill-13 2s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s both;
  }
  
  @keyframes animate-svg-stroke-14 {
    0% {
      stroke-dashoffset: 2630px;
      stroke-dasharray: 2630px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 2630px;
    }
  }
  
  .svg-elem-14 {
    animation: animate-svg-stroke-14 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.56s both,
                 animate-svg-fill-14 2s cubic-bezier(0.47, 0, 0.745, 0.715) 5.3s both;
  }
  
/* ---------------- herc -video ----------------  */
.herc-video {
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  width: 100%;
  z-index: -1;
  animation: 1s hercVideo ease-in 8s both;
}

@keyframes hercVideo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

video {
  height: 100%;
  left: 0;
  object-fit: cover;
  opacity: .2;
  position: absolute;
  top: 0;
  width: 100%;
}