/*
  Author: Rune Kragh
  Author URI: https://trubaduren.band/
  Description: Trubaduren theme
  Text Domain: trubaduren
  Theme Name: Trubaduren
  Version: 1.0
*/

/* BUGFIX */
@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@keyframes bgcolor {
  0% {
    background-color: #8d5451;
  }
  25% {
    background-color: #737f98;
  }
  50% {
    background-color: #8a3379;
  }
  75% {
    background-color: #716615 !important;
  }
}
html {
  -webkit-animation: bgcolor 10s infinite;
  animation: bgcolor 10s infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
html body {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 1;
}
html body:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.25);
}
html .container {
  max-width: 100%;
  margin: 0 auto;
}
html video {
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-size: cover;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.6;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: 300;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 30px;
}

h3 {
  padding-bottom: 30px;
}
h3:after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  background-color: #000000;
}

a {
  font-family: inherit;
  color: inherit;
  text-underline: none;
  text-decoration: none;
  font-weight: 300;
}

button,
.button {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  font-size: 16px;
  font-weight: 300;
  color: white;
  border: 2px solid rgb(255, 255, 255);
  cursor: pointer;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: inherit;
}
button a,
.button a {
  display: inline-block;
}
button:before,
.button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  transform: translateX(-100%);
  transition: all 0.3s;
  z-index: -1;
}
button:hover,
.button:hover {
  color: black;
}
button:hover a,
.button:hover a {
  color: black;
}
button:hover:before,
.button:hover:before {
  transform: translateX(0);
}

fieldset {
  padding: 20px 40px 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  border-color: rgba(0, 0, 0, 0.05);
  border-width: 2px;
}

main label:has(input[type=radio]) {
  display: flex;
  flex-direction: row;
  padding: 5px 0;
  line-height: 1;
  cursor: pointer;
}
main label:has(input[type=radio]:checked) {
  --form-control-color: #598da7;
  grid-template-columns: 1em auto;
}
main input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0 10px 0 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 50%;
  display: grid;
  place-content: center;
  cursor: pointer;
}
main input[type=radio]:before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
}
main input[type=radio]:checked::before {
  transform: scale(1);
}
main input[type=checkbox] + label {
  --form-control-color: rebeccapurple;
  font-family: system-ui, sans-serif;
  display: flex;
  flex-direction: row;
  grid-template-columns: 1em auto;
  gap: 0.5em;
  cursor: pointer;
}
main label:has(input[type=checkbox]:checked) {
  --form-control-color: #598da7;
  grid-template-columns: 1em auto;
}
main input[type=checkbox] {
  appearance: none;
  background-color: #fff;
  margin: 0 10px 0 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
  display: inline-grid;
  float: left;
  place-content: center;
  cursor: pointer;
}
main input[type=checkbox]:before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  background-color: CanvasText;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
main input[type=checkbox]:checked::before {
  transform: scale(1);
}

ul.social {
  margin: 0;
  padding: 0;
}
ul.social li {
  display: inline-block;
  margin: 0 10px;
}
ul.social li a {
  display: inline-block;
  overflow: hidden;
  text-indent: -9999px;
}
ul.social li a:before {
  float: left;
  line-height: 1;
  margin: 0;
  text-indent: 0;
}

.iti__search-input {
  font-size: 16px;
  padding: 10px;
  outline: none;
}

table {
  width: 100%;
  margin-bottom: 30px;
}
table th {
  font-weight: 400;
}
table td {
  font-weight: 300;
}

table, th, td {
  border-collapse: collapse;
  padding: 10px;
  text-align: left;
}

