/* CSS extracted from templates\checkout\demeter.html */

/* Inline style 1 from demeter.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 demeter.html */
.three-quarter-spinner {
  animation: spin .9s linear 0s infinite;
}

/* Inline style 3 from demeter.html */
/* Arrows */
.arrow-active::after,
.arrow-inactive::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: translateY(-50%) rotate(45deg);
}

.arrow-active::after {
  border-color: #000;
}

.arrow-inactive::after {
  border-color: #dadada;
}

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