﻿/*-------/ tooltips /-------*/
.tooltip-inner {
    background: var(--white);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    color: var(--text);
    font-size: 0.8125rem;
    font-weight: 500;
}

.tooltip.show {
    opacity: 1;
}

.tooltip.bs-tooltip-right .arrow:before {
    border-right-color: var(--white) !important;
}

.tooltip.bs-tooltip-left .arrow:before {
    border-left-color: var(--white) !important;
}

.tooltip.bs-tooltip-bottom .arrow:before {
    border-bottom-color: var(--white) !important;
}

.tooltip.bs-tooltip-top .arrow:before {
    border-top-color: var(--white) !important;
}
