.no-selectable {
  user-select: none;
}

.crop { 
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
  width:100px;
}


.background-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.3);
  height: 100%;
  width: 100%;
  z-index: 11;
}

.inline-element-text{
  font: inherit;
  color: inherit;
  text-align: inherit;
  padding: 0;
  background: none;
  border: none;
  border-bottom: 1px dashed #666666;
  cursor: pointer;
}


@media screen and (max-width: 991px) {

  .background-overlay.active{
    display: block;
  }

}