:root
{
	--color-FLEX-logo-start: #204B66;
	--color-FLEX-logo-end: #204B66;

  --color-customer-orange: #c20808;
}
.help-registration
{
	bottom: 50%;
	right: 43%;
	--help-title: "Registering for Site Access";
}
#Page_Footer
{
	z-index: 5;
}

body {
    background: transparent;
    overflow: hidden;
}

body::before {
  display: none;
}

.FrontLogo  {
    position: absolute;
    width: 500px;
    height: 120px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation: .5s LogoAni ease 7.5s both;
}

@keyframes LogoAni {
    0%      {       opacity: 1; }
    60%     {       opacity: 1; }
    100%    {       opacity: 0; }
}

.frontBox {
    width: calc(100% - 20px);
	  margin: 10px;
    background: #fff;
    height: calc(100vh - 40px);
    display: flex;
}

.leftBox {
    width: 50%;
    background: #ccc;
    height: calc(100vh - 20px);
    border-radius: 6px 6px 100px 6px;
    margin: 0 5px 0 0;
    position: relative;
    z-index: 1;    
    background: url(/_customers/images/ui/Follett/img-03.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    animation: leftRightBox 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 8s both;    
}

.rightBox {
    width: 50%;
    height: calc(100vh - 20px);
    background: #AEEAFC;
    border-radius: 100px 6px 6px 6px;
    margin: 0 0 0 5px;
    position: relative;
    z-index: 1;
    animation: leftRightBox 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 8s both;
}

@keyframes leftRightBox {
    0%    { 
            opacity: 0;
            filter: blur(16px);        }
    100%  { 
            opacity: 1;
            filter: blur(0);        }
}

form {
	display: grid;
	padding: 70px 20px 30px 0px;
	position: fixed;
  top: 0;
	bottom: 0;
  right: 10%;
  margin: auto;
	min-height: 240px;
	max-height: 300px;
	height: min-content;
	min-width: 390px;
	width: fit-content;
	color: #000;
	border-radius: 4px;
	font-family: var(--font-kelson-normal);	
	z-index: 3;
	animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 8.5s both;
  background: url(/_customers/images/ui/Follett/Login.svg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}

@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 / 2 / 5 / 1;
	margin-top: 40px;
	color: #333;
  font-family: Helvetica, sans-serif;
	font-style: normal;
	padding:10px;
	letter-spacing: 1px;
}

input {
	padding: 10px 20px;
	color: #333;
	background: transparent;
  border: none;
	border-bottom: 1px solid #FFF;
	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: #204B66;
	color: #fff;	
	cursor: pointer;
  display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	background: #204B66;
	transition: 0.3s;
}

button.login-only.register {
	background: #308FCB;
	margin-left: 205px;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: #308FCB;
	transition: 0.3s;
}

button.login-only.forgot {
	background: none;
	color: #444;
	width: 50%;
	text-align: left;
	font-weight: 400;
	line-height: 20px;
	cursor: pointer;
	font-size: 13px;
	grid-area: 5 / 0 / 8 / 2;
	margin-top: 15px;
	height: 30px;
}

button.login-only.forgot:hover {
	color: #000000;
	font-weight: 400;
	transition: 0.3s;
}

button.register-only.register {
	background:#8CC63F;
	color: #333;
	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;
}

/* Responsive */
@media screen and (width <= 1200px) 
{
	form {
    right: 5%;
  }
}

@media screen and (width <= 950px) 
{
	form {
    right: 2%;
  }
}

@media screen and (width <= 850px) 
{
	.leftBox {
    display: none;
  }
  .rightBox {
    width: 100%;
  }
  form {
    right: 25%;
  }
}


@media screen and (width <= 600px) 
{
  form {    right: 0%;  }

}
/* Responsive */
























































/* ------------------- LOGO ANIMATION -------------  */
 @keyframes animate-svg-stroke-1 {
    0% {
      stroke-dashoffset: 257.3926086425781px;
      stroke-dasharray: 257.3926086425781px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 257.3926086425781px;
    }
  }
  
  @keyframes animate-svg-fill-1 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(174, 234, 252);
    }
  }
  
  .svg-elem-1 {
    animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both,
                 animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s both;
  }
  
  @keyframes animate-svg-stroke-2 {
    0% {
      stroke-dashoffset: 257.3926086425781px;
      stroke-dasharray: 257.3926086425781px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 257.3926086425781px;
    }
  }
  
  .svg-elem-2 {
    animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.62s both,
                 animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s both;
  }
  
  @keyframes animate-svg-stroke-3 {
    0% {
      stroke-dashoffset: 257.37889099121094px;
      stroke-dasharray: 257.37889099121094px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 257.37889099121094px;
    }
  }
  
  @keyframes animate-svg-fill-3 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-3 {
    animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.74s both,
                 animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4s both;
  }
  
  @keyframes animate-svg-stroke-4 {
    0% {
      stroke-dashoffset: 314.2406005859375px;
      stroke-dasharray: 314.2406005859375px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 314.2406005859375px;
    }
  }
  
  @keyframes animate-svg-fill-4 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-4 {
    animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.86s both,
                 animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s both;
  }
  
  @keyframes animate-svg-stroke-5 {
    0% {
      stroke-dashoffset: 274.2035217285156px;
      stroke-dasharray: 274.2035217285156px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 274.2035217285156px;
    }
  }
  
  @keyframes animate-svg-fill-5 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-5 {
    animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.98s both,
                 animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s both;
  }
  
  @keyframes animate-svg-stroke-6 {
    0% {
      stroke-dashoffset: 205.57260131835938px;
      stroke-dasharray: 205.57260131835938px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 205.57260131835938px;
    }
  }
  
  @keyframes animate-svg-fill-6 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-6 {
    animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s both,
                 animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s both;
  }
  
  @keyframes animate-svg-stroke-7 {
    0% {
      stroke-dashoffset: 205.57260131835938px;
      stroke-dasharray: 205.57260131835938px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 205.57260131835938px;
    }
  }
  
  @keyframes animate-svg-fill-7 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-7 {
    animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2199999999999998s both,
                 animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s both;
  }
  
  @keyframes animate-svg-stroke-8 {
    0% {
      stroke-dashoffset: 335.95184326171875px;
      stroke-dasharray: 335.95184326171875px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 335.95184326171875px;
    }
  }
  
  @keyframes animate-svg-fill-8 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-8 {
    animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.34s both,
                 animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s both;
  }
  
  @keyframes animate-svg-stroke-9 {
    0% {
      stroke-dashoffset: 244.80520629882812px;
      stroke-dasharray: 244.80520629882812px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 244.80520629882812px;
    }
  }
  
  @keyframes animate-svg-fill-9 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-9 {
    animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.46s both,
                 animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s both;
  }
  
  @keyframes animate-svg-stroke-10 {
    0% {
      stroke-dashoffset: 244.80691528320312px;
      stroke-dasharray: 244.80691528320312px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 244.80691528320312px;
    }
  }
  
  @keyframes animate-svg-fill-10 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-10 {
    animation: animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.58s both,
                 animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.7s both;
  }
  
  @keyframes animate-svg-stroke-11 {
    0% {
      stroke-dashoffset: 87.20003509521484px;
      stroke-dasharray: 87.20003509521484px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 87.20003509521484px;
    }
  }
  
  @keyframes animate-svg-fill-11 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-11 {
    animation: animate-svg-stroke-11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7s both,
                 animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s both;
  }
  
  @keyframes animate-svg-stroke-12 {
    0% {
      stroke-dashoffset: 96.8596420288086px;
      stroke-dasharray: 96.8596420288086px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 96.8596420288086px;
    }
  }
  
  @keyframes animate-svg-fill-12 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-12 {
    animation: animate-svg-stroke-12 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.82s both,
                 animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.9s both;
  }
  
  @keyframes animate-svg-stroke-13 {
    0% {
      stroke-dashoffset: 77.41574096679688px;
      stroke-dasharray: 77.41574096679688px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 77.41574096679688px;
    }
  }
  
  @keyframes animate-svg-fill-13 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-13 {
    animation: animate-svg-stroke-13 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.94s both,
                 animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5s both;
  }
  
  @keyframes animate-svg-stroke-14 {
    0% {
      stroke-dashoffset: 72.14237976074219px;
      stroke-dasharray: 72.14237976074219px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 72.14237976074219px;
    }
  }
  
  @keyframes animate-svg-fill-14 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-14 {
    animation: animate-svg-stroke-14 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.0600000000000005s both,
                 animate-svg-fill-14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.1s both;
  }
  
  @keyframes animate-svg-stroke-15 {
    0% {
      stroke-dashoffset: 83.49602508544922px;
      stroke-dasharray: 83.49602508544922px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 83.49602508544922px;
    }
  }
  
  @keyframes animate-svg-fill-15 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-15 {
    animation: animate-svg-stroke-15 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.18s both,
                 animate-svg-fill-15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s both;
  }
  
  @keyframes animate-svg-stroke-16 {
    0% {
      stroke-dashoffset: 57.27197265625px;
      stroke-dasharray: 57.27197265625px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 57.27197265625px;
    }
  }
  
  @keyframes animate-svg-fill-16 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-16 {
    animation: animate-svg-stroke-16 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s both,
                 animate-svg-fill-16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.3s both;
  }
  
  @keyframes animate-svg-stroke-17 {
    0% {
      stroke-dashoffset: 36.14202880859375px;
      stroke-dasharray: 36.14202880859375px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 36.14202880859375px;
    }
  }
  
  @keyframes animate-svg-fill-17 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-17 {
    animation: animate-svg-stroke-17 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.42s both,
                 animate-svg-fill-17 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s both;
  }
  
  @keyframes animate-svg-stroke-18 {
    0% {
      stroke-dashoffset: 92.04634094238281px;
      stroke-dasharray: 92.04634094238281px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 92.04634094238281px;
    }
  }
  
  @keyframes animate-svg-fill-18 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-18 {
    animation: animate-svg-stroke-18 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.54s both,
                 animate-svg-fill-18 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.5s both;
  }
  
  @keyframes animate-svg-stroke-19 {
    0% {
      stroke-dashoffset: 95.58850860595703px;
      stroke-dasharray: 95.58850860595703px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 95.58850860595703px;
    }
  }
  
  @keyframes animate-svg-fill-19 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-19 {
    animation: animate-svg-stroke-19 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.66s both,
                 animate-svg-fill-19 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.6s both;
  }
  
  @keyframes animate-svg-stroke-20 {
    0% {
      stroke-dashoffset: 86.15802001953125px;
      stroke-dasharray: 86.15802001953125px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 86.15802001953125px;
    }
  }
  
  @keyframes animate-svg-fill-20 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-20 {
    animation: animate-svg-stroke-20 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.779999999999999s both,
                 animate-svg-fill-20 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.7s both;
  }
  
  @keyframes animate-svg-stroke-21 {
    0% {
      stroke-dashoffset: 36.1400146484375px;
      stroke-dasharray: 36.1400146484375px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 36.1400146484375px;
    }
  }
  
  @keyframes animate-svg-fill-21 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-21 {
    animation: animate-svg-stroke-21 1s cubic-bezier(0.47, 0, 0.745, 0.715) 4.9s both,
                 animate-svg-fill-21 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.8s both;
  }
  
  @keyframes animate-svg-stroke-22 {
    0% {
      stroke-dashoffset: 82.78128051757812px;
      stroke-dasharray: 82.78128051757812px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 82.78128051757812px;
    }
  }
  
  @keyframes animate-svg-fill-22 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-22 {
    animation: animate-svg-stroke-22 1s cubic-bezier(0.47, 0, 0.745, 0.715) 5.02s both,
                 animate-svg-fill-22 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.9s both;
  }
  
  @keyframes animate-svg-stroke-23 {
    0% {
      stroke-dashoffset: 86.15802001953125px;
      stroke-dasharray: 86.15802001953125px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 86.15802001953125px;
    }
  }
  
  @keyframes animate-svg-fill-23 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-23 {
    animation: animate-svg-stroke-23 1s cubic-bezier(0.47, 0, 0.745, 0.715) 5.14s both,
                 animate-svg-fill-23 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6s both;
  }
  
  @keyframes animate-svg-stroke-24 {
    0% {
      stroke-dashoffset: 87.2020492553711px;
      stroke-dasharray: 87.2020492553711px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 87.2020492553711px;
    }
  }
  
  @keyframes animate-svg-fill-24 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-24 {
    animation: animate-svg-stroke-24 1s cubic-bezier(0.47, 0, 0.745, 0.715) 5.26s both,
                 animate-svg-fill-24 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.1s both;
  }
  
  @keyframes animate-svg-stroke-25 {
    0% {
      stroke-dashoffset: 94.1305923461914px;
      stroke-dasharray: 94.1305923461914px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 94.1305923461914px;
    }
  }
  
  @keyframes animate-svg-fill-25 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(32, 75, 102);
    }
  }
  
  .svg-elem-25 {
    animation: animate-svg-stroke-25 1s cubic-bezier(0.47, 0, 0.745, 0.715) 5.38s both,
                 animate-svg-fill-25 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.2s both;
  }
  
  @keyframes animate-svg-stroke-26 {
    0% {
      stroke-dashoffset: 1074px;
      stroke-dasharray: 1074px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 1074px;
    }
  }
  
  @keyframes animate-svg-fill-26 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-26 {
    animation: animate-svg-stroke-26 1s cubic-bezier(0.47, 0, 0.745, 0.715) 5.5s both,
                 animate-svg-fill-26 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.3s both;
  }
  