/**
 * Theme Name: Exito Child
 * Theme URI: http://reytheme.com/
 * Description: This is a child theme of Rey.
 * Author: Marius H.
 * Author URI:  https://twitter.com/mariushoria
 * Template: rey
 * Version: 1.0.0
 * License: General Public License
 * License URI: http://www.gnu.org/licenses/gpl.html
 * Text Domain: rey-child
 */

/* Tooltip за целия сайт */
.tooltip {
    position: relative;
    cursor: help;
    border-bottom: 1px dashed #000; /* подчертана дума */
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: #E95420;
  color: #fff;
  font-size: 12px;
  text-align: left;
  border-radius: 6px;
  padding: 8px 10px;
  position: absolute;
  z-index: 999;
  bottom: 125%;
  left: 50%;
  margin-left: -110px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
