.kebab-menu-container {
	position: relative;
	display: inline-block;
}

.kebab-button {
	background: transparent;
	border: none;
  box-shadow: none;
	height: 28px;
	width: 28px;
	border-radius: 6px !important;
}

#feedbackFlowContainer .kebab-button:hover, .kebab-button:focus
{
	background-color: rgba(242, 239, 247, 1);
}

#feedbackFlowContainer .kebab-button:active
{
	background-color: rgba(229, 223, 240, 1);
}
.kebab-menu {
	background: rgba(255, 255, 255, 1);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 7px !important;
	box-shadow: 0px 0.5px 5px 0px rgba(0, 0, 0, 0.12);
	padding: 4px 0;
	min-width: 120px;
}

.kebab-menu-item {
	padding: 8px 16px;
	cursor: pointer;
	white-space: nowrap;
	font-weight: 400;
	font-size: 14px;
	color: rgba(0, 0, 0, 1);
}

.kebab-menu-item:hover {
	background-color: rgba(236, 236, 236, 1);
}

.kebab-menu-item.disabled{
	opacity: 0.6;
	user-select: none;
	cursor: default;
}

.kebab-menu-arrow {
	position: absolute;
	top: -6px;
	height: 10px;
	width: 10px;
	background: white;
	transform: rotate(45deg);
	box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.04);
	z-index: -1;
	border-top: 0.4px solid rgba(208, 208, 208, 1);
	border-left: 0.4px solid rgba(208, 208, 208, 1);
}

.kebab-button .tooltip {
  visibility: hidden;
  opacity: 0;
  background-color: #333;
  color: #fff;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  overflow: visible !important;
  transition: opacity 0.2s ease;
  min-width: 120px;
  word-wrap: break-word;
  text-wrap: auto;
  z-index: 11;
  text-align: center;
}

.kebab-button:hover .tooltip,
.kebab-button:focus .tooltip {
  visibility: visible;
  opacity: 1;
}

.kebab-button .tooltip::before {
  content: "";
  position: absolute;
  bottom: -18px; /* stick below the tooltip box */
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  width: 0;
  height: 0;
}

@media (max-width: 480px) {

  .kebab-button .tooltip {
    padding: 4px 8px;
  }
}
