.menu {
  min-width: 160px;
  padding-top: 12px;
  padding-bottom: 5px;
  border-radius: 3px;
  background: #282828;
}

.menu__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  margin-bottom: 7px;
  cursor: pointer;
}

.menu__option__title {
  font-size: 12px;
  font-weight: 600;
  color: white;
  cursor: pointer;
}

.menu__option__title--disabled {
  color: lightgray;
}

.menu__option:hover .menu__option__title {
  color: lightgray;
}

.menu__option__icon {
  width: 11px;
  height: 10px;
  fill: white;
}

.menu__separator {
  padding-top: 5px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu__title {
  font-size: 12px;
  font-weight: 600;
  padding: 0 12px;
  margin-bottom: 7px;
  color: white;
  opacity: 0.5;
}

