/* Tooltip container */
.acf-tooltip .tooltip { 
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
  padding: 5px 10px;
    margin: -5px -10px;
    width: 100%;
    height: 100%;
}

/* Tooltip text */
 .tooltip .tooltiptext {
  top: 0px;
  visibility: hidden;
  width: auto;
  left: 0px;
  transform: translate(-100%, 0px);
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}
.acf-tooltip a > .tooltip .tooltiptext {
    bottom: -5px;
    left: 0;
    visibility: hidden;
    width: auto;
    background-color: transparent;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.acf-tooltip .tooltip:hover .tooltiptext {
  visibility: visible;
}
.acf-tooltip .tooltiptext img
{
	max-width:500px;
}

.acf-fc-popup ul{
    display: grid!important;
    grid-template-columns: repeat(2, 1fr)!important;
}
.acf-tooltip
{
	max-width: none!important;
}
.acf-fc-popup li, .acf-fc-popup a
{
	position: unset!important;
}