header {
  padding: 2.5% 0;
  width: 100%;
  z-index: 100;
}
header *:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 768px) {
  header {
    padding: 3% 0;
  }
}
header a {
  color: white;
}
header .logo a {
  display: inline-block;
  margin: 0;
  padding: 0;
}
header .logo img {
  display: inline-block;
  width: 233px;
  max-width: 100%;
  height: auto;
  padding: 20px 0;
}
header nav input {
  display: none;
}
header nav ul.social {
  float: right;
}
header nav .icon-cart {
  margin-right: 4%;
}
header nav .menu-header-container {
  position: fixed;
  width: 420px;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 99998;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.156863) 0px 3px 10px, rgba(0, 0, 0, 0.227451) 0px 3px 10px;
  pointer-events: none;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateX(420px);
  transform: translateX(420px);
  -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1);
}
@media (max-width: 768px) {
  header nav .menu-header-container {
    width: 275px;
    -webkit-transform: translateX(275px);
    transform: translateX(275px);
  }
}
header nav .menu-header-container .close {
  position: relative;
  float: right;
  height: 75px;
  width: 25px;
  margin-right: 20px;
  cursor: pointer;
  align-self: flex-end;
}
header nav .menu-header-container .close:before, header nav .menu-header-container .close:after {
  position: absolute;
  left: 0;
  top: 0;
  content: " ";
  height: 25px;
  width: 3px;
  top: 50%;
  left: 50%;
  background-color: #333;
}
header nav .menu-header-container .close:before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
header nav .menu-header-container .close:after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
header nav .menu-header-container ul.social {
  display: flex;
  margin-top: auto;
}
header nav .menu-header-container ul.social li {
  flex-grow: 1;
  text-align: center;
}
header nav .menu-header-container ul.social li a {
  display: inline-block;
}
header nav .menu-header-container ul {
  margin: 0;
  padding: 0;
  float: left;
  width: 100%;
  justify-content: normal;
}
header nav .menu-header-container ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
header nav .menu-header-container ul li a {
  display: block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  text-align: center;
  text-align: left;
  color: #000000;
  padding: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
}
header nav .menu-header-container ul li a:hover {
  background-color: #efefef;
}
header nav #toggle-label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  float: right;
  font-size: 1.8rem;
  padding: 10px;
}
header nav #toggle-label:hover {
  cursor: pointer;
}
header nav #toggle-label span {
  width: 36px;
  height: 2px;
  display: block;
  background-color: #ffffff;
}
header nav #toggle-label span.first {
  margin-bottom: 8px;
}
header nav #toggle-label span.last {
  margin-top: 8px;
}
header nav .overlay {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.541176);
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  will-change: opacity;
  -webkit-transform: translateZ(0px);
  transform: translateZ(0px);
  -webkit-transition: right 0ms cubic-bezier(0.23, 1, 0.32, 1) 0ms, opacity 400ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  transition: right 0ms cubic-bezier(0.23, 1, 0.32, 1) 0ms, opacity 400ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}
header nav #nav:checked ~ div.menu-header-container {
  pointer-events: all;
  overflow: hidden;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
header nav #nav:checked ~ .overlay {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
header .button {
  margin: 0 5%;
}
@media (max-width: 768px) {
  header .button {
    display: none;
  }
}
header a.basket {
  position: relative;
  line-height: 0;
  font-size: 0;
  color: white;
  margin: 10px 4px;
  background-size: cover;
  width: 27px;
  height: 23px;
  float: right;
}
header a.basket span {
  position: absolute;
  top: -6px;
  right: -6px;
  font-weight: 600;
  color: #ffffff;
  width: 13px;
  height: 13px;
  background-color: #598da7;
  border-radius: 50%;
  font-size: 9px;
  padding: 2px;
  vertical-align: middle;
  line-height: 1;
  text-align: center;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  z-index: 2;
}
main .default button,
main .default .button {
  color: black;
  border: 2px solid rgb(0, 0, 0);
  transition: background-color 0.1s ease-in-out;
  -webkit-transition: background-color 0.1s ease-in-out;
}
main .default button:before,
main .default .button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transform: translateX(-100%);
  transition: all 0.3s;
  z-index: -1;
}
main .default button:hover,
main .default .button:hover {
  color: #ffffff;
  transform: translateX(0%);
}
main .default input[type=submit]:hover {
  background-color: black;
}

.module.default .container {
  overflow: hidden;
}
.module.default .container .inner-content {
  background-color: white;
  -webkit-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
}
.module.default:first-child {
  margin-top: -15px;
}
.module.default:first-child .container {
  padding-top: 15px;
}
.module.default:last-child .container {
  padding-bottom: 15px;
}
.module.full:first-child {
  margin-top: 15px;
}
.module.full:last-child {
  margin-bottom: 15px;
}
.module.stretched:first-child {
  margin-top: 15px;
}
.module.stretched:last-child {
  margin-bottom: 15px;
}

[grid~=row] {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 20px;
}

[grid~=vertical-start] {
  align-items: start;
}

[grid~=vertical-center] {
  align-items: center;
}

