.sp-msd {
  position: relative;
  font: inherit;
}
.gform-theme--framework.gform-theme.gform_wrapper
  :where(:not(.mce-splitbtn))
  > button.sp-msd__button:not([id*="mceu_"]):not(.mce-open):where(
    :not(.gform-theme-no-framework)
  ):where(
    :not(.gform-theme__disable):not(.gform-theme__disable *):not(
        .gform-theme__disable-framework
      ):not(.gform-theme__disable-framework *)
  ) {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  width: 100%;
  min-height: 40px;
  text-align: left;
  border: 1px solid rgb(104, 110, 119);
  border-radius: 4px;
  padding: 6px 32px 6px 10px;
  background: #fff;
  cursor: pointer;
}
.sp-msd__chevron {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.sp-msd__chips {
  display: none;
  gap: 8px 10px;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
}
.sp-msd__chips:has(.sp-msd__chip) {
    display: flex;
}
.sp-msd__chip {  
  padding: 8px calc((12px * 1.25));
  border-radius: 33px;
  color: #fff;
  background: #204ce5;
}
.sp-msd__count {
  margin-left: 4px;
  color: var(--e-a-btn-color, #0c0d0e);
  opacity: 0.8;
}
.sp-msd__placeholder {
  color: #7a7a7a;
}

.sp-msd__panel {
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: none;
  max-height: 280px;
  overflow: auto;
}
.sp-msd__panel.is-open,
.sp-msd.is-open .sp-msd__panel {
  display: block;
}
.sp-msd__search {
  padding: 8px;
  border-bottom: 1px solid #eee;
}
.sp-msd__search-input {
  width: 100%;
  padding: 6px 8px;
}
.sp-msd__selectall {
  padding: 8px;
  border-bottom: 1px solid #eee;
}
.sp-msd__list {
  list-style: none;
  margin: 0;
  padding: 6px 8px;
}
.sp-msd__item {
  padding: 6px 2px;
}
.sp-msd__item[aria-selected="true"] {
  background: #f7fbff;
}
.sp-msd__label {
  margin-left: 6px;
}
.sp-msd__note {
  padding: 6px 8px;
  font-size: 12px;
  color: #8a6d3b;
}

.sp-msd__hidden {
  display: none;
}
