.gpos-checkout-class *,
.gpos-checkout-class::before,
.gpos-checkout-class::after {
  border-width: 0;
  border-style: solid;
  border-color: theme("borderColor.DEFAULT", currentColor);
}

.gpos-checkout-class .dot-spinner {
  --uib-size: 26px;
  --uib-speed: 0.9s;
  --uib-color: black;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--uib-size);
  width: var(--uib-size);
}

.gpos-checkout-class .dot-spinner__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.gpos-checkout-class .dot-spinner__dot::before {
  content: "";
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background-color: var(--uib-color);
  transform: scale(0);
  opacity: 0.5;
  animation: pulse calc(var(--uib-speed) * 1.111) ease-in-out infinite;
}

.gpos-checkout-class .dot-spinner__dot:nth-child(2) {
  transform: rotate(45deg);
}

.gpos-checkout-class .dot-spinner__dot:nth-child(2)::before {
  animation-delay: calc(var(--uib-speed) * -0.875);
}

.gpos-checkout-class .dot-spinner__dot:nth-child(3) {
  transform: rotate(90deg);
}

.gpos-checkout-class .dot-spinner__dot:nth-child(3)::before {
  animation-delay: calc(var(--uib-speed) * -0.75);
}

.gpos-checkout-class .dot-spinner__dot:nth-child(4) {
  transform: rotate(135deg);
}

.gpos-checkout-class .dot-spinner__dot:nth-child(4)::before {
  animation-delay: calc(var(--uib-speed) * -0.625);
}

.gpos-checkout-class .dot-spinner__dot:nth-child(5) {
  transform: rotate(180deg);
}

.gpos-checkout-class .dot-spinner__dot:nth-child(5)::before {
  animation-delay: calc(var(--uib-speed) * -0.5);
}

.gpos-checkout-class .dot-spinner__dot:nth-child(6) {
  transform: rotate(225deg);
}

.gpos-checkout-class .dot-spinner__dot:nth-child(6)::before {
  animation-delay: calc(var(--uib-speed) * -0.375);
}

.gpos-checkout-class .dot-spinner__dot:nth-child(7) {
  transform: rotate(270deg);
}

.gpos-checkout-class .dot-spinner__dot:nth-child(7)::before {
  animation-delay: calc(var(--uib-speed) * -0.25);
}

.gpos-checkout-class .dot-spinner__dot:nth-child(8) {
  transform: rotate(315deg);
}

.gpos-checkout-class .dot-spinner__dot:nth-child(8)::before {
  animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@tailwind components;

@tailwind utilities;

#gpos-card-bin,
#gpos-card-expiry,
#gpos-card-holder-name,
#gpos-card-name {
  @apply !border-0 !w-full !rounded-r !bg-white !m-0 !p-3 !outline-0;
}

#gpos-card-cvv {
  @apply !border-0 !w-full !rounded-none !bg-white !m-0 !p-3 !outline-0;
}

#gpos-card-expiry-month {
  @apply !border-0 !rounded-none !bg-white !m-0 !p-3 !outline-0 !w-1/2;
}

#gpos-card-expiry-year {
  @apply !border-0 !rounded-none !rounded-r !bg-white !m-0 !p-3 !outline-0 !w-1/2;
}
