  .hover-box {
    position: relative;
    display: inline-block;
    font-size: 30px;
	font-weight: bold;
    color: #000;
    cursor: pointer;
	position: fixed;
	transform: translate(5px, -11px);
  }
  
.hover-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f9f9f9;
    padding: 1px;
    border: 1px solid #ccc;
    width: 159px;
	text-align: center;
  }
.hover-box:hover .hover-content {
    display: block;
  }