div.blog-author {
  min-height: 32px;
  line-height: 32px;
  font-size: 12px;
  width: 100%;
  margin: 0px 0px 10px 0px;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
/*div.blog-author:hover {
  color: #0096dc;
}*/
div.blog-author > div {
  width: 50%;
  display: table;
  vertical-align: middle;
}

div.blog-author > div > a,
div.blog-author > div > a:active,
div.blog-author > div > a:visited {
  color:#000 !important;
}
div.blog-author > div > a:hover {
  color:#0096dc !important;
}

div.blog-author > div > a > div {
  display: table-cell;
  vertical-align: middle;
}

div.blog-author > div > a > div:nth-child(1) {
  width:37px;
}

div.blog-author > div > a > div:nth-child(1) > img {
  width:32px;
  height:32px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 0 5px 0 0;
}
div.blog-author > div > a > div:nth-child(2) {
  font-size:12px;
  line-height: 1.2; /*32*/
  /*width:32px;*/
}

div.blog-author > div > a > div:nth-child(3) { /*div.tooltiptext*/
  visibility: hidden;
  width: 85%;
  max-width: 320px;
  height: auto;
  background-color: #fff; /*#0096dc;*/
  color: #000;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  position: absolute;
  z-index: 2;
  top: 35px;
  left: 25px;
  padding: 20px;
  text-align: left;
  line-height: 1.8;
  font-size: 14px;
  font-weight: 500;
  -webkit-box-shadow: 3px 3px 9px 0px rgba(0,0,0,0.75); 
  box-shadow: 3px 3px 9px 0px rgba(0,0,0,0.75);
  border: 1px solid rgba(0,0,0,0.5);
}
div.blog-author > div > a > div:nth-child(3) > p {
  border: none;
  margin: 0px;
  padding: 0px;
}
div.blog-author > div > a > div:nth-child(3)::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 1px);  /* At the top of the tooltip */
  left: 22px;
  border: 10px solid transparent;
  border-bottom-color: rgba(0,0,0,0.5);
}
div.blog-author > div > a > div:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 32px;
  margin-left: -10px;
  border-width: 10px;
  border: 10px solid transparent;
  border-bottom-color: white;
}
div.blog-author > div:hover > a > div:nth-child(3) {
  visibility: visible;
}