/*
Theme Name: KPD_test
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: kpd_test
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

KPD_test is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Layout

# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  font-family: Verdana, sans-serif;
  font-size: 13px;
  color: #000;
  line-height: 1.5;
}

.dropdown-menu > ul > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

*:focus {
  outline: 2px #1e5784 solid !important;
  outline-offset: 0;
  -webkit-box-shadow: inset 0 2px 2px rgba(0, 0, 0, .075), 0 0 8px rgba(17, 137, 232, .6) !important;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, .075), 0 0 8px rgba(17, 137, 232, .6) !important;
}

.note-editable:focus {
  border: 2px #1e5784 solid !important;
}

.skins *:focus {
  outline: 2px #ff0000 solid !important;
  outline-offset: 0;
  -webkit-box-shadow: inset 0 2px 2px rgba(0, 0, 0, .075), 0 0 8px rgba(17, 137, 232, .6) !important;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, .075), 0 0 8px rgba(17, 137, 232, .6) !important;
}

.map img:focus, .skins .map img:focus {
  outline: none !important;
  box-shadow: none !important;
}

.skins .note-editable:focus {
  border: 2px #ff0000 solid !important;
}

.skins .nav > li > a:hover, .skins .nav > li > a:focus {
  background-color: #feed00;
  color: black !important;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

.hidden {
  display: none !important;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ee6c00;
  border-radius: 3px;
  background: #ee6c00;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ee6c00;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #ee6c00;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #000;
  border: 1px solid #ee6c00;
  border-radius: 3px;
  padding: 3px;
}

select {
  border: 1px solid #ee6c00;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

textarea {
  width: 100%;
}

.form_hidden {
  height: 0;
  visibility: hidden;
}

.elementor-icon i {
  color: #fff;
}

/*--------------------------------------------------------------
## Buttons
--------------------------------------------------------------*/

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  background: #ee6c00;
  border-color: #ee6c00;
  color: #fff;
}


.btn-orange {
  background-color: #ee6c00;
  border-color: #ee6c00;
  color: #fff;
  border-radius: 3px;
}

.btn-gray {
  background-color: gray;
  color: #fff;
}

.btn-gray:hover {
  background-color: #474747 !important;
}

.btn-primary {
  background-color: #ee6c00 !important;
  border-color: #ee6c00 !important;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #ee6c00 !important;
  border-color: #ee6c00 !important;
}

.btn-orange:hover {
  color: #fff !important;
  background-color: #DF6500;
}

.btn-gray:hover {
  background-color: #EE6C00;
  color: #fff;
}

.btn-white {
  background: #EEEEEE;
  color: #000;
}

@media screen and (max-width: 410px) {
  .btn-orange {
    font-size: 12px;
    white-space: normal;
  }
}

.siteorigin-widget-tinymce h3 {
  margin: 0;
}

.normal-size,
.normal-size button strong:not(.fa),
.normal-size button,
.normal-size input[type="search"],
.normal-size input[type="submit"],
.normal-size #api-logout,
.normal-size .btn-orange,
.normal-size .registration,
.normal-size .user-login,
.normal-size #terms div,
.normal-size h3.map-gis-dd,
.normal-size li.map-gis-li,
.normal-size h3.h3-download-page,
.normal-size div:not(.note-editable) > *:not(span),
.normal-size #wpadminbar .screen-reader-shortcut {
  font-size: 13px !important;
  transition: all 0.2s;
}

.medium-size,
.medium-size button,
.medium-size button strong:not(.fa),
.medium-size input[type="search"],
.medium-size input[type="submit"],
.medium-size #api-logout,
.medium-size .btn-orange,
.medium-size .registration,
.medium-size .user-login,
.medium-size #terms div,
.medium-size h3.map-gis-dd,
.medium-size li.map-gis-li,
.medium-size div:not(.note-editable) > *:not(span),
.medium-size #wpadminbar .screen-reader-shortcut {
  font-size: 16px !important;
  transition: all 0.2s;
}

.large-size h1 {
  font-size: 4rem;
}

.medium-size h1, .large-size h2 {
  font-size: 3.5rem;
}

.medium-size h2, .large-size h3 {
  font-size: 3rem;
}

.medium-size h3, .large-size h4 {
  font-size: 2.5rem;
}

.medium-size h4, .large-size h5 {
  font-size: 2rem;
}

.medium-size h5, .large-size h6 {
  font-size: 1.8rem;
}

