/*
 * agGrid css written by gagamel.
 *
 * Copyright (c) 2019 gagamel
 *
 * $Date: 2019-04-04 $
 *
 */

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Tooltip */
.custom-tooltip {
    position: absolute;
    width: 150px;
    height: 70px;
    border: 1px solid cornflowerblue;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 1s;
}

.custom-tooltip.ag-tooltip-hiding {
    opacity: 0;
}

.custom-tooltip p {
    margin: 5px;
    white-space: nowrap;
}

.custom-tooltip p:first-of-type {
    font-weight: bold;
}
