

/*smartphoto*/

@keyframes smartphoto {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes smartphoto-img-wrap {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes smartphoto-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}

@keyframes smartphoto-loader {
  0% {
    opacity: 0.4;
    transform: rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: rotate(180deg);
  }
  100% {
    opacity: 0.4;
    transform: rotate(360deg);
  }
}

@keyframes smartphoto-appear {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes smartphoto-hide {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

.smartphoto {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: black;
  opacity: 1;
  font-family: sans-serif;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  transition: all 0.3s ease-out;
  animation-name: smartphoto;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
}

.smartphoto[aria-hidden="true"] {
  display: none;
}

.smartphoto-close {
  opacity: 0;
}

.smartphoto-count {
  display: inline-block;
  color: #fff;
  font-size: 16px;
}

.smartphoto-header {
  display: block;
  box-sizing: border-box;
  position: fixed;
  z-index: 102;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.2);
}

.smartphoto-content {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.smartphoto-dismiss {
  display: block;
  position: absolute;
  top: 15px;
  right: 10px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background-color: transparent;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0i44Os44Kk44Ok44O8XzEiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDI4MzQuNjUgMjgzNC42NSIgZmlsbD0iI0ZGRiI+PHRpdGxlPmljb248L3RpdGxlPjxwYXRoIGQ9Ik0xNTc2LjQyLDE0MDYuNzYsMjc4NCwxOTkuMTlhNTYuODYsNTYuODYsMCwwLDAsMC04MC4xOGwtNzguOTItNzguOTJhNTYuODYsNTYuODYsMCwwLDAtODAuMTgsMEwxNDE3LjMyLDEyNDcuNjYsMjA5Ljc1LDQwLjA5YTU2Ljg2LDU2Ljg2LDAsMCwwLTgwLjE4LDBMNTAuNjUsMTE5YTU2Ljg2LDU2Ljg2LDAsMCwwLDAsODAuMThMMTI1OC4yMywxNDA2Ljc2LDUwLjY1LDI2MTQuMzRhNTYuODYsNTYuODYsMCwwLDAsMCw4MC4xOGw3OC45Miw3OC45MmE1Ni44Niw1Ni44NiwwLDAsMCw4MC4xOCwwTDE0MTcuMzIsMTU2NS44NiwyNjI0LjksMjc3My40NGE1Ni44Niw1Ni44NiwwLDAsMCw4MC4xOCwwbDc4LjkyLTc4LjkyYTU2Ljg2LDU2Ljg2LDAsMCwwLDAtODAuMThaIi8+PC9zdmc+);
  text-shadow: 0 1px 0 #fff;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}

.smartphoto-body {
  position: relative;
  z-index: 102;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.smartphoto-inner {
  position: relative;
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.smartphoto-img {
  display: none;
  max-width: none;
  width: auto;
  height: auto;
  cursor: zoom-in;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: transform 0.3s ease-out;
  -webkit-user-drag: none;
}

.smartphoto-img.active {
  display: block;
}

.smartphoto-img-onmove {
  cursor: grab;
  cursor: -webkit-grab;
  transition: none;
}

.smartphoto-img-elasticmove {
  transition: transform 0.3s ease-out;
}

.smartphoto-img-wrap {
  display: inline-block;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  animation-name: smartphoto-img-wrap;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
}

.smartphoto-img-left {
  transform: translateX(150%) !important;
}

.smartphoto-img-right {
  transform: translateX(-150%) !important;
}

.smartphoto-arrows {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1002;
  top: 50%;
  left: 0;
  opacity: 1;
  animation-name: smartphoto-appear;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
}

.smartphoto-arrows[aria-hidden="true"] {
  animation-name: smartphoto-hide;
  display: none;
}

.smartphoto-arrows li {
  display: block;
  position: absolute;
  box-sizing: content-box;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -20px;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
  animation-name: smartphoto-appear;
}

.smartphoto-arrows li:focus {
  outline: none;
}

.smartphoto-arrows [aria-hidden="true"] {
  animation-name: smartphoto-hide;
  display: none;
}

.smartphoto-arrows a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.smartphoto-arrow-right {
  right: 0;
  padding: 5px 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.smartphoto-arrow-right a {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0i44Os44Kk44Ok44O8XzEiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDI4MzQuNjUgMjgzNC42NSIgZmlsbD0iI0ZGRiAiPjx0aXRsZT5pY29uPC90aXRsZT48cGF0aCBkPSJNMTgzNy44OCwxNDE3LjMyLDY0My41OSwyMjNhNzIuMjEsNzIuMjEsMCwwLDEsMC0xMDEuODJMNzQzLjgyLDIxYTcyLjIxLDcyLjIxLDAsMCwxLDEwMS44MiwwTDIwOTAuODMsMTI2Ni4xOWwxMDAuMjMsMTAwLjIzYTcyLjIxLDcyLjIxLDAsMCwxLDAsMTAxLjgyTDg0NS42NCwyODEzLjY1YTcyLjIxLDcyLjIxLDAsMCwxLTEwMS44MiwwTDY0My41OSwyNzEzLjQyYTcyLjIxLDcyLjIxLDAsMCwxLDAtMTAxLjgyWiIvPjwvc3ZnPg==);
}

.smartphoto-arrow-left {
  left: 0;
  padding: 5px 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.smartphoto-arrow-left a {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0i44Os44Kk44Ok44O8XzEiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDI4MzQuNjUgMjgzNC42NSIgZmlsbD0iI0ZGRiI+PHRpdGxlPmljb248L3RpdGxlPjxwYXRoIGQ9Ik05OTYuNzcsMTQxNy4zMiwyMTkxLjA2LDIyM2E3Mi4yMSw3Mi4yMSwwLDAsMCwwLTEwMS44MkwyMDkwLjgzLDIxQTcyLjIxLDcyLjIxLDAsMCwwLDE5ODksMjFMNzQzLjgyLDEyNjYuMTksNjQzLjU5LDEzNjYuNDJhNzIuMjEsNzIuMjEsMCwwLDAsMCwxMDEuODJMMTk4OSwyODEzLjY1YTcyLjIxLDcyLjIxLDAsMCwwLDEwMS44MiwwbDEwMC4yMy0xMDAuMjNhNzIuMjEsNzIuMjEsMCwwLDAsMC0xMDEuODJaIi8+PC9zdmc+);
}

.smartPhotoArrowHideIcon {
  display: none;
}

.smartphoto-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  animation-name: smartphoto-appear;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
}

.smartphoto-nav[aria-hidden="true"] {
  animation-name: smartphoto-hide;
  display: none;
}

.smartphoto-nav ul {
  display: block;
  overflow-x: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.smartphoto-nav li {
  display: inline-block;
  overflow: hidden;
  width: 50px;
  height: 50px;
}

.smartphoto-nav a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-position: center center;
  background-size: cover;
  opacity: 0.5;
}

.smartphoto-nav a:focus {
  opacity: 0.8;
}

.smartphoto-nav a.current {
  opacity: 1;
}

.smartphoto-nav img {
  width: auto;
  height: 100%;
}

.smartphoto-list {
  list-style-type: none;
  position: absolute;
  z-index: 101;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.smartphoto-list li {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;
}

.smartphoto-list li:focus {
  outline: none;
}

.smartphoto-list-onmove {
  transition: all 0.3s ease-out;
}

.smartphoto-caption {
  overflow: hidden;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  padding: 0 50px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  line-height: 50px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.smartphoto-caption:focus {
  outline: none;
}

.smartphoto-loader-wrap {
  display: block;
  position: relative;
  z-index: 103;
  width: 0;
  height: 0;
  transform: translate(50vw, 50vh);
}

.smartphoto-loader {
  position: absolute;
  z-index: 101;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  margin-top: -25px;
  margin-left: -25px;
  border: 8px solid #17cddd;
  border-right-color: transparent;
  border-radius: 50%;
  animation: smartphoto-loader 0.5s infinite linear;
}

.smartphoto-img-clone {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  transition: all 0.3s ease-out;
}

.smartphoto-sr-only {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
}


/*main*/

html {
  margin: 0px;
  height: 100%;
  font-family: "Lato", sans-serif;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
}

img {
  border: 0;
}

#header_img {
  background-image: url(../img/standard/header_strona_glowna.png);
  background-size: cover !important;
  background-position: center center !important;
  float: none;
  margin-top: 6px;
  height: 262px;
}

#header {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 30px;
  padding-right: 30px;
}
#hsection1 {
  width: 100%;
  min-height: 90px;
  margin-bottom: 14px;
}

#menu {
  float: right;
}
#hamburger {
  float: right;
  display: none;
  cursor: pointer;
}

#logo {
  float: left;
  margin-top: 20px;
  background: url(../img/standard/leon_wyczolkowski.png);
  width: 398px;
  height: 92px;
  cursor: pointer;
}

