@keyframes reanimate-underline-1px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 1px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 1px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 1px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 1px;
  }
}
@keyframes reanimate-underline-2px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 2px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 2px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 2px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 2px;
  }
}
@keyframes reanimate-underline-3px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 3px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 3px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 3px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 3px;
  }
}
@keyframes reanimate-underline-4px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 4px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 4px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 4px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 4px;
  }
}
@keyframes reanimate-underline-5px {
  0% {
    background-position: 100% 100%;
    background-size: 100% 5px;
  }
  49% {
    background-position: 100% 100%;
    background-size: 0% 5px;
  }
  50% {
    background-position: 0% 100%;
    background-size: 0% 5px;
  }
  100% {
    background-position: 0% 100%;
    background-size: 100% 5px;
  }
}
/** Usage

    ```scss
      .lds { 
        @include ldsRingAnimation($foreground-color: #fff, $width: 2px, $size: 25px);
      }
    ```

    ```html
      <div class="lds">
        <div></div>
        <div></div>
        <div></div>
      </div>
    ```
 */
.aem-Grid .container > div.animated {
  animation-duration: 750ms;
  animation-fill-mode: both;
}
.aem-Grid .container > div.animated.invisible {
  visibility: hidden;
}
.aem-Grid .container > div.animated.fadeIn {
  animation-name: fadeIn;
}
.aem-Grid .container > div.animated.fadeInDown {
  animation-name: fadeInDown;
}
.aem-Grid .container > div.animated.fadeInLeft {
  animation-name: fadeInLeft;
}
.aem-Grid .container > div.animated.fadeInRight {
  animation-name: fadeInRight;
}
.aem-Grid .container > div.animated.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.aem-Grid .container > div {
  height: 100%;
  z-index: 0;
}
.aem-Grid .container > div.hideIfUnauthenticated {
  display: none;
}
.authoring-mode .aem-Grid .container > div.hideIfUnauthenticated, .aem-Grid .container > div.hideIfUnauthenticated.authenticated {
  display: block;
}
.aem-Grid .container > div.hideIfAuthenticated {
  display: block;
}
.aem-Grid .container > div.hideIfAuthenticated.authenticated {
  display: none;
}
.aem-Grid .container > div.hideIfUncertified {
  display: none;
}
.authoring-mode .aem-Grid .container > div.hideIfUncertified, .aem-Grid .container > div.hideIfUncertified.certified {
  display: block;
}
.aem-Grid .container > div.hideIfCertified {
  display: block;
}
.aem-Grid .container > div.hideIfCertified.certified {
  display: none;
}
@media screen and (max-width: 499px) {
  .aem-Grid .container > div.nni-hcp--container--full-bleed-mobile {
    margin: 0 -24px;
  }
}
@media screen and (min-width: 500px) and (max-width: 999px) {
  .aem-Grid .container > div.nni-hcp--container--full-bleed-tablet {
    margin: 0 -56px;
  }
}
.aem-Grid .container > div.nni-hcp--container--link {
  cursor: pointer;
}
.aem-Grid .container > div > .cmp-container {
  height: 100%;
}
.aem-Grid .container > div > .cmp-container.responsiveNoGrid > .aem-Grid > .aem-GridColumn {
  float: left;
  clear: none;
  width: auto;
  margin-right: 12px;
}
@media screen and (min-width: 500px) {
  .aem-Grid .container > div > .cmp-container.responsiveNoGrid > .aem-Grid > .aem-GridColumn {
    margin-right: 24px;
  }
}
@media screen and (min-width: 1000px) {
  .aem-Grid .container > div > .cmp-container.responsiveNoGrid > .aem-Grid > .aem-GridColumn {
    margin-right: 24px;
  }
}
.aem-Grid .container > div.nni-hcp--container--show-gutters > .cmp-container {
  margin-left: -3px;
  margin-right: -3px;
}
@media screen and (min-width: 500px) {
  .aem-Grid .container > div.nni-hcp--container--show-gutters > .cmp-container {
    margin-left: -6px;
    margin-right: -6px;
  }
}
@media screen and (min-width: 1000px) {
  .aem-Grid .container > div.nni-hcp--container--show-gutters > .cmp-container {
    margin-left: -6px;
    margin-right: -6px;
  }
}
.aem-Grid .container > div.nni-hcp--container--show-gutters > .cmp-container > .aem-Grid > div > div {
  margin-left: 3px;
  margin-right: 3px;
}
@media screen and (min-width: 500px) {
  .aem-Grid .container > div.nni-hcp--container--show-gutters > .cmp-container > .aem-Grid > div > div {
    margin-left: 6px;
    margin-right: 6px;
  }
}
@media screen and (min-width: 1000px) {
  .aem-Grid .container > div.nni-hcp--container--show-gutters > .cmp-container > .aem-Grid > div > div {
    margin-left: 6px;
    margin-right: 6px;
  }
}
