@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  position: relative;
  font-family: 'Open Sans', sans-serif;
}

body {
  position: relative;
  height: 100%;
  overflow-y: scroll;
}

a {
  text-decoration: none;
}

p {
  color: #222;
  line-height: 1.5em !important;
}

#wrapper {
  position: relative;
  display: block;
  min-height: 100vh;
  padding-bottom: 82px;
  overflow: hidden;
}

/********************/
/* GENERAL          */
/********************/

.ba-general-container-header {
  margin-bottom: 15px;
  color: #222;
  font-weight: 600;
  font-size: 42px;
  text-align: center;
}

.ba-general-container-line {
  display: block;
  height: 2px;
  width: 50px;
  margin: 0 auto;
  margin-bottom: 20px;
  background-color: #C1904B;
}

.ba-general-container-description {
  margin-bottom: 50px;
  text-align: center;
}

.ba-load-fade,
.ba-load-fade--02 {
  opacity: 1;
  transition: opacity 1.5s;
}

.ba-load-faded,
.ba-load-faded--02 {
  opacity: 0;
}

.ba-fade-in {
  transition: opacity 1.5s;
  opacity: 0;
}

.ba-fade-in.ba-faded {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .ba-fade-in {
    transition: opacity 1s;
    opacity: 0;
  }
}

/********************/
/* NAVIGATION       */
/********************/

.ba-navigation {
  display: grid;
  grid-template-columns: 200px auto;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 30px;
}

.ba-navigation-logo > img {
  display: block;
  max-width: 220px;
}

nav.ba-navigation-container > .ba-navigation-toggle {
  display: none;
}

nav.ba-navigation-container > ul {
  position: relative;
  text-align: right;
}

nav.ba-navigation-container > ul > li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  list-style: none;
}

nav.ba-navigation-container > ul > li > a {
  padding: 10px 0;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.15s;
  cursor: pointer;
}

nav.ba-navigation-container > ul > li > a:hover {
  color: #C1904B;
}

nav.ba-navigation-container > ul > li > a.ba-navigation-link--active {
  color: #C1904B !important;
}

nav.ba-navigation-container > ul > li > a > i {
  margin-left: 10px;
}

nav.ba-navigation-container > ul > li > a:hover .ba-navigation-sub {
  display: block;
}

nav.ba-navigation-container > ul > li > ul {
  z-index: 50;
  position: absolute;
  display: none;
  border-radius: 3px;
  top: 30px;
  width: 100%;
  background-color: #FFF;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.10);
  overflow: hidden;
}

nav.ba-navigation-container > ul > li > a:hover + .ba-navigation-sub,
nav.ba-navigation-container > ul > li > .ba-navigation-sub:hover {
  display: block;
}

nav.ba-navigation-container > ul > li > a#ba-subnav-fest-och-event + .ba-navigation-sub {
  width: 200%;
}

nav.ba-navigation-container > ul > li > .ba-navigation-sub:hover + a {
  color: #C1904B;
}

nav.ba-navigation-container > ul > li > ul > li {
  list-style: none;
  text-align: left;
}

nav.ba-navigation-container > ul > li > ul > li > a {
  display: inline-block;
  padding: 10px 20px;
  color: #222;
  transition: all 0.15s;
}

nav.ba-navigation-container > ul > li > ul > li:first-child > a {
  display: block;
  padding-top: 20px;
}
nav.ba-navigation-container > ul > li > ul > li:last-child > a {
  display: block;
  padding-bottom: 20px;
}

nav.ba-navigation-container > ul > li > ul > li > a:hover {
  color: #C1904B;
}