#lang {
  float: right;
  width: 103px;
  height: 89px;
  background: url("../img/standard/lang_bg.png");
  position: relative;
}
#lang div {
  text-align: center;
  margin-top: 50px;
  color: #f6f6f6;
}

#lang a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 15px;
}

#lang a:hover,
#lang .current {
  color: #041b27;
  font-weight: bold;
}

#main {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 30px;
  padding-right: 30px;
}
#footer {
  max-width: 1240px;
  float: inherit;
  margin-right: auto;
  margin-left: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.about {
  background: linear-gradient(to bottom, #0d3547 0%, #010507 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d3547', endColorstr='#010507',GradientType=0 ); /* IE6-9 */
  width: 40%;
  float: left;
  min-height: 500px;
}
.about-cont {
  margin: 40px;
  color: #f5f5f5;
  font-size: 16px;
  line-height: 1.4;
}

h1 {
  color: #ff8a00;
  font-size: 24px;
}

h2 {
  color: #ff8a00;
}

#slide_info {
  text-align: left;
  color: #333333;
  font-size: 11px;
  vertical-align: middle;
  margin: 20px 20px 20px 0;
  float: right;
}

.slide {
  min-height: 280px;
}

#islide_current,
#islide_max {
  color: #999999;
}

#islide_timer {
  width: 100px;
  height: 4px;
  float: left;
  margin: 11px 25px 0 5px;
  background-color: #dddddd;
  display: none;
}