.medium-size h6 {
  font-size: 1.6rem;
}

.large-size,
.large-size button strong:not(.fa),
.large-size button,
.large-size input[type="search"],
.large-size input[type="submit"],
.large-size #api-logout,
.large-size .btn-orange,
.large-size .registration,
.large-size .user-login,
.large-size #terms div,
.large-size h3.map-gis-dd,
.large-size li.map-gis-li,
.large-size div:not(.note-editable) > *:not(span),
.large-size #wpadminbar .screen-reader-shortcut {
  font-size: 18px !important;
  transition: all 0.2s;
}

a.normal-size span {
  font-size: 13px !important;
}

a.medium-size span {
  font-size: 16px !important;
}

a.large-size span {
  font-size: 18px !important;
}


/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #6c6a6a;
}

.top-menu-links .nav li a {
  font-weight: 600;
  color: #999c9e;
}

a:hover,
a:active,
.top-menu-links .nav li a:hover {
  color: #c2c2c2;
  text-decoration: none;
}

.edit-link,
.post-edit-link {
  padding: 0 5px;
}

a:after {
  content: "" !important;
}

.tab-links {
  text-decoration: none;
  pointer-events: none;
}

.blur-links {
  text-decoration: none;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li {
  padding-right: 10px;
}

.main-navigation .current_page_item > a,
.main-navigation .page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
  border: 1px solid #ee6c00;
  background-color: #ee6c00;
  color: #fff;
  border-radius: 3px;
  padding: 6px 12px;
}

.main-navigation .current_page_item > a:hover,
.main-navigation .page_item > a:hover,
.main-navigation .current-menu-item > a:hover,
.main-navigation .current_page_ancestor > a:hover,
.main-navigation .current-menu-ancestor > a:hover {
  background-color: #DF6500;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

#side-menu-mobile .nav {
  margin-left: 20px;
}

#usluga-kpd-ul-mobile {
  margin-left: 20px;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }

  .main-navigation ul {
    display: block;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}


/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

.site-main {
  display: flex;
}

.row {
  margin: 0 !important;
}

.orange {
  color: #ee6c00;
}

.main {
  background: #EEEEEE;
}

.main-content {
  background: #fff;
  min-height: 100vh;
}

.site-content {
  background: transparent;
}

/*--------------------------------------------------------------
## Layout - Header
--------------------------------------------------------------*/

.header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.header span {
  flex: 1;
}

.header > * {
  margin: 0 10px;
  padding-left: 8px;
}

.hamburger {
  display: none;
  font-size: 30px;
}

.hamburger button {
  background-color: white;
  color: grey;
  border: none;
  font-size: 30px !important;
}

.gddkia-logo {

  -webkit-background-size: contain;
  background-size: contain;
  width: 110px;
  height: 80px;
  margin-left: 30px;
  display: block;
  cursor: pointer;
}

.gddkia-logo > img {
  width: 110px;
  height: 80px;
}

.font-size {
  cursor: pointer;
}

.print {
  font-size: 23px;
  cursor: pointer;
}

.flags ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.flags ul li {
  display: inline-block;
}

li.lang-item > a {
  padding: 0;
  margin: 0 5px;
}

.kpd-logos {
  display: flex;
  align-items: center;
}

.kpd-logos a {
  margin-right: 15px;
}

#kpd-logos-mobile {
  display: none;
}

#kpd-logos-mobile-en {
  display: none;
}

.kpd-logos::before {
  position: relative;
  right: 10px;
  content: '';
  width: 1px;
  height: 50px;
  background: gray;
}

.kpd-logos::after {
  content: '';
  width: 1px;
  height: 50px;
  background: gray;
}

.pl_cef__ {
  width: 245px;
  height: 30px;
}

.crocodile {
  background: url(img/crocodile_small.png) no-repeat center;
  width: 86px;
  height: 50px;
}

.mib {
  width: 176px;
  height: 50px;
}

.user-login {
  margin-right: 30px;
  font-size: 15px;
}

li.api-hidden,
.api-hidden,
.applications-links li.api-hidden {
  display: none;
}

.applications-links {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  color: #fff;
}

.applications-links li {
  display: inline-block;
}

.applications-links li a {
  color: #fff;
}

.divider {
  background-color: #ee6c00;
  color: #fff;
  padding: 15px 25px;
  font-weight: 600;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}

.divider-desktop {
  display: block;
}

.divider-desktop h1 {
  position: absolute;
  left: 38px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
}

