.e-content-tooltip{
    display: none;
}

/* 
tippy-box
tippy-content
tippy-arrow 
*/

/* STYLE Light */
.tippy-box[data-theme~=light]{color:#26323d;
    box-shadow:0 0 20px 4px rgba(154,161,177,.15),0 4px 80px -8px rgba(36,40,47,.25),0 4px 4px -2px rgba(91,94,105,.15);
    background-color:#fff
}
.tippy-box[data-theme~=light][data-placement^=top] > .tippy-arrow:before{
    border-top-color:#fff
}
.tippy-box[data-theme~=light][data-placement^=bottom] > .tippy-arrow:before{
    border-bottom-color:#fff
}
.tippy-box[data-theme~=light][data-placement^=left] > .tippy-arrow:before{
    border-left-color:#fff
}
.tippy-box[data-theme~=light][data-placement^=right] > .tippy-arrow:before{
    border-right-color:#fff
}
.tippy-box[data-theme~=light] > .tippy-backdrop{
    background-color:#fff
}
.tippy-box[data-theme~=light] > .tippy-svg-arrow{
    fill:#fff
}

/* scale */
.tippy-box[data-animation="scale"][data-placement^="top"] {
    transform-origin: bottom;
}
.tippy-box[data-animation="scale"][data-placement^="bottom"] {
    transform-origin: top;
}
.tippy-box[data-animation="scale"][data-placement^="left"] {
    transform-origin: right;
}
.tippy-box[data-animation="scale"][data-placement^="right"] {
    transform-origin: left;
}
.tippy-box[data-animation="scale"][data-state="hidden"] {
    transform: scale(0.5);
    opacity: 0;
}

/* shift-toward */
.tippy-box[data-animation="shift-toward"][data-state="hidden"] {
    opacity: 0;
}
.tippy-box[data-animation="shift-toward"][data-state="hidden"][data-placement^="top"] {
    transform: translateY(-10px);
}
.tippy-box[data-animation="shift-toward"][data-state="hidden"][data-placement^="bottom"] {
    transform: translateY(10px);
}
.tippy-box[data-animation="shift-toward"][data-state="hidden"][data-placement^="left"] {
    transform: translateX(-10px);
}
.tippy-box[data-animation="shift-toward"][data-state="hidden"][data-placement^="right"] {
    transform: translateX(10px);
}

/* shift-away */
.tippy-box[data-animation="shift-away"][data-state="hidden"] {
    opacity: 0;
}
.tippy-box[data-animation="shift-away"][data-state="hidden"][data-placement^="top"] {
    transform: translateY(10px);
}
.tippy-box[data-animation="shift-away"][data-state="hidden"][data-placement^="bottom"] {
    transform: translateY(-10px);
}
.tippy-box[data-animation="shift-away"][data-state="hidden"][data-placement^="left"] {
    transform: translateX(10px);
}
.tippy-box[data-animation="shift-away"][data-state="hidden"][data-placement^="right"] {
    transform: translateX(-10px);
}
/* perspective */
.tippy-box[data-animation="perspective"][data-placement^="top"] {
    transform-origin: bottom;
}
.tippy-box[data-animation="perspective"][data-placement^="top"][data-state="visible"] {
    transform: perspective(700px);
}
.tippy-box[data-animation="perspective"][data-placement^="top"][data-state="hidden"] {
    transform: perspective(700px) translateY(8px) rotateX(60deg);
}
.tippy-box[data-animation="perspective"][data-placement^="bottom"] {
    transform-origin: top;
}
.tippy-box[data-animation="perspective"][data-placement^="bottom"][data-state="visible"] {
    transform: perspective(700px);
}
.tippy-box[data-animation="perspective"][data-placement^="bottom"][data-state="hidden"] {
    transform: perspective(700px) translateY(-8px) rotateX(-60deg);
}
.tippy-box[data-animation="perspective"][data-placement^="left"] {
    transform-origin: right;
}
.tippy-box[data-animation="perspective"][data-placement^="left"][data-state="visible"] {
    transform: perspective(700px);
}
.tippy-box[data-animation="perspective"][data-placement^="left"][data-state="hidden"] {
    transform: perspective(700px) translateX(8px) rotateY(-60deg);
}
.tippy-box[data-animation="perspective"][data-placement^="right"] {
    transform-origin: left;
}
.tippy-box[data-animation="perspective"][data-placement^="right"][data-state="visible"] {
    transform: perspective(700px);
}
.tippy-box[data-animation="perspective"][data-placement^="right"][data-state="hidden"] {
    transform: perspective(700px) translateX(-8px) rotateY(60deg);
}
.tippy-box[data-animation="perspective"][data-state="hidden"] {
    opacity: 0;
}