#slide_nav {
  text-align: center;
  font-size: 22px;
  margin-bottom: 10px;
  float: left;
}

#slide_nav a {
  margin: 0 6px 0 6px;
  border: none;
}

.pointer {
  cursor: pointer;
}

#slide_left {
  position: absolute;
  top: 110px;
  left: -45px;
  display: none;
}

#slide_right {
  position: absolute;
  top: 110px;
  right: -45px;
  display: none;
}

.hidden {
  display: none;
}

.slider {
  background-color: #f0f0f0;
  height: auto;
  float: left;
  width: 60%;
  min-height: 500px;
}

.slider-cont {
  margin: 40px;
  position: relative;
}
.slider-cont h1 a {
  color: #ff8a00;
}

.slider-cont p a {
  color: #000000;
}

.slide img {
  width: 100% !important;
  max-height: 150px !important;
  background-size: cover !important;
}

a {
  color: #0a3da1;
  text-decoration: none;
}

#tmenu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  float: right;
}

#tmenu li {
  float: left;
  font-size: 15px;
  font-family: Lato;
  border-right: #bebebe 1px solid;
}

#tmenu li:last-child {
  border-right: none !important;
}

#tmenu .sub-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 1);
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 120;
  max-width: 280px;
}
#tmenu .sub-menu a {
  color: #808080;
}

#tmenu li:hover .sub-menu {
  display: block !important;
}

#tmenu li:last-child:after,
.sub-menu li:after {
  content: "" !important;
}

#tmenu li a {
  display: block;
  color: #808080;
  padding: 8px 16px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

#tmenu li a:hover {
  color: #ffffff;
  background-color: #ff9600;
}

#tmenu .sub-menu li {
  display: block !important;
  width: 100%;
  padding: 3px;
  border-right: none !important;
}

.current-menu-item {
  color: #ffffff;
  border-bottom: 2px solid #ff9600;
}

.content-page {
  background-color: #f0f0f0;
  width: 100%;
  padding: 50px;
}
.header_img2 {
  background-size: cover !important;
  background-position: center center !important;
  float: none;
  margin-top: 6px;
  height: 140px;
}
.page-name {
  background-color: rgba(15, 41, 64, 0.8);
  color: #ffffff;
  font-size: 18px;
  width: auto;
  float: right;
  padding: 15px;
  margin-top: 88px;
}
.content-text {
  width: 70%;
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
  float: left;
}

.col_100 {
  width: 100%;
}

