@font-face
{
	font-family:'corisande';
	src: url(./fonts/CorisandeRegular.ttf) format('ttf');
}
:root
{
	--color-FLEX-logo-start: #14377D;
	--color-FLEX-logo-end: #14377D;

	--form-font: var(--font-family);
}

.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%;
}
#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: var(--form-font);
	font-size: 14px;
	color: #333;
	overflow: hidden;
	background: #fff;	
}

form	{
	display: grid;
	position: absolute;
	top: 37%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: fit-content;
	padding: 20px;
	color: #14377D;
	font-size: 12px;
	z-index: 2;
	background: #fff;
	padding-top: 40px;

	grid-template-columns: repeat(1, 1fr);
	grid-template-rows: repeat(5, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	background-image: url(/_customers/images/ui/Vitaminshoppe/vi_shoppeLogo.svg);
	background-size: 425px;
	background-repeat: no-repeat;
	background-position: 15px -160px;
	animation: 2s vsFormAni ease 5.5s both;
}
@keyframes vsFormAni {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


.vsVideo {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	opacity: .1;
	display: none;
}

form div {
	font-size: 12px;
	text-align: left;
	grid-area: 6 / 1 / 9 / 2;
	margin-top: 30px;
	background: #f8feff;
	padding:10px
}

input {
	padding: 10px 20px;
	color: #333;
	background: #DBF7FF;
	border: 1px solid #AEDAE7;
	font-size: 18px;
	outline: none;
	margin-top: 10px;
	width: 400px;
}

input[name="email"] {
	height: 45px;
	grid-area: 2 / 1 / 3 / 2;
}

input[name="password"] {
	height: 45px;
	grid-area: 3 / 1 / 4 / 2;	
}

input[name="code"] {
	height: 50px;
	grid-area: 4 / 1 / 5 / 2;
}

input[name="code"]::placeholder {
	color: #ccc;
}

::placeholder {
	color: #ccc;
	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: 20px;
	height: 50px;
	width: 195px;
}

button.login-only.login {
	background: #14377D;
	color: #fff;	
	cursor: pointer;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	background: #576CBC;
	transition: 0.3s;
}

button.login-only.register {
	background: #15BEF0;
	margin-left: 205px;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: #98DFD6;
	transition: 0.3s;
}

button.login-only.forgot {
	background: none;
	color: #084d64;
	width: 50%;
	text-align: left;
	font-weight: 400;
	line-height: 55px;
	cursor: pointer;
	font-size: 14px;
	grid-area: 5 / 1 / 8 / 2;
	margin-top: 20px;
	height: 20px;
}

button.login-only.forgot:hover {
	color: #f87d01;
	font-weight: 400;
	transition: 0.3s;
}

button.register-only.register {
	background:#14377D;
	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: #5C5C5D;
	margin-left: 200px;
	grid-area: 5 / 1 / 7 / 2;
}
button.register-only.cancel:hover {
	background: #000;
	transition: 0.3s;
}

.vs_logoV {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 35%;
	transform: translate(-50%, -50%);
	animation: slide-tl 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 5s both;
}

@keyframes slide-tl {
    0% {
            transform: translateY(-50%) translateX(-50%);
            opacity: 1; }
    
    98% {
            transform: translateY(-382px) translateX(-412px);
            opacity: 1;
    }
    100% {
            transform: translateY(-382px) translateX(-412px);
            opacity: 0;
	}
}

  
.vs_logoV svg {
	width: 500px;
	animation: scale-down-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) 5s both;						
}

  @keyframes scale-down-center {
	0% {
	  -webkit-transform: scale(1);
			  transform: scale(1);
	}
	100% {
	  -webkit-transform: scale(0.14);
			  transform: scale(0.14);			  
	}
  }
  
  
/* ************************************************** */


 @-webkit-keyframes animate-svg-stroke-1 {
	0% {
	  stroke-dashoffset: 979.2429809570312px;
	  stroke-dasharray: 979.2429809570312px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 979.2429809570312px;
	}
  }
  
  @keyframes animate-svg-stroke-1 {
	0% {
	  stroke-dashoffset: 979.2429809570312px;
	  stroke-dasharray: 979.2429809570312px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 979.2429809570312px;
	}
  }
  
  @-webkit-keyframes animate-svg-fill-1 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(21, 190, 240);
	}
  }
  
  @keyframes animate-svg-fill-1 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(21, 190, 240);
	}
  }
  
  .svg-elem-1 {
	-webkit-animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both,
						 animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4s both;
			animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both,
				 animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4s both;
  }
  
  @-webkit-keyframes animate-svg-stroke-2 {
	0% {
	  stroke-dashoffset: 1508.3648681640625px;
	  stroke-dasharray: 1508.3648681640625px;
	}
  
	90% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 1508.3648681640625px;
	}
  }
  
  @keyframes animate-svg-stroke-2 {
	0% {
	  stroke-dashoffset: 1508.3648681640625px;
	  stroke-dasharray: 1508.3648681640625px;
	}
  
	100% {
	  stroke-dashoffset: 0;
	  stroke-dasharray: 1508.3648681640625px;
	}	

  }
  
  @-webkit-keyframes animate-svg-fill-2 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(20, 55, 125);
	}
  }
  
  @keyframes animate-svg-fill-2 {
	0% {
	  fill: transparent;
	}
  
	100% {
	  fill: rgb(20, 55, 125);
	}
  }
  
  .svg-elem-2 {
	-webkit-animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.17s both,
						 animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s both;
			animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.17s both,
				 animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s both;
  }
  
/* -------------- LOGIN STYLE END HERE! ---------- */
