.dovido-btn {
  min-width: 225px;
  position: relative;
  cursor: pointer;
  color: var(--do-black);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: fit-content;
  height: 60px;
  padding: 1rem 1.5rem;
  transition: 0.3s;
  z-index: 0;
}

.dovido-btn > .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dovido-btn::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--do-white);
  left: 0;
  top: 0;
  border-radius: 100px;
  transition: 0.3s ease;
  border: 2px solid var(--do-white);
}

.dovido-btn::before {
  content: "";
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  filter: blur(8px);
  animation: glowing 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 100px;
  opacity: 0;
}

.dovido-btn:hover {
  color: var(--do-white);
}

.dovido-btn:hover > .icon > svg > path {
  fill: var(--do-white);
}

.dovido-btn:hover::before {
  opacity: 0.9;
}

.dovido-btn:hover::after {
  background: rgba(255, 255, 255, 0.5);
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@media (max-width: 992px) {
  .dovido-btn {
    height: 50px;
  }
}
