@font-face {
    font-family: "Abolition-Sharp";
    src: url("Abolition-Sharp.ttf") format('woff2');
}

.map-pointer {
    position: absolute;
    display: inline-block;
    border-radius: 5px;
    transform: translate(50%, 100%);
    z-index: 500;
    -webkit-box-shadow: 5px 5px 5px 0px rgba(214, 214, 214, 0.54);
    -moz-box-shadow: 5px 5px 5px 0px rgba(214, 214, 214, 0.54);
    box-shadow: 5px 5px 5px 0px rgba(214, 214, 214, 0.54);
}

.map-pointer__bg {
    position: relative;
    display: inline-block;
    border-radius: 5px;
    background: red;
    padding: 3px 15px 5px 15px;
}

.map-pointer__bg:after {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
    width: 15px;
    height: 15px;
    background: red;
}

.map-pointer__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-pointer__text {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: none;
}

.map-pointer_open .map-pointer__text_open {
    font-family: "Abolition-Sharp";
    font-size: 16px;
    letter-spacing: 1.3px;
    line-height: 1.5;
    display: block;
    color: #fff;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translate(0px, 100px);
    }
    to {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}