.styled-select {
  position: relative;
  width: 100%;
  font: inherit;
}
.styled-select > select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none;
}
.styled-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 45px;
  padding: 10px 13px;
  border: 1px solid #d7e1ee;
  border-radius: 10px;
  background: #fff;
  color: #1c2942;
  font: inherit;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}
.styled-select-trigger:hover,
.styled-select.open .styled-select-trigger {
  border-color: #6f9df2;
  box-shadow: 0 0 0 3px #2969e817;
}
.styled-select-trigger i {
  width: 8px;
  height: 8px;
  border-right: 2px solid #60708b;
  border-bottom: 2px solid #60708b;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s;
}
.styled-select.open .styled-select-trigger i {
  transform: rotate(225deg) translate(-2px, -2px);
}
.styled-select-menu {
  position: absolute;
  z-index: 220;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  display: grid;
  max-height: 260px;
  padding: 6px;
  overflow: auto;
  border: 1px solid #d9e3f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 48px #061a3d24;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px) scale(0.985);
  transform-origin: top;
  transition:
    opacity 0.2s,
    visibility 0.2s,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.styled-select.open .styled-select-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.styled-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 11px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #34425c;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}
.styled-select-option:hover {
  background: #edf3ff;
  color: #164cae;
}
.styled-select-option[aria-selected="true"] {
  background: #e7efff;
  color: #164cae;
}
.styled-select-option b {
  color: #2969e8;
}
.library-toolbar .styled-select {
  min-width: 150px;
}
.library-toolbar .styled-select-trigger {
  min-height: 43px;
}