@media screen and (max-width: 1380px) {
  .ba-navigation {
    z-index: 1000;
    position: fixed;
    padding: 10px 15px;
    width: 100%;
    background-color: #FFF;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.10);
  }
  .ba-navigation-logo > img {
    max-width: 175px;
  }
  nav.ba-navigation-container > .ba-navigation-toggle {
    display: block;
    font-size: 18px;
    text-align: right;
    cursor: pointer;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently */
    touch-action: manipulation;
  }
  nav.ba-navigation-container > ul.ba-navigation-list {
    position: fixed;
    z-index: 1000;
    top: 75px;
    right: 0;
    display: none;
    width: 100%;
    background-color: #FFF;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently */
  }
  nav.ba-navigation-container > ul.ba-navigation-list--active {
    display: block;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.10);
  }
  nav.ba-navigation-container > ul > li {
    display: block;
    margin-left: 0;
  }
  nav.ba-navigation-container > ul > li > a {
    border-top: 1px solid #F2F2F2;
    display: block;
    padding: 15px 15px;
    font-size: 16px;
    cursor: pointer;
  }
  nav.ba-navigation-container > #navOverlay {
    position: fixed;
    z-index: 10;
    top: 75px;
    left: 0;
    display: none;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: 0.4;
  }

  nav.ba-navigation-container > ul > li > a:hover + .ba-navigation-sub,
  nav.ba-navigation-container > ul > li > .ba-navigation-sub {
    display: none !important;
  }
  nav.ba-navigation-container > ul > li > a#ba-subnav-fest-och-event.ba-subnav--expand + .ba-navigation-sub,
  nav.ba-navigation-container > ul > li > a#ba-subnav-uthyrningstillbehör.ba-subnav--expand + .ba-navigation-sub,
  nav.ba-navigation-container > ul > li > a#ba-subnav-heliumballonger.ba-subnav--expand + .ba-navigation-sub {
    display: block !important;
  }
  nav.ba-navigation-container > ul > li > ul {
    position: relative;
    display: block;
    top: 0;
    width: 100% !important;
    box-shadow: none;
  }
  nav.ba-navigation-container > ul > li > ul > li {
    text-align: right;
  }
  nav.ba-navigation-container > ul > li > ul > li > a {
    padding: 5px 20px;
    transition: all 0.15s;
  }
  nav.ba-navigation-container > ul > li > ul > li:first-child > a {
    padding-top: 0;
  }
  nav.ba-navigation-container > ul > li > ul > li:last-child > a {
    padding-bottom: 20px;
  }
}

/********************/
/* BANNER           */
/********************/

.ba-banner--front {
  position: relative;
}

.ba-banner--front .ba-banner-wrapper {
  position: relative;
  display: grid;
  align-items: center;
  height: 700px;
  width: 100%;
}

.ba-banner--front .ba-banner-heading {
  z-index: 30;
  color: #ffffff;
  max-width: 1000px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
}

