<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.menu_new {
    background: #1d770b;
    color: #FFF;
    min-height: 45px; /* Zmienione z height na min-height */
    padding-left: 18px;
    /*! overflow: hidden; */ /* Dodane */
    padding-right: 18px;
}

.menu_new_up {
    border-radius: 10px 10px 0px 0px;
}

.menu_new_down {
    border-radius: 0px;
}

.menu_new_projekt {
    border-radius: 0px 0px 10px 10px;
}

.menu_new ul {
    width: 100%;
    display: flex; /* Dodane */
    flex-wrap: wrap; /* Dodane */
    margin: 0px;
    padding-left: 0px;
}

.menu_new_up li,
.menu_new_down li,
.menu_new_projekt li {
    /*! float: none; */ /* UsuniÄte float */
    display: flex; /* Zmienione z inline na flex */
    position: relative;
    min-width: 7%;
}

.menu_new a {
    display: flex; /* Zmienione z block na flex */
    align-items: center; /* Dodane */
    min-height: 45px; /* Zmienione z line-height na min-height */
    padding: 0 7px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
}
.menu_new a.dropdown-arrow:after {
	content: "\25BE";
	margin-left: 5px;
}
.menu_new li a:hover {
	color: #007197;
	background: #F2F2F2;
}
.menu_new input {
	display: none;
	margin: 0;
	padding: 0;
	height: 45px;
	width: 100%;
	opacity: 0;
	cursor: pointer
}
.menu_new label {
	display: none;
	line-height: 45px;
	text-align: center;
	position: absolute;
	left: 35px
}
.menu_new label:before {
	font-size: 1.6em;
	content: "\2261"; 
	margin-left: 20px;
}
.menu_new ul.sub-menus{
	height: auto;
	overflow: hidden;
	width: 170px;
	background: #1a6000;
	position: absolute;
	z-index: 99;
	display: none;
}
.menu_new ul.sub-menus li {
	display: block;
	width: 100%;
}
.menu_new ul.sub-menus a {
	color: #FFFFFF;
	font-size: 16px;
}
/*.menu_new li:hover ul.sub-menus {
	display: block
}*/
.menu_new li.clicked ul.sub-menus {
	display: block;
	margin-top: 45px;
}
.menu_new ul.sub-menus a:hover{
	background: #B0E000;
	color: #000000;
}

.projekt_nazwa {
  border-top: solid black 1px;
  padding: 10px 0px 10px 0px;
}
.projekt_nazwa span {
  display: block;
}

@media screen and (max-width: 900px){
	.menu_new {position:relative}
	.menu_new ul {background:#2c9317;position:relative;z-index:3;height:auto;display:none;flex-direction: column;}
	.menu_new_up ul {padding-top:45px;}
	.menu_new ul.sub-menus {width:100%;position:static;}
	.menu_new ul.sub-menus a {padding-left:30px;}
	.menu_new li {display:block;float:none;width:auto;}
	.menu_new input, .menu_new label {position:absolute;top:0;left:0;display:block;z-index:99;}
	.menu_new input {z-index:4}
	.menu_new input:checked + label {color:white}
	.menu_new input:checked + label:before {content:"\00d7"}
	.menu_new input:checked ~ ul {display:flex;position: relative;}

    .menu_new_up {
        border-radius: 10px;
        /*! width: 100%; */
    }
    .menu_new_down {
		/*! background: white; */
		/*! height: 581px; */
		/*! margin-top: 405px; */ /*+45px po dodaniu nowego elementu */
		display: none;
    }
	
	.menu_new_projekt {
		/*! background: white; */
		/*! height: 581px; */
		/*! margin-top: 405px; */ /*+45px po dodaniu nowego elementu */
		display: none;
    }
	
	div#menu {
		width: 80%;
	}
}
</pre></body></html>