.vector-map__group a > path,
.vector-map__group > path {
    transition: fill .3s ease;
    stroke: #00a651;
}
.vector-map__group.display  a > path,
.vector-map__group.display > path {
    fill:#f9f7f2;
    cursor: pointer;
}

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



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

.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;
    width: 90%;
}

.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: #181A1E;
    margin: 5px;
    padding: 10px 20px;
    color: #fff !important;
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.4;
}
.k-map-item_title a:hover {
    text-decoration: none !important;
}
.k-map-item_title a:hover{
    color: #fff;
} 

.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(256px - 10px);
}

.k-map-list .k-map-item ul li a {
    padding: 10px;
    display: flex;
    color: #181A1E;
    width: 100%;
    font-weight: 600;
    font-size: .8rem;
    align-items: center;
    background-color: rgba(255, 255, 255, .96);
    -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .05);
    border-radius: 5px;
}
.k-map-list .k-map-item ul li a:hover {
    text-decoration: none;
    -webkit-box-shadow: 0 6px 6px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, .05);
}

@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 {flex-direction: column-reverse;align-items: center;justify-content: center;margin-top: 3rem;}
  #k-map .k-map-list {justify-content: center;}
  .k-map-svg,.k-map-list{width: 100%;}
  .k-map-list .k-map-item {margin: 1rem 0; width: 100%;}
  .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;}

}