.mapContainer{
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    display: block;
}

.map{
    width: 100%;
    height: 104%;
		fill: #ffb700;
}

.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;
		transition: all .6s;
		color: #F4BB40;
}

.voivodship:hover{
		transform:translateY(-15px);
		cursor: pointer;
		color: #F4BB40;
}

.voivodship.warsawa:hover{
	fill: url(#warsawa);
}
.voivodship.wroclaw:hover{
	fill: url(#wroclaw);
}
.voivodship.lubelskie:hover{
	fill: url(#lubelskie);
}
.voivodship.kujavsko:hover{
	fill: url(#kujavsko);
}
.voivodship.todzkie:hover{
	fill: url(#todzkie);
}
.voivodship.lubuskie:hover{
	fill: url(#lubuskie);
}
.voivodship.malopolskie:hover{
	fill: url(#malopolskie);
}
.voivodship.opolskie:hover{
	fill: url(#opolskie);
}
.voivodship.podkarpatskie:hover{
	fill: url(#podkarpatskie);
}
.voivodship.poslaskie:hover{
	fill: url(#poslaskie);
}
.voivodship.pomorskie:hover{
	fill: url(#pomorskie);
}
.voivodship.slaskie:hover{
	fill: url(#slaskie);
}
.voivodship.svetokr:hover{
	fill: url(#svetokr);
}
.voivodship.zachodno:hover{
	fill: url(#zachodno);
}
.voivodship.mazurskie:hover{
	fill: url(#mazurskie);
}
.voivodship.welikopolsk:hover{
	fill: url(#welikopolsk);
}

.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: #efb145;
    stroke: black;
    transition: all .3s linear;
}

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

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