[grid~=align-center] {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

[grid~=vertical-end] {
  align-items: end;
}

[grid~=between] {
  justify-content: center;
}

[grid~=gap-none] {
  grid-gap: 0;
  margin-bottom: 0;
}

[grid~=gap-column-none] {
  grid-column-gap: 0;
}

[grid~=gap-row-none] {
  grid-row-gap: 0;
  margin-bottom: 0;
}

[grid~=hide] {
  display: none !important;
}

[grid~=show] {
  display: initial !important;
}

[grid~=row][grid~="1"] {
  position: relative;
  grid-template-columns: repeat(12, 1fr);
}

[grid~=row][grid~="2"] {
  position: relative;
  grid-template-columns: repeat(6, 1fr);
}

[grid~=row][grid~="3"] {
  position: relative;
  grid-template-columns: repeat(4, 1fr);
}

[grid~=row][grid~="4"] {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
}

[grid~=row][grid~="5"] {
  position: relative;
  grid-template-columns: repeat(2.4, 1fr);
}

[grid~=row][grid~="6"] {
  position: relative;
  grid-template-columns: repeat(2, 1fr);
}

[grid~=row][grid~="7"] {
  position: relative;
  grid-template-columns: repeat(1.7142857143, 1fr);
}

[grid~=row][grid~="8"] {
  position: relative;
  grid-template-columns: repeat(1.5, 1fr);
}

[grid~=row][grid~="9"] {
  position: relative;
  grid-template-columns: repeat(1.3333333333, 1fr);
}

[grid~=row][grid~="10"] {
  position: relative;
  grid-template-columns: repeat(1.2, 1fr);
}

[grid~=row][grid~="11"] {
  position: relative;
  grid-template-columns: repeat(1.0909090909, 1fr);
}

[grid~=row][grid~="12"] {
  position: relative;
  grid-template-columns: repeat(1, 1fr);
}

[grid~="1"] {
  position: relative;
  grid-column: span 1;
}

[grid~="2"] {
  position: relative;
  grid-column: span 2;
}

[grid~="3"] {
  position: relative;
  grid-column: span 3;
}

[grid~="4"] {
  position: relative;
  grid-column: span 4;
}

[grid~="5"] {
  position: relative;
  grid-column: span 5;
}

[grid~="6"] {
  position: relative;
  grid-column: span 6;
}

[grid~="7"] {
  position: relative;
  grid-column: span 7;
}

[grid~="8"] {
  position: relative;
  grid-column: span 8;
}

[grid~="9"] {
  position: relative;
  grid-column: span 9;
}

[grid~="10"] {
  position: relative;
  grid-column: span 10;
}

[grid~="11"] {
  position: relative;
  grid-column: span 11;
}

[grid~="12"] {
  position: relative;
  grid-column: span 12;
}

[grid~=gap-lg] {
  grid-gap: 6%;
}

[grid~=gap-md] {
  grid-gap: 40px;
}

[grid~=gap-sm] {
  grid-gap: 20px;
}

[grid~=hide] {
  display: none !important;
}

[grid~=show] {
  display: initial !important;
}

@media (min-width: 320px) {
  [grid~=row][grid~=xs-1] {
    position: relative;
    grid-template-columns: repeat(12, 1fr);
  }
  [grid~=row][grid~=xs-2] {
    position: relative;
    grid-template-columns: repeat(6, 1fr);
  }
  [grid~=row][grid~=xs-3] {
    position: relative;
    grid-template-columns: repeat(4, 1fr);
  }
  [grid~=row][grid~=xs-4] {
    position: relative;
    grid-template-columns: repeat(3, 1fr);
  }
  [grid~=row][grid~=xs-5] {
    position: relative;
    grid-template-columns: repeat(2.4, 1fr);
  }
  [grid~=row][grid~=xs-6] {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
  }
  [grid~=row][grid~=xs-7] {
    position: relative;
    grid-template-columns: repeat(1.7142857143, 1fr);
  }
  [grid~=row][grid~=xs-8] {
    position: relative;
    grid-template-columns: repeat(1.5, 1fr);
  }
  [grid~=row][grid~=xs-9] {
    position: relative;
    grid-template-columns: repeat(1.3333333333, 1fr);
  }
  [grid~=row][grid~=xs-10] {
    position: relative;
    grid-template-columns: repeat(1.2, 1fr);
  }
  [grid~=row][grid~=xs-11] {
    position: relative;
    grid-template-columns: repeat(1.0909090909, 1fr);
  }
  [grid~=row][grid~=xs-12] {
    position: relative;
    grid-template-columns: repeat(1, 1fr);
  }
  [grid~=xs-1] {
    position: relative;
    grid-column: span 1/span 1;
  }
  [grid~=xs-2] {
    position: relative;
    grid-column: span 2/span 2;
  }
  [grid~=xs-3] {
    position: relative;
    grid-column: span 3/span 3;
  }
  [grid~=xs-4] {
    position: relative;
    grid-column: span 4/span 4;
  }
  [grid~=xs-5] {
    position: relative;
    grid-column: span 5/span 5;
  }
  [grid~=xs-6] {
    position: relative;
    grid-column: span 6/span 6;
  }
  [grid~=xs-7] {
    position: relative;
    grid-column: span 7/span 7;
  }
  [grid~=xs-8] {
    position: relative;
    grid-column: span 8/span 8;
  }
  [grid~=xs-9] {
    position: relative;
    grid-column: span 9/span 9;
  }
  [grid~=xs-10] {
    position: relative;
    grid-column: span 10/span 10;
  }
  [grid~=xs-11] {
    position: relative;
    grid-column: span 11/span 11;
  }
  [grid~=xs-12] {
    position: relative;
    grid-column: span 12/span 12;
  }
  [grid~=xs-gap-lg] {
    grid-gap: 6%;
  }
  [grid~=xs-gap-md] {
    grid-gap: 40px;
  }
  [grid~=xs-gap-sm] {
    grid-gap: 20px;
  }
  [grid~=hide-xs] {
    display: none !important;
  }
  [grid~=show-xs] {
    display: initial !important;
  }
}
@media (min-width: 480px) {
  [grid~=row][grid~=sm-1] {
    position: relative;
    grid-template-columns: repeat(12, 1fr);
  }
  [grid~=row][grid~=sm-2] {
    position: relative;
    grid-template-columns: repeat(6, 1fr);
  }
  [grid~=row][grid~=sm-3] {
    position: relative;
    grid-template-columns: repeat(4, 1fr);
  }
  [grid~=row][grid~=sm-4] {
    position: relative;
    grid-template-columns: repeat(3, 1fr);
  }
  [grid~=row][grid~=sm-5] {
    position: relative;
    grid-template-columns: repeat(2.4, 1fr);
  }
  [grid~=row][grid~=sm-6] {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
  }
  [grid~=row][grid~=sm-7] {
    position: relative;
    grid-template-columns: repeat(1.7142857143, 1fr);
  }
  [grid~=row][grid~=sm-8] {
    position: relative;
    grid-template-columns: repeat(1.5, 1fr);
  }
  [grid~=row][grid~=sm-9] {
    position: relative;
    grid-template-columns: repeat(1.3333333333, 1fr);
  }
  [grid~=row][grid~=sm-10] {
    position: relative;
    grid-template-columns: repeat(1.2, 1fr);
  }
  [grid~=row][grid~=sm-11] {
    position: relative;
    grid-template-columns: repeat(1.0909090909, 1fr);
  }
  [grid~=row][grid~=sm-12] {
    position: relative;
    grid-template-columns: repeat(1, 1fr);
  }
  [grid~=sm-1] {
    position: relative;
    grid-column: span 1/span 1;
  }
  [grid~=sm-2] {
    position: relative;
    grid-column: span 2/span 2;
  }
  [grid~=sm-3] {
    position: relative;
    grid-column: span 3/span 3;
  }
  [grid~=sm-4] {
    position: relative;
    grid-column: span 4/span 4;
  }
  [grid~=sm-5] {
    position: relative;
    grid-column: span 5/span 5;
  }
  [grid~=sm-6] {
    position: relative;
    grid-column: span 6/span 6;
  }
  [grid~=sm-7] {
    position: relative;
    grid-column: span 7/span 7;
  }
  [grid~=sm-8] {
    position: relative;
    grid-column: span 8/span 8;
  }
  [grid~=sm-9] {
    position: relative;
    grid-column: span 9/span 9;
  }
  [grid~=sm-10] {
    position: relative;
    grid-column: span 10/span 10;
  }
  [grid~=sm-11] {
    position: relative;
    grid-column: span 11/span 11;
  }
  [grid~=sm-12] {
    position: relative;
    grid-column: span 12/span 12;
  }
  [grid~=sm-gap-lg] {
    grid-gap: 6%;
  }
  [grid~=sm-gap-md] {
    grid-gap: 40px;
  }
  [grid~=sm-gap-sm] {
    grid-gap: 20px;
  }
  [grid~=hide-sm] {
    display: none !important;
  }
  [grid~=show-sm] {
    display: initial !important;
  }
}
@media (min-width: 720px) {
  [grid~=row][grid~=md-1] {
    position: relative;
    grid-template-columns: repeat(12, 1fr);
  }
  [grid~=row][grid~=md-2] {
    position: relative;
    grid-template-columns: repeat(6, 1fr);
  }
  [grid~=row][grid~=md-3] {
    position: relative;
    grid-template-columns: repeat(4, 1fr);
  }
  [grid~=row][grid~=md-4] {
    position: relative;
    grid-template-columns: repeat(3, 1fr);
  }
  [grid~=row][grid~=md-5] {
    position: relative;
    grid-template-columns: repeat(2.4, 1fr);
  }
  [grid~=row][grid~=md-6] {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
  }
  [grid~=row][grid~=md-7] {
    position: relative;
    grid-template-columns: repeat(1.7142857143, 1fr);
  }
  [grid~=row][grid~=md-8] {
    position: relative;
    grid-template-columns: repeat(1.5, 1fr);
  }
  [grid~=row][grid~=md-9] {
    position: relative;
    grid-template-columns: repeat(1.3333333333, 1fr);
  }
  [grid~=row][grid~=md-10] {
    position: relative;
    grid-template-columns: repeat(1.2, 1fr);
  }
  [grid~=row][grid~=md-11] {
    position: relative;
    grid-template-columns: repeat(1.0909090909, 1fr);
  }
  [grid~=row][grid~=md-12] {
    position: relative;
    grid-template-columns: repeat(1, 1fr);
  }
  [grid~=md-1] {
    position: relative;
    grid-column: span 1/span 1;
  }
  [grid~=md-2] {
    position: relative;
    grid-column: span 2/span 2;
  }
  [grid~=md-3] {
    position: relative;
    grid-column: span 3/span 3;
  }
  [grid~=md-4] {
    position: relative;
    grid-column: span 4/span 4;
  }
  [grid~=md-5] {
    position: relative;
    grid-column: span 5/span 5;
  }
  [grid~=md-6] {
    position: relative;
    grid-column: span 6/span 6;
  }
  [grid~=md-7] {
    position: relative;
    grid-column: span 7/span 7;
  }
  [grid~=md-8] {
    position: relative;
    grid-column: span 8/span 8;
  }
  [grid~=md-9] {
    position: relative;
    grid-column: span 9/span 9;
  }
  [grid~=md-10] {
    position: relative;
    grid-column: span 10/span 10;
  }
  [grid~=md-11] {
    position: relative;
    grid-column: span 11/span 11;
  }
  [grid~=md-12] {
    position: relative;
    grid-column: span 12/span 12;
  }
  [grid~=md-gap-lg] {
    grid-gap: 6%;
  }
  [grid~=md-gap-md] {
    grid-gap: 40px;
  }
  [grid~=md-gap-sm] {
    grid-gap: 20px;
  }
  [grid~=hide-md] {
    display: none !important;
  }
  [grid~=show-md] {
    display: initial !important;
  }
}
@media (min-width: 960px) {
  [grid~=row][grid~=lg-1] {
    position: relative;
    grid-template-columns: repeat(12, 1fr);
  }
  [grid~=row][grid~=lg-2] {
    position: relative;
    grid-template-columns: repeat(6, 1fr);
  }
  [grid~=row][grid~=lg-3] {
    position: relative;
    grid-template-columns: repeat(4, 1fr);
  }
  [grid~=row][grid~=lg-4] {
    position: relative;
    grid-template-columns: repeat(3, 1fr);
  }
  [grid~=row][grid~=lg-5] {
    position: relative;
    grid-template-columns: repeat(2.4, 1fr);
  }
  [grid~=row][grid~=lg-6] {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
  }
  [grid~=row][grid~=lg-7] {
    position: relative;
    grid-template-columns: repeat(1.7142857143, 1fr);
  }
  [grid~=row][grid~=lg-8] {
    position: relative;
    grid-template-columns: repeat(1.5, 1fr);
  }
  [grid~=row][grid~=lg-9] {
    position: relative;
    grid-template-columns: repeat(1.3333333333, 1fr);
  }
  [grid~=row][grid~=lg-10] {
    position: relative;
    grid-template-columns: repeat(1.2, 1fr);
  }
  [grid~=row][grid~=lg-11] {
    position: relative;
    grid-template-columns: repeat(1.0909090909, 1fr);
  }
  [grid~=row][grid~=lg-12] {
    position: relative;
    grid-template-columns: repeat(1, 1fr);
  }
  [grid~=lg-1] {
    position: relative;
    grid-column: span 1/span 1;
  }
  [grid~=lg-2] {
    position: relative;
    grid-column: span 2/span 2;
  }
  [grid~=lg-3] {
    position: relative;
    grid-column: span 3/span 3;
  }
  [grid~=lg-4] {
    position: relative;
    grid-column: span 4/span 4;
  }
  [grid~=lg-5] {
    position: relative;
    grid-column: span 5/span 5;
  }
  [grid~=lg-6] {
    position: relative;
    grid-column: span 6/span 6;
  }
  [grid~=lg-7] {
    position: relative;
    grid-column: span 7/span 7;
  }
  [grid~=lg-8] {
    position: relative;
    grid-column: span 8/span 8;
  }
  [grid~=lg-9] {
    position: relative;
    grid-column: span 9/span 9;
  }
  [grid~=lg-10] {
    position: relative;
    grid-column: span 10/span 10;
  }
  [grid~=lg-11] {
    position: relative;
    grid-column: span 11/span 11;
  }
  [grid~=lg-12] {
    position: relative;
    grid-column: span 12/span 12;
  }
  [grid~=lg-gap-lg] {
    grid-gap: 6%;
  }
  [grid~=lg-gap-md] {
    grid-gap: 40px;
  }
  [grid~=lg-gap-sm] {
    grid-gap: 20px;
  }
  [grid~=hide-lg] {
    display: none !important;
  }
  [grid~=show-lg] {
    display: initial !important;
  }
}
@media (min-width: 1440px) {
  [grid~=row][grid~=xl-1] {
    position: relative;
    grid-template-columns: repeat(12, 1fr);
  }
  [grid~=row][grid~=xl-2] {
    position: relative;
    grid-template-columns: repeat(6, 1fr);
  }
  [grid~=row][grid~=xl-3] {
    position: relative;
    grid-template-columns: repeat(4, 1fr);
  }
  [grid~=row][grid~=xl-4] {
    position: relative;
    grid-template-columns: repeat(3, 1fr);
  }
  [grid~=row][grid~=xl-5] {
    position: relative;
    grid-template-columns: repeat(2.4, 1fr);
  }
  [grid~=row][grid~=xl-6] {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
  }
  [grid~=row][grid~=xl-7] {
    position: relative;
    grid-template-columns: repeat(1.7142857143, 1fr);
  }
  [grid~=row][grid~=xl-8] {
    position: relative;
    grid-template-columns: repeat(1.5, 1fr);
  }
  [grid~=row][grid~=xl-9] {
    position: relative;
    grid-template-columns: repeat(1.3333333333, 1fr);
  }
  [grid~=row][grid~=xl-10] {
    position: relative;
    grid-template-columns: repeat(1.2, 1fr);
  }
  [grid~=row][grid~=xl-11] {
    position: relative;
    grid-template-columns: repeat(1.0909090909, 1fr);
  }
  [grid~=row][grid~=xl-12] {
    position: relative;
    grid-template-columns: repeat(1, 1fr);
  }
  [grid~=xl-1] {
    position: relative;
    grid-column: span 1/span 1;
  }
  [grid~=xl-2] {
    position: relative;
    grid-column: span 2/span 2;
  }
  [grid~=xl-3] {
    position: relative;
    grid-column: span 3/span 3;
  }
  [grid~=xl-4] {
    position: relative;
    grid-column: span 4/span 4;
  }
  [grid~=xl-5] {
    position: relative;
    grid-column: span 5/span 5;
  }
  [grid~=xl-6] {
    position: relative;
    grid-column: span 6/span 6;
  }
  [grid~=xl-7] {
    position: relative;
    grid-column: span 7/span 7;
  }
  [grid~=xl-8] {
    position: relative;
    grid-column: span 8/span 8;
  }
  [grid~=xl-9] {
    position: relative;
    grid-column: span 9/span 9;
  }
  [grid~=xl-10] {
    position: relative;
    grid-column: span 10/span 10;
  }
  [grid~=xl-11] {
    position: relative;
    grid-column: span 11/span 11;
  }
  [grid~=xl-12] {
    position: relative;
    grid-column: span 12/span 12;
  }
  [grid~=xl-gap-lg] {
    grid-gap: 6%;
  }
  [grid~=xl-gap-md] {
    grid-gap: 40px;
  }
  [grid~=xl-gap-sm] {
    grid-gap: 20px;
  }
  [grid~=hide-xl] {
    display: none !important;
  }
  [grid~=show-xl] {
    display: initial !important;
  }
}
footer {
  position: relative;
  color: #ffffff;
  background: linear-gradient(1deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0) 100%);
  padding-top: 150px;
  margin-top: -100px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  z-index: 1;
  text-align: center;
}
footer:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: inherit;
  height: 75px;
}
footer *:after {
  content: "";
  display: table;
  clear: both;
}
footer h3:after {
  background-color: white;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul.social {
  margin: 20px 0;
}
footer .logo {
  display: inline-block;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 80px;
}
footer .logo img {
  width: 165px;
  height: auto;
}

.spotModule {
  color: white;
}
.spotModule h3 {
  font-size: 20px;
  padding-bottom: 10px;
}
.spotModule h3:after {
  background-color: white;
}
.spotModule .spot {
  background-color: rgba(0, 0, 0, 0.35);
  padding: 20px;
  padding-top: 30px;
}

html.det-gaar-jo-godt {
  background-color: #8d5451 !important;
}
html.at-danse-moderne {
  background-color: #737f98 !important;
}
html.et-stille-ord {
  background-color: #8b7d10 !important;
}
html .single-download video {
  opacity: 0.4;
}
html .single-download .wp-block-columns {
  column-gap: 4em;
  row-gap: 1em;
}
html .single-download h2 {
  font-weight: 400;
  margin-bottom: 1em;
}
html .single-download p {
  font-weight: 300;
}
html .single-download figure {
  margin-bottom: 0;
}
html .single-download .inner-content {
  font-size: 100%;
}

@font-face {
  font-family: "icomoon";
  src: url("./assets/fonts/icomoon.eot?p9t32c");
  src: url("./assets/fonts/icomoon.eot?p9t32c#iefix") format("embedded-opentype"), url("./assets/fonts/icomoon.ttf?p9t32c") format("truetype"), url("./assets/fonts/icomoon.woff?p9t32c") format("woff"), url("./assets/fonts/icomoon.svg?p9t32c#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-] > a:before, [class*=" icon-"] > a:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 25px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-cart > a:before {
  content: "\e900";
}

.icon-facebook > a:before {
  content: "\e901";
}

.icon-instagram > a:before {
  content: "\e902";
}

.icon-spotify > a:before {
  content: "\e903";
}

.icon-youtube > a:before {
  content: "\e904";
}

#edd_checkout_wrap .edd-payment-icons {
  margin-bottom: 25px;
}
#edd_checkout_wrap .edd-payment-icons svg {
  margin-right: 15px;
}
#edd_checkout_wrap .edd_cart_item_image {
  margin-right: 20px;
}
#edd_checkout_wrap .edd_cart_item_image img {
  border-radius: 5px;
  overflow: hidden;
}
#edd_checkout_wrap .edd_cart_item_name {
  flex-basis: 60%;
}
#edd_checkout_wrap .edd_cart_item_name div {
  display: inline-block;
  vertical-align: middle;
}
#edd_checkout_wrap .edd_cart_remove_item_btn {
  float: right;
}
#edd_checkout_wrap .edd_cart_total {
  text-align: right;
}
#edd_checkout_wrap #edd_checkout_user_info .edd-description {
  display: none;
}

