@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* https://designshack.net/articles/css/12-fun-css-text-shadows-you-can-copy-and-paste/ */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: url(../img/ashford-marx-CiRtsI7A9xU-unsplash.jpg) fixed;
  background-size: cover;
  background-position-x: -120vw;
}

::-moz-selection {
  background-color: #7f8e42;
  color: #ffffff;
}

::selection {
  background-color: #7f8e42;
  color: #ffffff;
}

nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  color: #ffffff;
}

nav details {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.75;
}

nav details > summary {
  list-style-type: none;
  background: #7f8e42;
  width: 4rem;
  height: 4rem;
  border-bottom-right-radius: 100%;
  padding-top: 0.25rem;
  -webkit-transition: width 0.5s ease, border-radius 0.3s ease;
  transition: width 0.5s ease, border-radius 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

nav details > summary::-webkit-details-marker {
  display: none;
}

nav details > summary:hover {
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 4.1rem;
  height: 4.1rem;
}

nav details > summary #arrow-down {
  display: block;
}

nav details > summary #arrow-up {
  display: none;
}

nav details > ul {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 4rem auto;
  width: 100%;
  background: #7f8e42;
  text-align: center;
}

nav details[open] {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 1;
}

nav details[open] > summary {
  background: transparent;
  -webkit-box-shadow: 0 0 0 transparent;
          box-shadow: 0 0 0 transparent;
  text-shadow: 0rem 0rem 1rem black;
  z-index: 1000;
}

nav details[open] > summary > #arrow-down {
  display: none;
}

nav details[open] > summary > #arrow-up {
  display: block;
}

nav details[open] ul {
  -webkit-animation: open 0.5s ease-in both;
          animation: open 0.5s ease-in both;
  position: fixed;
  top: -4rem;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  height: 100vh;
  max-height: 100%;
}

nav details[open] ul li a:link,
nav details[open] ul li a:visited,
nav details[open] ul li a:hover {
  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;
  margin: auto;
  color: #ffffff;
  text-decoration: none;
  background: #a1b163;
  padding: 2rem;
  border-radius: 0.4rem;
  width: 200px;
}

nav details[open] ul li a:active {
  color: #000000;
}

@-webkit-keyframes open {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-90vh);
            transform: translateY(-90vh);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes open {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-90vh);
            transform: translateY(-90vh);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#nav_small_screen {
  display: block;
}

#nav_big_screen {
  display: none;
}

header {
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #a1b163, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  background-clip: text;
  color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
}

header > h1 {
  text-align: center;
  font-size: 3rem;
  cursor: default;
  background-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 3px 3px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

header.flyg_in_animation {
  -webkit-animation: sidlinladdning 2s normal;
          animation: sidlinladdning 2s normal;
}

header.glans {
  -webkit-animation: bakgrunds-animation 3s infinite alternate;
          animation: bakgrunds-animation 3s infinite alternate;
}

@-webkit-keyframes bakgrunds-animation {
  0% {
    background-position: -100vw;
  }
  100% {
    background-position: 100vw;
  }
}

@keyframes bakgrunds-animation {
  0% {
    background-position: -100vw;
  }
  100% {
    background-position: 100vw;
  }
}

@-webkit-keyframes sidlinladdning {
  0% {
    -webkit-transform: translateY(-100vh);
            transform: translateY(-100vh);
    scale: 0.1;
  }
  100% {
    -webkit-transform: translateY(1);
            transform: translateY(1);
    scale: 1;
  }
}

@keyframes sidlinladdning {
  0% {
    -webkit-transform: translateY(-100vh);
            transform: translateY(-100vh);
    scale: 0.1;
  }
  100% {
    -webkit-transform: translateY(1);
            transform: translateY(1);
    scale: 1;
  }
}

section {
  padding: 1rem;
  background: #ffffff;
}

section h2,
section span {
  letter-spacing: 0.2rem;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  display: inline;
  background-color: #7f8e42;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 3px 3px;
}

section hr {
  border: solid #7f8e42 0.1rem;
  margin: 1rem 0rem;
}

section span {
  background-color: #000000;
}

section h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  background-color: #7f8e42;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 3px 3px;
}

