body, html {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFF;
  color: #000;
  /* font-family: 'GT Standard Beta v2'; */
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
}
/* @media (prefers-color-scheme: dark) {
  body, html {
    background: #000;
    color: #FFF;
  }
} */

#card {
  width: 100%;
  height: 100%;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
#card-pan-container, #card-exp-container, #card-cvv-container {
  height: 50%;
  color: rgba(0, 0, 0, 0.25);
  display: flex;
  gap: 0.25em;
  align-items: flex-start;
}
#card-pan-container {
  width: 100%;
}
#card-exp-container, #card-cvv-container {
  width: 50%;
}

.card-value {
  height: 1.5em;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.card-value-container {
  flex-grow: 1;
  overflow: hidden;
}

.copy-btn {
  position: relative;
  display: block;
  width: 1.5em !important;
  height: 1.5em !important;
  background-image: url('../images/copy-icon.svg');
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  overflow: hidden;
  flex-shrink: 0;
  user-select: none;
}

.copy-btn-container {
  flex-shrink: 0;
}

.card-property-name {
  color: rgba(0, 0, 0, 0.25);
  font-size: 0.5em;
  font-weight: 500;
  pointer-events: none;
  user-select: none;
}
/* @media (prefers-color-scheme: dark) {
  .card-property-name {
    color: rgba(255, 255, 255, 0.25);
  }
} */

iframe {
  max-height: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}



/* Loading Indicator */
.loading-indicator-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
  z-index: 9999999;
}
.loading-indicator-container.hidden {
  opacity: 0;
  pointer-events: none;
}
.loading-indicator {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading-indicator div {
  position: absolute;
  width: 20%;
  height: 20%;
  border-radius: 50%;
  background: #000;
  animation: loading-indicator 1.2s linear infinite;
}
.loading-indicator div:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.loading-indicator div:nth-child(2) {
  top: 10%;
  left: 40%;
  animation-delay: -0.4s;
}
.loading-indicator div:nth-child(3) {
  top: 10%;
  left: 70%;
  animation-delay: -0.8s;
}
.loading-indicator div:nth-child(4) {
  top: 40%;
  left: 10%;
  animation-delay: -0.4s;
}
.loading-indicator div:nth-child(5) {
  top: 40%;
  left: 40%;
  animation-delay: -0.8s;
}
.loading-indicator div:nth-child(6) {
  top: 40%;
  left: 70%;
  animation-delay: -1.2s;
}
.loading-indicator div:nth-child(7) {
  top: 70%;
  left: 10%;
  animation-delay: -0.8s;
}
.loading-indicator div:nth-child(8) {
  top: 70%;
  left: 40%;
  animation-delay: -1.2s;
}
.loading-indicator div:nth-child(9) {
  top: 70%;
  left: 70%;
  animation-delay: -1.6s;
}
@keyframes loading-indicator {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading-indicator-text {
  font-size: 0.75em;
  font-weight: 500;
  margin-top: 1em;
}
