/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.wuunder-hidden-checkout-field {
  display: none !important;
}

.wuunder-loader {
  display: none;
  position: fixed;
  top: 50vh;
  z-index: 9999;
  border: 16px solid #f3f3f3;
  border-top: 16px solid #94d600;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

#wuunderWrapper {
  display: none;
}

#wuunderBackdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(100, 100, 100, 0.4);
  z-index: 9998;
}

#wuunderIframeContainer {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 1000px;
  max-height: 700px;
  margin: auto;
}

#wuunderIframe {
  width: 100%;
  height: 100%;
  border: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}