.edd_price_options {
  float: left;
}
.edd_price_options ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.edd_cart_item td {
  display: flex;
  align-items: center;
}

.edd_cart_fee td:last-child {
  display: none;
}

.edd_download_purchase_form {
  width: 100%;
}

.edd_download_quantity_wrapper {
  float: left;
}

.edd-add-to-cart {
  float: right;
}

.wp-block-edd-buy-button {
  margin-bottom: 30px;
  overflow: hidden;
}

/**
  Responsive for iPhone
 */
@media only screen and (max-width: 480px) {
  .EddCartModule #edd_checkout_cart_form {
    padding: 7%;
  }
  #edd_checkout_wrap {
    /*
    table tbody tr td {
      padding: 15px;
    }
     */
  }
  #edd_checkout_wrap .edd_cart_fee {
    box-shadow: none;
  }
  #edd_checkout_wrap .edd_cart_fee td {
    padding: 0px;
  }
  #edd_checkout_wrap .edd_cart_item_name {
    width: 100%;
    flex-basis: 100%;
  }
  .edd_cart_item {
    flex-flow: wrap;
  }
}
.edd_purchase_submit_wrapper .edd_go_to_checkout {
  float: right;
}

.edd_download_quantity_wrapper {
  display: none;
}

.edd-success p:empty {
  display: none;
}
.edd-success .inner-content {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  grid-column-gap: 50px !important;
}
@media only screen and (max-width: 780px) {
  .edd-success .inner-content {
    display: block !important;
    grid-template-columns: none !important;
    grid-gap: 0 !important;
  }
}
.edd-success .inner-content > * {
  grid-column: 1;
}
.edd-success .inner-content .personal-info h4 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 15px;
}
@media only screen and (max-width: 780px) {
  .edd-success .inner-content .personal-info h4 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 780px) {
  .edd-success .inner-content .personal-info {
    font-size: 13px;
  }
}
.edd-success .inner-content .personal-info table {
  table-layout: fixed;
}
.edd-success .inner-content .personal-info table tr td,
.edd-success .inner-content .personal-info table tr th {
  padding: 0;
}
.edd-success .inner-content #edd_purchase_receipt {
  grid-column-start: 2;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 3;
}
.edd-success .inner-content #edd_purchase_receipt,
.edd-success .inner-content #edd_purchase_receipt_products,
.edd-success .inner-content #edd_purchase_receipt + h3 {
  grid-column: 2;
}
.edd-success .inner-content #edd_purchase_receipt + h3 {
  display: none;
}
.edd-success .inner-content #edd_purchase_receipt,
.edd-success .inner-content #edd_purchase_receipt_products {
  position: relative;
  background-color: rgb(247, 247, 247);
  table-layout: fixed;
}
.edd-success .inner-content #edd_purchase_receipt tr td:first-child,
.edd-success .inner-content #edd_purchase_receipt tr th:first-child,
.edd-success .inner-content #edd_purchase_receipt_products tr td:first-child,
.edd-success .inner-content #edd_purchase_receipt_products tr th:first-child {
  padding-left: 5vw;
  padding-top: 8px;
  padding-bottom: 8px;
  float: left;
}
.edd-success .inner-content #edd_purchase_receipt tr td:last-child,
.edd-success .inner-content #edd_purchase_receipt tr th:last-child,
.edd-success .inner-content #edd_purchase_receipt_products tr td:last-child,
.edd-success .inner-content #edd_purchase_receipt_products tr th:last-child {
  padding-right: 5vw;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: right;
}
.edd-success .inner-content #edd_purchase_receipt tr th strong,
.edd-success .inner-content #edd_purchase_receipt_products tr th strong {
  text-wrap: nowrap;
}
.edd-success .inner-content #edd_purchase_receipt tr td strong,
.edd-success .inner-content #edd_purchase_receipt_products tr td strong {
  float: left;
}
@media only screen and (max-width: 780px) {
  .edd-success .inner-content #edd_purchase_receipt,
  .edd-success .inner-content #edd_purchase_receipt_products {
    font-size: 13px;
  }
}
.edd-success .inner-content #edd_purchase_receipt thead tr:first-child th,
.edd-success .inner-content #edd_purchase_receipt_products thead tr:first-child th {
  padding-top: 50px;
  padding-bottom: 25px;
  font-size: 20px;
  font-weight: 300;
}
@media only screen and (max-width: 780px) {
  .edd-success .inner-content #edd_purchase_receipt thead tr:first-child th,
  .edd-success .inner-content #edd_purchase_receipt_products thead tr:first-child th {
    padding-top: 25px;
    padding-bottom: 15px;
  }
}
.edd-success .inner-content #edd_purchase_receipt tr:last-child td,
.edd-success .inner-content #edd_purchase_receipt_products tr:last-child td {
  padding-top: 20px;
  padding-bottom: 50px;
  font-weight: 400;
}
@media only screen and (max-width: 780px) {
  .edd-success .inner-content #edd_purchase_receipt tr:last-child td,
  .edd-success .inner-content #edd_purchase_receipt_products tr:last-child td {
    padding-top: 15px;
    padding-bottom: 30px;
  }
}
.edd-success .inner-content #edd_purchase_receipt:after,
.edd-success .inner-content #edd_purchase_receipt_products:after {
  background-image: linear-gradient(135deg, rgb(247, 247, 247) 0.5rem, transparent 0), linear-gradient(-135deg, rgb(247, 247, 247) 0.5rem, transparent 0);
  background-position: left-bottom;
  background-repeat: repeat-x;
  background-size: 1rem;
  content: "";
  display: block;
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 1rem;
}
.edd-success .inner-content #edd_purchase_receipt_products thead tr:first-child th {
  font-size: 17px;
  font-weight: 400;
}
@media only screen and (max-width: 780px) {
  .edd-success .inner-content #edd_purchase_receipt_products thead tr:first-child th {
    font-size: 15px;
  }
}
.edd-success .inner-content #edd_purchase_receipt_products tr:last-child td {
  font-weight: 300;
}