.btn,
.form-control {
	border-radius: 0;
	border-color: #000000;
}
.server-box {
	margin-bottom: 20px;
}

.server-box_header {
	background: #5d5d5d;
	font-weight: 700;
	font-size: 16px;
	color: #ffffff;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	padding: 5px 10px;
}

.server-box_content {
	background: #eeeeee;
	display: flex;
	justify-content: space-between;
	padding: 10px 15px;
}

.server-box_content_info {
	color: #5d5d5d;
}

.server-box_content_status {

}

.server-box_footer {
	background: #5d5d5d;
	display: flex;
	justify-content: flex-end;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	padding: 5px 10px;
}
.server-box_footer a{ color: #ffffff; }

    .rules {
      background-color: #eeeeee;
      border: 1px solid #dddddd;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .rules p {
      margin-bottom: 1em;
    }

    .rules p strong {
      color: #003366;
      font-size: 1.1em;
    }

    .rules p em {
      color: #666;
    }
.nav-avatar img {
	display: inline-block;
	border-radius: 50%;
	width: 50px;
	height: 50px;
}

.faq {
	border-radius: 4px;
	margin-bottom: 20px;
}

.faq h2 {
	font-size: 18px;
	color: #1e90ff;
	border-left: #1e90ff 10px solid;
	padding: 10px;
	margin-top: 0;
	margin-bottom: 0;
}

.faq p {
	padding: 10px 20px;
}

.section-page_header {
	border-bottom: #dddddd 1px solid;
}

.section-page_header h2 {
	display: inline-block;
	border-bottom: #ffa500 5px solid;
	padding-bottom: 20px;
	margin-top: 0;
	margin-bottom: 0;
}

.section-page_content {
	padding-top: 20px;
	padding-bottom: 20px;
}

/* ================================================= */

a:hover {
	text-decoration: none;
	color: #1e90ff;
}
#topBar {
  background-color: #343434;
  width: 100%;
  padding: 10px 0;
}

#topBar .search {
  display: flex;
  width: 100%;
  gap: 0;
}

#topBar .search input[type="text"],
#topBar .search select,
#topBar .search button {
  height: 36px;
  font-size: 14px;
  border: none;
  outline: none;
  background-color: #555;
  color: #fff;
}

#topBar .search input[type="text"] {
  flex: 2;
  padding: 0 10px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

#topBar .search select {
  flex: 1;
  padding: 0 8px;
}

#topBar .search button {
  flex: 0.5;
  background-color: #ffa500;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  transition: background-color 0.3s ease;
}

#topBar .search button:hover {
  background-color: #e69500;
}

#topBar .search button i {
  color: #fff;
}
/* HTML, BODY */

html, body {
	background: #ffffff;
	text-align: left;
	/* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #333333;
	line-height: 1.42857143;
	padding: 0;
	margin: 0;
}

/* HEADER */

#header {
	width: 100%;
}

#header .logo {
	padding: 20px 0;
}

#header .logo img {
	height: 60px;
}
@media (max-width: 979px) {

	.social,
	#nav .nav-bar {
		display: none;
	}

	#header .logo {
		width: 201px;
		margin: 0 auto;
	}

}
.social { text-align: right; padding: 20px 0; }
.dc {
	background: #ffffff url("images/dc.png") center center / contain no-repeat;
	display: inline-block;
	border-radius: 50px;
	width: 60px;
	height: 60px;
	margin-right: 10px;
}

.tb {
	background: url("images/tb.png") center center / contain no-repeat;
	display: inline-block;
	border-radius: 50px;
	width: 60px;
	height: 60px;
}

/* NAV */

#nav {
	background: #000000;
	width: 100%;
	height: 60px;
}

#nav .container {
	position: relative
}

#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 .navbar li:last-child
{ }
.nav-avatar {
	background: #ffa500;
	padding-top: -10px;
}

#nav .nav-bar li:hover {
	background: #ffffff;
}

#nav .nav-bar li:hover a {
	color: #000000;
}

#nav .nav-bar li:hover a:after {
	background: #000000;
	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: #000000 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: #fd7700 !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;
	padding: 40px 0;
}

/* Style dla news-ów */

.news-box {
	border-left: #e0e0e0 1px solid;
	border-right: #e0e0e0 1px solid;
	position: relative;
}

.news-box:before,
.news-box:after {
	position: absolute;
	content: "";
	bottom: 0;
	height: 5px;
	transition: left 0.3s ease-out, right 0.3s ease-out;
}

.news-box:before {
	background: #ffa500;
	left: 50%;
	right: 50%;
	z-index: 1;
}

.news-box:after {
	background: #e0e0e0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1;
}

.news-box:hover:before {
	left: 0;
	right: 0;
	z-index: 2;
}

.news-box_header {
	display: flex;
	width: 100%;
}

.news-box_header-item {
	background: #eeeeee;
	display: flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: #808080;
	position: relative;
	width: 50%;
	padding: 15px 0;
}

.news-box_header-item.active {
	background: #ffffff;
	color: #000000;
}

.news-box_header-item.active:after {
	background: #ffa500;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 5px;
}

.news-box_content {
	overflow-y: scroll;
	height: 455px;
	padding-right: 10px;
	padding-bottom: 20px;
	margin: 10px 13px 0 0;
	transition: height .25s;
}

.news-box_content-item {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 18px;
	color: #151515;
	padding: 5px 10px;
	transition: .25s;
}

.news-box_content-item_bullet {
	font-size: 12px;
	color: #ffa500;
	padding: 3px 15px 0 5px;
}

.news-box_content-item_link {
	display: block;
	font-weight: 400;
	font-size: 15px;
	color: #161616;
	padding: 3px 15px 0 5px;
}

.news-box_footer {
	background: #eeeeee;
}

.news-box_footer-more {
	background: #ffffff;
	display: flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	text-align: left;
	font-size: 13px;
	color: #ffa500;
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 15px 0;
}

/* FOOTER */

#footer {
	background: #323438;
	color: #b7bbc0;
	width: 100%;
	padding: 50px 0;
}

#footer h3 {
	font-weight: 700;
	font-size: 18px;
	margin: 0 0 20px 0;
}

#footer p {
	margin-bottom: 5px;
}

#footer p:last-child  {
	margin-bottom: 20px;
}

#footer .nav-footer {
	list-style-type: none;
	padding: 0;
	margin: 0 0 20px 0;
}

#footer .nav-footer li {
	margin-bottom: 5px;
}

#footer .nav-footer li:last-child {
	margin-bottom: 0;
}

#footer .nav-footer li a {
	color: #b7bbc0;
}

#footer .nav-footer li a:hover {
	color: #1e90ff;
}

#footer .copyright {
	text-align: center;
	color: #818181;
	border-top: #222222 1px dashed;
	border-bottom: #222222 1px dashed;
	padding: 20px 0;
}

#footer .copyright p {
	margin-bottom: 0;
}
