/* CSS extracted from funnels\funnel-1\checkout.html */

/* Inline style 1 from checkout.html */
html:not(.next-display-ready) [data-next-await] {
  position: relative;
  overflow: hidden;
  border-color: transparent !important;
  box-shadow: none !important;
}

[data-next-await] * {
  opacity: 0;
  transition: opacity 0.2s ease;
}

[data-next-await]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e0e0e0;
  animation: pulse-gray 1.5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-gray {

  0%,
  100% {
    background-color: #e0e0e0;
    opacity: 0.6;
  }

  50% {
    background-color: #f5f5f5;
    opacity: 0.8;
  }
}

html.next-display-ready [data-next-await] * {
  opacity: 1;
}

html.next-display-ready [data-next-await]::before {
  display: none;
}

/* Inline style 2 from checkout.html */
/* Hide checkmark by default */
[data-next-bump] [os-component="check"] {
  display: none;
}

/* Show checkmark if parent has 'os--selected' in its class attribute */
[data-next-bump][class*="next-active"] [os-component="check"] {
  display: flex;
}

/* Inline style 3 from checkout.html */
.three-quarter-spinner {
  animation: spin .9s linear 0s infinite;
}

/* Inline style 4 from checkout.html */
.st0 {
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2.5px;
}

/* Inline style 5 from checkout.html */
/* Define the animations */
@keyframes moveRightLeft {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes moveLeftRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }
}

/* Apply animations to the elements based on their data-animate attributes */
[data-animate="right"] {
  animation: moveRightLeft 1.5s infinite ease-in-out;
}

[data-animate="left"] {
  animation: moveLeftRight 1.5s infinite ease-in-out;
}

/* Remove the divider on the very last payment-method block */
.payment-methods > .payment-method:last-child {
  border-bottom: 0 !important;
  /* kill the bottom border */
}