.communitycontextmenu .hLine {
  width: 85%;
  height: 0.3px;
  margin: 10px auto;
  opacity: 0.35;
  background-color: #707070;
}

.communitycontextmenu {
  position: relative;
  display: flex;
  flex-direction: column;
  width: max-content;
  left: 35px;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  background-color: white;
  padding: 10px 0;
  justify-content: space-around;
  transform: scale(1);
  transition: transform 45ms linear 0ms;
  /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.communitycontextmenu.hide {
  transform: scale(0);
  transition: transform 45ms linear 0ms;
}


.communitycontextmenu .actionLabel {
  font-family: 'Metropolis Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 1.21;
  letter-spacing: 2.16px;
  text-align: left;
  color: #333333;
  padding: 5px 10px;
  margin: 0 10px;
  border-radius: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.communitycontextmenu .actionLabel:hover {
  background-color: #F0F0F0;
}