.divider > * {
  margin-left: 20px;
}

.divider .font-size a {
  font-weight: 400;
  color: #fff;
}

.divider .flags {
  margin-top: 5px;
}

.divider-mobile {
  display: none;
  width: 375px;
}

.registration {
  font-size: 15px;
}

.lang-item img {
  height: 15px;
}

/*--------------------------------------------------------------
### Layout - Sidebar
--------------------------------------------------------------*/

.side-menu {
  text-align: left;
  margin: 0;
}

.side-menu li a {
  font-weight: 600;
  border-bottom: 1px solid white;
  padding: 14px 20px 14px 25px;
}

.side-menu li a:hover,
.side-menu li a:focus {
  background: #EE6C00;
  color: #fff;
}

.side-menu ul li {
  padding-left: 30px;
}

.side-menu ul li ul li {
  padding-left: 30px;
}

.sidebar-widgets {
  margin-left: 15px;
}

.sidebar-widgets .widget_recent_entries ul {
  margin: 0;
}

.mobile-sitebar {
  position: absolute;
  z-index: 100;
  top: 206px;
  left: 0;
  background: #eeeeee;
  display: none;
  width: 375px;
}

/*--------------------------------------------------------------
#### Search form
--------------------------------------------------------------*/
li.search {
  margin: 10px;
}

input.search-field {
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

input.search-submit {
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.42857143;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

/*--------------------------------------------------------------
#### Layout - Static pages
--------------------------------------------------------------*/

.static-header-page {
  background: transparent;
  padding: 40px 0;
  text-transform: uppercase;
  color: lightgrey;
}

.static-page {
  background: transparent;
}

.page-name {
  padding: 15px 25px;
  background: #eeeeee;
  border-left: 5px solid #EE6C00;
  color: #000;
  font-size: 14px;
}

#page-name-half {
  width: 59%;
}

.static-flex {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hr-line-dashed {
  border-top: 1px dashed #e7eaec;
  color: #fff;
  background-color: #fff;
  height: 1px;
  margin: 20px 0;
}

.sub-menu {
  margin-left: 15px;
}

/*--------------------------------------------------------------
## Layout - Static pages - Main/Homepage
--------------------------------------------------------------*/
.homepage-hide {
  display: none;
  opacity: 0;

  /* these will fix your jumping issue */
  position: absolute;
  left: 100%;
  top: 0;
}

.homepage-show {
  display: block;
  opacity: 1;
}


.main-page-background {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: url(img/main_mapa.png) no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}

.kpd-info {
  background: transparent;
  width: 60%;
  color: #000;
}

.kpd-info h4 {
  padding: 25px 35px;
  background: #EEEEEE;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.kpd-info > div {
  margin: 15px 0;
  font-weight: 600;
}

.main-page-services {
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
}

.main-page-services::before {
  display: none;
}

.main-page-services > div {
  display: flex;
  flex-basis: 25%;
}

.services-star-icon {
  position: relative;
  display: flex;
  font-size: 25px;
  padding: 10px;
  width: 40px;
  height: 40px;
  background: #ee6c00;
  border-radius: 50%;
  color: white;
  justify-content: center;
  align-items: center;
  top: 20%;
  right: 5%;
}

.services-content p {
  color: #6c6a6a;
}

.main-page-PI > * {
  margin: 35px 0;
}

.kpd-info-PI {
  -webkit-columns: 200px 2; /* Chrome, Safari, Opera */
  -moz-columns: 200px 2; /* Firefox */
  columns: 200px 2;
}

.main-page-contact {
  display: flex;
  background: #EEEEEE;
  color: #000;
  margin: 50px auto;
}

.contact-gray {
  flex: 3;
  background: #EEEEEE;
  padding: 25px;
}

.contact-orange {
  flex: 1;
  background: #EE6C00;
  color: #fff;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 25px;
  margin-right: -15px;
}

.contact-orange > p {
  font-weight: 600;
}

.hide-element {
  visibility: hidden;
  top: -150px;
}

/*HOMEPAGE*/

.img_size {
  width: 95%;
  margin-top: -25px;
}

.homepage-img {
  display: block;
  margin: auto;
  width: 45%;
  height: auto;
}

#pg-1270-1 .so-panel, #pg-1962-1 .so-panel {
  margin-bottom: 0 !important;
}

#pgc-1270-1-1 p h4, #pgc-1962-0-0 p h4 {
  margin: 0;
}

