@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Open+Sans:wght@300;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'lato',sans-serif;
}

.wrapper {
  width: 100%;
}

@media (max-width: 799px) {
  .wrapper {
    padding: 10px;
  }
}

@media (min-width: 800px) {
  .wrapper {
    padding: 20px;
  }
}

.wrapper h1 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.wrapper h1:first-child {
  margin-top: 0px;
}

.wrapper h1:last-child {
  margin-bottom: 0px;
}

.wrapper .mainBox {
  list-style: none;
  counter-reset: li;
}

.wrapper .main {
  counter-increment: li;
  font-size: 1rem;
}

.wrapper .main:before {
  content: counter(li);
  color: #2ECC71;
  display: inline-block;
  width: 1em;
  margin-right: 10px;
}

.wrapper .extBox {
  padding: 5px 20px;
}

.wrapper .ext {
  list-style: none;
}

.wrapper .ext:before {
  content: "•";
  color: #2ECC71;
  margin-right: 10px;
}
/*# sourceMappingURL=polityka-prywatnosci.css.map */