/* 
Theme Name: nexo profesional
Author: ramiro Neher
Author URI: http://www.ramironeher.com 
Version: 1.0 
*/

/**
 * Importar Google Fonts acá
 */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300&display=swap');

/**
 * Tooltips
 */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
  
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }