/**
* Template Name: Arsha - v4.7.1
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

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

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
}

.row {
  padding-top: 10px;
  padding-bottom: 10px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #009e44;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #009e44;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0a9e00;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  color: #fffa00;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0 0px 0;
  background: rgba(256, 256, 256, 1.0);
}
#header.header-scrolled, #header.header-inner-pages {
  background: rgba(256, 256, 256, 1.0);
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 60px;
  background: #fff;
  padding: 10px 10px 10px 10px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #444; /* fff   0a9e00 */
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a img, .navbar a:focus img {
  width: 20px;
  line-height: 0;
  margin-left: 4px;
  margin-right: 8px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #0a9e00;
}
.navbar .getstarted, .navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #0a9e00; /* #0a9e00 nebo fff */
  font-size: 14px;
  border: 2px solid #0a9e00;
  font-weight: 600;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff; /* #0a9e00 nebo fff */
  background: #0a9e00;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #0a9e00;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  border: 2px;
  border-radius: 2px;
  border-color: #000;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 159, 69, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #009e44;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #0a9e00;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #009e44;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #0a9e00;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: url("../img/hero-img.webp") top center no-repeat;
  background-size: cover;
  margin-top: 60px;
  position: relative;
}

#hero .container {
  padding-top: 52px;
}
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #333;
}
#hero h2 {
  color: #009e44;
  margin-bottom: 50px;
  font-size: 24px;
}
#hero .btn-get-started {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 4px;
  color: #fff;
  background: #333;
}
#hero .btn-get-started p {
  margin: 0;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#hero .btn-get-started:hover {
  background: #0a9e00;
}
#hero .btn-call-us {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 0 0 0 5px;
  color: #0a9e00;
  line-height: 1;
  padding: 8px 20px;
  margin: 4px;
  border-radius: 50px;
  border: 2px solid #0a9e00;
  font-weight: 600;
}
#hero .btn-call-us i {
  line-height: 0;
  color: #0a9e00;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}
#hero .btn-call-us:hover {
  color: #000;
  border: 2px solid;
  border-color: #0a9e00;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
    background-size: 100vw;
    }
  #hero:before {
    content: "";
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    }
  #hero .container {
    padding-top: 60px;
    }
}

}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero:before {
    content: "";
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started {
    font-size: 16px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 20px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  color: #009e44;
}
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #0a9e00;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
}

.center {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clients (Reference)
--------------------------------------------------------------*/
.clients {
  padding: 60px 0;
  text-align: center;
}
.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}
.clients img:hover {
  filter: none;
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  background: linear-gradient(rgba(243, 245, 250, 0.9), rgba(243, 245, 250, 0.9)), url("../img/bg_tools.webp") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li + li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #0a9e00;
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .btn-learn-more {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #0a9e00;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #0a9e00;
}
.about .content .btn-learn-more:hover {
  background: #0a9e00;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}
.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #009e44;
}
.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.why-us .content p {
  font-size: 15px;
  color: #848484;
}
.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }
  .why-us .content {
    padding-top: 30px;
  }
}
@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 5px;
  width: 118px;
  height: 109px;
  background: url(../img/icon/warning-green.svg) no-repeat center;
    background-size: auto;
  background-size: 115px;
  -webkit-transform: translateY(-50%) rotate(10deg);
  -ms-transform: translateY(-50%) rotate(10deg);
  transform: translateY(-50%) rotate(10deg);
}
.skills .content {
  padding-left: 130px;
}

.skills .content h3 {
  font-weight: 700;
  font-size: 36px;
  color: #009e44;
  font-family: "Open Sans", sans-serif;
}
.skills .content h3.call {
  color: #444444;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 0px 0 rgba(3, 3, 3, 0.6);
  padding: 0px 30px;
  transition: all ease-in-out 0.4s;
  text-align: center;

}
.services .icon-box .icon {
  margin-bottom: 10px;
}
.services .icon-box .icon i {
  color: #0a9e00;
  font-size: 46px;
  transition: 0.3s;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
  color: #000;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  text-align: center;
  list-style: none;
  font-family: "Open Sans";
}
.services-list, ::before, ::after {
  box-sizing: border-box;
}
.services-item {
  min-width: 180px;
  margin: 0 0 50px 0;
}
.services-item a {
  color: #000;
  transition: ease-in-out 0.3s;
  font-size: 24px;
  font-weight: 500;
}

.services-item .icon {
  margin-bottom: 10px;
  color: #0a9e00;
  height: 56px;
  transition: 0.3s;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Portfolio - Fotogalerie
--------------------------------------------------------------*/
.portfolio #portfolio-filters {
  list-style: none;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}
.portfolio #portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  margin: 1px 1px 1px 1px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 40px;
  font-family: "Open Sans", sans-serif;
}
.portfolio #portfolio-filters li:hover, .portfolio #portfolio-filters li.filter-active {
  background: #0a9e00;
  color: #fff;
}
.portfolio #portfolio-filters li p{
  margin: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}
