.map{
    width: 100%;
    height: 100%;
}

.selectCities{
    margin: 0 auto;
    display: block;
    width: 400px;
    height: 150px;
    margin-bottom: 50px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.selectCities label{
    display: block;
    margin: 5px;
}

.voivodship{
    position: relative;
}

.voivodship:hover{
    fill: #ff5656;
}

.voivodship.active{
    fill: #8ec038;
}

.city{
    fill: black;
    stroke: #ff5656;
}

.rangeContainer,
.searchContainer,
.checkContainer{
    width: 400px;
    margin: 0 auto;
    text-align: center;
}

.checkContainer input,
.checkContainer label{
    display: inline-block;
    vertical-align: middle;
}

.search{
    width: 50%;
}

.mapSize{
    display: inline-block;
    vertical-align: middle;
}

text{
    opacity: 0;
    visibility: hidden;
    font-size: 30px;
    fill: black;
    stroke: black;
    transition: all .3s linear;
}

@media(max-width: 600px){
    text{
        opacity: 1;
        visibility: visible;
    }
}

.city:hover + text{
    visibility: visible;
    opacity: 1;
}