/* analyze.css: Spinner loader with separate color rings */

.loader {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #DC1FFF ;
  border: 2px solid #DC1FFF ;
  box-sizing: border-box;
  position: relative;
  transform-origin: left;
  animation: l2 1s infinite linear;
  margin: 0 auto;
  margin-top:80px;
}

#wallet-message .loader {
  margin-top: 0px !important;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  margin: auto;
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid;
  box-sizing: content-box;
  transform-origin: 50% calc(100% - 4px);
  animation: inherit;
}

.loader::before {
  border-color: #DC1FFF;
}

.loader::after {
  border-color: #DC1FFF;
  inset: auto 0 calc(100% + 2px);
  animation-duration: 0.5s;
  animation-direction: reverse;
  transform-origin: 50% calc(200% - 2px);
}

@keyframes l2 {
  100% { transform: rotate(1turn); }
}


#commandDropdown > div:hover {
  background-color: #2f2f36; 
  color: white;
  cursor: pointer;
}
