﻿#textSelectionTooltipContainer {
    will-change: transform;
    position: absolute;
    background: #f9b13a;
    top: 0px;
    left: 0px;
    display: flex;
    padding: 5px 10px;
    box-sizing: border-box;
    justify-content: center;
    color: #890006;
    border-radius: 5px;
    z-index: 100000;
}
    #textSelectionTooltipContainer button {
        cursor: pointer;
        border: none;
        background-color: #f9b13a;
    }
    #textSelectionTooltipContainer:after {
        content: '';
        display: inline-block;
        position: absolute;
        width: 10px;
        height: 10px;
        left: 50%;
        margin-left: -5px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        bottom: -5px;
        background-color: #f9b13a;
    }
