.content-picker {
  position: relative;
  z-index: 10;
  height: 0;
  overflow: visible;
}
.content-picker--empty {
  height: auto;
  background: var(--wp--preset--color--light-grey);
  padding: 20px;
  text-align: center;
  font-family: var(--wp--preset--font-family--apotek);
  color: var(--wp--preset--color--inactive-grey);
}
.content-picker__inner {
  position: relative;
  transform: translateY(-50%);
  background: var(--wp--preset--color--light-grey);
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 53px;
  padding: 0 0 0 37px;
  width: fit-content;
  max-width: calc(100% - 40px);
  margin-inline: auto;
}
.content-picker__field-group {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-shrink: 0;
}
.content-picker__label {
  color: var(--wp--preset--color--dark-blue);
  font-family: var(--wp--preset--font-family--apotek-comp);
  font-size: var(--wp--preset--font-size--h-5);
  font-weight: var(--wp--custom--font-weight--bold);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  white-space: nowrap;
  line-height: 1;
  cursor: default;
}
.content-picker__select-wrapper {
  position: relative;
  display: inline-block;
  border-bottom: solid 4px var(--wp--preset--color--teal);
}
.content-picker__select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--wp--preset--color--teal);
  font-family: var(--wp--preset--font-family--apotek-comp);
  font-size: var(--wp--preset--font-size--h-5);
  font-weight: var(--wp--custom--font-weight--bold);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  line-height: 1;
  padding: 0 4px;
  cursor: pointer;
  transition: width 0.3s ease;
  background-image: none;
}
.content-picker__select option {
  color: var(--wp--preset--color--dark-blue);
  background: var(--wp--preset--color--white);
  text-transform: none;
  letter-spacing: normal;
}
.content-picker__select:focus {
  outline: 2px solid var(--wp--preset--color--teal);
  outline-offset: 2px;
}
.content-picker__select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.content-picker__select-wrapper::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--wp--preset--color--teal);
  z-index: 1;
}
.content-picker__go {
  appearance: none;
  background: var(--wp--preset--color--teal);
  color: var(--wp--preset--color--light-blue);
  border: none;
  border-radius: 0 2px 2px 0;
  font-family: var(--wp--preset--font-family--apotek-comp);
  font-size: var(--wp--preset--font-size--h-3);
  font-weight: var(--wp--custom--font-weight--bold);
  text-transform: uppercase;
  line-height: 1;
  padding: 0 20px;
  height: 100%;
  margin-left: auto;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  align-self: stretch;
}
.content-picker__go:hover:not(:disabled) {
  opacity: 0.85;
}
.content-picker__go:focus {
  outline: 2px solid var(--wp--preset--color--dark-blue);
  outline-offset: 2px;
}
.content-picker__go:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
@media (max-width: 875px) {
  .content-picker__inner {
    background: none;
    padding: 0;
    height: auto;
    flex-wrap: wrap;
    gap: 0;
    max-width: calc(100% - 40px);
  }
  .content-picker__field-group {
    background: var(--wp--preset--color--light-grey);
    width: 100%;
    height: auto;
    padding: 12px 16px;
    border-radius: 0;
    box-sizing: border-box;
    flex-wrap: wrap;
  }
  .content-picker__field-group:first-of-type {
    border-radius: 2px 2px 0 0;
  }
  .content-picker__go {
    width: 100%;
    height: 44px;
    border-radius: 0 0 2px 2px;
    padding: 0 16px;
  }
}
@media (max-width: 600px) {
  .content-picker__inner {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  .content-picker__label {
    font-size: var(--wp--preset--font-size--body);
    letter-spacing: 1.8px;
  }
  .content-picker__select {
    font-size: var(--wp--preset--font-size--body);
    letter-spacing: 1.8px;
  }
  .content-picker__go {
    font-size: var(--wp--preset--font-size--h-4);
  }
}

/*# sourceMappingURL=block-style.css.map */
