* {
  --font1: Source Sans Pro;
  --font2: Quicksand;
  --lightgreen:#99ec99;
  --green:#257719;
  --darkgreen:#143b1a;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}

ol, ul, menu {
  list-style: none;
}

:root {
  font-family: var(--font1), sans-serif;
  background-color: rgb(229, 229, 229);
}

/* Pasek nawigacyjny */
nav {
  position: sticky;
  top: 0px;
  height: 80px;
  background: rgb(255, 255, 255);
  display: flex;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0px 15px 25px -15px rgb(34, 42, 129);
  font-family: var(--font2);
}

#leftside {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  width: calc(100% - 50px);
  padding: 5px;
}

#leftside img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}

#rightside {
  display: flex;
}

.hamburger {
  position: absolute;
  cursor: pointer;
  right: 5%;
  top: 50%;
  transform: translate(-5%, -50%);
  z-index: 2;
}

.line {
  width: 30px;
  height: 3px;
  background: black;
  margin: 5px;
}

.nav-links {
  position: fixed;
  background: rgb(255, 255, 255);
  height: 100vh;
  width: 100%;
  flex-direction: column;
  clip-path: circle(100px at 90% -10%);
  -webkit-clip-path: circle(10px at 90% -10%);
  transition: all 1.5s cubic-bezier(0.75, 0, 0.25, 1);
  pointer-events: none;
  top: 0;
}

.nav-links.open {
  clip-path: circle(5000px at 90% -10%);
  -webkit-clip-path: circle(5000px at 90% -10%);
  pointer-events: all;
}

.nav-links li {
  height: 25%;
  opacity: 0;
  text-align: center;
  line-height: 25vh;
}

.nav-links li a {
  font-size: 8vw;
  color: black;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links li:nth-child(1) {
  transition: all 0.5s ease 0.2s;
}

.nav-links li:nth-child(2) {
  transition: all 0.5s ease 0.4s;
}

.nav-links li:nth-child(3) {
  transition: all 0.5s ease 0.5s;
}

.nav-links li:nth-child(4) {
  transition: all 0.5s ease 0.6s;
}

li.fade {
  opacity: 1;
}

h1 {
  text-transform: uppercase;
  text-align: center;
  font-size: 50px;
  line-height: 100px;
}

h2 {
  font-size: 24px;
}

h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  left: 0;
  background: linear-gradient(90deg, rgb(229, 19, 255) 0%, rgb(99, 69, 252) 30%, rgba(229, 19, 255, 0) 70%);
}

h3:first-child {
  margin-top: 100px;
}

div.description {
  padding-top: 10px;
  font-size: 18px;
  font-weight: 400;
}

main {
  padding: 0 30px;
}

/* Tabela */
span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 800;
  padding-top: 50px;
}

.divTable {
  display: table;
  width: 100%;
  padding: 30px;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 20px;
}

.divTableRow {
  display: table-row;
  font-size: 20px;
  line-height: 30px;
}

.divTableRow:nth-child(even) {
  background-color: rgb(243, 192, 242);
}

.divTableRow .divTableCell {
  background-color: transparent;
  background: transparent;
}

.divTableRow:nth-child(even) .divTableCell:nth-child(even) {
  color: rgb(0, 0, 0);
}

.divTableHeading {
  background-color: #482424;
}

.divTableCell {
  display: table-cell;
  padding: 3px 10px;
  border-bottom: solid 1px rgb(0, 0, 0);
}

.divTableCell:nth-child(even) {
  padding-left: 20px;
}

div.divTableRow div.divTableCell:last-child {
  text-align: end;
}

.divTableBody {
  display: table-row-group;
}

footer {
  background: radial-gradient(circle, rgba(229, 134, 255, 0.711) 40%, rgb(151, 0, 252) 100%);
  text-align: center;
  font-weight: 600;
}

footer a {
  color: rgb(98, 14, 252);
  text-decoration: none;
}

footer a:hover {
  color: rgb(204, 14, 252);
}

@media (min-width: 576px) {
  nav {
    height: 10vh;
    height: 80px;
    background: rgb(255, 255, 255);
    display: flex;
    margin: auto;
  }
  main {
    max-width: 1200px;
    margin: auto;
  }
  #leftside {
    display: flex;
    width: 200px;
    padding: 10px;
  }
  #leftside a {
    width: 100%;
  }
  #leftside a img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
    max-width: 100%;
    margin-left: 10px;
  }
  #rightside {
    display: none;
  }
  .nav-links {
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    list-style: none;
    background-color: transparent;
    -webkit-clip-path: none;
    height: 100%;
    width: 50%;
    min-width: 400px;
    margin: 0 0 0 auto;
    pointer-events: auto;
  }
  .nav-links li {
    height: 100%;
    line-height: 100%;
    opacity: 1;
  }
  .nav-links li a {
    color: black;
    line-height: 80px;
    padding: 10px;
    text-decoration: none;
    font-size: calc(12px + 1vw);
  }
  .nav-links li:hover a {
    color: rgb(115, 4, 200);
    font-size: 40px;
  }
  .nav-links li:nth-child(1) a {
    transition: all 0.3s ease-in-out 0s;
  }
  .nav-links li:nth-child(2) a {
    transition: all 0.3s ease-in-out 0s;
  }
  .nav-links li:nth-child(3) a {
    transition: all 0.3s ease-in-out 0s;
  }
  .nav-links li:nth-child(4) a {
    transition: all 0.3s ease-in-out 0s;
  }
  h2::after {
    width: 30%;
  }
  /* Tabela*/
}/*# sourceMappingURL=style-pricelist.css.map */