/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.0
 Text Domain:  bricks
*/

.underscore-rounded:before {
  content:'';
  position: absolute;
  width:100px;
  height:5px;
  background-color:#41aba2;
  border-radius:7px;
  bottom:-12px;
  left:50%;
  z-index:0;
  transform: translateX(-50%)
}


.underscore-rounded{
  position:relative;
}



/*  TOOLTIP */



[data-tooltip] {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

[data-tooltip]::after {
  min-width:50px;
width:100%;
  content: attr(data-tooltip); /* Usa o texto do atributo */
  position: absolute;
  background-color: #000000f2;
  color: white;
  padding: 0.7em 1.2em;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight:400;
  white-space: normal;
  left: 50%;
transform: translateX(-50%) translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 99999;
	text-align:center
}

[data-tooltip]:hover::after {
  opacity: 1!important;
  visibility: visible!important;
}


.tooltip-top[data-tooltip]::after {
  top: -20%!important;
  
}

.tooltip-bottom[data-tooltip]::after {
  top: -20%
}

.hidden-plus{
	text-transform:uppercase
}