.ba-banner--front .ba-banner-wrapper .ba-banner-heading img {
  max-width: 90%;
  -webkit-filter: drop-shadow(5px 5px 5px #000);
  filter: drop-shadow(5px 5px 5px #000);
}

.ba-banner--front .ba-banner-heading > h2 {
  color: #FFF;
  font-size: 46px;
  font-weight: 400;
  font-family: 'Noto Serif';
  line-height: 1.2em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.ba-banner--front .ba-banner-heading > h2 > .ba-highlight {
  color: #C1904B;
  font-weight: 600;
}

.ba-banner--front .ba-banner-heading > p {
  margin-top: 50px;
  color: #FFF;
  font-size: 18px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.ba-banner--front .ba-banner-cover {
  position: absolute;
  z-index: 15;
  top: 0;
  left: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 100%;
}

.ba-banner--front .ba-banner-images {
  display: block;
  background-color: #FFF;
  position: absolute;
  height: 100%;
  width: 100%;
  transition: ease-in-out;
}

.ba-banner--front .ba-banner-images > .ba-banner-item {
  height: 700px;
  width: 100%;
  overflow: hidden;
}

.ba-banner--front .ba-banner-images > .ba-banner-item.ba-banner-item--02 > img {
  object-position: top;
}

.ba-banner--front .ba-banner-images > .ba-banner-item > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-banner--front .ba-banner-navigation {
  position: absolute;
  z-index: 25;
  left: 50%;
  bottom: 20px;
  transform: translatex(-50%);
}

.ba-banner--front .ba-banner-navigation > .ba-banner-navigation-item {
  border-radius: 50%;
  border: 2px solid #FFF;
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.ba-banner--front .ba-banner-navigation > .ba-banner-navigation-item.ba-banner-navigation-item--active {
  background-color: #FFF !important;
}

.ba-banner--small {
  position: relative;
  padding: 110px 15px 100px 15px !important;
}

.ba-banner--small .ba-banner-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
}

.ba-banner--small > .ba-banner-wrapper {
  padding-right: 0;
}

.ba-banner--small > .ba-banner-wrapper > h2.ba-banner-heading {
  margin-bottom: 10px;
  text-align: center;
}

.ba-banner--small .ba-banner-image {
  background-color: #F2F2F2;
  background-image: url('../img/landing_banner_01.jpg');
  background-size: cover;
  background-position: center 20%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.ba-banner--small .ba-banner-cover {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
}

.ba-banner--small h2.ba-banner-heading {
  color: #FFF;
  font-size: 46px;
  font-weight: 400;
  font-family: 'Noto Serif';
  line-height: 1.2em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.ba-banner--small h2.ba-banner-heading > .ba-highlight {
  color: #C1904B;
  font-weight: 600;
}

.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
	animation-name: fade;
	animation-duration: 2s;
}

@-webkit-keyframes fade {
  from {opacity: .0} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .0} 
  to {opacity: 1} 
}

@media screen and (max-width: 1380px) {
  .ba-banner--front h2.ba-banner-heading {
    max-width: 500px;
  }
  .ba-banner--small {
    position: relative;
    padding: 210px 15px 100px 15px !important;
  }
}

@media screen and (max-width: 768px) {
  .ba-banner-heading img {
    max-width: 100% !important;
  }
  .ba-banner--front .ba-banner-heading > h2 {
    font-size: 28px;
    text-align: center;
  }
  .ba-banner--front .ba-banner-heading > p {
    display: none;
  }
  .ba-banner--front .ba-banner-wrapper {
    padding-top: 50px;
  }
  .ba-banner--front .ba-banner-wrapper,
  .ba-banner--front .ba-banner-images > .ba-banner-item {
    height: 50vh;
    min-height: 500px;
  }
  .ba-banner--small {
    padding: 160px 15px 75px 15px !important;
  }
  .ba-banner--small h2.ba-banner-heading {
    text-align: center;
    font-size: 36px;
  }
}

/********************/
/* GALLERY          */
/********************/

.ba-gallery {
  margin: 50px 15px;
}

.ba-gallery-wrapper {
  max-width: 1200px;
  margin: 80px auto;
}

p.ba-gallery-landing {
  display: none;
}

p.ba-gallery-description {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 80px;
  font-size: 18px;
}

p.ba-gallery-description > span {
  display: block;
}

p.ba-gallery-description:last-of-type {
  position: relative;
  margin-top: 150px;
  margin-bottom: 150px;
  font-size: 24px;
  text-align: center;
}

p.ba-gallery-description:last-of-type:before {
  content: '?';
  z-index: -5;
  position: absolute;
  left: 50%;
  top: 50%;
  color: #C1904B;
  font-family: 'Times New Roman', Times, serif;
  font-size: 10em;
  font-weight: 100;
  transform: translate(-50%, -50%);
  opacity: 0.2;
}

p.ba-gallery-description > a {
  color: #C1904B;
  transition: all 0.2s;
}

p.ba-gallery-description > a:hover {
  color: #222;
}

.ba-gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.ba-gallery-container > .ba-gallery-item {
  position: relative;
}

.ba-gallery-container > .ba-gallery-item > img {
  width: 100%;
}

.ba-gallery-container > .ba-gallery-item > img.ba-gallery-thumbnail--presentballong,
.ba-gallery-container > .ba-gallery-item > img.ba-gallery-thumbnail--dekoration,
.ba-gallery-container > .ba-gallery-item > img.ba-gallery-thumbnail--presentboxar {
  display: none;
}

.ba-gallery-navigate-prev,
.ba-gallery-navigate-next {
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #FFF;
  font-size: 24px;
  font-weight: 900;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
  transform: translateY(-15%);
  cursor: pointer;
  user-select: none;
}

.ba-gallery-navigate-next {
  right: 0;
}

.ba-gallery-container > .ba-gallery-item > h3.ba-gallery-heading {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  transform: translate(-50%, -50%);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}

.ba-gallery-container > .ba-gallery-item:hover h3.ba-gallery-heading {
  display: block;
}

@media screen and (max-width: 768px) {
  .ba-gallery-wrapper {
    margin: 50px auto 80px auto;
  }
  p.ba-gallery-landing {
    display: block;
    margin: 0 0 50px 0;
    text-align: center;
  }
  .ba-gallery-wrapper > .ba-gallery-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  p.ba-gallery-description {
    margin-bottom: 50px;
  }
}

/********************/
/* CATEGORIES       */
/********************/

.ba-categories {
  background-color: #F9F9F9;
}

.ba-categories-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 15px;
}

.ba-general-container-description > a {
  color: #C1904B;
  transition: all 0.2s;
}

.ba-general-container-description > a:hover {
  color: #222;
}

.ba-categories-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin: 0 auto;
}

.ba-categories-container > .ba-categories-item {
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.10);
  background-color: #FFF;
}

.ba-categories-container.ba-categories-container--2 {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 620px;
}

@media screen and (max-width: 768px) {
  .ba-categories-container {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .ba-categories-container > .ba-categories-item {
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.10);
  }
  .ba-categories-container.ba-categories-container--2 {
    grid-template-columns: repeat(1, 1fr);
    margin: 10px 0 0 0;
    max-width: 100%;
  }
  
}

/********************/
/* REVIEWS          */
/********************/

.ba-reviews {
  padding: 50px 15px;
}

.ba-reviews-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.ba-reviews-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.ba-reviews-container > .ba-reviews-item {
  position: relative;
  border-radius: 5px;
  padding: 30px;
  background-color: #FFF;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.10);
  transition: all 0.15s;
}

.ba-reviews-container > .ba-reviews-item:hover {
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.20);
  cursor: default;
}

