@charset "UTF-8";
/* 

  REDIGERA INTE I CSS-FILEN, UTAN I SCSS-FILEN.
  (css-filen skrivs över auomatiskt)

*/
/* RESET CSS
    adapted from https://piccalil.li/blog/a-modern-css-reset/
    and https://www.joshwcomeau.com/css/custom-css-reset/
    */
/* Box sizing rulers */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Allow percentage-based heights in the application */
html,
body {
  min-height: 100vh;
  height: 100%;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Add accessible line-height & Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Create a root stacking context */
#root,
#__next {
  isolation: isolate;
}

/* Reset */
:root {
  --color-primary: hsl(200, 50%, 80%);
  --color-secondary: #4095bf;
  --color-tertiary: #e6f1f7;
  --color-callout: #ffbc05;
  --color-dark: hsl(203, 100%, 0%);
  --color-light: white;
  --color-form: hsl(200, 50%, 95%);
  --button-shadoW: 1px 1px 10px var(--color-light);
}

/* Component Colors */
.col-primary {
  background-color: var(--color-primary) !important;
  color: var(--color-dark) !important;
}

.col-secondary {
  background-color: var(--color-secondary) !important;
  color: var(--color-light) !important;
}

.col-cfa {
  background-color: var(--color-callout) !important;
  color: var(--color-dark) !important;
}

.col-form {
  background-color: var(--color-form) !important;
  color: var(--color-dark) !important;
}

.accordion-body {
  margin-bottom: 0;
}

/* Typography */
html {
  font-size: 16px;
}

body {
  font-family: "Quicksand", sans-serif;
}

h1 {
  font-size: 1.9rem;
  font-weight: 800;
}

h2 {
  font-size: 1.3rem;
}

h3 {
  font-size: 1.1rem;
}

h5 {
  font-size: 0.85rem;
  font-weight: 400;
}

p {
  font-size: 1.3rem !important;
  font-weight: 400;
}

/* Main styling */
section {
  padding: inherit !important;
  margin: inherit !important;
  border: inherit !important;
  box-shadow: inherit !important;
}

/* NAV BAR */
.navbar a {
  text-decoration: none !important;
  color: var(--color-light);
  cursor: pointer;
}

/* SITE INFO */
.siteinfo {
  color: gray;
}

.siteinfo a {
  text-decoration: none;
  cursor: pointer;
}

.snow {
  background-image: url("../assets/snow.gif");
}

.polaroid {
  position: relative;
  border: 1px solid gray;
  border-radius: 8px;
  box-shadow: 0 4px 6px hsla(0deg, 0%, 0%, 0.3);
  background-color: white;
  padding: clamp(5%, 0%, 20px);
}

.hero {
  min-height: 900px;
}

.hero-left {
  /*   max-height: 90vh;
   */
  padding: clamp(3.6rem, 10vw, 8rem);
}

.hero-header {
  font-size: clamp(2rem, 5vw, 5rem) !important;
  font-weight: 900;
  line-height: clamp(2.4rem, 1.7ch, 1.6ch);
  margin-bottom: 0 !important;
}

.hero-subheader {
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 300;
  line-height: 2.2ch;
  margin-bottom: 0 !important;
  padding-top: 2ch;
  padding-bottom: 2vw;
}

.hero-button {
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  border-radius: 40px;
  padding: 0.5ch 1.75ch;
  font-weight: 800;
  box-shadow: var(--button-shadoW);
}

.form-button {
  font-size: 1.5rem !important;
  border-radius: 40px;
  padding: 0.5ch 1.75ch;
  font-weight: 800;
  box-shadow: var(--button-shadoW);
}

.hero-right {
  padding: 0;
}

