﻿*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
*{ margin: 0; outline: none; -webkit-text-size-adjust: none; }

:root {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px; line-height: var(--rootLineHeight) ; color: var(--black);
    --primary: #282E67;
    --blue: #282E67;
    --blueLight: #9396B3;
    --pink: #E6B8B3;
    --pinkLight: #F3DBD9;
    --creme: #D0C5A2;
    --cremeLight: #E7E2D1;
    --green: #BAC18C;
    --greenLight: #DDE0C5;
    --black: #1B1B1B;
    --gray: #f7f7f9;
    --bs-gutter-x: 12px;
    --borderColor: #CECECE;
    --rootLineHeight: 1.3;
    --defaultPadding: min(max(50px, 3vw), 72px);
    --mainWidth: 1440px;
}

html { -webkit-font-smoothing: antialiased; }
html{ height: 100% !important; }

body{ background-color: #2f2f2f; }

main{
    display: block;
    width: var(--mainWidth);
    background-color: var(--pink);
    max-width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    -webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 100px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.1);
    padding-top: 18px;
}

header + article,
header + section{ margin-top: -82px; padding-top: 164px!important; }

.bg-blue{ background-color: var(--blue); color: #fff; }
.bg-blueLight{ background-color: var(--blueLight); color: initial; }

.bg-pink{ background-color: var(--pink); color: var(--blue); }
.bg-pinkLight{ background-color: var(--pinkLight); color: initial; }

.bg-green{ background-color: var(--green); color: var(--blue); }
.bg-greenLight{ background-color: var(--greenLight); color: var(--blue); }

.bg-creme{ background-color: var(--creme); color: var(--blue); }
.bg-cremeLight{ background-color: var(--cremeLight); color: var(--blue); }

.bg-white{ background-color: #fff; }
.bg-gray{ background-color: var(--gray); }

.bg-blueLight + .bg-blueLight,
.bg-pink + .bg-pink,
.bg-pinkLight + .bg-pinkLight,
.bg-green + .bg-green,
.bg-greenLight + .bg-greenLight,
.bg-creme + .bg-creme,
.bg-cremeLight + .bg-cremeLight,
.bg-white + .bg-white, 
.bg-gray + .bg-gray,
.bg-blue + .bg-blue{ padding-top: 0; }

article,section{ background-color: #fff; }

div.container-fluid{ max-width: 1400px; }
article,section,footer{ position: relative; z-index: 2; padding: var(--defaultPadding) 0; }

.black{ background-color: var(--black); color: #fff; }

p:empty{ display: block; min-height: 26px; margin-top: 0!important; }

.hidden{ display: none; }
.left{ float: left; }
.right{ float: right; }
.clear{ clear: both ;}
.alignright{ text-align: right; }
.alignleft{ text-align: left; }
.cursor{ cursor: pointer; }
.center{ text-align: center; }
.abscenter{ position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); transform: translate(-50%,-50%); }
.relative{ position:relative; } 
.ucase{ text-transform: uppercase; }
.capitalize{ text-transform: capitalize; }

img, svg, iframe, picture{ vertical-align: middle; }

.flex{ display: flex; }

.object-fit-cover{ position: absolute; inset: 0; width: 100%!important; height: 100%!important; object-fit: cover; }
.object-fit-contain{ position: absolute; inset: 0; width: 100%!important; height: 100%!important; object-fit: contain; }

hr { border: none; height: 1px; width: 1760px; max-width: 100%; margin: 0 auto; background-color: var(--color2); }

ul{ list-style-type: none; margin: 0; padding: 0; }
ul li{ background: none; padding: 0; position: relative; }

figure,
div.image{ position: relative; }

figure img,
div.image img{ max-width: 100%; height: auto; }

article,section{ position: relative; z-index: 2; }

section,
footer,
article.text-image,
article.image-text{ padding: var(--defaultPadding) 0; }

article div.text a{ text-decoration: underline; }

h1{ font-weight: 700; font-size: 46px; line-height: 1; margin: 0; text-wrap: pretty; letter-spacing: -0.02em; }
h2{ font-weight: 700; font-size: 32px; line-height: 1.1; margin: 0; text-wrap: pretty; letter-spacing: -0.01em; }
div.h3{ font-weight: 700; font-size: 24px; line-height: 1.15; margin: 0; text-wrap: pretty; letter-spacing: -0.02em; }
div.h4{ font-weight: 700; font-size: 18px; line-height: 1.2; margin: 0; text-wrap: pretty; letter-spacing: -0.01em; }
div.h5{ font-weight: 700; font-size: 16px; line-height: 1.25; margin: 0; text-wrap: pretty; letter-spacing: -0.01em; }
div.h6{ font-weight: 700; font-size: 13px; line-height: 1.2; margin: 0; text-wrap: pretty; }

.eyebrow{ display: block; font-weight: 600; font-size: 13px; line-height: 1.2; text-transform: uppercase; }
label.eyebrow { color: var(--blueLight); margin-bottom: 12px; }

small, .small{ font-size: 13px; line-height: 1.2; }
.large{ font-size: 20px; }

h3 + p{ margin-top: 16px; }
p + button{ margin-top: 24px; }

b,strong{ font-weight: 700; }

.hidden{ display: none; }
.center{ text-align: center; }

section.hero.banner h1 + *,
article :is(h1,h2) + *{ margin-top: 1rem; }

a{ display: inline-block; position: relative; text-decoration: none; color: inherit; cursor: pointer; }
.underline { border-bottom: 1px solid; border-color: var(--color1); line-height: 1.2; display: inline-block;  }

button{ border: none; font-family: inherit; }
button,
.button,
.outline{ display: inline-block; text-decoration: none!important; text-transform: uppercase; font-size: 14px; min-height: 42px; line-height: 1; letter-spacing: 0.02em; padding: 14px 18px 12px 18px; font-weight: 600; text-align: center; position: relative; border: unset; background-color: var(--primary); border: 1px solid var(--primary); color: #fff; border-radius: 21px; cursor: pointer; transition: .2s; }

.outline{ background-color: unset; color: unset; border: 1px solid var(--black); }

.button.outline{ border: 1px solid #fff; }

.arrow{ padding-right: 50px; }
.arrow::after{ content: ""; position: absolute; top: 50%; transform: translateY(-50%); right: 18px; vertical-align: middle; display: inline-block; width: 24px; height: 24px; background: url(svg/Arrow-white.svg) center center no-repeat; }

form button{ display: block; }

div.container.Breadcrumb{ position: relative; z-index: 2; }

ol.BreadcrumbList{ margin: 0; padding: 0; display: flex; font-size: 14px; align-items: center; height: 58px; }
ol.BreadcrumbList li{ padding: 0; margin: 0; list-style: none; }
ol.BreadcrumbList li:not(:first-child):before { content:">";  display: inline-block; margin-right: 4px; position: relative; top: 0; }
ol.BreadcrumbList li a{ color:  inherit;  }

header{ position: relative; z-index: 5; }
header div.container div.col-12{ background-color: #fff; border-radius: 16px; box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.07);  }
header div.container div.col-12 > div.row{ height: 64px; align-items: center;  }

header nav ul{ display: flex; gap: 24px; justify-content: center; }
header nav ul li a{  font-size: 14px; line-height: 1.25; letter-spacing: 0.02em; text-transform: uppercase; font-weight: 600; }
header nav ul li.selected a{ border-bottom: 1px solid var(--primary); }

section.banner.hero{ background: linear-gradient(0deg, #F3DBD9 54.64%, #9396B3 162.87%); margin-top: -82px; padding-top: calc(82px * 2); }
section.banner.hero div.text{ margin: 0 auto; max-width: 54ch; text-align: center; }
section.banner.hero div.text table{ margin: 0 auto; }

section.banner.hero div.text div.logo svg{ margin-left: -40px; }
section.banner.hero div.text div.logo label{ display: block; font-size: 26px; font-weight: 700; margin: 22px 0 12px 0; }

section.banner.hero div.text table{ margin-top: 16px; }

article.default div.text table td,
section.banner.hero div.text table td{ padding: 0 6px; }

section.banner.hero svg.absleft{ position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
section.banner.hero svg.absright{ position: absolute; right: 0; top: 50%; transform: translateY(-50%); }

section.cta{ position: relative; background: url(svg/Intersect.svg) top center no-repeat; background-size: 100%; z-index: 1; padding: 36px 0 0 0; }
section.cta > div.container{ background-color: var(--primary); }
section.cta > div.container > div.row{ --bs-gutter-x: 4px; }
section.cta svg{ position: absolute; width: 100%; top: 0; }
section.cta div.card{ margin-bottom: 24px; font-size: 16px; color: var(--primary); font-weight: 500; width: 290px; position: relative; z-index: 2; padding: 18px 12px 10px 12px; background-color: #fff; border-radius: 16px; box-shadow: 0px 7px 12px 0px rgba(0, 0, 0, 0.2); text-align: center; }
section.cta div.card > svg{ position: absolute; width: 12px; height: 12px; top: 10px; left: 10px; transform: rotate(0); }
section.cta div.card div.h3{ margin-bottom: 4px; }
section.cta div.card .button{ margin-top: 12px; width: 100%; }

section.artist-slider{ overflow: hidden; padding: 0; background-color: var(--primary); color: #fff; padding-top: 10px; }
section.artist-slider div.label { text-transform: uppercase; font-size: 14px; }
section.artist-slider div.slick{ display: flex; gap: 4px; position: relative; z-index: 2; margin-top: 10px; }
section.artist-slider div.slick::after{ content:""; display: block; position: absolute; width: 100%; height: 50%; bottom: 0; z-index: -1; background-color: #fff; }
section.artist-slider div.slick div.slick-slide{ margin-left: 4px!important; }


section.artist-slider div.slick div.slick-track{ margin-left: 4px; }
section.artist-slider div.slick div.slick-slide .card{ display: block; position: relative; width: 320px; box-shadow: 0px -6px 18px 0px rgba(0, 0, 0, 0.2); border-radius: 12px; overflow: hidden; }
section.artist-slider div.slick div.slick-slide .card img{ width: 100%; height: auto; }
section.artist-slider div.slick div.slick-slide .card div.text{ padding: 15px 20px; position: absolute; z-index: 2; bottom: 0; left: 0; width: 100%; color: #fff; }
section.artist-slider div.slick div.slick-slide .card div.text div.h4{ margin-bottom: 5px; }
section.artist-slider div.slick div.slick-slide .card::before { content: ""; display: block; position: absolute; inset: 0; background: linear-gradient(179.87deg, rgba(0, 0, 0, 0) 57.07%, rgba(0, 0, 0, 0.57) 81.26%); z-index: 1; }
section.artist-slider > svg{ position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 1; }

section.events div.map { display: none; }
section.events div.slick{ display: flex; gap: 24px; position: relative; z-index: 2; margin-top: 50px; }
section.events div.slick div.slick-track{ gap: 24px; } 

div.text :is(h1,h2) + p{ margin-top: 1rem;  }

div#map_canvas {
    height: min(max(600px, calc(100dvh - 107px)));
    position: sticky!important;
    top: 107px;
}


body[showmap=true] div.map {
    display: block;
}   

body[showmap=true] div.row.artists > div {
    width: 50%;
}

section.events .artists .artist {
    margin: 0;
}

div.actions {
    display: flex;
    justify-content: end;
    position: relative;
    top: -2rem;
}

div.actions span {
    white-space: nowrap;
}

div.actions span svg {
    vertical-align: middle;
    position: relative;
    top: -1px;
    width: 28px;
    height: 28px;
}

div.actions span em {
    font-style: normal;
}

div.actions span {
    padding: 14px 15px 10px 15px;
}

div.actions span:first-child {
    pointer-events: none;
}

div.actions span:first-child:after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 2px solid #3D7BF7;
    margin-top: 3px;
}

div.actions span:last-child {
    cursor: pointer;
}

div.actions span:first-child em {
    margin-left: 4px;
}

body[showmap=true] div.actions span:first-child {
    pointer-events: unset;
    cursor: pointer;
}

body[showmap=true] div.actions span:first-child:after {
    display: none;
}

body[showmap=true] div.actions span:last-child {
    pointer-events: none;
}

body[showmap=true] div.actions span:last-child::after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 2px solid #3D7BF7;
    margin-top: 3px;
}

section.events a.artist{ display: block; border-radius: 5px; border: 1px solid #DDDEE5; height: 100%; }

section.events .artist .image {

    overflow: hidden;
    background-color: var(--blue);
    margin: -1px;
    border-radius: 5px 5px 0 0;
}

section.events div.artists .artist .image button{
    position: absolute; bottom: 16px; right: 16px; min-height: 35px; border: unset; background-color: #fff; color: initial; padding: 0 20px; height: 35px; line-height: 35px; border-radius: 5px; text-transform: unset; transition: .2s;

}
section.events div.artists .artist:hover .image button{ background-color: var(--blue); color: #fff; }

section.events div.artist .image img {
    
    max-width: none;
    width: 100%;
    
}

section.events .artists .medium .text strong {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

section.events .artist .text {
    border-top: 0;
    border-radius: 0 0 5px 5px;
    background: #fff;
    padding: 15px 20px;
    padding-bottom: 30px!important;
    border: none!important;
}

section.events .artists .medium .text label {
    line-height: 1.2;
}

section.events .artists .medium .text label.city {
    position: absolute;
    bottom: 15px;
    left: 20px;
    z-index: 1;
    color: #9EA1B0;
}

section.events .artists .medium .text label.pris {
    position: absolute;
    bottom: 15px;
    z-index: 1;
    /*color: #9EA1B0;*/
}

section.artists .artists .medium .text h4 {
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

section.artists{ }
section.artists .text h4 { font-size: 18px; line-height: 1.2; font-weight: 500; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 6px; }
section.artists .text { height: 130px; }

section.artists .text label{ line-height: 1.2; }
section.artists .text label.artisttypename{ display: block; color: initial; margin-bottom: 7px; }
section.artists .text label.city { position: absolute; bottom: 15px; left: 20px; z-index: 1; color: #9EA1B0; }
section.artists .text label.pris{ position: absolute; bottom: 15px; right: 20px; z-index: 1; color: #9EA1B0; }

.artists .artist { box-shadow: 0 3px 4px 0 rgba(0,0,0,0.03); position: relative; margin: 12px 0; }
.artists .artist a.text{ background-color: #FFFFFF; }

.artists .artist .image { position: relative;  }
.artists .artist .image > a{ display: block; overflow: hidden; border-radius: 5px 5px 0 0; background-color: #fff; border: 1px solid #DDDEE5; }
.artists .artist .image img{ border-radius: 5px 5px 0 0; max-width: none; width: 100%; }

.artists .artist .text{ padding: 15px 20px; overflow: hidden; border: 1px solid #DDDEE5; border-top: 0; border-radius: 0  0 5px 5px; background: #fff;  display: block; }
.artists .actions{ position: absolute; top: 0; right: 0; text-align: right; padding: 10px; }

.track-bar em{ display: none; }
.track-bar{ position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; border-radius: 0 0 4px 4px; overflow: hidden; z-index: 2; }
.track-bar em{ width: 0%; height: 100%; background-color: #3D7BF7; z-index: 2; }

.player[data-state=paused] .track-bar em,
.player[data-state=playing] .track-bar em{ display: block; }

div.actions a.circle + a.circle { margin-left: 4px; }

a.circle {
    display: inline-block;
    width: 36px;
    height: 36px;
    z-index: 2;
    background-color: #fff!important;
    border-radius: 50%;
    text-align: center;
    position: relative;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.06);
    border: 1px solid #DDDEE5;
    vertical-align: middle;
}

div[data-state=paused] a.play,
div[data-state=stopped] a.play {
    background: url(svg/audio.svg) center center no-repeat;
    background-size: 18px 18px;
}

div[data-state=playing] a.play {
    background: url(svg/baseline-pause.svg) center center no-repeat;
}

a.circle.video{ background: url(svg/videocam.svg) center center no-repeat; background-size: 22px 22px; }

.track-bar em{ display: none; }
.track-bar{ position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; border-radius: 0 0 4px 4px; overflow: hidden; z-index: 2; }
.track-bar em{ width: 0%; height: 100%; background-color: var(--primary); z-index: 2; }

article.default div.image-text{ display: none; }

@media (min-width: 1400px){
    article.text-image div.row,
    article.image-text div.row{ --bs-gutter-x: 30px!important; }
}

@media (max-width: 1399px){

    div.container{ padding-left: 24px; padding-right: 24px; }

}

@media (max-width: 991px){

    section.banner.hero svg.absleft,
     section.banner.hero svg.absright{ display: none!important; }

}

@media (max-width: 767px){

    header ul.burger{ display: flex; flex-wrap: wrap; width: 43px; justify-content: center; gap: 7px; cursor: pointer; padding: 0; margin-right: 8px; }
    header ul.burger li{ width: 43px; height: 2px; background-color: #000; transition: .2s; }
    header nav{ display: none; position: fixed; width: calc(100% - 24px); height: calc(100vh - 30px); top: 18px; left: 12px; z-index: 1; background-color: #fff; padding: 0 24px 45px 24px; overflow: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; border-radius: 16px; }

    header nav ul.menu { flex-flow: column; gap: 30px; height: 100%; text-align: center; }
    header nav ul.menu > li > a{ font-size: 21px; text-transform: none; }

    header nav ul.menu > li span.haschild{ display: block; width: 30px; height: 30px; border: 1px solid #eee; background: url(chevron-down.svg) center center no-repeat; position: absolute; top: 15px; right: 0; transition: .2s; }
    header nav ul.menu > li span.haschild.True { transform: rotate(-180deg); }
    header nav ul.menu > li span.haschild.True + ul{ display: block; }

    body[data-menu=open]{ overflow: hidden; }
    body[data-menu=open] header ul.burger li:nth-child(2){ display: none; }
    body[data-menu=open] header ul.burger li:nth-child(1){ transform: rotate(45deg); position: relative; top: 8px; }
    body[data-menu=open] header ul.burger li:nth-child(3){ transform: rotate(-45deg); }
    body[data-menu=open] header ul.burger{ position: relative; top: -4px; }
    body[data-menu=open] header nav{ display: block; z-index: -1; }

    article.default div.image svg{ display: none; }

    header div.row.align-items-center{ flex-direction: row-reverse !important; }

    header div.row.align-items-center .col{ flex: 0 0 auto; width: auto; }

    header div.row.align-items-center .col-auto { flex: 1 0 0%; text-align: center; }
    
    article.default div.large{ display: none!important; }
    article.default div.image-text{ display: block; text-align: right; margin-top: 12px; margin-bottom: 1rem; }


}

@media (max-width: 575px){
    
    h1{ font-size: 34px; }
    h2{ font-size: 29px; }
    div.h3{ font-size: 20px; }
    .large{ font-size: 18px; }
        
    button{ border: none; font-family: inherit; }
    button,
    .button,
    .outline{ font-size: 13px; min-height: 36px; padding-top: 11px; padding-bottom: 10px; }

    header + article,
    header + section{ margin-top: -82px;padding-top: 130px!important;}

    section.artist-slider div.container-fluid{ opacity: 0; }     
    
    section.banner.hero { padding-bottom: 120px!important; }
    section.banner.hero div.text table { margin-top: 0; }

    section.cta { padding: 50px 0 0 0; }
    section.artist-slider > svg{ max-width: 306px; height: auto; }

}

