.INTERACTIVE_MARK{
    cursor:pointer!important;
}


.point {
    align-items: center;
    display: flex;
    position: absolute;
    top: 0%;
    left: 0%;
    width: auto;
    height: auto;
    z-index: 10;
    cursor: pointer;
}

.point-icon i {
    transition: border-color 250ms ease-in-out,opacity 250ms ease-in-out,visibility 250ms ease-in-out;
    padding: 0;
    width: 32px;
    height: 32px;
    border: 2px solid transparent;
    position: relative;
    background: #008954;
    border-radius: 64px;
    line-height: .5;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    margin: -16px 0 0 -16px;
}

.point .point-icon i:after {
    content: "";
    transition: transform 250ms ease-in-out;
    box-sizing: initial;
    position: relative;
    display: block;
    background: #fff;
    box-shadow: 0 1px 4px rgb(0 0 0 / 55%);
    width: 12px;
    height: 12px;
    border-radius: 64px;
}

.point .point-icon i:after {
    content: "";
    transition: transform 250ms ease-in-out;
    box-sizing: initial;
    position: relative;
    display: block;
    background: #fff;
    box-shadow: 0 1px 4px rgb(0 0 0 / 55%);
    width: 12px;
    height: 12px;
    border-radius: 64px;
}

.point.on .point-icon i:after,
.point:hover .point-icon i:after {
    transform: scale(0.66);
}

.point-title {
    padding: 5px;
    background: #fff;
    margin: 0 10px;
    position: absolute;
    white-space: nowrap;
    line-height: 100%;
    border-radius: 5px;
    transform: translateY(-50%);
}

.point.on {
    z-index: 30;

}

.point.on .point-icon i{
    background-color:#e6141e!important;
}






.tooltipe{
    font-size: 14px;
    position: absolute;
    text-align: left;
    z-index: 10000;
    max-height: 1000px;
    margin: 0 0px;
    overflow: hidden;
    display: none;
    border: 1px solid #ccc;
    transition: height 250ms ease-in-out;
}

.point.on .tooltipe {
    z-index: 10;
    -webkit-box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 2px 10px 0 rgba(0,0,0,.2);
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
}

.tooltipe > div{
    display: block;
    background-color: rgba(255,255,255,1);
    font-size: 16px;
    top: 0px;
    margin: 0px;
    padding: 15px;
    width: 220px;
    border-radius: 2px;
    background: #fff;

}
.tooltipe ul{
    padding-left: 20px;
}

.tooltipe li{
    list-style-type: disc;
}


.tooltipe-footer {
    padding: 0;
    padding-top: 15px;
    height: 43px;
}



.tooltipe-btn:hover {
    opacity: 0.8;
}

.tooltipe-footer a{
    font-size: 14px;
    text-decoration: none;
    transition: .2s all;
    height: 30px;
}
.tooltipe-btn {
    border: 1px solid rgba(0,0,0,0.2);
    padding: 5px 10px;
    display: block;
    text-align: center;
    color: #444;
    cursor:pointer!important;
}


.tooltipe-image_wrapper img {
    position: relative;
    left: 50%;
    cursor:pointer!important;
    margin-left: -40px;
    padding-bottom:20px;
}

