@import url("https://use.typekit.net/jvl6ifv.css");

:root
{
	--color-FLEX-logo-start: #000;
	--color-FLEX-logo-end: #FFF;

	--form-font: "campton", sans-serif;
    --color: #441d1f;
}
@font-face
{
	font-family: "campton", sans-serif;
	src: url(./fonts/Campton-Light.ttf) format('ttf');
}

.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! -------------- */
:root {
    --animation-delay: 3s;
    --theme-color: #FF502D;
}

body {
    background: #FF502D;
    overflow: hidden;
}

form {
	display: grid;
	padding: 80px 0px 20px 0px;
    background: url(/_customers/images/ui/Glowbar/Glowbar-black.png);
    background-repeat: no-repeat;
    background-size: 250px;
    background-position: 50px top;
	
	position: fixed;
	top: 0px;
	left: calc(0px + -555px);
    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: 2px;
	/* 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) 9s both;
}

form::after {
    content: ""; /* Create a pseudo-element */
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5); /* Adjust the alpha channel (0.5 for 50% opacity) */
  }

@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: #333;
	font-style: normal;
	padding:10px;
	letter-spacing: 1px;
}

input {
	padding: 10px 20px;
	color: #333;
	background: #fff;
	border-bottom: 1px solid #ccc;
    border-left: none ;
    border-right: none;
    border-top: none;
	font-size: 16px;
    font-style: italic;
	outline: none;
	margin-top: 10px;
	width: 350px;
	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: 200;
}

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: 175px;
    border-radius: 0px;
}

button.login-only.login {
	background: var(--theme-color);
    border-radius: 20px 0px 0px 20px;
	color: #fff;	
	cursor: pointer;
    display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	transition: 0.3s;
	opacity: .8;
}

button.login-only.register {
	background: var(--theme-color);
    border-radius: 0px 20px 20px 0px;
    opacity: .5;
	margin-left: 175px;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: var(--theme-color);
	opacity: 1;
	transition: 0.3s;
}

button.login-only.forgot {
	background: none;
	color: var(--theme-color);
	width: 50%;
	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: #000000;
	font-weight: 400;
	transition: 0.3s;
}

button.register-only.register {
	background:#8CC63F;
	border-radius: 20px 0px 0px 20px;
	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: 175px;
	grid-area: 5 / 1 / 7 / 2;
	border-radius: 0px 20px 20px 0px;
}

button.register-only.cancel:hover {
	background: #383838;
	transition: 0.3s;
}

/* ---------------------- FORM END -------------- */

.top-line-main {
    position: absolute;
    top: 10%;
    width: 100%; 
}

.top-line {
    width: 635px;
    height: 70px;
    flex-shrink: 0;
    margin: 10px 0;
    border-radius: 53px;
    background: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.00) 3.86%,
                #FFF 24.15%, #FFF 99.94%,
                rgba(255, 255, 255, 0.00) 99.95%);
    position: relative;
    right: 0;
    animation: moveLeftToRight 1.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: var(--animation-delay);
}
.top-line:nth-child(1) {
    animation-delay: calc(var(--animation-delay) + .1s);
}
.top-line:nth-child(2) {
    animation-delay: calc(var(--animation-delay) + .2s);
}
.top-line:nth-child(3) {
    animation-delay: calc(var(--animation-delay) + .3s);
}

