pn-button-dropdown .pn-button-dropdown > pn-button > .pn-button {
  min-height: initial;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
@media screen and (max-width: 767px) {
  .sr-only-mobile {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
}

pn-choice-button {
  user-select: none;
  border: none;
  display: inline-block;
  background: #fff;
  position: relative;
  margin: 0.2em 0.4em;
}
pn-choice-button input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  margin: 0;
  width: 100%;
  height: 100%;
}
pn-choice-button label {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border: 0.1rem solid #d3cecb;
  color: #005d92;
  font-weight: 500;
  border-radius: 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.1s, background 0.2s;
}
pn-choice-button label pn-illustration {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  margin-right: 0.9rem;
}

pn-choice-button > input:checked + label.pn-choice-button {
  background: #e0f8ff;
  color: #005d92;
  border-color: #005d92;
  box-shadow: 0px 0.6px 1.8px rgba(0, 0, 0, 0.1), 0px 3.2px 7.2px rgba(0, 0, 0, 0.13);
}
pn-choice-button > input:indeterminate + label.pn-choice-button {
  background: #ffffff;
  color: #005d92;
}
pn-choice-button > input:hover + label.pn-choice-button {
  background: #e0f8ff;
}
pn-choice-button > input:focus + label.pn-choice-button, pn-choice-button > input:active + label.pn-choice-button {
  box-shadow: 0 0 0 0.2rem #fff, 0 0 0 0.4rem #005d92;
}
pn-choice-button > input:active + label.pn-choice-button {
  background: #8eddf9;
}
pn-choice-button > input:disabled + label.pn-choice-button {
  background-color: #d3cecb;
}
pn-choice-button > input:checked + label.pn-choice-button:hover {
  background: #8eddf9;
}
pn-choice-button > input:checked + label.pn-choice-button:active {
  background: #8eddf9;
  border: 0.1rem solid #00a0d6;
}