.color {
  width: 30px;
  cursor: pointer;
}

.color > input {
  cursor: pointer;
}

.color-container {
  display: flex;
  align-items: center;
  gap: 2px;
}

.color-transparent {
  font-size: 20px;
  color: red;
  cursor: pointer;
}

.transparent {
  opacity: 5%;
}

.mat-spinner-container {
  display: inline-block;
  width: 25px;
  height: 25px;
}

.mat-spinner-svg {
  animation: rotate 2s linear infinite;
  width: 100%;
  height: 100%;
}

.mat-spinner-path {
  stroke: white;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.generation-alert {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}