.po-xp-barra {
    width: 97%;
    height: 8px;
    background: #555;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 0px;
}

.po-xp-barra-preenchida {
    height: 100%;
    background: linear-gradient(90deg, #aa9249, #ffbf00);
    width: 0%;
    transition: width 2.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* ------------------------------------------------------------ */
/* Tooltip puro CSS                                             */
/* ------------------------------------------------------------ */
.tooltip-icon-gold {
    color:#997a00;
  display: inline-block;
    margin-left: 5px;
    bottom: 2px;
  position: relative;
  line-height: 1;
  cursor: help;
  /*margin-left: 1px;*/
  font-size: 10px;
}

.tooltip-icon-gold .tooltip-content-gold {
  visibility: hidden;
  opacity: 0;
  width: 150px;
  background: #554400;
  box-shadow: 0 0 4px 0 #000;
  color: #fff;
  text-align: left;
  padding: 6px;
  border-radius: 6px;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s ease-in-out;
  font-size: 0.8em;
  z-index: 10;
  pointer-events: auto;
}

.tooltip-icon-gold .tooltip-content-gold::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border-width: 6px;
  border-style: solid;
  border-color: rgba(0,0,0,0.8) transparent transparent transparent;
}

.tooltip-icon-gold:hover .tooltip-content-gold,
.tooltip-icon-gold:focus .tooltip-content-gold {
  visibility: visible;
  opacity: 1;
}