@keyframes moveLeftToRight {
    0% {
      left: -635px; 
    }
    100% {
      left: calc(100% - -635px);
    }
}
/*  ------------------ MIDDLE */ 
.mid-line {
    width: 635px;
    height: 85px;
    flex-shrink: 0;
    border-radius: 50px;
    background: linear-gradient(90deg, 
              rgba(255, 255, 255, 0.00) 3.86%,
              #FFF 24.15%, #FFF 99.94%, 
              rgba(255, 255, 255, 0.00) 99.95%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    animation: moveLeftToRight 3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: calc(var(--animation-delay) + 0s);        
}

/*  ----------------------------  */

.bot-line-main {
    position: absolute;
    bottom: 10%;
    width: 100%;
}

.bot-line   {
    width: 635px;
    height: 70px;
    margin: 10px 0;
    flex-shrink: 0;
    border-radius: 50px;
    transform: scaleX(-1);
    background: linear-gradient(90deg, 
              rgba(255, 255, 255, 0.00) 3.86%,
              #FFF 24.15%, #FFF 99.94%,
              rgba(255, 255, 255, 0.00) 99.95%);    
    animation: moveRightToLeft 1.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: var(--animation-delay);
    position: relative;
    left: 0;
}

.bot-line:nth-child(1) {
    animation-delay: calc(var(--animation-delay) + .1s);
}
.bot-line:nth-child(2) {
    animation-delay: calc(var(--animation-delay) + .2s);
}
.bot-line:nth-child(3) {
    animation-delay: calc(var(--animation-delay) + .3s);
}

@keyframes moveRightToLeft {
    0% {
      left: calc(100% - -635px); 
    }
    100% {
      left: -635px; 
    }
}

/*  front-logo  */
.front-logo {
    width: 500px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;

    background: url(/_customers/images/ui/Glowbar/Glowbar-white.png);
    background-repeat: no-repeat;
    background-size: cover;
    animation: moveLeftToCenter 6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: calc(var(--animation-delay) + 0s);
}

@keyframes moveLeftToCenter {
    0% {
      left:calc(-100% + -500px);
      opacity: 0;
    }
    20% {
      left: 0;
      opacity: 1; 
    }
    90% {
        left: 0;
        opacity: 1; 
      }
    100% {
        opacity: 0;
    }
}
/*  form box  */

.form_box {
    min-width: 1000px;
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #FFF;
    border-radius: 4px;
    border: 2px solid #fff;
    box-shadow: -5px 30px 14.1px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    z-index: 1;
    animation: 1s opacityAni ease 8s both;
}

@keyframes opacityAni {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.form_box_left {
    width: 400px;
    height: 600px;
    position: relative;
    background: #FFF;
    left: 0;
}

.form_box_right {
    width: 600px;
    height: 600px;
    position: relative;
    background: #FFF;
    right: 0;
    border-radius: 4px;
}
 /** SLIDESHOW  ------------------------------------------- **/
 .slideshow,
 .slideshow:after { 
	 top: -16px; /*Not sure why I needed this fix*/
  /* position: fixed; */
	 width: 600px;
	 height: 600px;
	 left: 0px;
	 z-index: 0;
	 list-style: none; 
 }
 
 .slideshow li span { 
	 position: absolute;
	 width: 600px;
	 height: 600px;
	 top: 0px;
	 left: 0px;
	 color: transparent;
	 border-radius: 4px;
	 background-size: cover;
	 background-position: center;
	 background-repeat: no-repeat;
	 opacity: 0;
	 z-index: 0;
	 animation: imageAnimation 24s linear infinite 8s; 
 }
 
 .slideshow li:nth-child(1) span { 
	 background-image: url("/_customers/images/ui/Glowbar/img-1.png"); 
	 animation-delay: 8s;
 }
 .slideshow li:nth-child(2) span { 
	 background-image: url("/_customers/images/ui/Glowbar/img-2.jpg");
	 animation-delay: 12s; 
 }
 .slideshow li:nth-child(3) span { 
	 background-image: url("/_customers/images/ui/Glowbar/img-3.jpg");
	 animation-delay: 16s; 
 }
 .slideshow li:nth-child(4) span { 
	 background-image: url("/_customers/images/ui/Glowbar/img-4.jpg");   
	 animation-delay: 20s; 
 }
 .slideshow li:nth-child(5) span { 
	 background-image: url("/_customers/images/ui/Glowbar/img-5.jpg");
	 animation-delay: 24s; 
 }
 
 @keyframes imageAnimation { 
	 0% { opacity: 0; animation-timing-function: ease-in; }
	 8% { opacity: 1; animation-timing-function: ease-out; }
	 17% { opacity: 1 }
	 25% { opacity: 0 }
	 100% { opacity: 0 }
 }
 
 @keyframes titleAnimation { 
	 0% { opacity: 0 }
	 8% { opacity: 1 }
	 17% { opacity: 1 }
	 19% { opacity: 0 }
	 100% { opacity: 0 }
 }
 
 
 .no-cssanimations .cb-slideshow li span {
	 opacity: 1;
 }