/* Loader styles */
#cdf-loader{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  z-index: 99999;
  flex-direction: column;
}
.cdf-spinner{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 6px solid rgba(255,255,255,0.2);
  border-top-color: #ffffff;
  animation: cdf-spin 1s linear infinite;
  margin-bottom: 12px;
}
@keyframes cdf-spin{ to { transform: rotate(360deg); } }
.cdf-text{ color: #fff; font-size: 16px; font-family: sans-serif; }
