.vector-map__group a > path,
.vector-map__group > path {
    fill: #c7c7c7;
    transition: fill .3s ease;
    
}
.vector-map__group.display  a > path,
.vector-map__group.display > path {
    fill: #a5a4a4;
    cursor: pointer;
}

.vector-map__group.display a:hover > path,
.vector-map__group.display:hover > path,
.vector-map__group.display.active-map > path {
    fill: #565656;
}



#k-map {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    clear: both;
}

.k-map-list {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
}

.k-map-svg {
    width: 50%;
    display: flex;
    justify-content: center;
}

.k-map-list .k-map-item {
    height: auto;
    display: none;
    overflow: hidden;
    transition: all .3s;
}

.k-map-list .k-map-item.active{
    display: block;
}

.k-map-item_title {
    display: flex;
    width: 100%;
    max-width: 600px;
}
.k-map-item_title a {
    background-color: #565656;
    margin: 5px;
    padding: 10px 20px;
    color: #fff;
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}
.k-map-item_title a:hover{
    color: #fff;
    background-color: rgb(0, 157, 221);
} 

.k-map-list .k-map-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
}
.k-map-list .k-map-item ul li {
    margin: 5px;
    display: flex;
    width: calc(300px - 10px);
}

.k-map-list .k-map-item ul li a {
    background-color: #a5a4a4;
    padding: 10px 20px;
    display: flex;
    color: #fff;
    width: 100%;
}

.k-map-list .k-map-item ul li:hover a{
     background-color: rgb(172, 216, 47);
}

@media (min-width: 1025px) and (max-width: 1279px) {
    .k-map-list .k-map-item ul li {width: 100%;margin: 5px;}
}

@media (max-width: 1024px) {
  .k-map-svg,.k-map-list{width: 100%;}
  .k-map-list .k-map-item {margin: 0 0 50px 0;}
  .k-map-list .k-map-item ul,.k-map-item_title{max-width: 100%;}
  .k-map-list .k-map-item ul li {width: calc(50% - 10px);}
  .k-map-svg svg {height: initial;}
}

@media (max-width: 450px) {
    .k-map-list .k-map-item ul li {width: 100%;margin: 5px;}

}