/*Default ===========================================================================================================*/
.tool-TipWrap {
    position: absolute;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out; /* Optional for smooth fade-in */
}

.tool-Tip {
    opacity: 1;
    color: #fff;
    width: 160px;
    overflow: hidden;
    z-index: 80;
    background-color: #ffffff;
    transition-delay: 0s !important;
    padding: 0px 0px 13px;
    font-family: 'AvenirLTStd-Book';
    text-align: center;
    justify-content: center;
    border-radius: 10px;
    border: aliceblue;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 75%);
    flex-wrap: wrap;
    pointer-events: none;
}

.tool-Tip figure{
    width: 160px;
    overflow: hidden;
    margin: 0px auto 10px;
    /* border-bottom-left-radius: 10px; */
    /* border-bottom-right-radius: 10px; */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    pointer-events: none;
}

.tool-Tip h3 {
    position: relative;
    margin: 0px;
    font-size: 12px;
    width: 100%;
    color: #898989;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.tool-Tip h2 {
    position: relative;
    margin: 0px auto 1px;
    font-size: 13px;
    font-family: 'AvenirLTStd-Book';
    width: 85%;
    /* border-bottom: 0.01em solid #ffffff24; */
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000;
    padding-bottom: 5px;
    padding-top: 6px;
    pointer-events: none;
}

.tool-Tip h4 {
    position: relative;
    margin: 0px;
    font-size: 14px;
    letter-spacing: 0.07em;
    pointer-events: none;
}

#plotTip.tool-Tip {
    width: 190px;
    padding: 12px 15px 12px;
    border-radius: 65px;
    border: 5px solid #b18144;
    pointer-events: none;
}

#plotTip.tool-Tip h2 {
    font-size: 17px;
    font-weight: bold;
    margin: 0px;
    letter-spacing: 0.07em;
    pointer-events: none;
}

#plotTip.tool-Tip h3 {
    font-size: 16px;
    /* font-weight: normal; */
}

#plotTip.tool-Tip h4 {
    font-size: 15px;
    margin-bottom: 8px;
    margin-top: 8px;
    /* font-style: italic; */
    pointer-events: none;
}

#plotTip.tool-Tip h5 {
    font-size: 16px;
    margin-bottom: 0px;
    margin-top: 1px;
    font-weight: bold;
    /* font-style: italic; */
    text-transform: uppercase;
    letter-spacing: 0.08em;
    pointer-events: none;
}

#plotTip.tool-Tip strong {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    margin-top: 8px;
    font-weight: normal;
    pointer-events: none;
}












