.rich-select {
  position: relative;
  display: block;
  outline: none;
  width: 100%;
  color: #07253D;
  font-size: 14px;
  line-height: 16px;
}
.rich-select .rich-select-toggler {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  color: inherit;
  display: inline;
  width: 100%;
  text-align: start;
  box-sizing: border-box;
  border: 1px solid #F7F7F7;
  border-radius: 4px;
  background-color: #FFFFFF;
  padding: 8px 35px 8px 14px;
  cursor: default;
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rich-select .rich-select-toggler:hover,
.rich-select .rich-select-toggler:focus {
  border-color: #F7F7F7;
}
.rich-select .rich-select-toggler:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%2307253D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}
.rich-select .rich-select-toggler .rich-select-placeholder {
  color: #CCCFCF;
}
.rich-select .rich-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10000;
  display: none;
  box-sizing: border-box;
  border: 1px solid #F7F7F7;
  border-radius: 4px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.12);
  background-color: #FFFFFF;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 400px;
}
.rich-select.active .rich-select-menu {
  display: flex;
}
.rich-select .rich-select-menu.top {
  top: auto;
  bottom: 100%;
  margin-bottom: 5px;
  flex-direction: column-reverse;
}
.rich-select .rich-select-menu.bottom {
  top: 100%;
  bottom: auto;
  margin-top: 5px;
  flex-direction: column;
}
.rich-select .rich-select-menu .rich-select-search {
  font: inherit;
  border: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 8px 14px;
  width: 100%;
  box-sizing: border-box;
}
.rich-select .rich-select-menu .rich-select-search::-webkit-input-placeholder {
  color: #CCCFCF;
}
.rich-select .rich-select-menu .rich-select-search:-ms-input-placeholder {
  color: #CCCFCF;
}
.rich-select .rich-select-menu .rich-select-search::placeholder {
  color: #CCCFCF;
}
.rich-select .rich-select-menu .rich-select-list .rich-select-option {
  font: inherit;
  position: relative;
  text-align: start;
  padding: 8px 35px 8px 14px;
  color: #07253D;
  cursor: default;
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.rich-select .rich-select-menu.top .rich-select-list .rich-select-option {
  border-bottom: 1px solid #F7F7F7;
}
.rich-select .rich-select-menu.bottom .rich-select-list .rich-select-option {
  border-top: 1px solid #F7F7F7;
}
.rich-select .rich-select-menu .rich-select-list .rich-select-option[data-disabled="true"] {
  color: #CCCFCF;
  background-color: #F7F7F7;
}
.rich-select .rich-select-menu .rich-select-list .rich-select-option[data-disabled="false"]:hover,
.rich-select .rich-select-menu .rich-select-list .rich-select-option[data-disabled="false"].hover {
  color: #FFFFFF;
  background-color: #2989D8;
}
.rich-select .rich-select-menu .rich-select-list .rich-select-option[data-selected="true"]:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.5 4L5.9375 11.5625L2.5 8.125" stroke="%2307253D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}
.rich-select .rich-select-menu .rich-select-list .rich-select-option[data-selected="true"]:hover:after,
.rich-select .rich-select-menu .rich-select-list .rich-select-option[data-selected="true"].hover:after {
  background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.5 4L5.9375 11.5625L2.5 8.125" stroke="%23FFFFFF" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}