/* @Grp  ========================================================== */
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@keyframes playDelivery40 {
  0% {
    background-position: 0;
  }
  100% {
    background-position: -1200px;
  }
}
.animation.initialized {
  background-color: #d7b6b6;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.initialized .sprite-delivery-40,
.sprite.sprite-delivery-40.inner {
  display: block;
  background-color: #666;
  background-position: 0;
  background-size: auto 100%;
  background-image: url(../images/_Medias/sprite-delivery-140.png);
  animation: playDelivery40 2.2s steps(24) infinite;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  animation-name: playDelivery40;
  animation-duration: 2.2s;
  animation-timing-function: steps(24);
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  /*animation-timeline: ;*/
  overflow: hidden;
}

.radial-progress .inner {
  position: absolute;
  left: 30%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 0.9375rem;
  font-family: HelveticaNeueW01-UltLt, Helvetica Neue, Helvetica;
  width: 50px;
  height: 50px;
  white-space: nowrap;
}

/* @Grp  (FIN) ==================================================== */
/* @Grp Animations Utilities ========================================================== */
@keyframes slideIn_from_Top {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn_from_Right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideIn_from_Bottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn_from_Left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.u-slideIn_from_Top {
  animation: slideIn_from_Top;
  animation-duration: 2s;
  animation-delay: 0.5s;
}

.u-slideIn_from_Right {
  animation: slideIn_from_Right;
  animation-duration: 2s;
  animation-delay: 0.5s;
}

.u-slideIn_from_Bottom {
  animation: slideIn_from_Bottom;
  animation-duration: 2s;
  animation-delay: 0.5s;
}

.u-slideIn_from_Left {
  animation: slideIn_from_Left;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}

@keyframes fade_In {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade_Out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.u-fade_In {
  animation: fade_In;
  animation-duration: 2s;
  animation-delay: 0.5s;
}

.u-fade_Out {
  animation: fade_Out;
  animation-duration: 2s;
  animation-delay: 0.5s;
}

/* @Grp Animations Utilities (FIN) ==================================================== */
/* @Grp Css-Portal ========================================================== */
svg {
  font-family: "Roboto", sans-serif;
  width: 100%;
  height: 100%;
}

svg text {
  animation: stroke 8s infinite alternate;
  stroke-width: 2;
  stroke: #FF7B20;
  font-size: 176px;
}

@keyframes stroke {
  0% {
    fill: rgba(0, 0, 0, 0);
    stroke: rgb(255, 123, 32);
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 2;
  }
  70% {
    fill: rgba(0, 0, 0, 0);
    stroke: rgb(255, 123, 32);
  }
  80% {
    fill: rgba(0, 0, 0, 0);
    stroke: rgb(255, 123, 32);
    stroke-width: 3;
  }
  100% {
    fill: rgb(0, 0, 0);
    stroke: rgba(255, 123, 32, 0);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
}
.cssportal {
  background-color: #000;
}

/* @Grp Css-Portal (FIN) ==================================================== *//*# sourceMappingURL=css_Animations.css.map */