#minimap__wrap {
    position: absolute;
    top: 0;
    left: -99999px;
    width: 355px;
    height: 475px;
}
#minimap {
    position: absolute;
    transform-origin: top left;
    width: 355px;
    height: 320px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 0;
    border-radius: 10px;
}
#minimap__open {
    position: absolute;
    width: 170px;
    line-height: 40px;
    background-color: rgba(0, 65, 150, 0.9);
    color: #ffffff;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.9);
}
#minimap__open:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: rgba(0, 65, 150, 1);
    border: 2px solid rgba(0, 65, 150, 1);
}
#minimap__close {
    position: absolute;
    top: 90px;
    /* right: -20px; */
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 1);
    color: #666666;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}
#minimap__close:hover {
    background-color: rgba(255, 255, 255, 0.75);
    color: #ffffff;
}
.minimap_point {
    display: flex;
    position: absolute;
    z-index: 10;
    background-color: #cccccc;
    width: 95px;
    height: 30px;
    font-size: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    text-align: center;
    line-height: 1.2;
    cursor: pointer;
}
.minimap_point.active,
.minimap_point:hover {
    background-color: rgba(0, 65, 150, 0.9);
    color: #ffffff;
}
.minimap_point::after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 10px;
    height: 10px;
    border-top: 10px solid #cccccc;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}
.minimap_point.active::after,
.minimap_point:hover::after {
    border-top: 10px solid rgba(0, 65, 150, 1);
}
.minimap_point::before {
    content: "";
    position: absolute;
    bottom: -30px;
    width: 15px;
    height: 15px;
    border-radius: 7.5px;
    background-color: #666666;
}
.minimap_point.active::before,
.minimap_point:hover::before {
    background-color: rgba(0, 65, 150, 0.9);
}
#minimap_cursor {
    display: none;
    position: absolute;
    opacity: 0.5;
    z-index: 99;
}

@media all and (min-width: 769px) {
    #minimap {
        top: 100px;
        left: 10px;
        transform: scale(1);
    }
    #minimap__open {
        top: 100px;
        left: 10px;
    }
}
@media only screen and (max-width: 768px) {
    #minimap {
        top: 210px;
        left: 10px;
        background-color: rgba(255, 255, 255, 1);
    }

    #minimap__open {
        top: 150px;
        left: 10px;
    }

    #minimap__close {
        top: 200px;
        /* right: -20px; */
    }
}
