@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

body {
  height: 100vh;
  position: relative;
}

div#container {
  overflow-x: hidden;
  background-color: rgb(230, 230, 230);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 5% 10% 70% 10% 5%;
  grid-template-rows: 100px 50px 1fr max-content;
  grid-template-areas: " header header header header header  " " menu     menu    menu     menu    menu" " main   main     main    main  main" " footer footer footer footer footer ";
}
div#container > header {
  grid-area: header;
  background-color: rgb(212, 255, 249);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
div#container > header > .header > a:not(.logga) {
  display: none;
  pointer-events: none;
  opacity: 0;
  background-color: rgb(255, 255, 255);
  padding: 10px;
  border: solid black;
}
div#container > header > .header > a:not(.logga):focus {
  opacity: 1;
}
div#container > header > .header > .logga {
  text-decoration: none;
  color: black;
}
div#container > header > .varukorg > img {
  width: 50px;
  height: auto;
  margin: 10px;
}
div#container > header > nav.telefonPlatta {
  display: block;
}
div#container > header > nav.telefonPlatta > details {
  margin: 10px;
}
div#container > header > nav.telefonPlatta > details > ul {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 10px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
div#container > header > nav.telefonPlatta > details > ul > li {
  width: 100%;
}
div#container > header > nav.telefonPlatta > details > ul > li > a {
  display: block;
  width: 100%;
  padding: 10px 0;
  text-decoration: none;
  color: black;
}
div#container > header > nav.dator {
  display: none;
}
div#container > .breadcrumbs {
  grid-area: menu;
  background-color: rgb(255, 255, 255);
  margin: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
div#container > .breadcrumbs > ul {
  padding: 10px 16px;
  list-style: none;
}
div#container > .breadcrumbs > ul > li {
  display: inline;
}
div#container > .breadcrumbs > ul > li > a {
  color: #0275d8;
  text-decoration: none;
}
> div#container > .breadcrumbs > ul > li > a:hover {
  color: #01447e;
  text-decoration: underline;
}
div#container > .breadcrumbs > ul > li + li:before {
  padding: 8px;
  color: black;
  content: "/ ";
}
div#container > main {
  grid-area: main;
  display: flex;
  flex-direction: column;
}
div#container > main section#produkt {
  padding: 20px;
}
div#container > main section#produkt > img {
  width: 80%;
  margin: auto;
  display: block;
}
div#container > main section#produkt > div {
  text-align: center;
}
div#container > main > article {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0px 0px 0px;
}
div#container > main > article > p {
  margin: 10px 50px 10px 50px;
}
div#container > main > article > img {
  width: 400px;
}
div#container > main > article > picture > img > source {
  width: 400px;
  height: auto;
}
div#container > main > article > section {
  margin: 10px;
  background-color: rgb(143, 143, 143);
  border-radius: 15px;
  width: 350px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
