/* CSS for resource details */

.resTool {
  display: inline-block;
  padding-left: 10px;  
}

.resTool:last-child {
  padding-right: 20px;
}

.toShare {
  position: relative;
}

.share {
  overflow: hidden;
  position: absolute;
  right: 20px;
  bottom: 0px;
  height: 0px;
  transition: all 0.2s;
  z-index: 100;
}

.share.show {
  padding: 2px 5px 2px 3px;
  height: 160px;
  border: 1px solid #069bc4;
  background: #fff;
}

.share a {
  display: block;
  text-align: center;
  color: #069bc4;
  padding: 3px 0px;
}

.share a:hover {
  text-decoration: none;
  cursor: pointer;
}
