:host {
  display: flex;
}

button {
  padding: 16px;
  background-color: transparent;
  border: none;
}
button:disabled svg {
  fill: #d1d5db;
}
button svg {
  fill: #1f2937;
}

div.steps {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 4px;
  padding-right: 4px;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  vertical-align: center;
  justify-content: center;
}
div.steps p {
  margin: 0;
  padding-bottom: 8px;
  color: #1c1917;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25rem;
  text-align: center;
}
div.steps__dots {
  display: flex;
  justify-content: center;
}
div.steps__dots span {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  float: left;
  background-color: #d1d5db;
  border-radius: 50%;
}
div.steps__dots span.active {
  background-color: #1f2937;
}
div.steps__dots span:last-child {
  margin-right: 0px;
}