div#container > main > article > section > img {
  padding: 5px;
  width: 100px;
  margin: 10px;
}
div#container > main > article > section > h3 {
  padding: 15px;
}
div#container > main > article > section > p {
  margin: 20px;
}
div#container > main > article > section#spaprodukter {
  margin: 0;
  border-radius: 0;
  width: 100%;
  background: url(../imgOpt/poolspaprodukt-560x560-opt.jpg);
}
div#container > main > article > div > section#pooler {
  margin: 0;
  border-radius: 0;
  width: 100%;
  background: url(../imgOpt/pooler-560x560-opt.jpg);
}
div#container > main > article > div > section#pooltak {
  margin: 0;
  border-radius: 0;
  width: 100%;
  background: url(../imgOpt/pooltak-750x500-opt.jpg);
}
div#container > main > article > div > section#spabad {
  margin: 0;
  border-radius: 0;
  width: 100%;
  background: url(../imgOpt/spabad-666x500-opt.jpg);
}
div#container > main > article > div > section#poolprodukter {
  margin: 0;
  border-radius: 0;
  width: 100%;
  background: url(../imgOpt/poolspaprodukt-560x560-opt.jpg);
}
div#container > main > article#tjanster > div {
  display: flex;
  flex-direction: column;
  width: 100%;
}
div#container > main > article#tjanster > div > section {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin: 20px;
}
div#container > main > article#tjanster > div > section > img {
  width: 150px;
  height: auto;
}
div#container > main > article#tjanster > div > section > h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
div#container > main > article#bildertillsidor > div {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
div#container > main > article#bildertillsidor > div > section {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
div#container > main > article#bildertillsidor > div > section > h3 {
  background-color: #c2c2c2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 50px;
  border-radius: 5px;
}
div#container > main > article#spabadpooler {
  padding: 20px;
}
div#container > main > article#spabadpooler > section {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  margin: 20px;
}
div#container > main > article#spabadpooler > section > img {
  height: auto;
  width: 300px;
  max-width: 100%;
}
div#container > main > article#spabadpooler > section > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  background-color: #ffffff;
}
div#container > main > article#spabadpooler > section > div > p {
  margin: 0px 50px 0px 50px;
}
div#container > main > article#kontakt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-width: 200px;
}
div#container > main > article#kontakt > form > input {
  margin: 0px 0px 20px 0px;
  width: 100%;
  height: 2rem;
}
div#container > main > article#kontakt > form > input#meddelande {
  height: 10rem;
}
div#container > footer {
  background-color: rgb(195, 196, 255);
  grid-area: footer;
  text-align: center;
}
div#container > footer > .foot {
  text-align: left;
}
div#container > footer > .foot > li {
  list-style: none;
}
div#container > footer > .foot > li > h3 {
  margin: 20px;
}
div#container > footer > .foot > li > p {
  margin: 20px;
}

@media only screen and (min-width: 768px) {
  div#container > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }
  div#container > header > nav.telefonPlatta {
    display: none;
  }
  div#container > header > nav.dator {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  div#container > header > nav.dator > ul {
    display: flex;
    list-style: none;
  }
  div#container > header > nav.dator > ul > li > a {
    margin: 20px;
  }
  div#container > main > article > img {
    width: 600px;
  }
  div#container > main > article > h2 {
    margin: 10px;
  }
  div#container > main > article > p {
    margin: 10px 200px 10px 200px;
  }
  div#container > main > article > section#spaprodukter {
    width: 50%;
  }
  div#container > main > article > picture > img > source {
    width: 600px;
    height: auto;
  }
  div#container > main > section#produkt {
    display: flex;
    align-items: center;
    margin: auto;
    padding: 20px 15px;
  }
  div#container > main > section#produkt > img {
    max-width: 400px;
    width: 100%;
  }
  div#container > main > section#produkt > div {
    order: 1;
    display: flex;
    flex-direction: column;
    margin: 40px;
  }
  div#container > main > article#spabadpooler > section {
    display: flex;
    flex-direction: row;
    padding: 20px;
    width: 100%;
    max-width: 1000px;
  }
  div#container > main > article#spabadpooler > section:nth-child(even) {
    flex-direction: row-reverse;
  }
  div#container > main > article#spabadpooler > section > img {
    height: 250px;
    width: auto;
  }
  div#container > main > article#bildertillsidor > h2 {
    margin-bottom: 20px;
    text-align: center;
  }
  div#container > main > article#bildertillsidor > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  div#container > main > article#bildertillsidor > div > section {
    width: 560px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  div#container > main > article#tjanster > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  div#container > main > article#tjanster > div > section {
    background-color: #ffffff;
  }
  div#container > footer > h4 {
    padding: 10px;
  }
  div#container > footer > ul.foot {
    display: flex;
  }
  div#container > footer > ul.foot > li {
    flex: 1;
  }
  div#container > footer > ul.foot > li h3 {
    margin: 20px;
    font-size: 1.2rem;
  }
  div#container > footer > ul.foot > li p {
    margin: 0px 20px;
  }
}
@media only screen and (min-width: 992px) {
  div#container > header > .header {
    display: flex;
    flex-direction: row-reverse;
  }
  div#container > main > article > img {
    width: 800px;
  }
  div#container > main > article > p {
    width: 40%;
  }
  div#container > main > article > picture > img > source {
    width: 800px;
    height: auto;
  }
  div#container > main > article#tjanster > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}/*# sourceMappingURL=mall.css.map */