article#post-1270 > header, article#post-1962 > header {
  display: none;
}

body.page-id-1270 div.container, body.page-id-1962 div.container {
  width: 100%;
}

/*HOMEPAGE*/

.elementor-1962 .elementor-element.elementor-element-pebgmsj {
  margin-bottom: -140px;
}

.elementor-1962 .elementor-element.elementor-element-ozrhufw {
  margin-top: -68px;
}

.elementor-1962 .elementor-element.elementor-element-d5mt59k {
  margin-top: -150px;
}

.elementor-1962 .elementor-element.elementor-element-wkjrzio {
  margin-top: -145px;
}

.elementor-1962 .elementor-element.elementor-element-bppgsoh > .elementor-element-populated {
  margin-top: -180px;
}

.elementor-1962 .elementor-element.elementor-element-wcreebo {
  margin-top: -140px;
}

.elementor-1962 .elementor-element.elementor-element-lgsaoki > .elementor-element-populated {
  margin-top: -75px;
}

/* MAPA INTERAKTYWNA
*/
.elementor-section-wrap {
  position: relative;
  z-index: 1;
}

.map-container {
  position: absolute;
  top: 0;
  right: 0;
}

.map .background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.map img {
  position: relative;
  z-index: 4;
  margin: 0;
  padding: 0;
}

.map-gis-dd {
  margin: 10px 0;
  font-size: 120%;
}

#country-name {
  position: absolute;
  padding: 15px;
  margin-top: 60px;
  left: 100px;
  font-weight: 600;
  color: #ee6c00;
  font-size: 17px;
  z-index: 4;
  background: #fff;
}

#map-title {
  position: absolute;
  font-size: 15px;
  margin: 0;
  left: 40%;
  z-index: 4;
}

.map .countries {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
}

.map .countries > li {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  background: transparent none no-repeat 0 0;
  text-indent: -9999em
}

.map .countries > .niemcy {
  background-image: url('img/mapa_interaktywna/niemcy_small_country.png');
  display: none;
}

.map .countries > .polska {
  background-image: url('img/mapa_interaktywna/polska_small_country.png');
  display: none;
}

.map .countries > .wlochy {
  background-image: url('img/mapa_interaktywna/wlochy_small_country2.png');
  position: absolute;
  z-index: 0;
  display: none;
  top: 1px;
  left: -1px;
}

.map .countries > .bulgaria {
  background-image: url('img/mapa_interaktywna/bulgaria_small_country.png');
  display: none;
}

.map .countries > .slowenia {
  background-image: url('img/mapa_interaktywna/slowenia_small_country.png');
  display: none;
}

.map .countries > .slowacja {
  background-image: url('img/mapa_interaktywna/slowacja_small_country.png');
  display: none;
}

.map .countries > .rumunia {
  background-image: url('img/mapa_interaktywna/rumunia_small_country.png');
  display: none;
}

.map .countries > .grecja {
  background-image: url('img/mapa_interaktywna/grecja_small_country.png');
  display: none;
}

.map .countries > .czechy {
  background-image: url('img/mapa_interaktywna/czechy_small_country.png');
  display: none;
}

.map .countries > .cypr {
  background-image: url('img/mapa_interaktywna/cypr_small_country.png');
  display: none;
}

.map .countries > .chorwacja {
  background-image: url('img/mapa_interaktywna/chorwacja_small_country.png');
  display: none;
}

.map .countries > .austria {
  background-image: url('img/mapa_interaktywna/austria_small_country.png');
  display: none;
}

.map .countries > .wegry {
  background-image: url('img/mapa_interaktywna/wegry_small_country.png');
  display: none;
}

.map .countries > li.hover {
  display: block;
}

/*--------------------------------------------------------------
## Layout - Static pages - Download documents
--------------------------------------------------------------*/
div.content-one,
div.content-two,
div.content-three,
.content-hidden {
  display: none;
}

.download-desc {
  margin-top: 10px;
  margin-bottom: 40px;
}


.normal-size h3.h3-download-page {
  font-size: 15px;
  margin: 10px;
}

.medium-size h3.h3-download-page {
  font-size: 18px;
  margin: 10px;
}

.large-size h3.h3-download-page {
  font-size: 20px;
  margin: 10px;
}

.ibox-title-download {
  padding: 5px;
  color: #000;
  background: #eeeeee;
  margin: 25px auto;
  cursor: pointer;
}