.left-menu {
  width: 30%;
  float: left;
}
.left-menu-name {
  padding-bottom: 0px;
  padding-top: 10px;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 700;
}
.left-menu-cat img {
  display: none;
}
.left-menu-cat {
  font-weight: 600;
  color: rgba(15, 41, 64);
  padding-bottom: 10px;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.photo,
.photo2 {
  border: 1px solid #cccccc;
  padding: 6px;
  background-color: #ffffff;
  text-align: center;
}
.photo_l,
.efoto_cr_l {
  margin-right: 8px;
  border: 1px solid #cccccc;
  float: left;
}
.photo_r,
.efoto_cr_r {
  margin-left: 8px;
  border: 1px solid #cccccc;
  float: right;
}

.efoto_cr,
.efoto_cr_l,
.efoto_cr_r {
  border: 1px solid #cccccc;
  color: #aaaaaa;
  padding: 6px;
  background-color: #ffffff;
  box-sizing: content-box;
  font-size: 10px;
}

.efoto_cr span,
.efoto_cr_l span,
.efoto_cr_r span {
  font-size: 10px;
  line-height: 125%;
  padding: 3px 5px !important;
}

.phelper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.photo2 {
  width: 120px;
  height: 120px;
  margin: 6px;
  float: left;
}
.photo2 img {
  vertical-align: middle;
  max-height: 100x;
  max-width: 100px;
  cursor: pointer;
}

h6 {
  color: #ff8a00;
  margin: 0px;
  font-size: 24px;
}

h6 a {
  color: #ff8a00;
}

.nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
  float: right;
  margin-right: 15px;
}

.nav li {
  float: left;
  margin-left: 6px;
}

.nav li a:hover {
  background-color: #0A87A8;
  display: block;
  text-decoration: none;
  color: #ffffff;
}

.nav li a {
  padding: 4px 9px;
  background-color: #e0b784;
  display: block;
  text-decoration: none;
  color: #000000;
}

.nav .current {
  background-color: #0A87A8;
  color: #ffffff;

  display: block;
  text-decoration: none;
  font-weight: bold;
  padding: 4px 9px;
}

.more {
  margin-bottom: 10px;
  margin-top: -20px;
  float: right;
  background-color: #ff8a00;
}

.more a {
  padding: 3px 7px 3px 7px;
  display: block;
  color: #fff;
}

.input {
  background-color: #ffa500;
  color: #ffffff;
  border: 1px solid #33302f;
  font-size: 15px;
  padding: 10px 15px 10px 15px;
}

.input_default {
  background-color: #cccccc;
  color: #555352;
}

#result_con {
  margin-top: 10px;
}
.rlist {
  padding: 15px;
}

.rlist h3 {
  font-size: 17px;
  font-style: italic;
  margin: 0;
  padding: 0;
}

.rodd {
  font-size: 13px;
  color: #000000;
  background-color: #e4e4e4;
}

.reven {
  font-size: 13px;
  color: #000000;
  background-color: transparent;
}

#search_status {
  margin: 24px 0 0px 20px;
  width: 180px;
  font-size: 12px;
  float: left;
  color: #5c7783;
  line-height: 140%;
}

.submit,
.submit_warning {
  background-color: #036;
  color: #ffffff;
  padding: 8px;
  border: 1px solid #072343;
  cursor: pointer;
  font-size: 15px;
}

#games_header {
  position: relative;
  width: 100%;
  border: 1px solid #452d10;
  background-color: #036;
  font-size: 17px;
  background-image: linear-gradient(
    -90deg,
    rgb(5, 29, 42) 0%,
    rgb(5, 29, 42) 40%,
    rgb(1, 5, 7) 100%
  );
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff051d2a,endColorstr=#ff010507,GradientType=0)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff051d2a,endColorstr=#ff010507,GradientType=0);
}

#games_cont {
  background-color: #ccc;
  width: 100%;
  height: 700px;
  background-image: url(../img/standard/bg_article.jpg);
}

.game_ico {
  position: absolute;
  margin-left: 0;
  margin-top: -82px;
}
.game_category {
  float: left;
  margin-top: 20px;
  margin-left: 45px;
  font-size: 20px;
  font-family: "Times New Roman", Times, serif;
  color: #ff8a00;
}
.game_name {
  font-size: 16px;
  padding-left: 30px;
  font-family: "Times New Roman", Times, serif;
  color: white;
}
.game_close {
  padding-left: 10px;
  font-size: 18px;
  color: #ffffff;
  margin-right: 10px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ff8a00;

  float: right;
}

.game_close a {
  color: white;
}

.qname {
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 10px;
  color: #04141f;
}

.qinfo {
  font-size: 13px;
  color: #777777;
  margin-bottom: 20px;
}

.good_ans {
  color: green;
  font-size: 17px;
}
.bad_ans {
  color: red;
  font-size: 17px;
}

#qresult {
  font-size: 20px;
  color: #041041;
  text-align: center;
}

#quiz_button {
  margin-top: 10px;
  text-align: right;
}

