@charset "ISO-8859-1";
/* Eine Welt Laden Weisswasser Stylesheet TOOLTIPPS eineweltladen.info 2022-06-03*/
/* Sites: Index, News Shop*/

a[data-tooltip] {position: relative;}
a[data-tooltip]::before, a[data-tooltip]::after {position: absolute; display: none; opacity: 0.85;}
a[data-tooltip]::before {content: attr(data-tooltip); background: #000000; color: #ffffff; font-size: 15px; line-height: 1.6; border-radius: 9px; padding: 8px; z-index: 5999; min-width: 320px;
  /* if you don't want the text to wrap, then set to white-space nowrap */
  white-space: normal; text-decoration: none;}

@media only screen and (max-width:48em) {
	a[data-tooltip]::before {min-width: 200px;}}
@media only screen and (max-width:96em) {
	a[data-tooltip]::before {min-width: 300px;}}

a[data-tooltip]::after {width: 0; height: 0; border: 6px solid transparent; content: '';}

a[data-tooltip]:hover::before, a[data-tooltip]:hover::after {display: block;}

/* top tooltipp */
a[data-tooltip][data-placement="top"]::before {bottom: 100%; left: 0; margin-bottom: 10px;}
a[data-tooltip][data-placement="top"]::after {border-top-color: #000000; border-bottom: none; bottom: 100%; left: 30px; margin-bottom: 4px;}

/* bottom tooltipp */
a[data-tooltip][data-placement="bottom"]::before {top: 100%; left: 0; margin-top: 10px;}
a[data-tooltip][data-placement="bottom"]::after {border-bottom-color: #000000; border-top: none; top: 100%; left: 30px; margin-top: 4px;}

/* left tooltipp */
a[data-tooltip][data-placement="left"]::before {top: -25%; right: 100%; margin-right: 10px;}
a[data-tooltip][data-placement="left"]::after {border-left-color: #000000; border-right: none; top: 50%; right: 100%; margin-top: -6px; margin-right: 4px;}

/* right tooltipp */
a[data-tooltip][data-placement="right"]::before {top: -25%; left: 100%; margin-left: 10px;}
a[data-tooltip][data-placement="right"]::after {border-right-color: #000000; border-left: none; top: 50%; left: 100%; margin-top: -6px; margin-left: 4px;}