.right {
  text-align: right;
  padding-bottom: 20px;
}

#static-download ul li {
  margin: 25px;
}

#static-download ul li button {
  float: right;
  font-size: 10px;
}

.archiwalne-dane-table {
  max-height: 500px;
  width: 100%;
  overflow: auto;
  border-left: 5px solid #ee6c00;
  padding-left: 15px;
}

.ul_btn_download {
  position: absolute;
  top: 0;
  right: 25px
}

/*--------------------------------------------------------------
## Layout - Static pages - Kontakt
--------------------------------------------------------------*/
.err_1,
.err_2,
.err_3,
.err_4,
.err_5 {
  color: #ed5565;
  font-size: 13px;
  font-style: normal;
  font-weight: bold;
  display: none;
}

.has-error, .has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
  color: #ed5565;
  border-color: #ed5565;
}

.has-error .form-control, .note-editor.has-error {
  border-color: #ed5565;
}

.error_email {
  color: #ed5565;
  font-size: 13px;
  font-style: normal;
  font-weight: bold;
  display: none;
}

#terms div {
  font-size: 12px !important;
  padding-bottom: 10px !important;
  text-align: justify;
  font-style: italic;
}

.note-editor.note-frame {
  margin-bottom: 0;
}

#statick_checkbox {
  color: #6c6a6a;
  font-weight: bold;
}

/*--------------------------------------------------------------
### Layout - Static pages - Interactive GIS Map
--------------------------------------------------------------*/

#static-mapa-strony .list-group-item {
  border: none !important;
}

#overlay {
  position: relative;
  background: #fff;
  border: 1px solid #ee6c00;
  border-radius: 10px;
  padding: 5px;
  color: #000;
  margin-bottom: 7px;
  font-size: 12px;
}

#overlay:after, #overlay:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

#overlay:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #fff;
  border-width: 5px;
  margin-left: -5px;
}

#overlay:before {
  border-color: rgba(238, 108, 0, 0);
  border-top-color: #ee6c00;
  border-width: 6px;
  margin-left: -6px;
}

#overlay .tooltip-close {
  float: right;
  padding-right: 3px;
  padding-top: 3px;
  background: none;
  border: none;
  color: #000;
}

.ol-dragzoom {
  border: 3px solid #ee6c00;
}


.map-tool {
  position: absolute;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 999;
  padding: 4px;
}

.map-toolbar {
  right: 10px;
  top: 10px;
}

.map-toolbar > div > a {
  background: rgba(238, 108, 0, .5) !important;
  border-color: rgba(238, 108, 0, .5) !important;
  transition: .5s ease !important;
  color: #fff !important;
}

.map-toolbar > div > a.active {
  background-color: #ee6c00 !important;
  border-color: #ee6c00 !important;
  color: #fff !important;
}

.scale-bar {
  right: 10px;
  bottom: 10px;

  > input {
    padding: 5px 0;
  }

  > * {
    float: left;
    margin-left: 5px;
  }

  > *:first {
    margin-left: 0px;
  }

  > a {
    background-color: rgba(238, 108, 0, 0.5);
    transition: ease 0.5s;

    &:hover {
      background-color: rgba(238, 108, 0, 1);
    }

  }
}

/*--------------------------------------------------------------
## Site-Map
--------------------------------------------------------------*/
#site-map {
  list-style-type: none;
}

/*--------------------------------------------------------------
/## Site-Map
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Layout - Static pages - FAQ
--------------------------------------------------------------*/


.faq-title-toggle::after {
  content: '';
}

.faq-title-toggle,
.item-toggle {
  cursor: pointer;
  position: relative;
}

#rejestracja-toggle,
#rejestracja-answer,
#aktywacja-toggle,
#aktywacja-answer,
#komunikaty,
#odzyskiwanie {
  display: none;
}

#rejestracja-toggle {
  margin-top: -10px;
}

#aktywacja-toggle {
  margin-top: -25px;
}

/*--------------------------------------------------------------
### Layout - Footer
--------------------------------------------------------------*/

.site-footer {
  border-top: 1px solid #e6e6e6;
  padding: 10px 20px;
  background-color: #808080;
  color: #fff;
}

.site-info {
  text-align: right;
}
.site-info a {
  color: white;
}
.site-info a:hover {
  color: black;
}


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.post .entry-meta .byline {
  display: none;
}

