.wc-uploaded-item{margin-bottom:6px;}
.wc-uploaded-name{margin-right:8px;}
.wc-remove-uploaded{background:#fff;border:1px solid #ddd;padding:4px 8px;cursor:pointer;}

.UFIloader-container {
  display: flex;
  align-items:center;
  gap: 100px;
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.UFIdots {
  display: flex;
  gap: 6px;
  position: relative;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.UFIdots::before {
    content: '';
    position: absolute;
    display: block;
    inset: 0px;
    background: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 100%;
}

.UFIdots span {
  width: 8px;
  height: 8px;
  background: #013220;
  border-radius: 50%;
  animation: dots 0.6s ease-in-out infinite alternate;
}

.UFIdots span:nth-child(2) {
  animation-delay: 0.2s;
}

.UFIdots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 1; }
}

@keyframes dots {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}
