.dropdown.rte-style {
  margin: 10px;
  white-space: nowrap;
  overflow: visible;
  position: relative;
  transition: border-radius 1s ease, border-bottom 1s ease;
}

.dropdown.rte-style > button,
.dropdown.rte-style > button.dropdown-toggle {
  background: transparent;
  border: 2px solid #00CEFF;
  border-radius: 40px;
  font-family: NunitoSansBlack !important;
  width: 100%;
  text-align: left;
  padding: 10px;
  height: 40px;
  display: flex;
  align-items: center;
}

.dropdown.rte-style .dropdown-menu {
  display: none;
  background: #10181D;
  border-top: none;
  border-left: 2px solid #00CEFF;
  border-right: 2px solid #00CEFF;
  border-bottom: 2px solid #00CEFF;
  margin-top: 0;
  width: 100%;
  min-width: 100%;
  overflow: auto;
  position: absolute;
  top: 100% !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 10;
  border-radius: 0 0 15px 15px;
  transition: all 0.3s ease;
  transform: none !important;
}

.dropdown.rte-style.show .dropdown-menu {
  display: block;
  max-height: 290px;
}

.dropdown.rte-style.show .dropdown-toggle {
  border-bottom: none;
  border-radius: 15px 15px 0 0;
}

.dropdown.rte-style .dropdown-item {
  color: white;
  background: transparent;
  padding: 10px;
  white-space: nowrap;
}

.dropdown.rte-style .dropdown-item:hover {
  background: #0C3949;
  cursor: pointer;
}

.dropdown.rte-style .dropdown-item.selected, .dropdown.rte-style .dropdown-item.selected:hover {
  background: white;
  color: black !important;
}

.dropdown.rte-style .dropdown-item.selected::after {
  content: '✔';
  color: black;
  float: right;
}

.selected-count, .selected-marker {
  min-width: 30px;
  margin-bottom: 1px;
  text-align: center;
}
