
@keyframes blink {
    0% {
        stroke: rgba(57, 64, 73, 0.2);
        stroke-width: 15;
    }
    100% {
        stroke-width: 1;
        stroke: rgba(57, 64, 73, 0.9);
    }
}
circle[fill="#000000"] {
    padding: 20px;
    position: relative;
    animation: blink 1.5s infinite linear reverse;
}
/*circle[fill="#e30000"] {*/
/*    padding: 20px;*/
/*    position: relative;*/
/*    animation: blink 1.5s infinite linear ;*/
/*}*/

.map-wrapper {
    width: 2020px;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -50%;
}
.popup-map-point {
    position: absolute;
    top: 0px;
    left: 0px;
    display: none;
    background: rgba(38, 40, 43, 0.9);
    border-radius: 35px;
    border: 1px solid rgba(57, 64, 73, 0.8);
    box-shadow: 0px 1px 10px 0px rgba(207, 211, 218, 0.24);
    color: white;
    padding: 20px;
    width: 320px;
    z-index: 5;
}
.point-header {
    display: flex;
    justify-content: space-between;
    height: 24px;
    margin-bottom: 17px;
}
.point-name {
    font-family: "montserrat-semibold", sans-serif;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    line-height: 24px;
}
.point-icon {
    background: #e30000;
    border: 3px solid #ad0000;
    height: 24px;
    width: 24px;

    display: inline-block;
    border-radius: 50%;
    margin: 0 15px 0 0;
}
.point-view {
    display: flex;
    align-items: center;
    color: #747d89;
    font-size: 14px;
    cursor: pointer;
}
.arrow-right {
    width: 0px;
    height: 0px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid #aaafb7;
    margin-left: 10px;
    color: #aaafb7;
}
.point-info {
    font-family: "montserrat-semibold", sans-serif;
    line-height: 22px;
    display: flex;
    text-transform: uppercase;
}
.point-info .point-highlight {
    color: #e30000;
    font-size: 18px;
    margin-right: 10px;
}
.point-info .txt-info {
    font-size: 12px;
}
.point-info li:first-child {
    margin-bottom: 10px;
}
.point-info ul {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .map-wrapper {
        left: 30%;
    }
}
@media (max-width: 475px) {
    .map-wrapper {
        left: 17%;
    }
}
@media (max-width: 400px) {
    .map-wrapper {
        left: 0%;
    }
}
