@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap');

:root
{
	--color-FLEX-logo-start: rgb(244, 114, 22);
	--color-FLEX-logo-end: rgb(182, 36, 42);

	--form-font: "Poppins", serif;
}

.js-loading *,
.js-loading *:before,
.js-loading *:after
{
	animation-play-state: paused !important;
}

body
{
	grid-template-rows: 283px minmax(399px, 1fr) 90px;
}

body::before {
	display: none;
}

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%;
}
#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: "Poppins";
	color: #333;
	font-size: 16px;
	margin: 0;
	padding: 0;
	background: #fff;
	overflow: hidden;
}

form {
	display: grid;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
	font-family: "Poppins";

	padding: 200px 0 20px 0;
	/* background: url(/_customers/images/ui/CitgoTankDecals/Citgo_logo.png); */
	background-position: center;
	background-position-y: 10px;
	background-repeat: no-repeat;
	background-size: 150px;
	animation: 1s formAni ease 7s both;
}

@keyframes formAni {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

form div {
	font-size: 10px;
	text-align: left;
	grid-area: 6 / 1 / 9 / 2;
	margin-top: 30px;
	color: #095faa;
	font-style: italic;
	padding:10px;
	line-height: 10px;
}

input {
	padding: 10px 20px;
	color: #333;
	background: #f0f9ff;
	border: 1px solid #ebebeb;
	font-size: 18px;
	outline: none;
	margin-top: 10px;
	width: 400px;
}

input[name="email"] {
	height: 35px;
	grid-area: 2 / 1 / 3 / 2;
}

input[name="password"] {
	height: 35px;
	grid-area: 3 / 1 / 4 / 2;	
}

input[name="code"] {
	height: 35px;
	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: 10px;
	height: 40px;
	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: 400px;
	text-align: right;
	font-weight: 400;
	line-height: 55px;
	cursor: pointer;
	font-size: 14px;
	grid-area: 5 / 1 / 8 / 3;
	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;
}
 /* -------------------  front animation --------------------- */

.frontLogo {
	/* display: flex;
	justify-content: center;
	align-items: center;
	text-align: center; */

	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    width: fit-content;
}

.frontLogo svg {
	width: 400px;
	animation: .9s logoMove ease 6s forwards;
}

@keyframes logoMove {
	0% {
		/* transform: translateY(0); */
		width: 400px;
		transform: scale(1);
		opacity: 1;
	}
	/* 80% {
		transform: translateY(-80px);
		width: 150px;
		opacity: 1;
	} */
	100% {
		transform: scale(.8) translateY(calc(50% + -500px));
		width: 150px;
		opacity: 1;
	}

}

 @keyframes animate-svg-stroke-1 {
	0% {
	  stroke-dashoffset: 1420.418701171875px;
	  stroke-dasharray: 1420.418701171875px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 1420.418701171875px;
	}
  }
  
  @keyframes animate-svg-fill-1 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(244, 114, 22);
	}
  }
  
  .svg-elem-1 {
	animation: animate-svg-stroke-1 2s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both,
				 animate-svg-fill-1 2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s both;
  }
  
  @keyframes animate-svg-stroke-2 {
	0% {
	  stroke-dashoffset: 1480.8720703125px;
	  stroke-dasharray: 1480.8720703125px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 1480.8720703125px;
	}
  }
  
  @keyframes animate-svg-fill-2 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(228, 29, 37);
	}
  }
  
  .svg-elem-2 {
	animation: animate-svg-stroke-2 2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.12s both,
				 animate-svg-fill-2 2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s both;
  }
  
  @keyframes animate-svg-stroke-3 {
	0% {
	  stroke-dashoffset: 1426.222900390625px;
	  stroke-dasharray: 1426.222900390625px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 1426.222900390625px;
	}
  }
  
  @keyframes animate-svg-fill-3 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(182, 36, 42);
	}
  }
  
  .svg-elem-3 {
	animation: animate-svg-stroke-3 2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.24s both,
				 animate-svg-fill-3 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4s both;
  }
  
  @keyframes animate-svg-stroke-4 {
	0% {
	  stroke-dashoffset: 805.5571899414062px;
	  stroke-dasharray: 805.5571899414062px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 805.5571899414062px;
	}
  }
  
  @keyframes animate-svg-fill-4 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(81, 123, 197);
	}
  }
  
  .svg-elem-4 {
	animation: animate-svg-stroke-4 2s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both,
				 animate-svg-fill-4 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s both;
  }
  
  @keyframes animate-svg-stroke-5 {
	0% {
	  stroke-dashoffset: 652.5977172851562px;
	  stroke-dasharray: 652.5977172851562px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 652.5977172851562px;
	}
  }
  
  @keyframes animate-svg-fill-5 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(81, 123, 197);
	}
  }
  
  .svg-elem-5 {
	animation: animate-svg-stroke-5 2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.48s both,
				 animate-svg-fill-5 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2000000000000002s both;
  }
  
  @keyframes animate-svg-stroke-6 {
	0% {
	  stroke-dashoffset: 372.2799987792969px;
	  stroke-dasharray: 372.2799987792969px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 372.2799987792969px;
	}
  }
  
  @keyframes animate-svg-fill-6 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(81, 123, 197);
	}
  }
  
  .svg-elem-6 {
	animation: animate-svg-stroke-6 2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s both,
				 animate-svg-fill-6 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s both;
  }
  
  @keyframes animate-svg-stroke-7 {
	0% {
	  stroke-dashoffset: 524.9400024414062px;
	  stroke-dasharray: 524.9400024414062px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 524.9400024414062px;
	}
  }
  
  @keyframes animate-svg-fill-7 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(81, 123, 197);
	}
  }
  
  .svg-elem-7 {
	animation: animate-svg-stroke-7 2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.72s both,
				 animate-svg-fill-7 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4000000000000001s both;
  }
  
  @keyframes animate-svg-stroke-8 {
	0% {
	  stroke-dashoffset: 505.8375549316406px;
	  stroke-dasharray: 505.8375549316406px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 505.8375549316406px;
	}
  }
  
  @keyframes animate-svg-fill-8 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(81, 123, 197);
	}
  }
  
  .svg-elem-8 {
	animation: animate-svg-stroke-8 2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.84s both,
				 animate-svg-fill-8 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s both;
  }
  
  @keyframes animate-svg-stroke-9 {
	0% {
	  stroke-dashoffset: 266.04217529296875px;
	  stroke-dasharray: 266.04217529296875px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 266.04217529296875px;
	}
  }
  
  @keyframes animate-svg-fill-9 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(255, 255, 255);
	}
  }
  
  .svg-elem-9 {
	animation: animate-svg-stroke-9 2s cubic-bezier(0.47, 0, 0.745, 0.715) 3.96s both,
				 animate-svg-fill-9 2s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s both;
  }
  

 /* -------------------  front logo animation end --------------------- */

 .citgoBG {
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	height: 100%;
	width: 30%;
	animation: 5s citgoBG-Ani ease-in-out 1s both;	
 }

 .citgoBG img {
	position:absolute;
	top: 0;
	right: 0;
	height:100%;
	width: 100%;
 }

 @keyframes citgoBG-Ani {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
 }

 .citgoBG > img {
	animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) 5s infinite;
  }

  @keyframes move-forever {
	0% {
	 transform: translate3d(-90px,0,0);
	 transform: scale(1.0);
	}

	50% { 
		transform: translate3d(85px,0,0);
		transform: scale(1.5);
	  }

	100% { 
		transform: translate3d(-90px,0,0);
		transform: scale(1.0);
	}
  }

  .citgoBG img:nth-child(1) {
	animation-delay: -2s;
	animation-duration: 7s;
  }
  .citgoBG img:nth-child(2) {
	animation-delay: -3s;
	animation-duration: 10s;
  }
  .citgoBG img:nth-child(3) {
	animation-delay: -4s;
	animation-duration: 13s;
  }






















