/*keen-slider@6.8.5*/
.keen-slider:not([data-keen-slider-disabled]) {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  align-content: flex-start;
  display: flex;
  /* overflow: hidden; */
  position: relative;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -khtml-user-select: none;
  width: 100%;
}
.keen-slider:not([data-keen-slider-disabled]) .keen-slider__slide {
  min-height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.keen-slider:not([data-keen-slider-disabled])[data-keen-slider-reverse] {
  flex-direction: row-reverse;
}
.keen-slider:not([data-keen-slider-disabled])[data-keen-slider-v] {
  flex-wrap: wrap;
}

.navigation-wrapper {
  position: relative;
}

.dots {
  display: flex;
  padding: 36px 0 0 0;
  justify-content: center;
}

.dot {
  border: none;
  width: 18px;
  height: 18px;
  background: #c6e39f;
  border-radius: 9999px;
  margin: 0 5px;
  padding: 5px;
  cursor: pointer;
}

.dot:focus {
  outline: none;
}

.dot--active {
  width: 64px;
  background: #8dc63f;
}

.arrow {
  width: 48px;
  height: 48px;
  position: absolute;
  top: -94px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  fill: #fff;
  cursor: pointer;
}

.arrow--left {
  right: 84px;
  fill: "#fff";
  background-image: url(//podlewanie.pl/wp-content/themes/cyberframework/images/slider-left.png);
}

.arrow--right {
  left: auto;
  right: 0;
  background-image: url(//podlewanie.pl/wp-content/themes/cyberframework/images/slider-right.png);
}

.arrow--disabled.arrow--left {
  background-image: url(//podlewanie.pl/wp-content/themes/cyberframework/images/slider-left.png);
}

.arrow--disabled.arrow--right {
  background-image: url(//podlewanie.pl/wp-content/themes/cyberframework/images/slider-right.png);
}

.cyber-posts-slider::before,
.cyber-posts-slider::after {
  content: "";
  position: absolute;

  height: 100%;
  width: 500px;
  background-color: #fff;
  z-index: 99999;
}

.cyber-posts-slider::before {
  right: calc(100% + 2px);
}

.cyber-posts-slider::after {
  left: calc(100% + 2px);
}
/**
 * Accordion v3.4.0
 * Lightweight and accessible accordion module created in pure Javascript
 * https://github.com/michu2k/Accordion
 *
 * Copyright (c) Michał Strumpf
 * Published under MIT License
 */

.ac {
  --color-white: #fff;
  --color-light-grey: #eee;
  --color-grey: #8a8a8a;
  --color-black: #111;
  /* margin-bottom: 8px; */
  /* border: 1px solid var(--color-light-grey); */
  background-color: var(--color-white);
  box-sizing: border-box;
}
.ac .ac-header {
  margin: 0;
  padding: 0;
}
.ac .ac-trigger {
  color: var(--color-black);
  text-align: left;
  width: 100%;
  padding: 0px 32px 0px 0px;
  display: block;
  cursor: pointer;
  background-color: transparent;
  transition: color 0.25s ease;
  position: relative;
  text-decoration: none;
  margin: 0;
  border: 0;
  font-size: inherit;
  font-weight: inherit;
}
.ac .ac-trigger::after {
  content: "+";
  text-align: center;
  width: 15px;
  transform: translate(0, -50%);
  position: absolute;
  right: 0px;
  top: 50%;
}
.ac .ac-trigger:focus {
  /* color: var(--color-grey); */
}
.ac .ac-panel {
  overflow: hidden;
  transition-property: height, visibility;
  transition-timing-function: ease;
}
.ac .ac-panel .ac-text {
  font:
    15px/24px Arial,
    sans-serif;
  color: var(--color-black);
  padding: 8px;
  margin: 0;
}
.ac.js-enabled .ac-panel {
  visibility: hidden;
}
.ac.is-active .ac-panel {
  visibility: visible;
}
.ac.is-active > .ac-header .ac-trigger::after {
  content: "\2013";
}