.group-blog .byline {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
  color: #000;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}


/*--------------------------------------------------------------
## Validation class
--------------------------------------------------------------*/
.valid-error-text {
  display: block;
}

.valid-error-color {
  color: #ed5565;
}

.valid-error-border {
  border: 1px solid #ed5565 !important;
}

/*--------------------------------------------------------------
## High contrast mode
--------------------------------------------------------------*/
.skins .entry-summary {
  color: #feed00 !important;
}

.skins .faq-h4-tab {
  color: #feed00 !important;
}

.skins input.search-field {
  background-color: #000 !important;
}

.wcag_hide {
  clip: rect(1px, 1px, 1px, 1px);
  display: block;
  position: absolute;
  top: 0;
  width: 1px;
  height: 1px;
}

.skins .wrapper {
  background: #000;
}

.skins input.search-field::-webkit-input-placeholder {
  color: #feed00;
}

.skins input.search-field::-moz-placeholder {
  color: #feed00;
}

.skins input.search-field:-ms-input-placeholder {
  color: #feed00;
}

.skins input.search-field:-moz-placeholder {
  color: #feed00;
}

.skins .search-submit {
  background: #000;
  color: #feed00 !important;
}

.skins .search-submit:hover {
  background: #474747 !important;
  color: #feed00 !important;
}

.skins .main,
.skins .contrast-button,
.skins .btn-orange {
  background: #feed00;
  color: #000 !important;
}

.skins .contrast-button:hover {
  background: #ee6c00;
  color: #feed00 !important;
}

.skins .side-menu li a {
  border-bottom: 1px solid #000;
  color: #000 !important;

}

.skins .side-menu-mobile {
  background: #000;
}

.skins .side-menu-mobile li {
  border-bottom: 1px solid #ee6c00;
}

.skins .elementor-widget-container a {
  color: #ee6c00 !important;
}

.skins #desc,
.skins .elementor-icon-box-description :not('label') {
  color: #feed00 !important;
}

.skins #remove {
  color: #000;
}

.skin .main-content,
.skins .edit-link,
.skins .elementor *,
.skins a,
.skins .entry-content,
.skins caption,
.skins .panel-widget-style-for-1270-1-1-1,
.skins .panel-widget-style-for-1270-1-1-1 .so-widget-sow-editor-base,
.skins #panel-1962-1-1-1,
.skins .panel-widget-style-for-1962-1-1-1 .so-widget-sow-editor-base,
.skins .panel-widget-style-for-1962-1-1-1,
.skins #wpadminbar .screen-reader-shortcut {
  color: #feed00 !important;
}

.skins .list-group-item {
  background-color: #000;
}

.skins .skip-link, .skins #wpadminbar .screen-reader-shortcut {
  background: #474747;
}

.skins #remove {
  background: #000;
  color: #feed00;
  border: 1px solid #fff;
}

.skins .panel-widget-style {
  background: #000 !important;
  color: #feed00 !important;
}

.skins .header,
.skins .main-content,
.skins .divider,
.skins .site-footer,
.skins .panel-widget-style-for-1270-2-0-1,
.skins .panel-widget-style-for-1270-0-0-1,
.skins .panel-widget-style-for-1962-2-0-1,
.skins #country-name {
  background: #000 !important;
  color: #feed00;
}

.skins .ibox-title-download,
.skins .form-control {
  background: #000;
  color: #feed00;
  border: 1px solid #feed00;
}

.skins .divider {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.skins .page-name,
.skins .page-name a,
.skins .page-name h3 {
  background-color: #4f4f4f;
  color: #feed00;
}

.skins #managers-mobile {
  border-top: 1px solid #ee6C00;
}

.skins #zarzadcy-drog-mobile {
  border-top: 1px solid #ee6C00;
}

.skins input[type="text"]:focus,
.skins input[type="textarea"]:focus,
.skins input[type="email"]:focus,
.skins input[type="url"]:focus,
.skins input[type="password"]:focus,
.skins input[type="search"]:focus,
.skins input[type="number"]:focus,
.skins input[type="tel"]:focus,
.skins input[type="range"]:focus,
.skins input[type="date"]:focus,
.skins input[type="month"]:focus,
.skins input[type="week"]:focus,
.skins input[type="time"]:focus,
.skins input[type="datetime"]:focus,
.skins input[type="datetime-local"]:focus,
.skins input[type="color"]:focus,
.skins textarea:focus {
  color: #feed00;
}

.skins .list_elements li:hover {
  background-color: #feed00 !important;
  color: #000 !important;
}

