/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 09 2024 | 20:51:08 */
.cya_table {
  border-width: 5px;
  /* table-layout: fixed; Remove this line to allow dynamic cell widths */
  width: 100%; /* Full width of its container */
  /* height: 100%; Remove this line to allow dynamic table height */
}

.wp-block-table {
  overflow-x: visible; /* Allow the tooltip to appear outside the table */
}

.tooltip {
	position: relative;
  	display: inline-block;
/*   	border-bottom: 1px dotted white; /* If you want a dotted underline */ */
  	cursor: help;
	margin-left:3px;
	font-size:10px;
	bottom: 2px;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  
  /* Position the tooltip text - change these values to suit your needs */
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%; /* Center horizontally with the tooltip trigger */
  transform: translateX(1%) translateY(-60%); /* Center the tooltip */

  /* Fade in tooltip - optional */
  opacity: 0;
  transition: opacity 0.3s;
  font-size: small;
}

.tooltip_price .tooltiptext_price {
  top: -250%;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltip2 .tooltiptext2{
	width: 150px;
}

.tooltip2{
	bottom: 3px;
}