.right-mb20 { text-align: right; margin-bottom: 20px; }





.user-profile {
	display: flex;justify-content: right;
	align-items: center;
	//border: #dddddd 1px solid;
	border-radius: 4px;
	padding: 20px 0;
}
.user-profile_avatar {
  position: relative;
border: #cccccc 1px solid;
padding: 1px;
}
.user-profile_avatar img {
  width: 56px;
  height: 56px;
}
.user-profile_description {
color: #333333;
margin-right: 10px;
}
.user-profile_description .user {
font-weight: bold;
color: #008000;
}
.user-profile_description .admin {
font-weight: bold;
color: #ff0000;
}

.section-page_header {
	border-bottom: #dddddd 1px solid;
}

.section-page_header h2 {
	display: inline-block;
	border-bottom: #72bf44 5px solid;
	padding-bottom: 20px;
	margin-top: 0;
	margin-bottom: 0;
}

.section-page_content {
	padding-top: 20px;
	padding-bottom: 20px;
}
.section-page_content td a {
	color: #72bf44;
}
/* ================================================= */

.required {
  color: red;
  font-weight: bold;
  margin-left: 4px;
}

/* HTML, BODY */

html, body {
	background: #ffffff;
	text-align: left;
	font-family: "Lato", sans-serif;
	font-size: 16px;
	color: #333333;
	line-height: 1.42857143;
	padding: 0;
	margin: 0;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* 100% wysokości widoku */
}
/* HEADER */

#header {
	width: 100%;
}

#header .logo {
	padding: 20px 0;
}

#header .logo img {
	height: 60px;
}

@media (max-width: 979px) {

	#header .logo {
		width: 201px;
		margin: 0 auto;
	}

}

/* NAV */

#nav {
	background: #739923;
	width: 100%;
	height: 60px;
}

#nav .nav-bar {
	list-style-type: none;
	float: left;
	padding: 0;
	margin: 0;
}

#nav .nav-bar li {
	display: inline-block;
	position: relative;
	height: 60px;
	padding: 0 10px;
}

#nav .nav-bar li:hover {
	background: #ffffff;
}

#nav .nav-bar li:hover a {
	color: #72bf44;
}

#nav .nav-bar li:hover a:after {
	background: #72bf44;
	content: "";
	position: absolute;
	left: calc(50% - 10px);
	bottom: 0;
	width: 20px;
	height: 1px;
}

#nav .nav-bar li:hover ul {
	display: block;
}

#nav .nav-bar li a {
	display: block;
	text-decoration: none;
	font-size: 15px;
	color: #ffffff;
	line-height: 60px;
}

#nav .nav-bar li ul {
	background: #ffffff;
	display: none;
	border: #72bf44 1px solid;
	border-width: 0 1px 1px 1px;
	position: absolute;
	top: 60px;
	left: -1px;
	width: 250px;
	padding: 15px;
	z-index: 9999;
}

#nav .nav-bar li ul li {
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
}

#nav .nav-bar li ul li:hover {
	background: none;
}

#nav .nav-bar li ul li:last-child a {
	border-bottom: none;
}

#nav .nav-bar li ul li a {
	display: block;
	font-size: 14px;
	color: #464646 !important;
	border-bottom: #e0e0e0 1px solid;
	line-height: 30px;
	padding-left: 10px;
}

#nav .nav-bar li ul li a:hover {
	color: #72bf44 !important;
}

#nav .nav-bar li ul li a:hover:before {
	background: url("images/submenu-li.png") no-repeat;
	content: "";
	position: absolute;
	left: -15px;
	width: 10px;
	height: 22px;
}

#nav .nav-bar li ul li a:after {
	content: none !important;
}

@media (min-width: 979px) {

	#nav .nav-bar {
		float: left;
	}

	#nav .nav-right {
		float: right;
	}

}

/* CONTENT */

#content {
	background: #ffffff url("images/tlo.png") repeat-x 0 0;
	min-height: 600px;
	flex: 1;
	padding: 40px 0;
}

/* FOOTER */

#footer {
	background: #1a2e3a;
	color: #c0c0c0;
	width: 100%;
	padding: 20px 0;
}

#footer p {
	margin: 0;
}