.hero-right img {
  width: 100%;
  height: 100%;
  transform: scaleX(-1);
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial-picture img {
  width: 100%;
  height: 12em;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial-picture {
  position: relative;
}

.testimonial-picture::before {
  content: "''";
  font-family: inherit;
  position: absolute;
  top: -100px;
  left: -20px;
  z-index: 900;
  font-size: 12em;
  font-weight: 400;
  text-shadow: 1px 1px 2px var(--color-primary);
  color: var(--color-secondary);
  letter-spacing: -14px;
}

.accordion-img {
  display: none;
}

.accordion-img.show-img {
  display: block;
}

.modal-body {
  border-radius: 2px;
  overflow: hidden;
}

.btn {
  border: none !important;
  border-radius: 1.2ch;
  padding-left: 2ch;
  padding-right: 2ch;
  padding-top: 0.5ch;
  padding-bottom: 0.5ch;
  min-width: 10ch;
  margin: 0.5ch;
}

/* Helpers */
.borderradius-none {
  border-radius: 0;
}

.hidden {
  display: none !important;
}

.shown {
  display: block !important;
}

.frmerrormessage {
  color: red;
}

.has-error {
  color: red;
}

.has-error::before {
  content: "* ";
  color: red;
}

.rotate-1 {
  transform: rotate(-2deg);
}

.rotate-2 {
  transform: rotate(-1deg);
}

.rotate-3 {
  transform: rotate(1deg);
}

.rotate-4 {
  transform: rotate(2deg);
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.modal {
  overflow-y: auto;
}

:root {
  --imgwidth: clamp(100px, 43.75vw, 600px);
  --imgarrow: calc(0.9 * var(--imgwidth));
  --imgmargin: calc(0.01 * var(--imgwidth));
}

.gallery {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
}

.gallery-wrapper {
  position: relative;
  height: calc(var(--imgwidth) + 2 * var(--imgmargin));
}

.gallery-img {
  height: var(--imgwidth);
  width: var(--imgwidth);
  overflow: hidden;
  position: absolute;
  display: inline-block;
  top: var(--imgmargin);
  left: 0;
  font-size: 0;
}

.gallery-img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery-img-middle:hover {
  transform: scale(1.2);
}

.gallery-img-show {
  display: block;
}

.gallery-img-hide {
  display: none;
}

.gallery-img-left {
  left: calc(50% - var(--imgwidth));
  z-index: 1;
  transform: scale(0.8) rotate(-4deg);
}

.gallery-img-right {
  left: 50%;
  z-index: 2;
  transform: scale(0.8) rotate(4deg);
}

.gallery-img-middle {
  left: calc(50% - var(--imgwidth) / 2);
  z-index: 4;
}

.btn-gallery-l,
.btn-gallery-r {
  width: var(--imgarrow);
  height: var(--imgarrow);
  z-index: 3;
  display: inline-block;
  position: absolute;
  transform: scale(1);
  transition: transform 50ms;
  cursor: pointer;
  color: var(--color-callout);
  opacity: 80%;
}

.btn-gallery-l {
  top: calc(50% - var(--imgarrow) / 2);
  left: calc(50% - var(--imgwidth));
  transform: rotate(-3deg);
}

.btn-gallery-r {
  top: calc(50% - var(--imgarrow) / 2);
  right: calc(50% - var(--imgwidth));
  transform: rotate(3deg);
}

.btn-gallery-r:hover,
.btn-gallery-l:hover {
  transform: scale(1.1);
  transition: transform 50ms;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
             supported by Chrome, Edge, Opera and Firefox */
}

/* PRODUCTS */
.product {
  background-color: var(--color-tertiary);
  margin-top: 0.5rem;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
}

.productname {
  font-size: 1.3rem;
  font-weight: 600;
}

.productdescription {
  font-size: 0.8rem;
  margin-left: 25px;
}

.productprice {
  margin-top: 0.3rem;
  margin-left: 25px;
}

.productavailability {
  font-size: 1.3rem;
  min-width: 100%;
}

.productnoavailable {
  margin-left: 25px;
}

.product.available_none {
  color: lightgray !important;
}

.productfiller {
  display: inline-block;
  min-width: 25px;
}

.product .available {
  color: green;
}

.product .unavailable {
  color: lightgray;
}

/* ADMIN */
.admin-product {
  padding: 30px;
}

.admin-label {
  font-weight: bold;
  margin-top: 10px;
}/*# sourceMappingURL=style.css.map */