.ui-tooltip, .arrow:after {
    background: var(--containers-background-shadowed);
    border: none;
    box-shadow:none;
}
.ui-tooltip {
    position: absolute!important;
    padding: 10px 15px;
    font-size: small;
    color: var(--text-color);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border: none!important;
    z-index: 1000!important;
}
.arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
}
.arrow.top {
    top: -16px;
    bottom: auto;

}
.arrow.left {
    left: 20%;
}
.arrow:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 25px;
    height: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.arrow.top:after {
    bottom: -20px;
    top: auto;
}

.ui-helper-hidden-accessible {
    display: none;
}