@CHARSET "ISO-8859-1";

.headerselector{
	grid-area: header;
	width: 100%;
}

.systemLogoImg {
	width: 100%;
	height: 100%;
}

.logo {
	position: absolute;
    top: .5vw;
    left: 4vw;
    width: 10vw;
    height: 10vw;
    cursor: pointer;
}

.logoImg{
	width: 100%;
}

.lngs {
	position: absolute;
    top: .5vw;
    right: 5vw;
    
	display: grid;
	grid-template-columns: 3.5vw 1vw 3.5vw;
	grid-template-rows: 2vw;
	grid-template-areas: "lng_pl not lng_en";
}

.lngOption {
	width: 100%;
	height: 100%;
	cursor: default;
}

.lngOption:hover{
    border-bottom: var(--border-bottom);
}

.lng_pl {
	grid-area: lng_pl;
}

.lng_en {
	grid-area: lng_en;
}