/*!
 * JQuery Tooltip v0.0.1 Stylesheet
 * Docs & License: https://github.com/aprilsacil/jquery-tooltip
 * (c) 2021 April Sacil
 */
.tooltip-maps {
opacity: 1!important;
}

p.tooltip-line {
line-height:22px;
font-size: 14px;
margin-bottom:0;
}

.tooltip-maps .tooltiptext {
    visibility: hidden;
    position: absolute;
    width: 350px;
    background: #fff;
    color: #404653;
    text-align: left;
    padding: 10px;
    border-radius: 4px;
    z-index: 9;
    opacity: 0;
    transition: opacity .6s;
  box-shadow: 6px 5px 30px 0px rgba(0, 0, 0, 0.3);
}
.tooltip-maps:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.tooltip-right {
top: -7px;
left: 150%;
}
.tooltip-right::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #555 transparent transparent;
}

.tooltip-left {
    top: -5px;
    bottom:auto;
    right: 128%;  
}

.tooltip-left::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #555;
}
.tooltip-bottom {
    top: 135%;
    left: 50%;  
    margin-left: -60px;
}

.tooltip-bottom::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555 transparent;
}

.tooltip-top {
    bottom: 125%;
    left: 50%;  
    margin-left: -60px;
}

.tooltip-top::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}
