.ui-selectmenu-button.ui-button {
  background-color: white;
  border-radius: 16px;
  padding: 16px 24px;
  position: relative;
  transition: 0.3s all ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.ui-selectmenu-button.ui-button.ui-selectmenu-button-open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: var(--purple-light);
}

.ui-selectmenu-text {
  color: var(--black);
  font-weight: bold;
}

.ui-selectmenu-icon.ui-icon.ui-icon-triangle-1-s {
  background-image: url(../images/arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0;
}

ul.ui-widget.ui-widget-content {
  scrollbar-width: thin;
  scrollbar-color: var(--plum) var(--blue-black);

  background-color: white;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  max-height: 279px;
  overflow-y: auto;
  padding-bottom: 12px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 1;
  border: none !important;
}


.ui-menu .ui-menu-item {
  list-style: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: none;
  color: inherit;
  font-size: inherit;
  background-color: var(--purple-light);
  margin: 0;
}

.ui-menu-item .ui-state-active::after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../images/select.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.ui-menu .ui-menu-item-wrapper {
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray--light);
}

*/
