#KyivCity {
    fill: #E1E3E2;
    stroke: #E1E3E2;
}

#Kiev.activeCity ~ #KyivCity .mapBackground {
    fill: #1e1e1e;
}

.mapBackground {
    fill: #E1E3E2;
    stroke: #121F41;
    stroke-width: 0.5;
}

.activeCity .mapBackground {
    fill: #1e1e1e;
}

#Ukraine {
    overflow: visible;
}

#Ukraine path {
    transition: all 0.3s ease-in-out;
}

.shield path {
    transform-origin: center;
    transform-box: fill-box;
}

.icon {
    fill: #D00315;
    position: relative;
    z-index: 2;
}

.pulse-1, .pulse-2 {
    transform-origin: center;
    transform-box: fill-box;
    fill: rgba(208, 3, 21, 0.3);
}

.shield:hover .pulse-1 {
    animation: pulse-small 3s infinite;
    animation-delay: 0s;
}

.shield:hover .pulse-2 {
    animation: pulse-large 2s infinite;
    animation-delay: 0.5s;
}

@keyframes pulse-large {
    0% {
        transform: scale(2.5);
        opacity: 0.7;
    }

    40% {
        transform: scale(3);
        opacity: 0.4;
    }

    70% {
        transform: scale(3);
        opacity: 0;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes pulse-small {
    0% {
        transform: scale(1.5);
        opacity: 0.8;
    }

    40% {
        transform: scale(2);
        opacity: 0.4;
    }

    70% {
        transform: scale(2);
        opacity: 0;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.cityName {
    display: none;
}

.cityName.isActive {
    display: block;
}

.cityName.isActive .cityText {
    transform: translateY(-30px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease-in-out;
}

.cityName text {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2em;
    fill: #D00315;
}

.shield:hover ~ .cityText {
    opacity: 1;
}

@media (max-width: 1599px) {
    .cityName text {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .cityName text {
        font-size: 18px;
    }
}