.skins .list_elements li.active {
  background-color: #feed00 !important;
  color: #000 !important;
}

.skins .list_elements li {
  background-color: #000 !important;
  border: 1px solid #feed00;
}

.skins .map-tool {
  background-color: rgba(0, 0, 0, 0.2);
}

.skins #cookie-law-btn {
  background-color: #feed00 !important;
  color: #000 !important;
}

.skins #cookie-law-bar {
  background-color: #000 !important;
  border-top: 1px solid #feed00 !important;
  color: #feed00 !important;
}

.skins .note-btn {
  color: #feed00;
  background-color: #000;
}

.skins .dropdown-fontsize, .skins .note-fontsize > .open button, .skins .note-fontsize > .open button:focus {
  background-color: #000;
  color: #feed00 !important;
}

.skins .dropdown-fontsize li a:hover, .skins .dropdown-fontsize li a:focus {
  background-color: #feed00;
  color: #333 !important;
}

#search {
  border: 1px solid #EE6C00;
  padding: 5px;
  cursor: pointer;
}

#search:focus {
  border: 1px solid #EE6C00;
}

.form-horizontal {
  margin-bottom: 33.9px;
}

.list_element {
  overflow-y: auto;
  min-width: 100px;
  margin-bottom: 10px;
  padding: 0;
}

.list_elements {
  height: 500px;
}

.list_elements li {
  cursor: pointer;
  background: #eee;
  padding: 10px;
  border-radius: 3px;
  margin: 5px;
}

.list_elements li:hover {
  background-color: #ee6c00;
  color: #fff;
}

.list_elements li.active {
  background-color: #ee6c00;
  color: #fff;
}

#print_post {
  text-align: right;
}

#map {
  height: 500px;
  border: 1px solid #eee;
  padding: 0;
  transition: none;
}

/*--------------------------------------------------------------
## Spinner
-------------------------------------------------------------*/
#map-gis-spinner {
  position: absolute;
  display: flex;
  z-index: 99999;
  width: 18vw;
  height: 50vh;
  background: hsla(0, 0%, 100%, .5);
}

#app-spinner div {
  margin: auto;
}

.sk-spinner-rotating-plane.sk-spinner {
  width: 30px;
  height: 30px;
  background-color: #ee6c00;
  margin: auto;
  -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
  animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotatePlane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }

  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

@keyframes sk-rotatePlane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }

  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

/*--------------------------------------------------------------
## Tables
--------------------------------------------------------------*/
.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
  vertical-align: middle;
}

/*--------------------------------------------------------------
## Media Queries
--------------------------------------------------------------*/
@media screen and (max-width: 677px) {
  .mobile-sitebar {
    top: 206px;
  }
}

@media screen and (max-width: 527px) {
  .mobile-sitebar {
    top: 245px;
  }
}

@media screen and (max-width: 386px) {
  .mobile-sitebar {
    top: 264px;
  }
}

@media screen and (max-width: 276px) {
  .mobile-sitebar {
    top: 305px;
  }
}

@media screen and (max-width: 780px) {
  .site-content {
    margin: 0;
  }

  #search {
    margin-left: 35px;
    margin-right: 35px;
  }

  #search_inputs {
    margin-left: 35px;
    margin-right: 35px;
  }

  .list_element {
    height: 230px;
    min-width: 120px;
  }

  #normal-size {
    margin-left: 8px;
  }

  .static-page {
    margin: 0;
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .container {
    width: 590px;
  }
}

@media screen and (min-width: 677px) {
  .mobile-sitebar {
    display: none !important;
  }

  .header .contrast {
    display: none;
  }

  .header .font-size {
    display: none;
  }

  .header .flags {
    display: none;
  }
}

