/* From Uiverse.io by cssbuttons-io */ 
.detail-btn {
  --color: #560bad;
  font-family: inherit;
  display: inline-block;
  width: 8em;
  height: 2.6em;
  line-height: 2.5em;
  text-align: center;
  text-decoration: none;
  margin: 20px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid var(--color);
  transition: color 0.5s;
  z-index: 1;
  font-size: 17px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--color);
}

.detail-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--color);
  height: 150px;
  width: 200px;
  border-radius: 50%;
}

.detail-btn:hover {
  color: #fff;
}

.detail-btn:before {
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}

.detail-btn:hover:before {
  top: -30px;
  left: -30px;
}

.detail-btn:active:before {
  background: #3a0ca3;
  transition: background 0s;
}
