.button {
  background-color: #5b3580;
  border-radius: 4px;
  border: none;
  color: #ffffff;
  display: block;
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 9px 1rem;
  margin: 0;
  width: 100%;
  cursor: pointer;
  line-height: 1;
  text-align: center;
  display: flex;
  align-items: anchor-center;
  justify-content: center;
  gap: 6px;
}

.button svg {
  fill: #fff;
}

.button--link {
  text-decoration: none;
}

.button--flat {
  background: none;
  color: #5b5b5b;
  border: 1px solid #666666;
  font-weight: 400;
}

.button--link:active,
.button--link:visited,
.button--link:focus {
  color: #ffffff;
}

.button:disabled {
  color: #1d1d1d;
  background-color: transparent;
  border: 1px solid #666666;
  opacity: 0.4;
}

.button:disabled svg {
  fill: #666666;
}
