table {
  border-collapse: collapse;
  border-spacing: 0; 
  margin-left: auto;
  margin-right: auto;
}


tr {
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  height: 40px;
}

@media (min-width: 768px) {
  tr {
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    height: 80px;
  }
}

.help-tip{
  position: relative;
  text-align: center;
  background-color: #d9d9d9;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 26px;
  cursor: default;
  display: inline-block;
}

@media (max-width: 420px) {
  .help-tip {
    width: 15px;
    height: 15px;
    font-size: 10px;
    line-height: 15px;
  }
}

.help-tip:before{
  content:'?';
  font-weight: bold;
  color:#0A2321;
}

.help-tip:hover p{
  display:block;
  transform-origin: 0% 0%;
  -webkit-animation: fadeIn 0.3s ease-in-out;
  animation: fadeIn 0.3s ease-in-out;
}

.help-tip p{    /* The tooltip */
  display: none;
  text-align: left;
  background-color: #1E2021;
  padding: 20px;
  width: 300px;
  position: absolute;
  border-radius: 3px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  right: -4px;
  color: #FFF;
  font-size: 13px;
  line-height: 1.4;
  z-index: 9999; /* Added z-index to keep the element on top */
}

@media (max-width: 420px) {
  .help-tip p {
    width: 150px;
  }
}

.help-tip p:before{ /* The pointer of the tooltip */
  position: absolute;
  content: '';
  width:0;
  height: 0;
  border:6px solid transparent;
  border-bottom-color:#1E2021;
  right: 10px;
  top:-12px;
  left: auto;
}

.help-tip p:after{ /* Prevents the tooltip from being hidden */
  width:100%;
  height:40px;
  content:'';
  position: absolute;
  top:-40px;
  left:0;
}

/* CSS animation */

@-webkit-keyframes fadeIn {
  0% { 
      opacity:0; 
      transform: scale(0.6);
  }

  100% {
      opacity:100%;
      transform: scale(1);
  }
}

@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:100%; }
}