@media screen and (max-width: 677px) {
  header h2.page-title {
    display: none;
  }

  #kpd-logos-mobile {
    display: block;
  }

  #kpd-logos-mobile-en {
    display: block;
  }

  .container {
    width: 345px;
    padding-left: 0;
    padding-right: 0;
  }

  .main-content {
    padding: 0;
  }

  .static-header-page {
    padding: 0;
  }

  .divider {
    margin: 10px 0 !important;
    display: flex;
    justify-content: space-between;
  }

  .divider-desktop {
    display: none;
  }

  .divider-mobile {
    display: block;
  }

  .divider-mobile h2 {
    font-size: 1.5em !important;
  }

  .entry-title {
    margin: 0 auto !important;
  }

  .entry-title a {
    color: #fff;
  }

  a.orange {
    color: #ee6c00;
  }

  .hamburger {
    display: block;
    order: -3;
    margin-left: 10px;
    color: gray;
  }

  .header span {
    flex: 0;
    order: -2;
  }

  .gddkia-logo {
    height: 80px;
    margin: 0;
    margin: 10px 0 10px 0;
  }

  .flags {
    margin-right: 23px;
  }

  .flags ul li {
    padding: 0 8px;
  }

  .user-login {
    order: -1;
    margin-right: 7px;
    font-size: 12px;
  }

  .registration {
    order: -2;
    font-size: 12px;
  }

  .list-element {
    max-height: 200px;
  }

  #map {
    padding: 0;
    height: 450px;
  }

  /*
  * Hide elements for mobile view
  */
  .kpd-logos,
  .main-page-background,
  .main-sitebar,
  .print,
  .applications-links,
  .user-login
/*  .map-container, .map-tool.map-toolbar */
  {
    display: none;
  }

  .divider .font-size {
    display: none;
  }

  .divider .contrast {
    display: none;
  }

  .divider .flags {
    display: none;
  }

  /*homepage*/
  .homepage-img-big {
    display: none;
  }

  #pgc-1270-1-1 {
    padding: 0 15% !important;
  }

  .site-info {
    font-size: 10px;
  }

  /*homepage*/
}


@media screen and (min-width: 1200px) {
  .container {
    width: 1030px;
  }
}

@media screen and (max-width: 1360px) and (min-width: 677px) {
  #pgc-1270-1-0, #pgc-1962-1-0 {
    width: calc(35% - (0.63 * 30px)) !important;
  }

  #pgc-1270-1-1, #pgc-1962-1-1 {
    width: calc(15% - (0.63 * 30px)) !important;
  }

  #pgc-1270-1-2, #pgc-1962-1-2 {
    width: calc(50% - (0.63 * 30px)) !important;
  }
}

@media screen and (max-width: 1250px) and (min-width: 677px) {
  #pgc-1270-1-1 h4, #pgc-1962-1-1 h4 {
    font-size: 13px !important;
  }

  #pgc-1270-1-0, #pgc-1962-1-0 {
    width: calc(33% - (0.63 * 30px)) !important;
  }

  #pgc-1270-1-1, #pgc-1962-1-1 {
    width: calc(12% - (0.63 * 30px)) !important;
  }

  #pgc-1270-1-2, #pgc-1962-1-2 {
    width: calc(55% - (0.63 * 30px)) !important;
  }
}

@media screen and (max-width: 1200px) and (min-width: 677px) {
  article#post-1270 {
    padding-top: 466px;
  }

  article#post-1962 {
    padding-top: 466px;
  }

  #pgc-1270-1-1 h4, #pgc-1962-1-1 h4 {
    font-size: 18px !important;
  }

  #pgc-1270-1-0, #pgc-1962-1-0 {
    width: 660px !important;
  }

  #pgc-1270-1-1, #pgc-1962-1-1 {
    width: 330px !important;
  }

  #pgc-1270-1-2, #pgc-1962-1-2 {
    width: 10px !important;
  }
}

@media screen and (max-width: 1000px) and (min-width: 677px) {
  #pg-1270-1.panel-no-style {
    -ms-flex-direction: inherit !important;
    flex-direction: inherit !important;
  }

  #pgc-1270-1-0, #pgc-1962-1-0 {
    width: calc(66% - (0.63 * 30px)) !important;
  }

  #pgc-1270-1-1, #pgc-1962-1-1 {
    width: calc(33% - (0.63 * 30px)) !important;
  }

  #pgc-1270-1-2, #pgc-1962-1-2 {
    width: 0 !important;
  }
}

@media print {
  .container {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  #map {
    display: none !important;
  }


  #colophon {
    display: none !important;
  }

  #pg-1962-1 {
    display: none !important;
  }

  #pg-1270-1 {
    display: none !important;
  }

  .map-container {
    display: none !important;
  }

  .header {
    display: none !important;
  }

  .divider {
    display: none !important;
  }

  .main-sitebar {
    display: none !important;
  }

  .elementor-row {
    display: flex;
    flex-flow: row nowrap !important;
  }

  .row {
    display: flex;
    flex-flow: row nowrap !important;
  }

  #map {
    position: absolute;
    left: 320px;
    width: 685px;
  }
}