section img {
  width: 100%;
  border-radius: 0.4rem;
  -webkit-box-shadow: 3px 3px 10px #000000;
          box-shadow: 3px 3px 10px #000000;
}

section .img_nyheter {
  -webkit-box-shadow: 0rem 0rem 0rem transparent;
          box-shadow: 0rem 0rem 0rem transparent;
  width: 100%;
  margin-right: 1rem;
  float: left;
}

section .p_nyheter {
  overflow: hidden;
  display: inline;
}

section #container_bilder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow: hidden;
  border-radius: 0.4rem;
  padding: 1rem;
}

section #container_bilder img {
  width: 75%;
  height: 75%;
  margin-right: 1rem;
  -webkit-animation: bilder_animation 30s linear infinite both;
          animation: bilder_animation 30s linear infinite both;
  -webkit-transition: -webkit-filter 0.5s;
  transition: -webkit-filter 0.5s;
  transition: filter 0.5s;
  transition: filter 0.5s, -webkit-filter 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes bilder_animation {
  0% {
    -webkit-transform: translateX(-100vw);
            transform: translateX(-100vw);
  }
  100% {
    -webkit-transform: translateX(100);
            transform: translateX(100);
  }
}

@keyframes bilder_animation {
  0% {
    -webkit-transform: translateX(-100vw);
            transform: translateX(-100vw);
  }
  100% {
    -webkit-transform: translateX(100);
            transform: translateX(100);
  }
}

footer {
  background: #ffffff;
  margin: 2rem 0rem;
  padding: 1rem;
  text-align: center;
  /* Form - Footer*/
}

footer h2 {
  cursor: default;
  background-color: #7f8e42;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 3px 3px;
}

footer p {
  cursor: default;
  color: #000000;
}

footer form {
  padding: 1rem 0rem;
}

footer form > label {
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  background-color: #7f8e42;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 3px 3px;
}

footer form > input {
  height: 2rem;
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
  outline: none;
  /* background: #f7f7f7; */
  border-radius: 0.4rem;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
          box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

footer form > .input_reset_submit {
  -webkit-transition: 1s;
  transition: 1s;
  cursor: pointer;
  height: 3rem;
  padding: 0rem;
  font-size: 1.5rem;
  font-weight: 600;
  background-color: #7f8e42;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 3px 3px;
}

footer form > .input_reset_submit:active {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #000000;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, #d1d5db 0px 0px 0px 1px inset;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, #d1d5db 0px 0px 0px 1px inset;
}

/* Media nånting */
@media only screen and (min-width: 400px) {
  body {
    background-position: center;
  }
}

@media only screen and (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #ffffff;
  }
  ::-webkit-scrollbar-thumb {
    background: #a1b163;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #7f8e42;
  }
  header {
    background: linear-gradient(-45deg, rgba(255, 255, 255, 0), #a1b163, rgba(255, 255, 255, 0));
    background-clip: text;
  }
  section,
  form {
    padding: 1rem 30%;
  }
  section .img_nyheter {
    width: 40%;
  }
  #nav_small_screen {
    display: none;
  }
  #nav_big_screen {
    display: block;
    background: #7f8e42;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #nav_big_screen img {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    height: 3rem;
    -webkit-user-drag: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  #nav_big_screen ul {
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 3rem;
    list-style-type: none;
  }
  #nav_big_screen ul > li a:link,
  #nav_big_screen ul > li a:visited {
    color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-weight: 600;
    text-decoration: none;
    text-decoration: underline;
    text-underline-offset: 0.9rem;
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
    text-decoration-thickness: 0.25rem;
  }
  #nav_big_screen ul > li a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 0.9rem;
    -webkit-text-decoration-color: #a1b163;
            text-decoration-color: #a1b163;
    text-decoration-thickness: 0.25rem;
  }
  #nav_big_screen ul > li a:active {
    color: #a1b163;
  }
}
/*# sourceMappingURL=mall.css.map */