.vcookie-isDisabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.vcookie-disable-iframe-click{
	pointer-events: none;
}

.vcookie-isDisabled a[aria-disabled="true"] {
  color: currentColor;
  display: inline-block;  /* For IE11/ MS Edge bug */
  pointer-events: none;
  text-decoration: none;
}


/*tooltip label*/
.vcookie-tooltip {
  position: relative;
  display: inline-block;
  z-index: 10;
  /* border-bottom: 1px dotted black; */ /* If you want dots under the hoverable text */
}

/* Tooltip text */
.vcookie-tooltip .vcookie-tooltiptext {
	
	visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    font-size: 11px;
    opacity: 0.9;
    top: 20%;
    left: 20%;
}

/* Show the tooltip text when you mouse over the tooltip container */
.vcookie-tooltip:hover .vcookie-tooltiptext {
  visibility: visible;
}