/*  -----------------------------------------------------------------------------------------------
     kiss-tooltips.css
     Stylesheet file for rendering element tooltips
     created by:       KISS Software Germany 
     License   :       GNU public license
     Author    :       Heiner Klostermann (DocChicago)
     For       :       Joomla 4.x
     Created   :       2021-11-01   Updated: 2021-12-06
    -----------------------------------------------------------------------------------------------*/    	

  .ui-tooltip, .kiss-arrow:after {
    background: blanchedalmond !important;
    border: 1px solid blue !important;
  }
  .ui-tooltip {
    padding: 10px 20px !important;
    color: black !important;
    border-radius: 5px !important;
    font: 14px "Helvetica Neue", Sans-Serif !important;
    box-shadow: 0 0 7px darkgray !important;
  }
  
  .kiss-arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
  }
  .kiss-arrow.top {
    top: -16px;
    bottom: auto;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .kiss-arrow.left {
    left: 20%;
  }
  .kiss-arrow:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 25px;
    height: 25px;
    box-shadow: 6px 5px 9px -9px darkgray;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .arrow.top:after {
    bottom: -20px;
    top: auto;
  }

