.clipboard-container {
  position: relative;
  display: block;
}

.clipboard-container.abs {
	position:  absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.clipboard-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.01);
  cursor: pointer;
  display: block;
  z-index: 10;
}

.clipboard-tooltip {
  position: absolute;
  top: 0;
  right: 0;
  font-family: arial;
  font-size: 10px;
  font-weight: bold;
  line-height: 15px;
  color:  black;
  padding: 2px 7px;
  background: white;
  display: none;
}