verdocs-toggle {
  font-family: "Inter", "Barlow", sans-serif;
}
verdocs-toggle .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: #f5f5fa;
}
verdocs-toggle .label {
  font-size: 24px;
  font-weight: 700;
  color: #33354c;
  align-self: center;
  margin-right: 27px;
  font-family: sans-serif;
}
verdocs-toggle .buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
verdocs-toggle .buttons button {
  width: 60px;
  height: 60px;
  border: 2px solid #654dcb;
  border-radius: 5px;
  cursor: pointer;
}
verdocs-toggle .buttons button:not(:last-child) {
  margin-right: 11px;
}
verdocs-toggle .buttons svg {
  width: 30px;
  height: 30px;
}
verdocs-toggle .buttons button:hover {
  background-color: #654dcb;
  transition: 0.25s;
}
verdocs-toggle .buttons button:hover svg {
  fill: #f5f5fa;
  transition: 0.25s;
}
verdocs-toggle .selected {
  background-color: #707ae5;
  transition: 0.25s;
}
verdocs-toggle .selected svg {
  fill: #ffffff;
  transition: 0.25s;
}