#content_left {
  float: left;
  width: 40%;
}

#content_right {
  float: right;
  width: 60%;
  font-size: 15px;
  color: #333333;
}

.rowElem {
  margin: 0 0 15px 0;
  padding-left: 10px;
  padding-bottom: 15px;

  font-size: 18px;
  text-align: left;

  border-bottom: 1px dotted #c45d00;
}

.rowElem label {
  margin-left: 25px;
  line-height: 135%;
  float: left;
  color: #04141f;
}

.rowElem span {
  margin-top: -4px;
}

#quiz_name {
  float: left;
  width: 40%;
}

#quiz_name {
  float: left;
  width: 60%;
  padding-left: 20px;
  padding-top: 20px;
  color: #ff8a00;
}

#quiz_status {
  float: right;
  width: 40%;
  padding-top: 20px;
}

.question_status {
  color: #ffffff;
  font-size: 15px;
  text-align: right;
  font-family: verdana;
  float: left;
  padding: 20px;
}

.question_status span {
  color: #888888;
}

#ws_container {
  max-width: 1080px;
  position: relative;
}

#ws_container img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ws_marker {
  width: 24px;
  height: 24px;
  background: url("../img/standard/pin.png");
  position: absolute;
  z-index: 20;
  cursor: pointer;
}

.ws_info {
  z-index: 60;
  position: absolute;

  top: 40px;
  left: 50px;
  bottom: 50px;
  right: 30px;
  display: none;
  margin: 0 auto;
}

.ws_info_head {
  height: 37px;
  width: 100%;
}

.ws_info_head div {
  float: right;
  padding: 5px 10px 5px 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  cursor: pointer;
}

.ws_info_body {
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  width: 100%;
  height: 100%;
}
.ws_info_left {
  width: 30%;
  height: 100%;
  background: #ffffff;
  float: left;
  padding: 10px;
}

.ws_info_right {
  width: 70%;
  background: #ffffff;
  float: left;
  height: 100%;
  overflow: auto;
  padding: 10px;
  padding-right: 40px;
  font-size: 14px;
}

.moreinfo {
  cursor: pointer;
  background-color: #f5e8cd !important;
  border-bottom: 1px solid #eed6a2;
}

.link_return {
  color: #ffffff;
  padding: 10px;
  border: 1px solid #ff8a00;
  background-color: #000;
  margin-left: 20px;
}

.ul_left {
  padding: 0;
  margin-top: 20px;

  width: 90%;
  list-style: none;
  font-size: 16px;
  text-align: left;
  font-weight: bold;
}

.ul_left li {
  border-bottom: 1px dotted #808181;
  line-height: 130%;
  min-height: 20px;
  font-weight: 300;
}

.ul_left li a {
  padding: 9px;
  display: block;
  text-decoration: none;
  color: #0a3da1;
  width: 100%;
}

.ul_left li a:hover {
  background: none;
  background-color: #ffa500;
  display: block;
  text-decoration: none;
  color: #ffffff !important;
}

.ul_left .current,
.ul_left .current a {
  background: none;
  background-color: #ffa500;
  color: #ffffff !important;
}

#library_left {
  width: 40%;
  float: left;
}

#library_right {
  width: 60%;
  float: left;
  font-size: 15px;
  color: #333333;
}

#library_iauthor,
#library_ititle,
#library_ipublisher {
  padding: 5px 0 7px 0;
  border-bottom: 1px dotted #c45d00;
}

#library_ititle {
  font-size: 16px;
  font-weight: bold;
  line-height: 140%;
  font-family: arial;
}

#library_ipublisher {
  font-size: 11px;
  line-height: 140%;
}

#library_body {
  margin-top: 25px;
  text-align: justify;
  line-height: 140%;
}

#letter_ct {

}

#letter_left {
  width: 30%;
  float: left;
}

#letter_right {
  width: 70%;
  float: left;
  font-size: 15px;
  color: #333333;
}
.letter_head {
  font-size: 14px;
  color: #333333;
  padding: 16px;
  border-bottom: 1px solid #b6ae9f;
}

.letter_head span {
  width: 70px;
  display: inline-block;
}

.letter_head h6 {
  font-size: 16px;
  padding: 6px 10px 6px 10px;
  background-color: #eaeaea;
  color: #333333;
  display: inline-block;
}
#wykaz-dziel-wywiezionych {
width: 100%;
max-width: 100%;
padding: 3px;
}
/*

Media Queries

*/

@media all and (min-width: 1171px) {
  #tmenu {
    display: block !important;
  }
}

