@charset "UTF-8";
@import 'https://fonts.googleapis.com/css?family=Love+Ya+Like+A+Sister';
@import 'https://fonts.googleapis.com/css?family=Poppins:300,400,700&subset=latin-ext';
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

a:hover {
  text-decoration: none;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.top_menu {
  width: 100%;
  background: -moz-linear-gradient(bottom, rgba(245, 245, 245, 0.65) 0%, rgba(245, 245, 245, 0) 100%);
  background: -webkit-linear-gradient(bottom, rgba(245, 245, 245, 0.65) 0%, rgba(245, 245, 245, 0) 100%);
  background: linear-gradient(to top, rgba(245, 245, 245, 0.65) 0%, rgba(245, 245, 245, 0) 100%);
}
.top_menu header::after {
  clear: both;
  content: "";
  display: table;
}
.top_menu header {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 25px;
}
.top_menu header .logo {
  float: left;
}
@media screen and (max-width: 991px) {
  .top_menu header .logo {
    width: 100%;
    float: none;
  }
  .top_menu header .logo img {
    margin: 0 auto;
    display: block;
    float: none;
  }
}
.top_menu header ul {
  padding: 0;
  display: table;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .top_menu header ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.top_menu header ul li {
  position: relative;
  cursor: pointer;
  display: inline-block;
  user-select: none;
  -webkit-user-select: none;
  margin: 18px 12px 0px;
}
@media screen and (max-width: 991px) {
  .top_menu header ul li {
    margin: 15px 10px;
  }
}
.top_menu header ul li {
  text-transform: uppercase;
  font-size: 12px;
  transition: all 0.2s;
}
.top_menu header ul li a {
  display: block;
  padding: 10px 15px;
}
.top_menu header ul li:hover, .top_menu header ul li.active {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.top_menu header ul li.search {
  padding-left: 20px;
}
.top_menu header ul li.search img {
  height: 13px;
  left: 0px;
  position: absolute;
}

body {
  background: #fff;
  width: 100%;
  padding: 0px;
  margin: 0px;
  font-family: "Poppins", sans-serif;
}

* {
  font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

a img {
  border-width: 0;
  outline: none;
}

.logo {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.logo:focus {
  outline: none;
}
#lang_selector {
  position: absolute;
  right: 20px;
  top: 10px;
}
@media screen and (max-width: 991px) {
  #lang_selector {
    right: auto;
    left: 20px;
    top: 10px;
  }
}
#lang_selector ul {
  padding: 0;
  margin: 0;
}
#lang_selector ul li {
  display: inline-block;
}
#lang_selector ul li a {
  padding: 0 1px;
  display: inline-block;
  text-align: center;
}
#lang_selector ul li a img {
  border: 1px solid #ccc;
  transform: scale(1);
  transition: all 0.2s;
}
#lang_selector ul li a:hover img {
  transform: scale(1.2);
}

.clearfix {
  clear: both;
  float: none;
}

ul.posts {
  padding: 0;
  border-bottom: 1px solid #eee;
}
ul.posts li.post {
  clear: both;
  margin-bottom: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
  display: block;
}
ul.posts li.post:nth-child(1) {
  padding-top: 0;
  border-width: 0;
}
ul.posts li.post h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #64af8b;
  margin: 0;
  line-height: 1.3em;
}
ul.posts li.post .post-thumb {
  text-align: center;
  width: 122px;
  height: 122px;
  border: 1px solid #ddd;
  padding: 5px;
  float: left;
  margin-right: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
ul.posts li.post .post-thumb img {
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
}
ul.posts li.post .excerpt {
  color: #555;
  font-family: "Poppins", sans-serif;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 40px 0 24px;
  clear: both;
}
.pagination .page-numbers,
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  background: #f0f0f0;
  color: #444;
}
.pagination a.page-numbers:hover,
.pagination a:hover {
  background: #64af8b;
  color: #fff;
}
.pagination .current {
  background: #64af8b;
  color: #fff;
}
.pagination .dots {
  background: transparent;
  color: #aaa;
  cursor: default;
  pointer-events: none;
}
.pagination .page-count {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #888;
  background: transparent;
  min-width: auto;
  padding: 0 8px;
}
.pagination .inactive {
  background: #f0f0f0;
  color: #444;
}
.pagination .inactive:hover {
  background: #64af8b;
  color: #fff;
}

.slider-home {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
}
.slider-home .slider-overlay-l, .slider-home .slider-overlay-r {
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: repeat-y;
  width: 100px;
  z-index: 9999;
  transition: all 0.2s;
  background-size: 100%;
  display: none;
}
@media screen and (max-width: 1329px) and (min-height: 801px) {
  .slider-home .slider-overlay-l, .slider-home .slider-overlay-r {
    width: 0;
  }
}
@media screen and (max-width: 800px) {
  .slider-home .slider-overlay-l, .slider-home .slider-overlay-r {
    width: 0;
  }
}
.slider-home .slider-overlay-l {
  left: 0;
  background-position: left top;
  background-image: url("../img/slider-overlay-l.png");
}
.slider-home .slider-overlay-r {
  right: 0;
  background-position: right top;
  background-image: url("../img/slider-overlay-r.png");
}
.slider-home .nextend-arrow-previous {
  left: 20px !important;
}
.slider-home .nextend-arrow-next {
  right: 20px !important;
}
@media screen and (min-width: 1048px) {
  .slider-home .nextend-arrow-previous, .slider-home .nextend-arrow-next {
    top: 48% !important;
  }
}
@media screen and (min-width: 800px) and (max-height: 800px) {
  .slider-home .slider-overlay-l, .slider-home .slider-overlay-r {
    width: 50px !important;
  }
  .slider-home .nextend-arrow-previous {
    left: 20px !important;
  }
  .slider-home .nextend-arrow-next {
    right: 20px !important;
  }
}

#n2-ss-2 {
  overflow: visible !important;
}
#n2-ss-2 .nextend-bullet-bar-horizontal {
  bottom: -30px !important;
}

.slider {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.slider:focus {
  outline: none;
}
.slider {
  width: 100%;
}
.slider img {
  width: 100%;
}
.slider.butelki {
  margin: 0 auto;
  max-width: 900px;
}
.slider.butelki h1 {
  line-height: 1em;
  font-weight: 300;
  color: #0d6540;
  text-align: center;
  font-size: 45px;
}
.slider.butelki img {
  width: auto;
}
.slider .dymek {
  margin: 0 auto 30px auto;
  display: block;
}
.slider .navi {
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
}
.slider .slick-arrow {
  display: none !important;
}
.slider .slick-cloned {
  opacity: 0 !important;
}
.slider .item-slider {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.slider .item-slider:focus {
  outline: none;
}
.slider .item-slider {
  text-align: center;
  transition: all 0.2s;
  padding-top: 5px;
}
.slider .item-slider img {
  display: inline-block;
}
.slider .item-slider {
  opacity: 0;
}
.slider .item-slider.slick-active {
  opacity: 1;
}
.slider .item-slider a:focus {
  outline: none;
}
.slider .item-slider .bubble-item {
  -webkit-transform: rotate(62deg) scale(0.2); /* Chrome 4+, Op 15+, Saf 3.1, iOS Saf 3.2+ */
  -moz-transform: rotate(62deg) scale(0.2); /* Fx 3.5-15 */
  -ms-transform: rotate(62deg) scale(0.2); /* IE 9 */
  -o-transform: rotate(62deg) scale(0.2); /* Op 10.5-12 */
  transform: rotate(62deg) scale(0.2); /* Fx 16+, IE 10+ */
  padding-top: 30px;
  opacity: 0;
  font-family: "Love Ya Like A Sister", cursive;
  -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  background: url("../img/rondel/historia/bubble.png") no-repeat;
  background-size: contain;
  background-position: center;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.slider .item-slider .bubble-item span {
  line-height: 0.9em;
  display: block;
  -webkit-transform: rotate(32deg) scale(0.2); /* Chrome 4+, Op 15+, Saf 3.1, iOS Saf 3.2+ */
  -moz-transform: rotate(32deg) scale(0.2); /* Fx 3.5-15 */
  -ms-transform: rotate(32deg) scale(0.2); /* IE 9 */
  -o-transform: rotate(32deg) scale(0.2); /* Op 10.5-12 */
  transform: rotate(32deg) scale(0.2); /* Fx 16+, IE 10+ */
}
.slider .item-slider .bubble-item span.rok {
  font-size: 30px;
  color: #ff0000;
  -webkit-transition: all 700ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 700ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.slider .item-slider .bubble-item span.rok2 {
  color: #64af8b;
  -webkit-transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.slider .item-slider .butelka {
  height: 220px;
  display: flex;
  align-items: bottom;
  justify-content: center;
}
.slider .item-slider .butelka img {
  height: auto !important;
  align-self: flex-end;
}
.slider .item-slider.slick-current .bubble-item {
  opacity: 1;
  -webkit-transform: rotate(-12deg) scale(1); /* Chrome 4+, Op 15+, Saf 3.1, iOS Saf 3.2+ */
  -moz-transform: rotate(-12deg) scale(1); /* Fx 3.5-15 */
  -ms-transform: rotate(-12deg) scale(1); /* IE 9 */
  -o-transform: rotate(-12deg) scale(1); /* Op 10.5-12 */
  transform: rotate(-12deg) scale(1); /* Fx 16+, IE 10+ */
}
.slider .item-slider.slick-current .bubble-item span {
  -webkit-transform: rotate(0deg) scale(1); /* Chrome 4+, Op 15+, Saf 3.1, iOS Saf 3.2+ */
  -moz-transform: rotate(0deg) scale(1); /* Fx 3.5-15 */
  -ms-transform: rotate(0deg) scale(1); /* IE 9 */
  -o-transform: rotate(0deg) scale(1); /* Op 10.5-12 */
  transform: rotate(0deg) scale(1); /* Fx 16+, IE 10+ */
}

table#history {
  margin-top: 30px;
}
@media screen and (min-width: 681px) {
  table#history {
    margin-bottom: 50px;
  }
}
table#history {
  border-collapse: collapse;
}
table#history .panel-left {
  border-top-left-radius: 100px;
}
table#history .panel-right {
  border-top-right-radius: 100px;
}
table#history .panel-left, table#history .panel-right, table#history .photo-left, table#history .photo-right {
  width: 50%;
}
table#history .panel-left img, table#history .panel-right img, table#history .photo-left img, table#history .photo-right img {
  max-width: 100%;
}
table#history .panel-left, table#history .photo-left {
  clear: both;
}
table#history .panel-left, table#history .panel-right {
  background-color: #ddf1e5;
}
table#history .panel-left span, table#history .panel-right span {
  display: block;
  color: #0d6540;
  padding: 0 20px 20px 20px;
}
table#history .panel-left img, table#history .panel-right img {
  margin: 0 auto;
  margin-top: 20px;
  display: block;
}
table#history .photo-left, table#history .photo-right {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 680px) {
  table#history .panel-left, table#history .panel-right {
    border-radius: 0;
  }
  table#history .panel-left span, table#history .panel-right span {
    line-height: 1.4em;
  }
  table#history tr:nth-child(1) td.panel-left {
    border-top-left-radius: 20px !important;
  }
  table#history .photo-left, table#history .photo-right {
    display: table-footer-group;
  }
  table#history .photo-left .inner_wrapper, table#history .photo-right .inner_wrapper {
    height: 100vh;
  }
  table#history tr {
    display: table;
  }
  table#history td {
    width: 100% !important;
    display: block;
  }
}

