/******************* 
* WPForms ToolTips *
*******************/

#wpforms-wrapper .wpforms-field-description>span.tooltiptext {
  visibility: hidden;
  width: 300px;
  max-width: 70vw;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 99999;
  right: 33px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 16px;
}

#wpforms-wrapper .wpforms-field-description:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

#wpforms-wrapper .tooltipbox label {
  padding-right: 33px;
}

#wpforms-wrapper .tooltipbox {
  position: relative;
  overflow: visible;
}

#wpforms-wrapper .tooltipbox .wpforms-field-description {
  position: absolute;
  display: inline-block;
  right: 5px;
  font-size: 20px;
  top: 8px;
}