@media only screen and (max-width: 1170px) {
  #hsection1 br {
    display: none;
  }
  #menu,
  #tmenu {
    display: none;
  }
  #tmenu .sub-menu {
    max-width: 100%;
  }
  #tmenu {
    display: none;
    z-index: 304;

    background-color: #ffffff;
    float: none;
    clear: both;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
  }

  #tmenu li {
    float: none !important;
  }

  #tmenu li a {
    display: block;
    width: 100% !important;
    text-align: left;
    border-bottom: none;
    color: #072343;
    padding: 12px;
  }

  #tmenu li a br {
    display: none;
  }

  .current-menu-item {
    color: #ff9600;
    font-weight: bold !important;
    border-bottom: none !important;
  }

  #tmenu .sub-menu {
    width: 100% !important;
    padding: 0 0 0 30px;
    display: block !important;
    position: static !important;
    background-color: #fafafa;
    box-shadow: none !important;
    font-weight: normal;
  }

  #hamburger {
    float: right;
    display: inherit;
  }
  .slider {
    width: 65%;
  }
  .about {
    width: 35%;
  }
  .about-cont {
    margin: 40px;
    color: #f5f5f5;
    font-size: 13px;
    line-height: 1.3;
  }
}
@media all and (min-width: 851px) {
  #left-menu-items {
    display: block !important;
  }
}

@media only screen and (max-width: 850px) {
  .about {
    display: none;
  }
  .slider {
    float: left;
    width: 100%;
  }

  .left-menu-name {
    background-color: #fff;
    padding: 15px;
    cursor: pointer;
  }
  .left-menu {
    width: 100%;
    padding-right: none !important;
  }
  #left-menu-items img {
    display: initial;
  }

  #left-menu-items {
    left: 0px;
    top: 0px;
    z-index: 1000;
    background-color: #ff8a00;
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: auto;
    text-align: center;
    display: none;
  }

  .ul_left {
    margin: 20px auto;
  }
  .content-text {
    width: 100%;
  }

  #letter_left,
  #library_left,
  #content_left,
  #content_right {
    width: 100%;
    float: none;
    text-align: center;
  }

  #letter_right,
  #library_right {
    width: 100%;
    float: none;
  }

  #quiz_name {
    padding-top: 12px;
    width: 100%;
    display: block;
    clear: both;
  }
  .question_status {
    float: left;
  }

  .ws_info_right {
    padding-right: 20px !important;
  }
}

@media only screen and (max-width: 610px) {
  h1 {
    font-size: 20px;
  }
  #logo {
    background: url(../img/standard/leon_wyczolkowski.png);
    width: 220px;
    height: 51px;
    background-position: center center;
    background-size: contain;
  }
  #hsection1 {
    height: 70px !important;
    margin-bottom: 5px !important;
    min-height: auto;
  }
  .header_img2 {
    margin-top: 0px;
    height: 90px;
  }
  .content-page {
    padding: 20px;
  }

  .page-name {
    padding: 10px;
    margin-top: 48px;
  }
  h2 {
    font-size: 20px;
  }
  .content-text {
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
  }

  #hamburger {
    height: 65px;
  }

  #hamburger img {
    width: 70px;
    height: 65px;
  }

  #header_img {
    height: 180px;
  }
  #header,
  #main,
  #footer {
    padding-left: 10px;
    padding-right: 10px;
    min-width: 300px;
  }
  .slider-cont {
    margin: 30px;
  }

  .ws_info {
    position: absolute;
    top: -250px;
    bottom: 20px;
    left: 0px;
    right: 0px;
    height: 400px;
  }

  .ws_info_body {
    height: auto;
  }

  .ws_info_left {
    max-height: 230px;
    width: 100%;
    clear: both;
  }

  .ws_info_left img {
    margin: 0 auto;
  }

  .ws_info_right {
    height: 200px !important;
    width: 100%;
    float: none;
    overflow-y: auto !important;
  }
  #footer_content img {
    width: 110px !important;
    height: 110px !important;
  }
  #footer_content {
    font-size: 11px;
  }
}
@media only screen and (max-width: 360px) {
  .efoto_cr,
  .efoto_cr_l,
  .efoto_cr_r {
    box-sizing: border-box;
    width: 100% !important;
    margin-bottom: 20px;
  }
  .efoto_cr img,
  .efoto_cr_l img,
  .efoto_cr_r img {
    width: 100% !important;
    height: inherit !important;
  }
}