.section::after {
  clear: both;
  content: "";
  display: table;
}
.section {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.kafelki {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.kafelki:focus {
  outline: none;
}
.kafelki::after {
  clear: both;
  content: "";
  display: table;
}
.kafelki {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 991px) {
  .kafelki {
    padding: 0px 20px;
  }
}
.kafelki h2 {
  font-size: 25px;
  font-weight: 300;
}
@media screen and (max-width: 480px) {
  .kafelki h2 {
    font-size: 18px;
  }
}
.kafelki h3 {
  font-size: 14px;
}
.kafelki h2,
.kafelki h3,
.kafelki h4,
.kafelki p {
  text-transform: uppercase;
  margin: 0;
  color: #64af8b;
}
.kafelki .facebook p {
  text-transform: none !important;
}
.kafelki .item .video-js {
  height: auto;
  width: 100%;
  padding-bottom: 57%;
}
.kafelki .item .video-js.front-video {
  padding-bottom: 0 !important;
  height: 200px;
  display: block;
}
.kafelki .item video {
  background-color: #ddf1e5;
}
.kafelki .item .vjs-poster {
  background-color: #ddf1e5;
}
.kafelki .item .vjs-big-play-button {
  margin: auto;
  /* position: absolute; */
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1.5em;
  border-radius: 100%;
  border-width: 0 !important;
  background-color: rgba(100, 175, 139, 0.45);
}
.kafelki .item {
  margin-top: 50px;
}
@media screen and (max-width: 480px) {
  .kafelki .item {
    margin-top: 20px;
  }
}
.kafelki .item {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
}
.kafelki .item:last-child {
  margin-right: 0;
}
.kafelki .item:nth-child(3n) {
  margin-right: 0;
}
.kafelki .item:nth-child(3n+1) {
  clear: left;
}
@media screen and (max-width: 991px) {
  .kafelki .item {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  .kafelki .item:last-child {
    margin-right: 0;
  }
  .kafelki .item {
    margin-right: 0;
    box-sizing: border-box;
    position: relative;
  }
}
.kafelki .item:hover .description,
.kafelki .item:hover .img,
.kafelki .item:hover .head {
  background-color: #64af8b;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.kafelki .item:hover .description h2, .kafelki .item:hover .description h3, .kafelki .item:hover .description p,
.kafelki .item:hover .img h2,
.kafelki .item:hover .img h3,
.kafelki .item:hover .img p,
.kafelki .item:hover .head h2,
.kafelki .item:hover .head h3,
.kafelki .item:hover .head p {
  color: #ffffff;
}
.kafelki .item:hover .description h3 span,
.kafelki .item:hover .img h3 span,
.kafelki .item:hover .head h3 span {
  border: 2px solid #fff;
}
.kafelki .item .head,
.kafelki .item .description {
  padding: 30px 0 20px 40px;
  background: #ddf1e5;
}
.kafelki .item .head h3,
.kafelki .item .description h3 {
  line-height: 1em;
  font-weight: normal;
}
@media screen and (max-width: 480px) {
  .kafelki .item .head h3,
  .kafelki .item .description h3 {
    margin-top: 0;
  }
}
.kafelki .item .head h3 span,
.kafelki .item .description h3 span {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0);
  height: 19px;
  width: 19px;
  border-radius: 100%;
  position: relative;
  top: 5px;
}
.kafelki .item .head h3 span img,
.kafelki .item .description h3 span img {
  position: relative;
  top: -2px;
  left: -3px;
}
.kafelki .item .head,
.kafelki .item .description {
  transition: all 0.2s;
}
@media screen and (max-width: 480px) {
  .kafelki .item .head,
  .kafelki .item .description {
    padding: 15px 0 10px 15px;
  }
  .kafelki .item .head h3,
  .kafelki .item .description h3 {
    font-size: 12px;
  }
  .kafelki .item .head h3 img,
  .kafelki .item .description h3 img {
    top: 4px;
  }
}
.kafelki .item .head {
  border-top-left-radius: 40px;
}
@media screen and (max-width: 480px) {
  .kafelki .item .head {
    border-top-left-radius: 20px;
  }
}
.kafelki .item .head {
  position: relative;
}
.kafelki .item .img {
  overflow: hidden;
  height: 200px;
  background-size: cover;
  background-position: 50% 50%;
}
.kafelki .item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.kafelki .item .description {
  border-bottom-left-radius: 40px;
  padding: 20px 40px 40px;
}
.kafelki .item .description:last-of-type {
  padding: 20px 20px 40px;
}
.kafelki .item .description h2 {
  font-size: 30px;
  text-align: center;
}
.kafelki .item .description p {
  font-size: 13px;
}
@media screen and (max-width: 480px) {
  .kafelki .item .description {
    border-bottom-left-radius: 20px;
    padding: 18px 15px 15px 15px;
  }
  .kafelki .item .description h2 {
    font-size: 20px;
  }
  .kafelki .item .description:last-of-type {
    padding: 18px 15px 15px 15px;
  }
}

.kategorie {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.kategorie:focus {
  outline: none;
}
@media screen and (max-width: 991px) {
  .kategorie {
    padding: 0 20px;
  }
}
.kategorie .item {
  transition: all 0.2s ease;
  margin-top: 50px;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
}
.kategorie .item:last-child {
  margin-right: 0;
}
.kategorie .item:nth-child(3n) {
  margin-right: 0;
}
.kategorie .item:nth-child(3n+1) {
  clear: left;
}
@media screen and (max-width: 991px) {
  .kategorie .item:nth-child(3n) {
    margin-right: 2.3576515979%;
  }
  .kategorie .item:nth-child(3n+1) {
    clear: none;
  }
  .kategorie .item {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 48.821174201%;
  }
  .kategorie .item:last-child {
    margin-right: 0;
  }
  .kategorie .item:nth-child(2n) {
    margin-right: 0;
  }
  .kategorie .item:nth-child(2n+1) {
    clear: left;
  }
  .kategorie .item:nth-child(2n) .description {
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 0px;
  }
  .kategorie .item:last-of-type {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  .kategorie .item:last-of-type:last-child {
    margin-right: 0;
  }
  .kategorie .item:last-of-type .description {
    border-bottom-right-radius: 40px;
  }
  .kategorie .item .description h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 991px) and (max-width: 480px) {
  .kategorie .item .description h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .kategorie .item {
    float: left;
    display: block;
    margin-right: 7.4229703521%;
    width: 100%;
  }
  .kategorie .item:last-child {
    margin-right: 0;
  }
  .kategorie .item {
    margin: 20px 0 0 0;
  }
  .kategorie .item .description {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 20px !important;
  }
}
.kategorie .item .head,
.kategorie .item .description {
  background: #ddf1e5;
}
.kategorie .item .head h3,
.kategorie .item .description h3 {
  margin-top: 10px;
  font-weight: normal;
}
.kategorie .item .img {
  transition: all 0.2s ease;
  overflow: hidden;
  height: 200px;
  background-size: cover;
  background-position: 50% 50%;
}
.kategorie .item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.kategorie .item .description {
  border-bottom-left-radius: 40px;
  padding: 10px 20px;
  color: #64af8b;
  transition: all 0.2s ease;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .kategorie .item .description {
    height: 80px !important;
  }
}
.kategorie .item .description:last-of-type {
  padding: 10px 20px;
}
.kategorie .item .description h2 {
  font-size: 25px;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .kategorie .item .description h2 {
    font-size: 18px;
  }
}
.kategorie .item .description h2 {
  text-align: center;
  font-weight: lighter;
  margin: 0px;
}
.kategorie .item .description p {
  font-size: 13px;
}
.kategorie .item:hover .description {
  background: #64af8b;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
}
.kategorie .item:hover .img {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
}

.awards {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.awards::after {
  clear: both;
  content: "";
  display: table;
}
.awards {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.awards .item {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.awards .item:focus {
  outline: none;
}
.awards .item {
  float: left;
  margin-left: 15px;
  margin-bottom: 15px;
}
.awards .item img {
  margin: 0 auto;
  float: none;
  display: block;
  max-width: 115px;
}
@media screen and (max-width: 991px) {
  .awards .item {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 23.2317613015%;
  }
  .awards .item:last-child {
    margin-right: 0;
  }
  .awards .item:nth-child(4n) {
    margin-right: 0;
  }
  .awards .item:nth-child(4n+1) {
    clear: left;
  }
}
@media screen and (max-width: 480px) {
  .awards .item {
    margin-right: 0;
    margin-left: 0;
    width: auto !important;
    margin: 5px 10px;
  }
  .awards .item img {
    max-width: 75px;
  }
}
.awards .description {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .awards .description {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  .awards .description:last-child {
    margin-right: 0;
  }
  .awards .description {
    float: none;
    clear: both;
    text-align: center;
    margin: 30px auto;
    padding: 0 20px;
  }
}
.awards .description h3 {
  text-transform: uppercase;
  line-height: 1.3em;
  font-weight: 400;
}
.awards .description h3,
.awards .description p {
  color: #64af8b;
  margin: 0px;
}
.awards .description p {
  margin-top: 0;
  font-weight: 300;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .awards .description h3 {
    font-size: 16px;
    margin-bottom: 3px;
  }
  .awards .description p {
    font-size: 12px;
  }
}

.partnership {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.partnership:focus {
  outline: none;
}
.partnership {
  overflow: hidden;
  float: none;
  clear: both;
}
.partnership .item {
  border: solid 1px;
  color: #64af8b;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
}
.partnership .item:last-child {
  margin-right: 0;
}
.partnership .item:nth-child(3n) {
  margin-right: 0;
}
.partnership .item:nth-child(3n+1) {
  clear: left;
}
.partnership .item {
  padding: 3px 17px;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
.partnership .item:nth-child(3n+1) {
  float: left;
  clear: none;
  margin-right: 0;
}
.partnership .item:nth-child(3n) {
  margin-right: 2.35765%;
}
.partnership .item a {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.partnership .item a span.sklep_title {
  font-size: 28px;
  line-height: 1em;
}
.partnership .item a span:nth-last-child(1) {
  white-space: nowrap;
}
.partnership .item a img {
  height: 100%;
  width: auto;
}
.partnership .item {
  transition: all 0.2s;
  cursor: pointer;
}
.partnership .item span {
  float: right;
}
.partnership .item:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
}

.nowosc {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  max-width: 50%;
}
@media screen and (max-width: 480px) {
  .nowosc {
    bottom: 110px;
    right: 20px;
  }
}

.nowosc_grafika {
  width: 80px;
  height: 80px;
  max-width: 100%;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

body.pl .nowosc_grafika {
  background-image: url("https://ludwik.pl/wp-content/themes/ludwik/img/nowosc_pl.png");
}

body.ru .nowosc_grafika {
  background-image: url("https://ludwik.pl/wp-content/themes/ludwik/img/nowosc_ru.png");
}

body.en .nowosc_grafika {
  background-image: url("https://ludwik.pl/wp-content/themes/ludwik/img/nowosc_en.png");
}

.produkty {
  color: #64af8b;
}
.produkty .filtr {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.produkty .filtr:focus {
  outline: none;
}
.produkty .filtr {
  color: #64af8b;
  overflow: hidden;
  margin: 20px 0px;
  width: 100%;
  background: #ddf1e5;
  border-top-left-radius: 40px;
  padding: 20px 0 20px 40px;
  position: relative;
}
.produkty .filtr h2,
.produkty .filtr label {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 20px;
  line-height: 1.2em;
  display: block;
}
@media screen and (max-width: 480px) {
  .produkty .filtr h2,
  .produkty .filtr label {
    font-size: 18px;
  }
}
.produkty .filtr form {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 74.4105871005%;
}
.produkty .filtr form:last-child {
  margin-right: 0;
}
.produkty .filtr form .item,
.produkty .filtr form input,
.produkty .filtr form label {
  cursor: pointer;
  font-size: 14px;
  user-select: none;
  -webkit-user-select: none;
}
.produkty .filtr form .item {
  position: relative;
  margin: 10px 0px;
  padding-left: 33px;
  height: 30px;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
}
.produkty .filtr form .item:last-child {
  margin-right: 0;
}
.produkty .filtr form .item:nth-child(3n) {
  margin-right: 0;
}
.produkty .filtr form .item:nth-child(3n+1) {
  clear: left;
}
.produkty .filtr form .item input[type=radio] {
  display: none;
  position: relative;
}
.produkty .filtr form .item input[type=radio] + label:after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background: #64af8b;
  border-radius: 8px;
  position: absolute;
  top: 2px;
  left: 7px;
  background: #fff;
  transform: scale(0);
  transition: all 0.15s cubic-bezier(0.6, 0.58, 0.21, 1.74);
}
.produkty .filtr form .item input[type=radio]:checked + label:before {
  background: #64af8b;
}
.produkty .filtr form .item input[type=radio]:checked + label:after {
  transform: scale(1);
}
.produkty .filtr form .item label:before {
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 24px;
  position: absolute;
  transition: all 0.15s;
  top: -5px;
  left: 0px;
}
.produkty .filtr .img {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 23.2317613015%;
}
.produkty .filtr .img:last-child {
  margin-right: 0;
}
.produkty .filtr .img {
  margin-right: 0;
  position: relative;
  top: -34px;
}
.produkty .filtr .button {
  margin-top: -30px;
  position: relative;
  margin-bottom: 20px;
  border: solid 1px #64af8b;
  color: #64af8b;
  transition: all 0.2s;
  cursor: pointer;
  display: block;
  text-align: center;
  width: 83px;
  clear: both;
  float: left;
  overflow: hidden;
}
.produkty .filtr .button:hover {
  background: #64af8b;
  color: #fff;
}
.produkty .filtr .button p {
  padding: 5px 10px;
  margin: 0px;
}
.produkty .item-product {
  position: relative;
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.produkty .item-product:focus {
  outline: none;
}
.produkty .item-product {
  padding: 15px;
  text-align: center;
  margin: 20px 0px;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 23.2317613015%;
}
.produkty .item-product:last-child {
  margin-right: 0;
}
.produkty .item-product:nth-child(4n) {
  margin-right: 0;
}
.produkty .item-product:nth-child(4n+1) {
  clear: left;
}
.produkty .item-product {
  float: left;
  min-height: 320px;
  transition: all 0.2s;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 20px;
}
.produkty .item-product img {
  margin: 0 auto;
  float: none;
  max-width: 100%;
}
.produkty .item-product:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px;
}
@media screen and (min-width: 481px) {
  .produkty .item-product {
    margin-bottom: 40px;
  }
  .produkty .item-product a {
    display: block;
    position: relative;
    margin-bottom: 60px;
  }
  .produkty .item-product a .name {
    position: absolute;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .produkty .item-product {
    margin: 0;
  }
}
@media screen and (max-width: 991px) {
  .produkty .item-product {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 31.7615656014%;
  }
  .produkty .item-product:last-child {
    margin-right: 0;
  }
  .produkty .item-product:nth-child(3n) {
    margin-right: 0;
  }
  .produkty .item-product:nth-child(3n+1) {
    clear: left;
  }
}
@media screen and (max-width: 480px) {
  .produkty .item-product {
    float: left;
    display: block;
    margin-right: 7.4229703521%;
    width: 100%;
  }
  .produkty .item-product:last-child {
    margin-right: 0;
  }
}
.produkty .item-product .loading {
  height: 40px;
  width: 100%;
}
.produkty .item-big {
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 30px;
}
.produkty .item-big h2 {
  color: #64af8b;
}
.produkty .item-big .img {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.produkty .item-big .img:focus {
  outline: none;
}
.produkty .item-big .img {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 23.2317613015%;
}
.produkty .item-big .img:last-child {
  margin-right: 0;
}
.produkty .item-big .img {
  display: flex;
  justify-content: center;
}
.produkty .item-big .img img {
  height: 300px;
  width: auto;
}
.produkty .item-big .info-panel {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 65.8807828007%;
}
.produkty .item-big .info-panel:last-child {
  margin-right: 0;
}
.produkty .item-big .info-panel {
  margin-right: 0;
}
.produkty .item-big .info-panel .info_item {
  position: relative;
  margin: 10px 0px;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
}
.produkty .item-big .info-panel .info_item:last-child {
  margin-right: 0;
}
.produkty .item-big .info-panel .info_item:nth-child(3n) {
  margin-right: 0;
}
.produkty .item-big .info-panel .info_item:nth-child(3n+1) {
  clear: left;
}
.produkty .item-big .info-panel .info_item {
  line-height: 1.2em;
  font-weight: 300;
  padding-left: 17px;
  display: inline;
}
@media screen and (max-width: 480px) {
  .produkty .item-big .info-panel .info_item {
    font-size: 14px;
    margin: 3px 0;
  }
}
.produkty .item-big .info-panel .info_item:before {
  content: "";
  width: 40px;
  height: 40px;
  background: red;
  background: url("../img/ico/red_pin.png") no-repeat;
  display: block;
  position: absolute;
  left: 0px;
  top: 5px;
}
@media screen and (max-width: 480px) {
  .produkty .item-big .info-panel .info_item:before {
    top: 3px;
  }
}
.produkty .item-big .info-panel .opakowanie {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.produkty .item-big .info-panel .opakowanie:focus {
  outline: none;
}
.produkty .item-big .info-panel .opakowanie .title {
  float: left;
  margin-right: 10px;
}
.produkty .item-big .info-panel .opakowanie .item {
  position: relative;
  float: left;
  cursor: pointer;
  margin-right: 50px;
  height: 20px;
}
.produkty .item-big .info-panel .opakowanie .item img {
  top: 25px;
  position: absolute;
  border-top-right-radius: 40px;
  z-index: 99;
  height: 150px;
  opacity: 0;
  border: solid 2px #ddf1e5;
  background: #fff;
  transition: all 0.5s;
  transition-delay: 0.1s;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px;
  max-height: 0;
}
.produkty .item-big .info-panel .opakowanie .item:hover {
  color: #64af8b;
}
.produkty .item-big .info-panel .opakowanie .item:hover img {
  max-height: 150px;
  opacity: 1;
}
.produkty .item-big .info-panel .buttons {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.produkty .item-big .info-panel .buttons:focus {
  outline: none;
}
.produkty .item-big .info-panel .buttons {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 100%;
}
.produkty .item-big .info-panel .buttons:last-child {
  margin-right: 0;
}
.produkty .item-big .info-panel .buttons {
  min-height: 100px;
  margin-top: 20px;
}
.produkty .item-big .info-panel .buttons .button {
  padding: 5px 10px;
  border: solid 1px #64af8b;
  color: #64af8b;
  transition: all 0.2s;
  cursor: pointer;
  display: inline;
  user-select: none;
  -webkit-user-select: none;
}
.produkty .item-big .info-panel .buttons .button:hover {
  background: #64af8b;
  color: #fff;
}
.produkty .item-big .info-panel .buttons .button:last-of-type {
  float: right;
}
@media screen and (max-width: 991px) {
  .produkty .item-big .info-panel .buttons .button {
    margin-right: 10px;
  }
}
.produkty .item-big .download-list {
  opacity: 1;
  overflow: hidden;
  clear: both;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0px;
}
.produkty .item-big .download-list a {
  display: block !important;
  border: solid 1px #64af8b;
  margin-bottom: 15px;
}
.produkty .item-big .download-list a:last-of-type {
  float: left !important;
}
@media screen and (max-width: 991px) {
  .produkty .item-big h2.product-name {
    text-align: center;
  }
  .produkty .item-big .img {
    margin: 0 auto;
    float: none;
  }
  .produkty .item-big .info-panel {
    width: 100%;
  }
  .produkty .item-big .info-panel .cechy {
    overflow: hidden;
    clear: both;
  }
  .produkty .item-big .info-panel .cechy {
    margin-top: 20px;
  }
  .produkty .item-big .info-panel .info_item:nth-child(3n) {
    margin-right: 2.3576515979%;
  }
  .produkty .item-big .info-panel .info_item:nth-child(3n+1) {
    clear: none;
  }
  .produkty .item-big .info-panel .info_item {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 48.821174201%;
  }
  .produkty .item-big .info-panel .info_item:last-child {
    margin-right: 0;
  }
  .produkty .item-big .info-panel .info_item:nth-child(2n) {
    margin-right: 0;
  }
  .produkty .item-big .info-panel .info_item:nth-child(2n+1) {
    clear: left;
  }
  .produkty .item-big .download-list a {
    margin: 10px 0px;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .produkty .item-big .info-panel .info_item {
    float: left;
    display: block;
    margin-right: 7.4229703521%;
    width: 100%;
  }
  .produkty .item-big .info-panel .info_item:last-child {
    margin-right: 0;
  }
  .produkty .item-big .info-panel .opakowanie .item {
    margin-right: 15px;
  }
}
@media screen and (max-width: 991px) {
  .produkty {
    padding: 0px 20px;
  }
  .produkty .filtr {
    height: auto;
    border-radius: 20px 0 0 0;
    padding: 0px 20px 60px 20px;
  }
  .produkty .filtr h2 {
    text-align: center;
  }
  .produkty .filtr form {
    width: 100%;
    margin-right: 0;
  }
  .produkty .filtr form .item {
    height: auto;
  }
  .produkty .filtr .img {
    display: none;
  }
  .produkty .filtr .button {
    margin: 20px auto 0 auto;
    left: 0;
    right: 0;
    position: absolute;
    bottom: 20px;
  }
  .produkty .partnership {
    clear: both;
    float: none;
  }
  .produkty .partnership .item a {
    flex-wrap: wrap;
    height: 130px;
    text-align: center;
  }
  .produkty .partnership .item a img {
    height: 80px;
    margin: 0 auto;
    float: none;
  }
  .produkty .partnership .item a span {
    margin: 0 auto;
  }
  .produkty .similar .ludwik-family {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  .produkty .similar .ludwik-family:last-child {
    margin-right: 0;
  }
  .produkty .similar .ludwik-family img {
    float: none;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
  .produkty .similar .similar-products {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  .produkty .similar .similar-products:last-child {
    margin-right: 0;
  }
  .produkty .similar .similar-products .item-product {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 48.821174201%;
  }
  .produkty .similar .similar-products .item-product:last-child {
    margin-right: 0;
  }
  .produkty .similar .similar-products .item-product:nth-child(2n) {
    margin-right: 0;
  }
  .produkty .similar .similar-products .item-product:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (max-width: 480px) {
  .produkty .filtr form .item {
    width: 100%;
  }
  .produkty .partnership .item:nth-child(3n) {
    margin-right: 2.3576515979%;
  }
  .produkty .partnership .item:nth-child(3n+1) {
    clear: none;
  }
  .produkty .partnership .item {
    float: left;
    display: block;
    margin-right: 7.4229703521%;
    width: 100%;
  }
  .produkty .partnership .item:last-child {
    margin-right: 0;
  }
  .produkty .partnership .item {
    margin-right: 0;
  }
  .produkty .partnership .item a {
    flex-wrap: wrap;
  }
  .produkty .partnership .item a span {
    clear: both !important;
    display: block;
  }
  .produkty .similar .ludwik-family {
    float: left;
    display: block;
    margin-right: 7.4229703521%;
    width: 100%;
  }
  .produkty .similar .ludwik-family:last-child {
    margin-right: 0;
  }
  .produkty .similar .similar-products {
    float: left;
    display: block;
    margin-right: 7.4229703521%;
    width: 100%;
  }
  .produkty .similar .similar-products:last-child {
    margin-right: 0;
  }
  .produkty .similar .similar-products .item-product {
    float: left;
    display: block;
    margin-right: 7.4229703521%;
    width: 100%;
  }
  .produkty .similar .similar-products .item-product:last-child {
    margin-right: 0;
  }
}

.porady .porady-kategorie {
  float: none;
  clear: both;
  margin-bottom: 50px;
  overflow: hidden;
}
.porady .porady-kategorie .item {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.porady .porady-kategorie .item:focus {
  outline: none;
}
.porady .porady-kategorie .item {
  transition: all 0.2s ease;
  margin-top: 50px;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
}
.porady .porady-kategorie .item:last-child {
  margin-right: 0;
}
.porady .porady-kategorie .item:nth-child(3n) {
  margin-right: 0;
}
.porady .porady-kategorie .item:nth-child(3n+1) {
  clear: left;
}
@media screen and (max-width: 991px) {
  .porady .porady-kategorie .item:nth-child(3n) {
    margin-right: 2.3576515979%;
  }
  .porady .porady-kategorie .item:nth-child(3n+1) {
    clear: none;
  }
  .porady .porady-kategorie .item {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 48.821174201%;
  }
  .porady .porady-kategorie .item:last-child {
    margin-right: 0;
  }
  .porady .porady-kategorie .item:nth-child(2n) {
    margin-right: 0;
  }
  .porady .porady-kategorie .item:nth-child(2n+1) {
    clear: left;
  }
  .porady .porady-kategorie .item:nth-child(2n) .description {
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 0px;
  }
  .porady .porady-kategorie .item:last-of-type {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  .porady .porady-kategorie .item:last-of-type:last-child {
    margin-right: 0;
  }
  .porady .porady-kategorie .item:last-of-type .description {
    border-bottom-right-radius: 40px;
  }
  .porady .porady-kategorie .item .description h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 480px) {
  .porady .porady-kategorie .item {
    float: left;
    display: block;
    margin-right: 7.4229703521%;
    width: 100%;
  }
  .porady .porady-kategorie .item:last-child {
    margin-right: 0;
  }
  .porady .porady-kategorie .item {
    margin: 20px 0;
  }
  .porady .porady-kategorie .item .description {
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
.porady .porady-kategorie .item .head,
.porady .porady-kategorie .item .description {
  padding: 30px 0 20px 40px;
  background: #ddf1e5;
}
.porady .porady-kategorie .item .head h2,
.porady .porady-kategorie .item .description h2 {
  margin-top: 10px;
  font-weight: 300;
  float: none;
  width: 100%;
}
.porady .porady-kategorie .item .img {
  transition: all 0.2s ease;
  overflow: hidden;
  height: 200px;
  background-size: cover;
  background-position: 50% 50%;
}
.porady .porady-kategorie .item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.porady .porady-kategorie .item .description {
  border-bottom-left-radius: 40px;
  padding: 10px 20px;
  color: #64af8b;
  transition: all 0.2s ease;
  min-height: 140px;
  padding-bottom: 0 !important;
}
.porady .porady-kategorie .item .description:last-of-type {
  padding: 20px 20px;
}
.porady .porady-kategorie .item .description h2 {
  font-size: 20px;
  text-align: left;
}
@media screen and (max-width: 991px) {
  .porady .porady-kategorie .item .description h2 {
    font-size: 18px;
  }
}
.porady .porady-kategorie .item .description h2 {
  font-weight: lighter;
  margin: 0px;
}
.porady .porady-kategorie .item .description p {
  font-size: 14px;
}
.porady .porady-kategorie .item:hover .description {
  background: #64af8b;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
}
.porady .porady-kategorie .item:hover .img {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px;
}

.rondel-bg {
  background: #fff url("../img/rondel/bg.jpg") 50% 0% repeat-y;
  background-size: 100% auto;
}

.rondel p {
  font-family: "Love Ya Like A Sister", cursive;
  color: #64af8b;
}
.rondel img {
  position: relative;
  max-width: 100%;
}
.rondel img:nth-child(1) {
  top: 30px;
  left: 100px;
  display: block;
}
.rondel img:nth-child(2) {
  top: -300px;
  left: 550px;
  z-index: 10;
}
.rondel img:nth-child(3) {
  top: 40px;
  left: -110px;
}
.rondel img:nth-child(4) {
  left: 380px;
  top: -270px;
}
.rondel img:nth-child(5) {
  left: 250px;
  top: -330px;
}
.rondel img:nth-child(6) {
  left: -75px;
  top: -710px;
}
.rondel img:nth-child(7) {
  left: 70px;
  top: -440px;
}
.rondel img:nth-child(8) {
  left: 160px;
  top: -360px;
}
.rondel img:nth-child(9) {
  left: 180px;
  top: -360px;
}
.rondel img:nth-child(10) {
  left: 226px;
  top: -420px;
}
.rondel img:nth-child(11) {
  left: 190px;
  top: -420px;
}
.rondel img:nth-child(12) {
  left: 270px;
  top: -500px;
}
.rondel img:nth-child(13) {
  left: 270px;
  top: -370px;
}
.rondel img:nth-child(14) {
  left: -650px;
  top: -200px;
}
.rondel img:nth-child(15) {
  top: -390px;
}
.rondel img:nth-child(16) {
  top: -260px;
}
@media screen and (max-width: 1199px) {
  .rondel img:nth-child(1) {
    top: 30px;
    left: 100px;
    display: block;
  }
  .rondel img:nth-child(2) {
    top: -300px;
    left: 550px;
    z-index: 10;
  }
  .rondel img:nth-child(3) {
    top: 40px;
    left: -110px;
  }
  .rondel img:nth-child(4) {
    left: 290px;
    top: -270px;
  }
  .rondel img:nth-child(5) {
    left: 180px;
    top: -330px;
  }
  .rondel img:nth-child(6) {
    left: -75px;
    top: -710px;
  }
  .rondel img:nth-child(7) {
    left: 70px;
    top: -440px;
  }
  .rondel img:nth-child(8) {
    left: 90px;
    top: -360px;
  }
  .rondel img:nth-child(9) {
    left: 60px;
    top: -360px;
  }
  .rondel img:nth-child(10) {
    left: 80px;
    top: -420px;
  }
  .rondel img:nth-child(11) {
    left: 190px;
    top: -420px;
  }
  .rondel img:nth-child(12) {
    left: 270px;
    top: -500px;
  }
  .rondel img:nth-child(13) {
    left: 270px;
    top: -420px;
  }
  .rondel img:nth-child(14) {
    left: -650px;
    top: -200px;
  }
  .rondel img:nth-child(15) {
    top: -390px;
  }
  .rondel img:nth-child(16) {
    top: -260px;
  }
}
@media screen and (max-width: 991px) {
  .rondel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .rondel img {
    max-width: 100%;
  }
  .rondel img:nth-child(1) {
    top: inherit;
    left: inherit;
    display: block;
  }
  .rondel img:nth-child(2) {
    top: inherit;
    left: inherit;
    z-index: 10;
  }
  .rondel img:nth-child(3) {
    top: inherit;
    left: inherit;
  }
  .rondel img:nth-child(4) {
    left: inherit;
    top: inherit;
    margin-top: -120px;
  }
  .rondel img:nth-child(5) {
    left: inherit;
    top: inherit;
  }
  .rondel img:nth-child(6) {
    left: inherit;
    top: inherit;
  }
  .rondel img:nth-child(7) {
    left: inherit;
    top: inherit;
  }
  .rondel img:nth-child(8) {
    left: inherit;
    top: inherit;
  }
  .rondel img:nth-child(9) {
    left: inherit;
    top: inherit;
  }
  .rondel img:nth-child(10) {
    left: inherit;
    top: inherit;
  }
  .rondel img:nth-child(11) {
    left: inherit;
    top: inherit;
  }
  .rondel img:nth-child(12) {
    left: inherit;
    top: inherit;
  }
  .rondel img:nth-child(13) {
    left: inherit;
    top: inherit;
  }
  .rondel img:nth-child(14) {
    left: inherit;
    top: inherit;
  }
  .rondel img:nth-child(15) {
    top: inherit;
  }
  .rondel img:nth-child(16) {
    top: inherit;
  }
}

.gdzie_kupic {
  color: #64af8b;
  font-weight: lighter;
}
.gdzie_kupic .aside-panel {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 23.2317613015%;
}
.gdzie_kupic .aside-panel:last-child {
  margin-right: 0;
}
.gdzie_kupic .aside-panel .input {
  position: relative;
}
.gdzie_kupic .aside-panel .input input {
  width: 80%;
  margin: 10px auto;
  height: 50px;
  font-size: 19px;
  padding: 5px 10px;
  color: #64af8b;
  border: #64af8b solid 1px;
  transition: all 0.2s;
}
.gdzie_kupic .aside-panel .input input:focus, .gdzie_kupic .aside-panel .input input:active {
  outline: none;
  box-shadow: #64af8b 0px 0px 15px;
}
.gdzie_kupic .aside-panel .input .btn {
  position: absolute;
  top: 20px;
  right: 60px;
  cursor: pointer;
}
.gdzie_kupic .aside-panel h3 {
  font-weight: 300;
}
.gdzie_kupic .aside-panel .item h2 {
  font-weight: lighter;
  position: relative;
  padding-left: 40px;
  margin-bottom: 0;
}
.gdzie_kupic .aside-panel .item h2:before {
  content: "";
  width: 40px;
  height: 40px;
  background: url("../img/ico/compass.png") no-repeat;
  display: block;
  position: absolute;
  left: 0px;
  top: -4px;
}
.gdzie_kupic .direction {
  cursor: pointer;
}
.gdzie_kupic .direction:hover {
  font-weight: bold;
}
.gdzie_kupic .map-panel {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 74.4105871005%;
}
.gdzie_kupic .map-panel:last-child {
  margin-right: 0;
}
.gdzie_kupic .map-panel {
  margin-right: 0;
}
.gdzie_kupic .map-panel .item {
  width: 100%;
  position: relative;
  float: none;
  border-top: solid 1px #64af8b;
  padding: 30px 0px 80px 30px;
  font-size: 16px;
}
.gdzie_kupic .map-panel .item:before {
  content: "";
  width: 40px;
  height: 40px;
  background: red;
  background: url("../img/ico/pin.png") no-repeat;
  display: block;
  position: absolute;
  left: 0px;
  top: 30px;
}
.gdzie_kupic .map-panel .item .addres {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 82.9403914003%;
}
.gdzie_kupic .map-panel .item .addres:last-child {
  margin-right: 0;
}
.gdzie_kupic .map-panel .item .open {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 14.7019570017%;
}
.gdzie_kupic .map-panel .item .open:last-child {
  margin-right: 0;
}
.gdzie_kupic .map-panel .item .open {
  margin-right: 0;
  position: relative;
}
.gdzie_kupic .map-panel .item .open:before {
  content: "";
  width: 40px;
  height: 40px;
  background: red;
  background: url("../img/ico/time.png") no-repeat;
  display: block;
  position: absolute;
  left: -30px;
  top: 5px;
}
.gdzie_kupic .map-panel .item .open .hours {
  font-size: 18px;
}
.gdzie_kupic .map-panel .item .open .day {
  font-size: 11px;
}
.gdzie_kupic .map-panel .item .button {
  margin-top: 10px;
  padding: 5px 10px;
  border: solid 1px #64af8b;
  color: #64af8b;
  transition: all 0.2s;
  cursor: pointer;
  display: inline;
  -webkit-user-select: none;
  position: absolute;
  top: 20px;
  white-space: nowrap;
  right: 0;
}
.gdzie_kupic .map-panel .item .button:hover {
  background: #64af8b;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .gdzie_kupic .map-panel .item {
    padding-bottom: 58px !important;
  }
  .gdzie_kupic .map-panel .item .button {
    position: relative;
    top: 20px;
  }
}
.gdzie_kupic {
  padding: 0px 20px;
}
@media screen and (max-width: 991px) {
  .gdzie_kupic .aside-panel > h2 {
    text-align: center;
    margin: 5px auto;
  }
  .gdzie_kupic .aside-panel {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  .gdzie_kupic .aside-panel:last-child {
    margin-right: 0;
  }
  .gdzie_kupic .aside-panel {
    margin-right: 0;
  }
  .gdzie_kupic .aside-panel .input {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 57.3509785009%;
  }
  .gdzie_kupic .aside-panel .input:last-child {
    margin-right: 0;
  }
  .gdzie_kupic .aside-panel .input {
    float: none;
    margin: 0 auto;
  }
  .gdzie_kupic .aside-panel .input input {
    width: 100%;
  }
  .gdzie_kupic .aside-panel .input .btn {
    right: 16px;
  }
  .gdzie_kupic .aside-panel .item {
    font-size: 18px;
  }
  .gdzie_kupic .map-panel {
    width: 100%;
  }
  .gdzie_kupic .map-panel .item {
    font-size: 18px;
  }
  .gdzie_kupic .map-panel .item .addres:before {
    top: 5px;
  }
  .gdzie_kupic .map-panel .item .open .day {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .gdzie_kupic .aside-panel .input {
    float: left;
    display: block;
    margin-right: 7.4229703521%;
    width: 100%;
  }
  .gdzie_kupic .aside-panel .input:last-child {
    margin-right: 0;
  }
  .gdzie_kupic .aside-panel .input {
    margin-right: 0;
  }
  .gdzie_kupic .map-panel .item {
    text-align: center;
  }
  .gdzie_kupic .map-panel .item .addres,
  .gdzie_kupic .map-panel .item .open {
    float: left;
    display: block;
    margin-right: 7.4229703521%;
    width: 100%;
  }
  .gdzie_kupic .map-panel .item .addres:last-child,
  .gdzie_kupic .map-panel .item .open:last-child {
    margin-right: 0;
  }
  .gdzie_kupic .map-panel .item .addres,
  .gdzie_kupic .map-panel .item .open {
    margin-right: 0;
  }
  .gdzie_kupic .map-panel .item .addres:before,
  .gdzie_kupic .map-panel .item .open:before {
    display: none;
  }
  .gdzie_kupic .map-panel .item .direction {
    margin: 10px 0px;
  }
  .gdzie_kupic .map-panel .item .open {
    margin: 30px 0px;
  }
  .gdzie_kupic .map-panel .item .button {
    margin: 0 auto;
    float: none;
  }
}
@media screen and (max-width: 991px) {
  .gdzie_kupic .loading {
    width: 100%;
    margin: 20px 0px;
  }
  .gdzie_kupic div#mapa {
    width: 100% !important;
  }
}

.similar {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.similar:focus {
  outline: none;
}
.similar header {
  overflow: hidden;
  margin-bottom: 20px;
}
.similar header h2 {
  margin: 0px;
}
.similar header div {
  float: left;
  width: 50%;
}
.similar header .see-all {
  float: right;
  text-align: right;
  cursor: pointer;
}
.similar .ludwik-family {
  margin: 50px 0px;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
}
.similar .ludwik-family:last-child {
  margin-right: 0;
}
.similar .ludwik-family {
  cursor: pointer;
}
.similar .ludwik-family:hover {
  filter: brightness(1.1);
  -webkit-filter: brightness(1.1);
}
.similar .similar-products {
  margin: 50px 0px;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 65.8807828007%;
}
.similar .similar-products:last-child {
  margin-right: 0;
}
.similar .similar-products {
  margin-right: 0;
  transition: all 0.2s;
  position: relative;
}
@media screen and (max-width: 480px) {
  .similar .similar-products {
    margin-bottom: 0;
    padding-bottom: 70px;
  }
  .similar .similar-products .see-all {
    width: 100%;
    position: absolute;
    text-align: center;
    bottom: 20px;
  }
}
.similar .similar-products .item {
  padding: 20px;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 23.2317613015%;
}
.similar .similar-products .item:last-child {
  margin-right: 0;
}
.similar .similar-products .item:nth-child(4n) {
  margin-right: 0;
}
.similar .similar-products .item:nth-child(4n+1) {
  clear: left;
}
.similar .similar-products .item a {
  text-align: center;
}
.similar .similar-products .item a img {
  display: block;
  float: none;
  margin: 0 auto;
}
.similar .similar-products .item a p {
  font-size: 18px;
  text-transform: uppercase;
}
.similar .similar-products .item:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px;
}

.kontakt .info-panel {
  margin-top: 20px;
  color: #64af8b;
  width: 100%;
  background: #ddf1e5;
  border-top-left-radius: 40px;
  padding: 20px 40px 10px 30px;
  clear: both;
  float: none;
  overflow: hidden;
}
.kontakt .info-panel .info-item {
  -webkit-user-select: all !important; /* Chrome all / Safari all */
  -moz-user-select: all !important; /* Firefox all */
  -ms-user-select: all !important; /* IE 10+ */
  user-select: all !important;
}
.kontakt .info-panel .info-item:focus {
  outline: none;
}
.kontakt h2,
.kontakt h3,
.kontakt .options,
.kontakt label {
  text-transform: uppercase;
}
.kontakt .options,
.kontakt .info {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
}
.kontakt .options:last-child,
.kontakt .info:last-child {
  margin-right: 0;
}
.kontakt .info {
  margin-right: 0;
}
.kontakt .options .item h3 {
  margin: 0;
}
.kontakt .options .item {
  margin: 5px 0px;
  transition: all 0.2s;
  cursor: pointer;
}
.kontakt .options .item:hover, .kontakt .options .item.active {
  color: #333;
}
.kontakt .info .item h3 {
  font-weight: 400 !important;
  margin: 0;
  line-height: 1.1em;
}
.kontakt .info .item p {
  margin-top: 5px;
}
.kontakt .info .item {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
}
.kontakt .info .item:last-child {
  margin-right: 0;
}
.kontakt .info .item:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .kontakt .info-panel .info {
    margin-top: 10px;
    width: 100%;
  }
}
.kontakt #contact_form {
  width: 50%;
  float: right;
}
@media screen and (max-width: 991px) {
  .kontakt #contact_form {
    float: none;
    clear: both;
    width: 100%;
  }
}
.kontakt .wpcf7-form {
  margin-top: 50px;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 57.3509785009%;
}
.kontakt .wpcf7-form:last-child {
  margin-right: 0;
}
.kontakt .wpcf7-form {
  margin-right: 0;
  float: right;
  width: 100%;
}
.kontakt .wpcf7-form div {
  overflow: hidden;
  float: none;
  width: 100%;
}
.kontakt .wpcf7-form label,
.kontakt .wpcf7-form input,
.kontakt .wpcf7-form select,
.kontakt .wpcf7-form textarea {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.kontakt .wpcf7-form label:focus,
.kontakt .wpcf7-form input:focus,
.kontakt .wpcf7-form select:focus,
.kontakt .wpcf7-form textarea:focus {
  outline: none;
}
.kontakt .wpcf7-form label,
.kontakt .wpcf7-form input,
.kontakt .wpcf7-form select,
.kontakt .wpcf7-form textarea {
  color: #64af8b;
  font-size: 16px;
}
.kontakt .wpcf7-form label {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 31.7615656014%;
}
.kontakt .wpcf7-form label:last-child {
  margin-right: 0;
}
.kontakt .wpcf7-form label {
  text-align: center;
  padding-top: 19px;
}
.kontakt .wpcf7-form input,
.kontakt .wpcf7-form select,
.kontakt .wpcf7-form textarea {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 65.8807828007%;
}
.kontakt .wpcf7-form input:last-child,
.kontakt .wpcf7-form select:last-child,
.kontakt .wpcf7-form textarea:last-child {
  margin-right: 0;
}
.kontakt .wpcf7-form input,
.kontakt .wpcf7-form select,
.kontakt .wpcf7-form textarea {
  margin-right: 0;
  border: 1px solid #64af8b;
}
.kontakt .wpcf7-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: #fff;
  background-image: url("../img/dropdown.png");
  background-repeat: no-repeat;
  background-position: center right;
}
.kontakt .wpcf7-form select::-ms-expand {
  display: none;
}
.kontakt .wpcf7-form input,
.kontakt .wpcf7-form select {
  padding: 0 10px;
  height: 40px;
  margin: 10px 0px;
}
.kontakt .wpcf7-form input,
.kontakt .wpcf7-form select,
.kontakt .wpcf7-form textarea {
  transition: all 0.2s;
}
.kontakt .wpcf7-form input:focus, .kontakt .wpcf7-form input:active,
.kontakt .wpcf7-form select:focus,
.kontakt .wpcf7-form select:active,
.kontakt .wpcf7-form textarea:focus,
.kontakt .wpcf7-form textarea:active {
  outline: none;
  box-shadow: #64af8b 0px 0px 15px;
}
.kontakt .wpcf7-form .wpcf7-submit {
  background: transparent;
  border: solid 1px;
  outline: none;
  float: right;
  transition: all 0.2s;
}
.kontakt .wpcf7-form .wpcf7-submit:hover {
  background: #64af8b;
  color: #fff;
  cursor: pointer;
}
.kontakt .wpcf7-form .wpcf7-not-valid-tip {
  display: inline;
  float: right;
}
@media screen and (max-width: 991px) {
  .kontakt .wpcf7-form {
    width: 100%;
  }
  .kontakt .wpcf7-form .wpcf7-form-control-wrap {
    width: 100%;
    display: block;
    float: none;
    margin: 0 auto;
    overflow: hidden;
  }
  .kontakt .wpcf7-form input,
  .kontakt .wpcf7-form select,
  .kontakt .wpcf7-form textarea {
    width: 100%;
  }
  .kontakt .wpcf7-form .button {
    width: calc(100% - 20px);
  }
}
.kontakt .security {
  overflow: hidden;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 57.3509785009%;
}
.kontakt .security:last-child {
  margin-right: 0;
}
.kontakt .security {
  float: right;
}
.kontakt .security .panel {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.kontakt .security .panel:focus {
  outline: none;
}
.kontakt .security .panel {
  overflow: hidden;
  background: #ddf1e5;
  margin: 50px 0px 20px;
  padding: 30px 20px 30px 40px;
  border-top-left-radius: 40px;
  width: 450px;
  float: none;
}
.kontakt .security .digit,
.kontakt .security .result {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  width: 60px;
  height: 60px;
  margin: 20px;
  background: #64af8b;
}
.kontakt .security .digit p,
.kontakt .security .result p {
  font-size: 36px;
  margin: 0;
  color: #fff;
}
.kontakt .security .digit input,
.kontakt .security .result input {
  width: 100%;
  font-size: 30px;
  background: transparent;
  border: none;
  outline: none;
  text-align: center;
  color: #fff;
  padding-left: 17px;
}
.kontakt .security .result {
  width: 120px;
}
.kontakt .security .plus:after,
.kontakt .security .equal:after {
  font-size: 48px;
  color: #64af8b;
  position: absolute;
  top: -7px;
  right: -38px;
  display: block;
}
.kontakt .security .plus:after {
  content: "+";
}
.kontakt .security .equal:after {
  content: "=";
}
.kontakt .security .legal {
  margin-bottom: 50px;
  line-height: 1.4em;
  font-weight: 300;
}
.kontakt .security .legal label {
  -webkit-user-select: all !important; /* Chrome all / Safari all */
  -moz-user-select: all !important; /* Firefox all */
  -ms-user-select: all !important; /* IE 10+ */
  user-select: all !important;
}
.kontakt .security .legal label:focus {
  outline: none;
}
.kontakt .security .legal label {
  text-transform: inherit !important;
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
  color: #64af8b;
}
.kontakt .security .legal label p {
  display: inline;
}
@media screen and (max-width: 991px) {
  .kontakt .security {
    width: calc(100% - 20px);
  }
  .kontakt .security .panel {
    width: 100%;
  }
}
.kontakt .przedstawiciele {
  width: 50%;
  float: left;
}
.kontakt table {
  width: 100%;
  margin-top: 60px !important;
  border: 1px solid #64af8b;
  border-collapse: collapse;
}
.kontakt table:nth-child(2) {
  margin-top: 30px !important;
}
@media screen and (max-width: 991px) {
  .kontakt table {
    float: none;
    clear: both;
    width: 100%;
  }
}
.kontakt table span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-align: left;
  font-size: 12px;
  line-height: 1.2em !important;
}
.kontakt table th {
  color: #777777;
}
.kontakt table th, .kontakt table td {
  border: 1px solid #ddf1e5;
  padding: 2px 5px;
}
.kontakt table th a, .kontakt table td a {
  color: #64af8b;
}

body.ru #contact_form, body.en #contact_form {
  width: 100% !important;
}
body.ru div.security, body.en div.security {
  width: 100% !important;
}

#ph {
  opacity: 1;
  max-height: 1000px;
}

body.pl #ph {
  opacity: 0;
  transition: all 0.2s;
  max-height: 0;
  overflow: hidden;
  line-height: 0.9em;
}
body.pl #ph.reveal {
  opacity: 1;
  max-height: 1000px;
}

#contact-form {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
#contact-form.reveal {
  opacity: 1;
  height: auto;
  max-height: none;
}

@media screen and (max-width: 860px) {
  body.ru #contact-form, body.en #contact-form {
    clear: both !important;
    float: left;
  }
}

#mapka {
  position: relative;
  top: 60px;
  width: 50%;
  float: right;
}
#mapka img {
  right: 0;
  position: absolute;
  z-index: 2;
  opacity: 0;
  transition: all 0.2s;
  max-width: 100%;
}
#mapka img.m0 {
  opacity: 1 !important;
  z-index: 1 !important;
}
#mapka img.reveal {
  opacity: 1;
  z-index: 9;
}

.download .label {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.download .label:focus {
  outline: none;
}
.download .label {
  width: 100%;
  overflow: hidden;
  margin: 10px 0px;
  color: #64af8b;
}
.download .label .name {
  text-transform: uppercase;
}
.download .label .name:first-of-type {
  padding: 0px 30px;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
}
.download .label .name:first-of-type:last-child {
  margin-right: 0;
}
.download .label .name {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 14.7019570017%;
}
.download .label .name:last-child {
  margin-right: 0;
}
.download .label .name:nth-child(4) {
  margin-right: 0;
}
.download .item {
  width: 100%;
  height: 60px;
  margin: 10px 0px;
  overflow: hidden;
}
.download .item .name {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
}
.download .item .name:last-child {
  margin-right: 0;
}
.download .item .name {
  background: #ddf1e5;
  border-top-left-radius: 40px;
  padding: 0px 30px;
  font-size: 18px;
  color: #64af8b;
  text-transform: uppercase;
  overflow: hidden;
}
.download .item .panel {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.download .item .panel:focus {
  outline: none;
}
.download .item .panel {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 14.7019570017%;
}
.download .item .panel:last-child {
  margin-right: 0;
}
.download .item .panel {
  background: #ddf1e5;
}
.download .item .panel .missing {
  text-align: center;
  width: 100%;
  height: 53px;
  display: block;
  font-size: 37px;
  line-height: 58px;
  color: #999;
}
.download .item .panel img {
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 991px) {
  .download .label {
    text-align: center;
  }
  .download .label .name {
    font-size: 14px;
  }
  .download .label .name:first-of-type {
    width: 100%;
    font-size: 18px;
  }
  .download .label .name {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 31.7615656014%;
  }
  .download .label .name:last-child {
    margin-right: 0;
  }
  .download .label .name:last-of-type {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 31.7615656014%;
  }
  .download .label .name:last-of-type:last-child {
    margin-right: 0;
  }
  .download .item {
    margin: 20px auto;
    height: auto;
    background: #ddf1e5;
  }
  .download .item .name {
    width: 100%;
    margin: 0px;
    text-align: center;
  }
  .download .item .panel {
    cursor: pointer;
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 31.7615656014%;
  }
  .download .item .panel:last-child {
    margin-right: 0;
  }
  .download .item .panel:nth-child(4n) {
    margin-right: 0;
  }
  .download .item .panel:nth-child(4n+1) {
    clear: left;
  }
  .download .item .panel:last-of-type {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 31.7615656014%;
  }
  .download .item .panel:last-of-type:last-child {
    margin-right: 0;
  }
  .download .item .panel:last-of-type {
    display: flex;
    justify-content: space-around;
  }
  .download .item .panel {
    padding: 10px;
  }
  .download .item .panel img {
    transition: all 0.2s;
    padding: 5px;
  }
  .download .item .panel a:hover img {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 15px;
  }
}

.footer {
  background: #ddf1e5;
  color: #64af8b;
  padding: 36px 36px 50px;
  overflow: hidden;
}
.footer footer::after {
  clear: both;
  content: "";
  display: table;
}
.footer footer {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.footer .inco {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.footer .inco:focus {
  outline: none;
}
.footer .inco {
  margin-top: 6px;
  float: left;
}
@media screen and (max-width: 1130px) {
  .footer .inco {
    float: none;
    margin: 0 auto 20px auto;
    width: 94px !important;
  }
}
.footer .inco a {
  display: block;
}
.footer .inco img {
  display: block;
  max-height: 30px;
}
.footer .companies {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.footer .companies:focus {
  outline: none;
}
.footer .companies {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .companies .item {
  float: left;
  margin: 10px;
  height: 25px;
  width: 80px;
}
.footer .companies .item a {
  display: block;
  height: 100%;
}
.footer .companies .item img {
  height: 100%;
  width: auto;
  margin: 0 auto;
  float: none;
  display: block;
}
.footer .left {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
}
.footer .left:last-child {
  margin-right: 0;
}
.footer .left {
  margin-top: 50px;
}
@media screen and (max-width: 991px) {
  .footer .left {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  .footer .left:last-child {
    margin-right: 0;
  }
  .footer .left {
    text-align: center;
  }
}
.footer .footer-menu {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.footer .footer-menu:focus {
  outline: none;
}
.footer .footer-menu {
  position: relative;
  left: -7px;
}
.footer .footer-menu ul {
  padding: 0px;
  margin: 0px;
}
.footer .footer-menu li {
  opacity: 0.8;
  color: #64af8b;
  display: inline-block;
  padding: 0px 7px;
}
.footer .footer-menu li::after {
  content: "";
  border-right: solid 1px;
  position: relative;
  left: 7px;
}
.footer .footer-menu li:nth-last-child(1)::after {
  border-right-width: 0;
}
.footer .footer-menu li a {
  font-size: 11px;
}
.footer .social {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
.footer .social:focus {
  outline: none;
}
.footer .social {
  margin-top: 30px;
  overflow: hidden;
  text-align: right;
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 48.821174201%;
}
.footer .social:last-child {
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .footer .social {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  .footer .social:last-child {
    margin-right: 0;
  }
}
.footer .social p {
  margin-top: 30px;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .footer .social p {
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 100%;
  }
  .footer .social p:last-child {
    margin-right: 0;
  }
  .footer .social p {
    text-align: center;
    margin-right: 0;
  }
}
.footer .social .items {
  float: right;
}
@media screen and (max-width: 991px) {
  .footer .social .items {
    float: none;
    text-align: center;
  }
}
.footer .social .item {
  display: inline-block;
  margin: 10px;
}
@media screen and (max-width: 991px) {
  .footer .social .item {
    margin: 0 5px !important;
    float: none !important;
    display: inline !important;
    text-align: center;
    float: left;
    display: block;
    margin-right: 2.3576515979%;
    width: 31.7615656014%;
  }
  .footer .social .item:last-child {
    margin-right: 0;
  }
  .footer .social .item:nth-child(3n) {
    margin-right: 0;
  }
  .footer .social .item:nth-child(3n+1) {
    clear: left;
  }
}
.footer .social .item img {
  border-radius: 3px;
  max-height: 59px;
  cursor: pointer;
}
.footer .social .item.link:hover img {
  transform: scale(0.95);
}
.footer .social .item.nolink {
  cursor: grab;
}
.footer .social .item:nth-child(1) {
  margin-left: 25px;
}
.footer .social .item:nth-child(1) img {
  border-radius: 0;
}
.footer .legal {
  float: left;
  display: block;
  margin-right: 2.3576515979%;
  width: 100%;
}
.footer .legal:last-child {
  margin-right: 0;
}
.footer .legal {
  text-transform: uppercase;
  font-size: 11px;
  color: #64af8b;
  opacity: 0.8;
}

#url::after {
  clear: both;
  content: "";
  display: table;
}
#url {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  color: #64af8b;
  line-height: 1.4em;
}
@media screen and (max-width: 991px) {
  #url {
    padding: 0px 20px;
  }
}

input {
  font-family: "Poppins", sans-serif;
}

@-webkit-keyframes loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  float: none;
  clear: both;
  height: 30px;
}
.loading img {
  height: 100%;
  widht: auto;
  -webkit-animation: loading 1s linear 0s infinite;
  animation: loading 1s linear 0s infinite;
}

p {
  line-height: 1.2em;
}

h2 {
  line-height: 1.1em;
  font-weight: 300 !important;
}

.porady .head {
  display: table !important;
  padding: 7px 20px 0 30px !important;
  min-height: 93px !important;
  width: 100% !important;
}
.porady h2 {
  display: table-cell !important;
  vertical-align: middle !important;
}

#n2-ss-2 {
  overflow: hidden;
}

.produkty .item-product:nth-child(4n+1) {
  clear: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px 0 50px;
}
@media screen and (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px);
}
.blog-card:hover .blog-card__img {
  transform: scale(1.05);
}
.blog-card:hover .blog-card__more {
  background: #0d6540;
}
.blog-card__img-wrap {
  display: block;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
  background: #ddf1e5;
}
@media screen and (max-width: 600px) {
  .blog-card__img-wrap {
    height: 180px;
  }
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.blog-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: #ddf1e5;
}
.blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 22px 22px;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.blog-card__date {
  font-size: 11px;
  color: #64af8b;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}
.blog-card__author {
  font-size: 11px;
  color: #999;
  text-decoration: none;
}
.blog-card__author:hover {
  color: #64af8b;
}
.blog-card__author::before {
  content: "·";
  margin-right: 6px;
  color: #ccc;
}
.blog-card__title {
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.4em !important;
  margin: 0 0 8px !important;
  color: #1a1a1a !important;
  text-transform: none !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__title a {
  color: inherit;
  text-decoration: none;
}
.blog-card__title a:hover {
  color: #64af8b;
}
.blog-card__excerpt {
  font-size: 13px !important;
  color: #777 !important;
  line-height: 1.6em !important;
  margin: 0 0 16px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__more {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff !important;
  background: #64af8b;
  border-radius: 20px;
  text-decoration: none !important;
  transition: background 0.2s;
  margin-top: auto;
}
.blog-card__more::after {
  content: " →";
}
.blog-card__more:hover {
  background: #0d6540 !important;
  color: #fff !important;
}

.blog p, .blog li {
  color: #444;
  font-size: 15px;
  line-height: 1.8em;
}
.blog p {
  margin: 0 0 1.2em;
}
.blog ul, .blog ol {
  padding-left: 24px;
  margin: 0 0 1.2em;
}
.blog ul li, .blog ol li {
  margin-bottom: 6px;
}
.blog ul li {
  list-style-type: disc !important;
}
.blog strong, .blog b {
  color: #1a1a1a;
  font-weight: 700;
}
.blog h2:not(.blog-card__title) {
  font-family: "Poppins", sans-serif;
  font-size: 21px !important;
  font-weight: 700 !important;
  color: #64af8b !important;
  margin: 2em 0 0.6em !important;
  line-height: 1.3em !important;
}
.blog h3 {
  font-family: "Poppins", sans-serif;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #0d6540 !important;
  margin: 1.6em 0 0.5em !important;
  line-height: 1.35em !important;
}
.blog h4 {
  font-family: "Poppins", sans-serif;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0d6540 !important;
  margin: 1.4em 0 0.4em !important;
}
.blog a {
  color: #64af8b;
  text-decoration: underline;
}
.blog a:hover {
  color: #0d6540;
}
.blog img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1em 0;
}
.blog blockquote {
  border-left: 4px solid #64af8b;
  margin: 1.5em 0;
  padding: 12px 24px;
  background: #ddf1e5;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #0d6540;
}
.blog ul.post-galeria {
  padding: 0 !important;
  margin-right: -20px;
}
.blog ul.post-galeria li {
  float: left;
  margin-bottom: 0;
  list-style-type: none !important;
}
.blog ul.post-galeria li a {
  text-align: center;
  width: 122px;
  height: 122px;
  border: 1px solid #ddd;
  padding: 5px;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.blog ul.post-galeria li a img {
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.yarpp-related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid #ddf1e5;
}
.yarpp-related h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  margin: 0 0 20px !important;
  text-transform: none !important;
}
.yarpp-related h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background: #64af8b;
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}
.yarpp-related ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.yarpp-related ol li {
  margin: 0 !important;
  font-size: 0 !important;
  line-height: 1 !important;
}
.yarpp-related ol li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #333 !important;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
  line-height: 1.4;
}
.yarpp-related ol li a::before {
  content: "→";
  color: #64af8b;
  flex-shrink: 0;
  font-size: 14px;
}
.yarpp-related ol li a:hover {
  background: #ddf1e5;
  color: #0d6540 !important;
}
.yarpp-related ol li abbr {
  display: none !important;
}

.static {
  margin-top: 15px;
}
.static p a {
  color: #64af8b !important;
}

.search form {
  margin-top: 20px;
}
.search form label {
  display: none;
}
.search .search-everything-highlight-color {
  background: #eee;
}
.search .result-count {
  font-size: 12px;
}
.search input {
  line-height: 1.2em;
}
.search input[type=text] {
  width: 300px;
  max-width: 100%;
  margin: 10px auto;
  height: 30px;
  font-size: 13px;
  padding: 5px 10px;
  color: #64af8b;
  font-weight: 300;
  border: #64af8b solid 1px;
  transition: all 0.2s;
}
.search input[type=text]:focus, .search input[type=text]:active {
  outline: none;
  box-shadow: #64af8b 0px 0px 15px;
}
.search input[type=submit] {
  font-size: 13px;
  height: 30px;
  background: transparent;
  color: #64af8b;
  border: solid 1px #64af8b;
  outline: none;
  transition: all 0.2s;
  text-transform: uppercase;
}
.search input[type=submit]:hover {
  background: #64af8b;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 400px) {
  .search input[type=submit] {
    display: block;
    margin: 0 auto;
  }
}

#colorbox {
  overflow: visible !important;
}
#colorbox #cboxLoadingOverlay,
#colorbox #cboxContent,
#colorbox #cboxLoadedContent {
  background-color: #ffffff;
}
#colorbox #cboxContent {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}
#colorbox #cboxWrapper {
  overflow: visible !important;
}
#colorbox #cboxLoadingGraphic {
  background: url(../img/loading.gif) no-repeat center center;
}

.nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .search {
    margin: 0 20px;
  }
  .responsive-wrapper {
    padding: 0 20px;
  }
  #url {
    font-size: 14px;
  }
  .sklep_title {
    font-size: 20px !important;
  }
  .kontakt .options {
    width: 100%;
    margin: 0;
  }
  .kontakt .options .item {
    margin: 0;
  }
  .kontakt label {
    width: 100% !important;
    margin-right: 0 !important;
    text-align: left !important;
  }
  .posts .post {
    padding: 10px 0 0 0 !important;
  }
  .posts .post h3 {
    font-size: 17px;
  }
  .blog {
    padding: 0 20px;
  }
}
@media screen and (max-width: 860px) {
  #mapka {
    display: none !important;
  }
  .przedstawiciele {
    width: 100% !important;
  }
}
@media screen and (max-width: 500px) {
  h1 {
    font-size: 35px !important;
    padding: 0 20px;
  }
  h2 {
    font-size: 20px;
  }
  .partnership .item {
    margin-bottom: 0 !important;
  }
  .partnership .item a {
    height: 60px !important;
  }
  #history .panel-left img, #history .panel-right img {
    max-width: 320px !important;
  }
  .download .item {
    margin: 5px 0;
  }
  .name {
    font-size: 15px !important;
  }
  .name p {
    margin: 0;
  }
  .name:first-of-type {
    font-size: 14px !important;
  }
  div.section.kontakt .info-panel h2 {
    margin-top: 0;
  }
  div.section.kontakt .info-panel {
    padding: 20px;
    border-top-left-radius: 20px;
  }
  div.section.kontakt .info-panel label {
    padding-top: 5px !important;
  }
  div.section.kontakt .info-panel .info .item {
    float: none !important;
    margin: 0 !important;
    width: 100% !important;
  }
  div.section.kontakt .info-panel .info .item:nth-last-child(1) h3 {
    margin-top: 15px !important;
  }
  div.section.kontakt .info-panel .info .item p {
    margin: 5px 0 0 0;
  }
  div.section.kontakt .wpcf7-form {
    margin-top: 0;
  }
  div.section.kontakt .wpcf7-form label {
    padding-top: 10px;
  }
  div.section.kontakt .security .panel {
    padding: 10px;
    border-top-left-radius: 20px !important;
  }
  div.section.kontakt .security .panel .digit {
    width: 40px;
    height: 40px;
    margin: 11px;
  }
  div.section.kontakt .security .panel .digit p {
    font-size: 24px;
  }
  div.section.kontakt .security .panel .digit:after {
    font-size: 28px;
    right: -22px;
    top: -1px;
  }
  div.section.kontakt .security .panel .result {
    margin: 11px;
    height: 40px;
    width: 70px;
  }
  div.section.kontakt .security .panel .result input {
    font-size: 24px;
    padding-left: 1px;
  }
  div.section.kontakt .security .legal {
    font-size: 12px;
  }
  div.section.kontakt .przedstawiciele-wrapper {
    padding: 0;
  }
  div.section.kontakt .przedstawiciele-wrapper table.przedstawiciele span {
    font-size: 10px;
  }
  div.section.kontakt .przedstawiciele-wrapper table.przedstawiciele td.wojewodztwo span {
    margin-bottom: 4px;
  }
  div.section.kontakt .przedstawiciele-wrapper table.przedstawiciele td.wojewodztwo span:nth-last-child(1) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1154px) and (min-width: 992px) {
  .page, #url, .kafelki {
    margin: 0 20px;
  }
}
.faq-section {
  margin-top: 50px;
}
.faq-section__title {
  font-family: "Poppins", sans-serif;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #64af8b !important;
  text-transform: none !important;
  margin: 0 0 20px !important;
}
.faq-section__item {
  border: 1px solid rgba(100, 175, 139, 0.25);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-section__item:hover, .faq-section__item.is-open {
  box-shadow: 0 4px 16px rgba(100, 175, 139, 0.15);
}
.faq-section__item.is-open .faq-section__question {
  color: #0d6540;
}
.faq-section__item.is-open .faq-section__icon {
  background: rgba(100, 175, 139, 0.15);
  transform: rotate(180deg);
}
.faq-section__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  user-select: none;
  transition: color 0.2s;
  box-sizing: border-box;
}
.faq-section__question:hover, .faq-section__question:focus, .faq-section__question:active {
  background: transparent !important;
  color: #64af8b !important;
  outline: none !important;
  box-shadow: none !important;
}
.faq-section__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(100, 175, 139, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.28s ease;
}
.faq-section__icon::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid #64af8b;
  border-bottom: 2px solid #64af8b;
  transform: rotate(45deg) translate(-2px, -2px);
  border-radius: 1px;
}
.faq-section__answer {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.32s ease-in-out;
}
.faq-section__answer-inner {
  padding: 2px 20px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

.post-author-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 48px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid rgba(100, 175, 139, 0.2);
  border-left: 4px solid #64af8b;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.post-author-box__avatar {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddf1e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.post-author-box__content {
  flex: 1;
  min-width: 0;
}
.post-author-box__name {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 2px;
}
.post-author-box__name:hover {
  color: #64af8b;
}
.post-author-box__role {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #64af8b;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 10px;
}
.post-author-box__bio {
  font-size: 13px;
  color: #666;
  line-height: 1.65em;
  margin: 0 0 14px;
}
.post-author-box__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.post-author-box__socials a {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #64af8b !important;
  padding: 6px 14px;
  border: 1.5px solid #64af8b;
  border-radius: 20px;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
}
.post-author-box__socials a:hover {
  background: #64af8b;
  color: #fff !important;
}
@media screen and (max-width: 600px) {
  .post-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 14px;
  }
  .post-author-box__socials {
    justify-content: center;
  }
}

.redaktor-page {
  padding-top: 40px;
}

.redaktor-header {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 40px;
  background: #f8fdf9;
  border-radius: 16px;
  border-left: 4px solid #64af8b;
  margin-bottom: 48px;
}
@media screen and (max-width: 600px) {
  .redaktor-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 20px;
  }
}
.redaktor-header__avatar, .redaktor-header__avatar-placeholder {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.redaktor-header__avatar-placeholder {
  background: #ddf1e5;
}
.redaktor-header__info {
  flex: 1;
}
.redaktor-header__info .h1-green {
  margin: 0 0 6px;
}
.redaktor-header__role {
  font-size: 13px;
  color: #0d6540;
  font-weight: 600;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.redaktor-header__bio {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 16px;
}
.redaktor-header__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .redaktor-header__socials {
    justify-content: center;
  }
}
.redaktor-header__social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  background: #fff;
  border: 1.5px solid #64af8b;
  color: #64af8b;
}
.redaktor-header__social-link:hover {
  background: #64af8b;
  color: #fff;
}

.redaktor-posts__heading {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 28px;
}

.authors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media screen and (max-width: 991px) {
  .authors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .authors-grid {
    grid-template-columns: 1fr;
  }
}

.author-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
}
.author-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
  transform: translateY(-3px);
}
.author-card__avatar, .author-card__avatar-placeholder {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.author-card__avatar-placeholder {
  background: #ddf1e5;
}
.author-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.author-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.author-card__role {
  font-size: 12px;
  color: #64af8b;
  font-weight: 500;
}

.related-posts {
  margin-top: 56px;
}
.related-posts__heading {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 28px;
}

.dvlt-products {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 40px;
}
.dvlt-products .item-product {
  text-align: center;
}
.dvlt-products .item-product .img {
  position: relative;
}
.dvlt-products .item-product img {
  width: 100%;
}
.dvlt-products .item-product a {
  color: #64af8b;
}
@media (min-width: 1200px) {
  .dvlt-products {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .dvlt-products .nowosc {
    bottom: 80px !important;
  }
}

.top_menu header ul ul.sub-menu {
  display: none;
  position: absolute;
  top: 35px;
  background: #fff;
  z-index: 100;
}

.top_menu header ul ul.sub-menu li {
  width: 100%;
  margin: 0 !important;
  padding: 2px 0 !important;
}

.top_menu header ul li:hover ul.sub-menu {
  display: block;
}

.product-cat-tabs details {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.product-cat-tabs summary {
  position: relative;
  padding: 15px 15px 15px 40px;
  cursor: pointer;
  font-weight: bold;
  list-style: none;
  color: #64af8b;
}

.product-cat-tabs summary::-webkit-details-marker {
  display: none;
}

.product-cat-tabs summary::before {
  content: "+";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #64af8b;
}

.product-cat-tabs details[open] summary::before {
  content: "−";
}

.product-cat-tabs .content {
  padding: 15px;
  border-top: 1px solid #ddd;
  color: #64af8b;
}

#dropdown-tiles {
  position: relative;
}
#dropdown-tiles .dropdown-items {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
#dropdown-tiles .dropdown-items .item-dropdown {
  display: block;
  padding: 15px;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}
#dropdown-tiles .dropdown-items .item-dropdown:hover {
  background-color: #f8f8f8;
}
#dropdown-tiles .dropdown-items .item-dropdown:last-child {
  border-bottom: none;
}
#dropdown-tiles .dropdown-items .item-dropdown img {
  width: 100%;
  height: auto;
  max-width: 120px;
  display: block;
  margin: 0 auto;
}
#dropdown-tiles:hover .dropdown-items {
  max-height: 400px;
  opacity: 1;
  overflow: auto;
  transform: translateY(0);
}

