/*! Atomica | https://atomiccherry.com | (c) Atomic Cherry Design */
/** =====================================================
    Tooltip
========================================================= */

#tooltip
{
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,0.7);
    position: absolute;
    z-index: 999999;
    padding: 4px 12px;
    font-size: 13px;
}

  #tooltip::after /* triangle decoration */
  {
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-top: 8px solid rgba(0,0,0,0.7);
      content: '';
      position: absolute;
      left: 50%;
      bottom: -8px;
      margin-left: -8px;
  }

    #tooltip.top::after
    {
        border-top-color: transparent;
        border-bottom: 8px solid #111;
        top: -16px;
        bottom: auto;
    }

    #tooltip.left::after
    {
        left: 8px;
        margin: 0;
    }

    #tooltip.right::after
    {
        right: 8px;
        left: auto;
        margin: 0;
    }
