.tooltip {
/*
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", 
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
*/
    font-size: 1rem;
/*
    word-wrap: break-word;
    opacity: 0;
*/
}

.tooltip.show {
    opacity: 1;
}
  
/*  
.tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}
  
.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}
  
.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
    padding: 0.4rem 0;
}
  
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
    bottom: 0;
}
*/

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
/*
    top: 0;
    border-width: 0.4rem 0.4rem 0;
*/    
    border-top-color: rgba(255, 255, 255, 0.85);
}

/*  
.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
    padding: 0 0.4rem;
}
  
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}
*/

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
/*
    right: 0;
    border-width: 0.4rem 0.4rem 0.4rem 0;
*/
    border-right-color: rgba(255, 255, 255, 0.85);
}

/*  
.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
    padding: 0.4rem 0;
}
  
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
    top: 0;
}
*/

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
/*
    bottom: 0;
    border-width: 0 0.4rem 0.4rem;
*/
    border-bottom-color: rgba(255, 255, 255, 0.85);
}

/*  
.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
    padding: 0 0.4rem;
}
  
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}
*/

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
/*
    left: 0;
    border-width: 0.4rem 0 0.4rem 0.4rem;
*/
    border-left-color: rgba(255, 255, 255, 0.85);
}
  
.tooltip-inner {
/*
    max-width: 200px;
    padding: 0.25rem 0.5rem;
*/
    color: rgb(0, 0, 0);
    text-align: center;
    background-color: rgba(255, 255, 255, 1);
/*
    border-radius: 0.25rem;
*/
}

.myTooltip .tooltip-inner {
    z-index: 1200;
    background-color: rgba(58, 183, 102, 0.7);
    color: white;
    text-align: left;
    padding: 10px;
    border-radius: 4px;
    font-size: 1rem;
    box-shadow: 0 10px 10px rgb(0, 0, 0);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 400px;
}
  