@media (max-width: 768px) {
  #dropdown-tiles .dropdown-items {
    position: static;
    max-height: 0;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  #dropdown-tiles .dropdown-items .item-dropdown {
    padding: 12px;
  }
  #dropdown-tiles .dropdown-items .item-dropdown img {
    max-width: 80px;
  }
  #dropdown-tiles:hover .dropdown-items, #dropdown-tiles:focus-within .dropdown-items {
    max-height: 300px;
  }
}
@media (max-width: 480px) {
  #dropdown-tiles .dropdown-items .item-dropdown {
    padding: 10px;
    text-align: center;
  }
  #dropdown-tiles .dropdown-items .item-dropdown img {
    max-width: 60px;
  }
}
.top_menu {
  width: 100%;
  background: -moz-linear-gradient(bottom, rgba(245, 245, 245, 0.65) 0%, rgba(245, 245, 245, 0) 100%);
  background: -webkit-linear-gradient(bottom, rgba(245, 245, 245, 0.65) 0%, rgba(245, 245, 245, 0) 100%);
  background: linear-gradient(to top, rgba(245, 245, 245, 0.65) 0%, rgba(245, 245, 245, 0) 100%);
  padding-top: 20px;
  -webkit-font-smoothing: subpixel-antialiased;
}

.top_menu .languages {
  position: relative;
  top: 10px;
  float: right;
  margin: 5px 0px 10px;
  float: none;
  clear: both;
  width: 100%;
  overflow: hidden;
}

