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;
  }
}

.customernumber-container {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-radius: 0.8rem;
  border: 0.1rem solid #969087;
  transition: border 0.15s ease;
}
.customernumber-container:hover, pn-customernumber-selector[open] .customernumber-container {
  border-color: #005d92;
}
pn-customernumber-selector[open] .customernumber-container {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.customernumber-toggle {
  display: flex;
  z-index: 11;
  position: relative;
  margin: 0;
  border-radius: 0.8rem;
  padding: 1rem;
  border: 0;
  background: transparent;
  font-size: 1em;
  text-align: left;
  outline: 0;
  cursor: pointer;
}
.customernumber-toggle pn-icon {
  align-self: center;
}

.customernumber-selected {
  flex-grow: 1;
  max-width: calc(100% - 2.4rem);
  overflow: hidden;
}

.customernumber-selected-title {
  color: #005d92;
}

.customernumber-selected-description {
  font-size: 0.875em;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.customernumber-options {
  position: absolute;
  z-index: 10;
  left: -0.1rem;
  right: -0.1rem;
  top: 100%;
  border: 0.1rem solid #005d92;
  border-bottom-left-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
  max-height: 0;
  opacity: 0;
  transform-origin: top left;
  transition: transform 0.2s cubic-bezier(0.6, 0, 0.4, 1) 0.15s, opacity 0.1s linear, max-height 0.1s ease;
  overflow-y: auto;
}
pn-customernumber-selector[open] .customernumber-options {
  opacity: 1;
  transition-delay: 0s;
  max-height: 500rem;
}