@charset "utf-8";
/* CSS Document */


.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  
  width:40px;
  height:40px;
  float:left;
  margin-left:15px;
  margin-top:10px;
  
  padding-right:5px;
  font-size:16px;
  font-weight:bold;
  color:green;
  border-radius: 15px;
  cursor:pointer;
  box-shadow: 10px 10px 5px #666;
  background: repeating-linear-gradient(white, blue);
  
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  border-color: black transparent transparent transparent;
  
  
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -60px;  
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}



.tdDownload {
  height:60px;
  border-radius: 15px;
  cursor:pointer;
  box-shadow: 10px 10px 5px #666;
  
}

.returnBotton {
  height:30px;
  width: 100px;
  color:#600;
  border-radius: 15px;
  cursor:pointer;
  box-shadow: 10px 10px 5px #666;
  
}