.top_menu .languages .item {
  height: 28px;
  margin-right: 10px;
  float: right;
  padding: 5px;
  cursor: pointer;
}

.top_menu .languages .item:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 15px;
}

.top_menu .languages .item img {
  border: 1px solid #ddd;
  height: 100%;
}

.top_menu .burger {
  height: 40px;
  width: 40px;
  background: url("../img/ico/menu.png") no-repeat;
  background-size: 100% 100%;
  float: right;
  margin-right: 20px;
  display: none;
  cursor: pointer;
  transition: all 0.15s;
  position: absolute;
  top: 25px;
  right: 0;
}

.top_menu .burger:active {
  transform: scale(0.95);
}

@media screen and (max-width: 991px) {
  .top_menu .menu-primary-menu-container {
    display: none;
  }
  .top_menu .burger {
    display: initial;
  }
}
.top_menu header {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 25px;
}

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

.top_menu header .logo {
  float: left;
}

@media screen and (max-width: 991px) {
  .top_menu header .logo {
    width: 100%;
    float: none;
  }
  .top_menu header .logo img {
    margin: 0 auto;
    display: block;
    float: none;
  }
}
.top_menu header ul {
  padding: 0;
  display: table;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .top_menu header ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
  }
}
.top_menu header ul li {
  position: relative;
  cursor: pointer;
  display: inline-block;
  user-select: none;
  -webkit-user-select: none;
  margin: 18px 12px 0px;
  text-transform: uppercase;
  font-size: 12px;
  transition: all 0.2s;
}

@media screen and (max-width: 991px) {
  .top_menu header ul li {
    margin: 10px 0 0 0;
  }
}
.top_menu header ul li a {
  text-align: center;
  display: block;
  padding: 11px 15px 9px 15px;
}

.top_menu header ul li:hover, .top_menu header ul li.active {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.top_menu header ul li.search {
  padding-left: 20px;
}

.top_menu header ul li.search img {
  height: 13px;
  left: 10px;
  top: 12px;
  position: absolute;
}