.ba-reviews-container > .ba-reviews-item > h3.ba-reviews-name {
  margin-top: 10px;
  font-size: 16px;
}

.ba-reviews-container > .ba-reviews-item > h4.ba-reviews-location {
  color: #CCC;
  font-size: 14px;
  font-weight: 400;
}

.ba-reviews-container > .ba-reviews-item > p.ba-reviews-text {
  position: relative;
  font-size: 14px;
}

.ba-reviews-container > .ba-reviews-item:before {
  content: '\f10d';
  z-index: 5;
  position: absolute;
  left: 50%;
  top: 50%;
  color: #C1904B;
  font-family: 'Font Awesome 5 free';
  font-size: 10em;
  font-weight: 900;
  transform: translate(-50%, -50%);
  opacity: 0.1;
}

@media screen and (max-width: 768px) {
  .ba-reviews-container {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  .ba-reviews-container > .ba-reviews-item {
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.10);
  }
}

/********************/
/* CONTACT          */
/********************/

.ba-contact {
  padding: 50px 15px;
  background-color: #F9F9F9;
  text-align: center;
}

.ba-contact-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.ba-contact-wrapper > h3,
.ba-contact-wrapper > p {
  margin-bottom: 20px;
}

.ba-contact-wrapper > p:first-of-type {
  margin-bottom: 0;
}