.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(10, 159, 69, 1);
  padding: 10px 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}
.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #fffa00;
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}
.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

@media (max-width:768px) {
  .portfolio #portfolio-filters li p{
    display: none;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 80px;
  }
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #009e44;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 5px 0 5px 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #444444;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #f3f5fa;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #009e44;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Open Sans", sans-serif;
  color: #5e5e5e;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #009e44;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 4px;
  color: #0a9e00;
  font-size: 12px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #0a9e00;
}
/*fb*/
#footer .footer-top .social-links a {
  font-size: 34px;
  display: inline-block;
  color: #0a9e00;
  margin-right: 4px;
  border-radius: 50%;
}
#footer .footer-top .social-links a:hover {
  background: #f3f5fa;
  color: #007aff;
  text-decoration: none;
}
#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}
#footer .footer-bottom i {
  font-size: 30px;
}
#footer .copyright {
  float: left;
}
#footer .credits {
  float: right;
  font-size: 13px;
}
#footer .credits a {
  transition: 0.3s;
}
@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}
#footer .getstarted {
  padding: 8px 20px;
  margin-left: 0px;
  border-radius: 50px;
  color: #0a9e00; /* #0a9e00 nebo fff */
  font-size: 14px;
  border: 2px solid #0a9e00;
  font-weight: 600;
  text-align: center;
}
#footer .getstarted:hover {
  color: #fff; /* #0a9e00 nebo fff */
  background: #0a9e00;
}

/*--------------------------------------------------------------
# Page
--------------------------------------------------------------*/
ul {
  line-height: 2.0;
  list-style-image:url(../img/check.svg);
}

.pobocky h3 {
  font-weight: 600;
  padding-bottom: 5px;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Ceník
--------------------------------------------------------------*/
.cenik button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 0;
  border: 0;
  background: 0 0;
  cursor: pointer;
}
.cenik h2 {
  padding: 0;
  padding-right: 10px;
  margin: 0;
}
.cenik button h2 {
  font-size: 32px;
}
.cenik button span {
  line-height: 20px;
}
.cenik h3 {
  padding: 5px;
  margin: 0;
}
.cenik button {
  position: relative;
  padding: 10px 30px 10px 70px;
  margin-bottom: 10px;
}
.cenik button+div {
  padding-left: 15px;
}
.cenik button::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  background-color: #019f45;
  background-size: 15px;
  border-radius: 50%;
  outline: 0;
  -webkit-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}
.cenik button.opened::before {
  content: "l";
  -webkit-transform: rotate(90deg) translateX(-50%);
  -ms-transform: rotate(90deg) translateX(-50%);
  transform: rotate(90deg) translateX(-50%);
  -webkit-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}
.cenik .tab-content .container {
  padding: 0;
}
.cenik .cenik {
  width: 100%;
}
.cenik .nav-tabs {
  margin-bottom: 5px;
  border: 0;
  list-style: none;
}
.cenik .nav-item {
  margin: 0 5px 5px 0;
}
.cenik .nav-item:last-child {
  margin: 0 0 5px 0;
}
.cenik .nav-link {
  border: 1px solid #ccc;
  border-radius: 5px;
}
.cenik .nav-link.active {
  color: #fff;
  background-color: #019f45;
  border-color: transparent;
  text-decoration: none;
}
table.cenik {
  min-width: 520px;
  margin-bottom: 1em;
}
@media (max-width:991px) {
  .cenik .nav-tabs {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      text-align: center;
  }
  .cenik .nav-item {
      margin: 0 0 5px;
  }
  .cenik h2,.cenik h3 {
      text-align: center;
  }
  .cenik button h2 {
      text-align: left;
  }
  table.cenik {
      margin: 0 auto 1em;
  }
}
@media (max-width:767px) {
  .cenik .cenik {
      min-width: 495px;
  }
}
@media (max-width:575px) {
  .cenik button h2 {
      font-size: 28px;
      line-height: 34px;
  }
}
@media (max-width:520px) {
  .cenik .table-wrapper {
      overflow-x: scroll;
  }
}
table.cenik,table.cenik th,table.cenik tr,table.cenik td {
  border: 0;
}
table.cenik th,table.cenik tr,table.cenik td {
  padding: 10px;
}
table.cenik th,table.cenik td {
  text-align: center;
}
table.cenik td.left {
  text-align: left;
}
table.cenik th {
  color: #fff;
  background-color: #019f45;
}
table.cenik tr:nth-of-type(2n+1) {
  background-color: rgba(0,0,0,.05);
}
@media (max-width: 520px) {
  .table-wrapper {
    position: relative;
  }

  .table-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 1;

    width: 70px;
    height: 70px;

    animation: 5s swipe linear infinite;
  }

  .table-wrapper:hover::before {
    display: none;
  }
}

@keyframes swipe {
  from {
    left: 60%;
  }

  20% {
    left: 60%;
  }

  40% {
    left: 40%;
  }

  60% {
    left: 40%;
  }

  80% {
    left: 60%;
  }

  to {
    left: 60%;
  }
}