.ba-contact-wrapper > a {
  display: inline-block;
  margin-bottom: 20px;
  color: #C1904B;
  transition: all 0.15s;
}

.ba-contact-wrapper > a:hover {
  color: #222;
}

.ba-contact-socials > a {
  margin: 0 10px;
  color: #222;
  font-size: 24px;
  transition: all 0.15s;
}

.ba-contact-socials > a:hover {
  color: #C1904B;
}

/********************/
/* /utbud           */
/********************/

.ba-utbud {
  padding: 100px 15px 50px 15px;
}

.ba-utbud-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.ba-utbud-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.ba-utbud--single {
  padding: 0 0 50px;
  margin-top: -30px;
}

.ba-utbud--single .ba-utbud-container {
  grid-template-columns: 1fr;
  max-width: 50%;
  margin: 0 auto;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-badge {
  z-index: 50;
  position: absolute;
  top: 5px;
  left: 5px;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-badge > span {
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  margin: 0 auto;
  background-color: #C1904B;
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
  transform: rotate(-10deg)
}

.ba-utbud-container > .ba-utbud-item {
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card > .ba-utbud-information > .ba-utbud-out-of-stock {
  display: block;
  margin: 20px 20px 0 20px;
  padding-bottom: 0 !important;
  color: #999;
  font-size: 14px;
  font-style: italic;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card > .ba-utbud-information > i {
  font-size: 36px;
  margin-bottom: 20px;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card > .ba-utbud-information h3 {
  font-size: 24px;
  margin: 20px 0 10px 0;
  padding: 0 20px;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card > .ba-utbud-information h3.ba-utbud-price > span:after {
  content: ':-';
  position: absolute;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card > .ba-utbud-information h3.ba-utbud-price-st:after {
  content: '' !important;
}

.ba-utbud-price-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 20px;
}

.ba-utbud-price-container > .ba-utbud-item > h3 {
  margin-top: 0 !important;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card > .ba-utbud-information h3.ba-utbud-price {
  margin-bottom: 5px;
  font-size: 36px;
  font-weight: 600;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card > .ba-utbud-information h3.ba-utbud-price {
  color: #C1904B;
  padding: 0 20px;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card > .ba-utbud-information p.ba-utbud-price {
  position: relative;
  padding: 0 20px;
  margin-bottom: 20px;
  font-size: 14px;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card > .ba-utbud-information h3.ba-utbud-price > .ba-utbud-small {
  position: relative;
  font-size: 14px;
  font-weight: 400;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card > .ba-utbud-information p {
  padding: 0 20px 20px 20px;
}

.ba-utbud-additional--mobile,
.ba-utbud-additional {
  display: block;
  margin: 0 20px 20px 20px;
  color: #999;
  font-size: 14px;
  font-style: italic;
}

.ba-utbud-additional--mobile {
  display: none;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card > .ba-utbud-technical > h4 {
  margin-top: 20px;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card > .ba-utbud-technical > h4 > span {
  color: #C1904B;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card > .ba-utbud-technical > .ba-utbud-measure {
  margin: 20px 0;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card > .ba-utbud-technical > .ba-utbud-measure > p > span {
  margin-right: 10px;
  color: #C1904B;
  font-weight: 600;
}

.ba-utbud-container > .ba-utbud-item > .ba-utbud-card ul {
  margin: 20px;
  list-style-type: none;
}

.ba-utbud-color {
  margin: 0 auto;
  max-width: 800px;
  margin-bottom: 50px;
  text-align: center;
}

.ba-utbud-color > h4 {
  margin-bottom: 15px;
}

.ba-utbud-color > .ba-utbud-colors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
  margin: 10px auto 0 auto;
}

.ba-utbud-color > .ba-utbud-colors > ul {
  margin-top: 0;
}

.ba-utbud-color > .ba-utbud-colors > ul > li {
  display: block;
  margin: 5px 0 0 0;
  font-size: 14px;
}

.ba-utbud .ba-gallery-item {
  position: relative;
  width: 100%;
}

.ba-utbud .ba-gallery-item > img {
  width: 100%;
}

.ba-utbud .ba-gallery-item > img.ba-gallery-thumbnail--limited,
.ba-utbud .ba-gallery-item > img.ba-gallery-thumbnail--luxe,
.ba-utbud .ba-gallery-item > img.ba-gallery-thumbnail--standard,
.ba-utbud .ba-gallery-item > img.ba-gallery-thumbnail--presentballong,
.ba-utbud .ba-gallery-item > img.ba-gallery-thumbnail--blajtarta,
.ba-utbud .ba-gallery-item > img.ba-gallery-thumbnail--konfettibomber {
  display: none;
}

.ba-gallery-navigate-prev,
.ba-gallery-navigate-next {
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #FFF;
  font-size: 24px;
  font-weight: 900;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
  transform: translateY(-15%);
  cursor: pointer;
  user-select: none;
}

.ba-gallery-navigate-next {
  right: 0;
}

.ba-gallery-navigate-prev {
  left: 0;
}

@media screen and (max-width: 1000px) {
  .ba-utbud-container  {
    grid-template-columns: repeat(2, 1fr);
  }
  .ba-utbud--single {
    padding-top: 0 !important;
  }
  .ba-utbud--single .ba-utbud-container {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .ba-utbud {
    padding: 50px 15px;
  }
  .ba-utbud-container  {
    grid-template-columns: 1fr !important;
  }
  .ba-utbud-price-container {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}

/***********************/
/* /utbud: ACCESSORIES */
/***********************/

.ba-accessories {
  padding: 0 15px 50px 15px;
}

.ba-accessories-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.ba-accessories-container > h3 {
  margin-bottom: 5px;
  text-align: center;
  font-weight: 400;
}

.ba-accessories-container > h2 {
  margin-top: 50px;
}

.ba-accessories-container > h3.ba-accessories-heading {
  margin-top: 25px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 400;
}

.ba-accessories-container > h3 > span {
  color: #C1904B;
  font-weight: 600;
}

.ba-accessories-container > .ba-accessories-teddy--big {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  margin-bottom: 30px;
}

.ba-accessories-container > .ba-accessories-teddy--small {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
}

.ba-accessories-container > .ba-accessories-teddy--small > .ba-accessories-teddy-item,
.ba-accessories-container > .ba-accessories-teddy--big > .ba-accessories-teddy-item {
  position: relative;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}

.ba-accessories-container > .ba-accessories-teddy--small > .ba-accessories-teddy-item > img,
.ba-accessories-container > .ba-accessories-teddy--big > .ba-accessories-teddy-item > img {
  display: block;
  width: 100%;
}

.ba-accessories-container > .ba-accessories-teddy--small > .ba-accessories-teddy-item > h4,
.ba-accessories-container > .ba-accessories-teddy--big > .ba-accessories-teddy-item > h4 {
  margin-top: 20px;
  text-align: center;
  font-weight: 400;
}

.ba-accessories-container > .ba-accessories-teddy--small > .ba-accessories-teddy-item > .out-of-stock,
.ba-accessories-container > .ba-accessories-teddy--big > .ba-accessories-teddy-item > .out-of-stock {
  position: absolute;
  top: -8px;
  left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  height: 60px;
  width: 60px;
  background-color: #C1904B;
}

.ba-accessories-container > .ba-accessories-teddy--small > .ba-accessories-teddy-item > .out-of-stock > span,
.ba-accessories-container > .ba-accessories-teddy--big > .ba-accessories-teddy-item > .out-of-stock > span {
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
} 

.ba-accessories-teddy--small {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 50px;
}

.ba-accessories-teddy--small > img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .ba-accessories-container > .ba-accessories-teddy--small,
  .ba-accessories-container > .ba-accessories-teddy--big {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .ba-accessories-container > .ba-accessories-teddy--big > .ba-accessories-teddy-item:last-of-type {
    max-width: 50%;
    margin: 0 auto;
    grid-column: 1 / span 2;
  }
}

/********************/
/* /utbud: STEP     */
/********************/

.ba-step {
  padding: 50px 15px;
  background-color: #F9F9F9;
}

.ba-step-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.ba-step-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  padding-top: 20px;
}

.ba-step-container > .ba-step-item {
  text-align: center;
}

.ba-step-container > .ba-step-item > .ba-step-number {
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  margin: 0 auto;
  background-color: #FFF;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}

.ba-step-container > .ba-step-item > .ba-step-number > span {
  font-weight: 600;
}

.ba-step-container > .ba-step-item > p {
  display: block;
  margin: 20px 0 0 0;
}

.ba-step-container > .ba-step-item:last-of-type > p {
  margin-bottom: 0;
}

.ba-step-container > .ba-step-item > p > a {
  color: #C1904B;
  transition: all 0.2s;
}

.ba-step-container > .ba-step-item > p > a:hover {
  color: #222;
}

.ba-step-container > .ba-step-item > .ba-step-delivery-notice {
  margin-top: 10px;
  text-align: center;
  color: #999;
  font-style: italic;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .ba-step-wrapper > .ba-step-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

/********************/
/* SITE: /KONTAKT   */
/********************/

.ba-kontakt {
  padding: 100px 15px;
}

.ba-kontakt-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.ba-kontakt-container > .ba-kontakt-heading {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.ba-kontakt-container > .ba-kontakt-heading > p:first-of-type {
  margin-bottom: 0;
}

.ba-kontakt-container > .ba-kontakt-heading > h3 {
  margin-bottom: 20px;
}

.ba-kontakt-container > .ba-kontakt-heading > a {
  display: inline-block;
  margin-top: 20px;
  color: #C1904B;
  transition: all 0.2s;
}

.ba-kontakt-container > .ba-kontakt-heading > a:hover {
  color: #222;
}

.ba-kontakt-container > .ba-kontakt-information {
  display: grid;
  max-width: 400px;
  grid-gap: 20px;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
}

.ba-kontakt-container > .ba-kontakt-information > .ba-kontakt-text {
  margin-top: 30px;
  font-weight: 600;
}

.ba-kontakt-container > .ba-kontakt-information > a.ba-kontakt-item {
  display: inline-block;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
  color: #C1904B;
  transition: all 0.2s;
}

.ba-kontakt-container > .ba-kontakt-information > a.ba-kontakt-item:after {
  content: '\f054';
  color: #CCC;
  font-family: 'Font Awesome 5 free';
  font-weight: 400;
  float: right;
  font-size: 18px;
}

.ba-kontakt-container > .ba-kontakt-information > a.ba-kontakt-item:hover {
  color: #222;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}

.ba-kontakt-container > .ba-kontakt-information > a.ba-kontakt-item > i {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .ba-kontakt {
    padding: 50px 15px;
  }
  .ba-kontakt-container > .ba-kontakt-information {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .ba-kontakt-container > .ba-kontakt-information > .ba-kontakt-text {
    margin-bottom: 15px;
  }
}

/*************************/
/* SITE: /vanliga-fragor */
/*************************/

.ba-faq {
  padding: 100px 15px;
}

.ba-faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.ba-faq-container > .ba-faq-item {
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 30px;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}

.ba-faq-container > .ba-faq-item:last-of-type {
  margin-bottom: 0;
}

.ba-faq-container > .ba-faq-item > h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.ba-faq-container > .ba-faq-item > p {
  font-size: 14px;
}

.ba-faq-container > .ba-faq-item a {
  color: #C1904B;
  transition: all 0.2s;
}

.ba-faq-container > .ba-faq-item a:hover {
  color: #222;
}

.ba-faq-container > .ba-faq-item > .ba-general-container-line {
  margin: 0 0 20px 0;
}

@media screen and (max-width: 768px) {
  .ba-faq {
    padding: 50px 15px;
  }
  
}

/********************/
/* SITE: /om-oss    */
/********************/

.ba-about {
  padding: 100px 15px;
}

.ba-about-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.ba-about-container > .ba-about-heading {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.ba-about-container > .ba-about-heading > h3 > img {
  display: inline-block;
  max-width: 300px;
  margin-bottom: 20px;
}

.ba-about-container > .ba-about-heading > p {
  margin-bottom: 20px;
}

.ba-about-container > .ba-about-heading > p:last-of-type {
  margin-bottom: 50px;
}

.ba-about-container > .ba-about-heading > a {
  border-radius: 5px;
  display: inline-block;
  width: 100%;
  padding: 20px;
  color: #C1904B;
  transition: all 0.2s;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.10)
}

.ba-about-container > .ba-about-heading > a:hover {
  color: #222;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.20)
}

.ba-about-container > .ba-about-heading > a:after {
  content: '\f054';
  color: #CCC;
  font-family: 'Font Awesome 5 free';
  font-weight: 400;
  float: right;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .ba-about {
    padding: 50px 15px;
  }
}

/********************/
/* FOOTER           */
/********************/

.ba-footer {
  position: absolute;
  bottom: 0;
  border-top: 1px solid #E5E5E5;
  width: 100%;
  padding: 30px;
  color: #999;
}

.ba-footer-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
}

/********************/
/* MASONRY          */
/********************/

.ba-about-description--top {
  margin-bottom: 15px;
}

.ba-about-description--top a {
  color: #C1904B;
  transition: all 0.2s;
}

.ba-about-description--top a:hover {
  color: #222;
}

.ba-about-description--masonry {
  margin-bottom: 100px !important;
}

.ba-about-description--masonry a {
  color: #C1904B;
  transition: all 0.2s;
}

.ba-about-description--masonry a:hover {
  color: #222;
}

.ba-about-heading--masonry {
  max-width: 1000px !important;
}

.ba-about-heading--masonry .ba-general-container-header {
  margin-top: 50px;
}

.ba-about-heading--masonry .ba-general-container-header--first {
  margin-top: 0 !important;
}

.ba-grid-item {
  display: inline-block !important;
  width: 33.33%;
  height: auto;
}

.ba-grid-item--five {
  width: 12.5% !important;
}

.ba-grid-item > img {
  width: 100%;
  height: 100%;
  padding: 5px;
}

.ba-about--description {
  text-align: center;
  margin-bottom: 10px;
  color: #999;
  font-style: italic;
}

.ba-about--description .ba-contact-email {
  color: #C1904B;
  transition: all 0.15s;
}

.ba-about--description .ba-contact-email:hover {
  color: #222;
}

.ba-about--description-contact {
  margin-bottom: 100px;
}

.ba-general-container-line--subheader {
  margin-bottom: 50px;
}

@media screen and (max-width: 1027px) {
  .ba-grid-item {
    width: 50%;
  }
  
  .ba-grid-item--five {
    width: 20% !important;
  }
}

@media screen and (max-width: 768px) {
  .ba-grid-item {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .ba-grid-item--five {
    width: 33.33% !important;
  }

  .ba-about-description--masonry {
    margin-bottom: 50px !important;
  }
  .ba-about--description-contact {
    margin-bottom: 50px;
  }
}

/********************/
/* NON MASONRY      */
/********************/
.ba-about-heading--non-masonry {
  max-width: 1000px !important;
}
.ba-about-heading--non-masonry > .ba-grid {
  display: grid !important;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 10px;
  height: auto !important;
  margin-bottom: 50px !important;
}

.ba-about-heading--non-masonry > .ba-grid > div > img {
  width: 100%;
}

@media screen and (max-width: 1027px) {
  .ba-about-heading--non-masonry > .ba-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}