/*
  Name: style.css
  Author: esense GmbH, Basel, Switzerland
  http://www.esense.ch
*/

/*
  Basic Style
*/


/* reset */
* {
margin: 0;
padding: 0;
font-weight: normal;
border: none;
outline:none;
/* mobile device */
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-ms-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-smoothing: antialiased;
box-sizing: border-box;
}

html {
height: 100%;
width: 100%;
font-size: 62.5%; /* 1em = 10px */
overflow-y: scroll;
background-color: #fff;
}

html.fixed,
html.open-menu {
overflow: hidden;
padding-right: 15px;
width: auto;
display: block;
}

html.fixed.no-mouse,
html.open-menu.no-mouse {
padding-right: 0;
}

body {
position: relative;
width: 100%;
height: 100%;
line-height: 1;
background-color: transparent;
color: #000;
margin: 0;
/* mobile device */
-webkit-text-size-adjust: 100% !important;
-moz-text-size-adjust: 100% !important;
-ms-text-size-adjust: 100% !important;
-o-text-size-adjust: 100% !important;
text-size-adjust: 100% !important;
}

::selection {
background-color: #000;
color: #fff;
}

/*** center wrapper ***/
.center {
position: relative;
margin: 0 auto;
clear: both;
}

.c-text {
text-align: center;
}

.c-text img {
float: none;
}

/*** clear block ***/
.clear {
display: block;
clear: both;
}

.clear:after {
visibility: hidden;
display: block;
content: "";
clear: both;
height: 0;
}

/* old IE clear block */
* html .clear {
zoom: 1;
}

*:first-child+html .clear {
zoom: 1;
}

/* position */
.p-rel {
position: relative;
}

.p-fix {
position: fixed;
}

.p-abs {
position: absolute;
}

/* wrapper */
#container,
#footer {
width: 100%;
overflow: hidden;
}

.page-w {
max-width: 1176px; /* kombiniert mit Klasse .b-box wird padding von diesem Wert abgezogen */
}


/* sticky footer */
.block #container {
height: 100%;
}

.block .page-wrap {
padding-bottom: 100px; 	/* footer height */
}

.block #footer {
height: 100px; 			/* footer height */
margin-top: -100px;		/* footer height */
}

/* float direction */
.fl {
float: left;
}

.fr {
float: right;
}

.fn {
float: none;
}

/* menu */
#menu,
#aside-menu,
#aside-menu ul {
float: left;
}

/* menu direction */
/* horizontal, align left */
.hl-nav #menu li {
float: left;
width: auto;
}

/* horizontal, align left */
.hr-nav #menu li {
float: right;
width: auto;
}

/* vertical align left */
.vl-nav #menu li,
.vr-nav #menu li,
#aside-menu li {
width: 100%;
float: left;
box-sizing: border-box;
}

.hl-nav #menu a,
.vl-nav #menu a,
#aside-menu a {
float: left;
}

.hr-nav #menu a,
.vr-nav #menu a {
float: right;
}

/* horizontal align center */
.c-nav #menu {
position: relative;
display: table;
margin: 0 auto 0 auto;
text-align: center;
float: none;
}

.c-nav #menu ul {
display: inline-block;
vertical-align: middle;
list-style: none;
}

.c-nav #menu li {
box-sizing: border-box;
float: left;
}

.c-nav #menu a {
float: left;
}

/* sticky nav */
.sticky-menu {
z-index: 100;
}

.sticky-menu.sticky,
.sticky-aside-menu.sticky {
position: fixed;
top: 0;
}

/* box sizing */
/* the size (width and height) of the element includes border, padding, and width */
/* DEPRECATED: alle Elemente werden per * auf border-box gestellt */
.b-box {
box-sizing: border-box;
}

/* the size (width and height) of the element without border, padding, and width */
.c-box {
box-sizing: content-box;
}

/*** float grid ***/

.c-100 {
width: 100%;
}
.c-91 {
width: 91.666666666666%;
}
.c-90 {
width: 90%;
}
.c-87 {
width: 87.5%;
}
.c-83 {
width: 83.333333333333%;
}
.c-80 {
width: 80%;
}
.c-75 {
width: 75%;
}
.c-70 {
width: 70%;
}
.c-66 {
width: 66.666666666666%;
}
.c-62 {
width: 62.5%;
}
.c-60 {
width: 60%;
}
.c-58 {
width: 58.333333333333%;
}
.c-50 {
width: 50%;
}
.c-41 {
width: 41.666666666666%;
}
.c-40 {
width: 40%;
}
.c-37 {
width: 37.5%;
}
.c-33 {
width: 33.333333333333%;
}
.c-30 {
width: 30%;
}
.c-25 {
width: 25%;
}
.c-20 {
width: 20%;
}
.c-16 {
width: 16.666666666666%;
}
.c-12 {
width: 12.5%;
}
.c-10 {
width: 10%;
}
.c-8 {
width: 8.333333333333%;
}

/*** spaces in pixel ***/

/* margin all directions */
.m-10 {
margin: 10px;
}
.m-12 {
margin: 12px;
}
.m-20 {
margin: 20px;
}
.m-24 {
margin: 24px;
}
.m-28 {
margin: 28px;
}

/* margin horizontal (left and right) */
.mh-10 {
margin-left: 10px;
margin-right: 10px;
}
.mh-12 {
margin-left: 12px;
margin-right: 12px;
}
.mh-20 {
margin-left: 20px;
margin-right: 20px;
}
.mh-24 {
margin-left: 24px;
margin-right: 24px;
}
.mh-28 {
margin-left: 28px;
margin-right: 28px;
}

/* margin vertical (top and bottom) */
.mv-10 {
margin-top: 10px;
margin-bottom: 10px;
}
.mv-12 {
margin-top: 12px;
margin-bottom: 12px;
}
.mv-20 {
margin-top: 20px;
margin-bottom: 20px;
}
.mv-24 {
margin-top: 24px;
margin-bottom: 24px;
}
.mv-28 {
margin-top: 28px;
margin-bottom: 28px;
}

/* margin top */
.mt-10 {
margin-top: 10px;
}
.mt-12 {
margin-top: 12px;
}
.mt-20 {
margin-top: 20px;
}
.mt-24 {
margin-top: 24px;
}
.mt-28 {
margin-top: 28px;
}

/* margin bottom */
.mb-10 {
margin-bottom: 10px;
}
.mb-12 {
margin-bottom: 12px;
}
.mb-20 {
margin-bottom: 20px;
}
.mb-24 {
margin-bottom: 24px;
}
.mb-28 {
margin-bottom: 28px;
}

/* margin right */
.mr-10 {
margin-right: 10px;
}
.mr-12 {
margin-right: 12px;
}
.mr-20 {
margin-right: 20px;
}
.mr-24 {
margin-right: 24px;
}
.mr-28 {
margin-right: 28px;
}

/* margin left */
.ml-10 {
margin-left: 10px;
}
.ml-12 {
margin-left: 12px;
}
.ml-20 {
margin-left: 20px;
}
.ml-24 {
margin-left: 24px;
}
.ml-28 {
margin-left: 28px;
}

/* padding all directions */
.p-10 {
padding: 10px;
}
.p-12 {
padding: 12px;
}
.p-20 {
padding: 20px;
}
.p-24 {
padding: 24px;
}
.p-28 {
padding: 28px;
}

/* padding horizontal (left and right) */
.ph-10 {
padding-left: 10px;
padding-right: 10px;
}
.ph-12 {
padding-left: 12px;
padding-right: 12px;
}
.ph-20 {
padding-left: 20px;
padding-right: 20px;
}
.ph-24 {
padding-left: 24px;
padding-right: 24px;
}
.ph-28 {
padding-left: 28px;
padding-right: 28px;
}

/* padding vertical (top and bottom) */
.pv-10 {
padding-top: 10px;
padding-bottom: 10px;
}
.pv-12 {
padding-top: 12px;
padding-bottom: 12px;
}
.pv-20 {
padding-top: 20px;
padding-bottom: 20px;
}
.pv-24 {
padding-top: 24px;
padding-bottom: 24px;
}
.pv-28 {
padding-top: 28px;
padding-bottom: 28px;
}

/* padding top */
.pt-10 {
padding-top: 10px;
}
.pt-12 {
padding-top: 12px;
}
.pt-20 {
padding-top: 20px;
}
.pt-24 {
padding-top: 24px;
}
.pt-28 {
padding-top: 28px;
}

/* padding bottom */
.pb-10 {
padding-bottom: 10px;
}
.pb-12 {
padding-bottom: 12px;
}
.pb-20 {
padding-bottom: 20px;
}
.pb-24 {
padding-bottom: 24px;
}
.pb-28 {
padding-bottom: 28px;
}

/* padding right */
.pr-10 {
padding-right: 10px;
}
.pr-12 {
padding-right: 12px;
}
.pr-20 {
padding-right: 20px;
}
.pr-24 {
padding-right: 24px;
}
.pr-28 {
padding-right: 28px;
}

/* padding left */
.pl-10 {
padding-left: 10px;
}
.pl-12 {
padding-left: 12px;
}
.pl-20 {
padding-left: 20px;
}
.pl-24 {
padding-left: 24px;
}
.pl-28 {
padding-left: 28px;
}

/* no space (margin and padding) */
.ns {
margin: 0 !important;
padding: 0 !important;
}

.nsv {
margin-top: 0 !important;
padding-top: 0 !important;
margin-bottom: 0 !important;
padding-bottom: 0 !important;
}

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

.nst {
margin-top: 0 !important;
padding-top: 0 !important;
}

.nsb {
margin-bottom: 0 !important;
padding-bottom: 0 !important;
}

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

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

/* no space (margin) */
.nm {
margin: 0 !important;
}

.nmv {
margin-top: 0 !important;
margin-bottom: 0 !important;
}

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

.nmt {
margin-top: 0 !important;
}

.nmb {
margin-bottom: 0 !important;
}

.nml {
margin-left: 0 !important;
}

.nmr {
margin-right: 0 !important;
}

/* no space (padding) */
.np {
padding: 0 !important;
}

.npv {
padding-top: 0 !important;
padding-bottom: 0 !important;
}

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

.npt {
padding-top: 0 !important;
}

.npb {
padding-bottom: 0 !important;
}

.npl {
padding-left: 0 !important;
}

.npr {
padding-right: 0 !important;
}

/* basic content styles */
ul, ol, 
table, tbody, tr, td, th, 
dl, dt, dd,
input, textarea, button {
margin: 0;
padding: 0;
}

/* list */
ul, ol {
list-style: none;
}

.text ul,
.text ol {
overflow: hidden;
padding-left: 30px;
}

.text ul {
list-style: disc;
}

.text ol {
list-style: decimal;
}

.list,
.text .list {
padding-bottom: 0;
padding-left: 0;
list-style: none;
}

/* links (mailto and tel) */
a[href^="mailto"] {
word-break: keep-all !important;
word-wrap: initial !important;
white-space: nowrap !important;
}

a[href^=tel]{
color: inherit !important;
background-color: transparent !important;
text-decoration: none !important;
}

/* media */
img, a {
border: none;
outline:none;
appearance: none;
text-decoration: none;
outline: none;
}

figure {
margin: 0;
padding: 0;
display: block;
}

figcaption {
width: 100%;
float: left;
padding: 0;
margin: 0;
}

img {
width: 100%;
max-width: 100%;
font-size: 0;
line-height: 0;
float: left;
outline: none;
}

iframe {
position: relative;
left: 0;
top: 0;
border: none;
margin: 0;
padding: 0;
outline: none;
}

/* form */
form fieldset,
.form-row,
.form-item,
.button-wrapper {
position: relative;
float: left;
width: 100%;
}

.form-item-wrap {
position: relative;
float: left;
padding: 5px 0;
}

.form-row label,
.form-item label,
.form-row label span,
.form-item label span {
float: left;
word-break: keep-all;
word-wrap: initial;
line-height: 22px;
}

.form-item label,
.form-item label span,
.button-wrapper button {
cursor: pointer;
}

.form-row .descr {
float: left;
width: 100%;
}

/* radio button and checkbox */
form input.radio,
form input[type=radio],
form input.checkbox,
form input[type=checkbox] {
position: relative;
cursor: pointer;
opacity: 0;
z-index: 1000;
width: 14px;
height: 14px;
margin: 0 10px 0 0;
}

form .form-item-wrap.radio:before,
form .form-item-wrap.checkbox:before {
position: absolute;
top: 0;
left: 0;
content: "";
width: 14px;
height: 14px;
border: 1px solid #999;
background-color: #fff;
float: left;
z-index: 1;
margin-top: 4px;
}

form .form-item-wrap.radio:before {
border-radius: 50%;
}

form .form-item-wrap.radio.active:after,
form .form-item-wrap.radio:focus:after {
position: absolute;
top: 0;
left: 0;
content: "";
width: 6px;
height: 6px;
float: left;
border-radius: 50%;
margin: 9px 0 0 5px;
background-color: #fff;
z-index: 2;
box-shadow: 0 2px 2px 0px rgba(0,0,0,0.25);
}

form .form-item-wrap.radio.active:before,
form .form-item-wrap.radio:focus:before {
background-color: #999;
}

form .form-item-wrap.checkbox.active:before,
form .form-item-wrap.checkbox:focus:before {
background-color: #999;
}

form .form-item-wrap.checkbox.active:after,
form .form-item-wrap.checkbox:focus:after {
position: absolute;
top: 0;
left: 0;
content: "";
width: 3px;
height: 8px;
float: left;
margin: 5px 0 0 5px;
transform: rotate(35deg);
border-right: 3px solid #fff;
border-bottom: 3px solid #fff;
box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.25);
z-index: 2;
}

form input.txt,
form textarea {
position: relative;
border-radius:0;
border: 1px solid #777;
background-color: #fff;
outline: none !important;
box-shadow: none;
display: block;
clear: both;
width: 100%;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
-o-appearance: none;
appearance: none;
}

form input.txt:focus,
form textarea:focus {
border: 1px solid #000;
}

/* custom select */
.form-row select.custom-select {
position: relative;
border-radius: 0;
margin: 0;
width: 10%;
min-width: 100%;
max-width: 100%;
padding: 6px 10px;
outline: none !important;
z-index: 3;
background-color: transparent;
background-color: rgba(255,255,255,0);
cursor: pointer;
-webkit-appearance: none;
-moz-appearance:window;
-ms-appearance: none;
-o-appearance: none;
}

.form-row select.custom-select:focus {
outline: none;
}

.form-row .moz-select {
width: 100%;
float: left;
}

.form-row .moz-select {
position: relative;
width: 100%;
min-width: 100%;
max-width: 100%;
padding: 0;
margin: 0;
border-radius: 0;
border: none;
float: left;
border: 1px solid #777;
position: relative;
cursor: pointer;
background-color: #fff;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
-o-appearance: none;
}

.form-row .moz-select:after {
position: absolute;
content: "";
top: 0px;
right: 0px;
width: 34px;
height: 100%;
background-color: #fff;
z-index: 1;
}

.form-row .moz-select:before {
position: absolute;
content: "";
top: 50%;
right: 11px;
width: 8px;
height: 8px;
margin: -7px 0 0 0;
border-right: 2px solid #000;
border-bottom: 2px solid #000;
transform: rotate(45deg);
float: left;
z-index: 2;
}

html.-ms- .form-row .moz-select,
html.-webkit- .text .form-row .moz-select {
padding: 0;
}

/* moz bugfix */
/* bugfix 25.10.2018
html.-moz- .form-row select.custom-select {
padding: 0;
}
*/

html.-moz- .form-row select.custom-select,
html.-moz- .form-row select.custom-select:focus {
outline: none !important;
border: none !important;
/* bugfix 25.10.2018
padding: 0;
*/
margin: 0;
outline: none;
}

/* form error */
form .error .form-item-wrap.radio:before,
form .error .form-item-wrap.checkbox:before,
form .error input.txt,
form .error textarea {
border: 1px solid #dd0000;
}

.error ul li,
.error ul li a {
color: #dd0000;
}

/* warning and info */
.warn,
.info {
display: block;
clear: both;
padding: 10px;
background-color: #ff5555;
color: #fff !important;
margin-bottom: 10px;
font-size: 14px;
line-height: 16px;
text-align: center;
}

.warn {
background-color: #ff5555 !important;
color: #fff !important;
}

.info {
background-color: #ffff55 !important;
color: #000 !important;
}

/* hidden object */
.hidden {
display: none !important;
visibility: hidden !important;
}

/* over write magnolia styles */
.edit-mode div.mgnlEditorBar.area, 
.edit-mode div.mgnlEditorBar.area.mgnlEditorBarStatusIndicator, 
.edit-mode div.mgnlEditorBar.component,
.edit-mode div.mgnlEditorBar.component.mgnlEditorBarStatusIndicator,
.edit-mode div.mgnlPlaceholder {
margin-right: 24px !important;
}

.edit-mode .section.form div.mgnlPlaceholder,
.edit-mode .section.form div.mgnlEditorBar.area, 
.edit-mode .section.form div.mgnlEditorBar.area.mgnlEditorBarStatusIndicator
.edit-mode .section.form div.mgnlEditorBar.component, 
.edit-mode .section.form div.mgnlEditorBar.component.mgnlEditorBarStatusIndicator,
.edit-mode .mgnlPlaceholder div.mgnlEditorBar.component,
.edit-mode #footer div.mgnlEditorBar.area, 
.edit-mode #footer div.mgnlEditorBar.area.mgnlEditorBarStatusIndicator, 
.edit-mode #footer div.mgnlEditorBar.component,
.edit-mode #footer div.mgnlEditorBar.component.mgnlEditorBarStatusIndicator {
margin-right: 0 !important;
}

.warning {
background-color: #ffaaaa;
padding: 10px;
}

.warning p {
padding-top: 0 !important;
text-align: center;
}
/* 
  Font Style
*/



@font-face {
font-family: 'Lausanne-300';
src: url('/.resources/liste/webresources/fonts/Lausanne-300.eot');
src: url('/.resources/liste/webresources/fonts/Lausanne-300.eot') format('embedded-opentype'),
     url('/.resources/liste/webresources/fonts/Lausanne-300.woff2') format('woff2'),
     url('/.resources/liste/webresources/fonts/Lausanne-300.woff') format('woff'),
     url('/.resources/liste/webresources/fonts/Lausanne-300.ttf') format('truetype'),
     url('/.resources/liste/webresources/fonts/Lausanne-300.svg#Lausanne-300') format('svg');
font-weight: normal;
font-style: normal;
}

* {
font-family: 'Lausanne-300', 'Helvetica Neue', Helvetica, Arial, 'Trebuchet MS', snas-serif, 'sans serif';
font-weight: normal;
font-style: normal;
}

body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

#header *,
#content *:not(input),
img,
#contact,
#search-button,
#search,
#search *:not(input),
#body-search,
#body-search *:not(input),
#content #menu a,
#content #sub.menu a,
#content #anchor-menu a,
#content a {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}

#content input,
#content textarea,
#content select,
#header input,
#content .text *,
#content .text li,
#content p a,
#content table a {
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
-o-user-select: text;
user-select: text;
}

h1, h2, h3, p, a, span, em, li, th, td, small, input, textarea, button {
font-weight: normal;
}

/* font size */
.gallery-list-multi strong,
#gallery-list strong {
font-size: 72px;
line-height: 72px;
}

.museum strong,
.file strong,
.title-1,
.box strong {
font-size: 32px;
line-height: 48px;
font-weight: normal;
}

.title-1 {
font-size: 36px;
line-height: 36px;
}

.museum strong,
.file strong,
.box strong {
line-height: 36px;
}

.esense-overlay.white .esense-overlay-info .esense-overlay-title,
#search form #search-field,
#body-search form #search-field,
.box span,
.title-2,
p, a, span,
li,
td, th, caption,
strong.red,
.form-wrapper form select option,
.form-wrapper form select,
.form-wrapper form input,
.form-wrapper form textarea,
.form-wrapper form label,
.form-wrapper form label span {
font-weight: normal;
font-size: 18px;
line-height: 24px;
letter-spacing: 0.5px;
}

.history .match.image-wrap .caption,
.text #search-result-list li .url-link,
.form-wrapper .descr,
.section .image .caption {
font-size: 15px;
line-height: 18px;
}

/*
#content .text strong,
#content .text strong * {
color: #ff0000;
}

#content .text em,
#content .text em * {
border-bottom: 1px solid #ff0000;
}
*/

/*
.text table a,
p a {
border-bottom: 1px solid #000;
}
*/

/* 2019 nicht benutzt
.underline {
border-bottom: 1px solid #000;
}
*//*
  Color Style
*/

/*
rot 1
HEX: #ff4603;
RGB: rgb(255,70,3);

rot 2
HEX: #ff0000;
RGB: rgb(255,0,0);

*/

* {
color: #000;
}

#sponsor p,
#sponsor a,
#sponsor p a,
#footer a,
#footer p a,
.list li .file {
color: #000;
}

/* MOVED
.text table a,
p a,
a.open,
a.trail,
a.active {
color: #ff4603;
}

.text strong.red {
color: #ff4603;
border: 2px solid #ff4603;
}
*/

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
color: #000;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #000;
opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #000;
opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: #000;
}
:placeholder-shown { /* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */
color: #000;
}

#body-search form #search-field,
#body-search form #search-field:placeholder-shown,
#search form #search-field,
#search form #search-field:placeholder-shown {
color: #000;
}

/* MOVED
.list li .file,
#paging a,
#footer-button a,
#footer-button span,
.bg-red {
background-color: #ff4603;
}
*/

.bg-white {
background-color: #fff;
}

.box .bg-white {
border: 2px solid #000;
}

#footer a,
#footer p a {
border-bottom: 1px solid #000;
}

.form-wrapper .form-row.button-wrapper .button.submit {
color: #fff;
}

.box .bg-blue {
/*border-left: 2px solid rgb(66,146,252);*/
/*border-bottom: 2px solid rgb(66,146,252);*/
    border: 2px solid rgb(66,146,252);
}

.box .bg-blue.txt-blue strong {
color: rgb(66,146,252);
}
	
.box .bg-green {
/*border-left: 2px solid rgb(110,190,150);*/
/*border-bottom: 2px solid rgb(110,190,150);*/
border: 2px solid rgb(110,190,150);
}

.box .bg-green.txt-green strong {
color: rgb(110,190,150);
}
	
	/*
  Layout Style
*/

.esense-overlay-fixed #footer-button,
.esense-overlay-fixed #sub-menu.fixed,
.esense-overlay-fixed #a-to-z-menu.fixed,
.esense-overlay-fixed #anchor-menu.fixed,
.esense-overlay-fixed #fixed-menu {
padding-right: 15px;
}

.no-mouse.esense-overlay-fixed #footer-button,
.no-mouse.esense-overlay-fixed #sub-menu.fixed,
.no-mouse.esense-overlay-fixed #a-to-z-menu.fixed,
.no-mouse.esense-overlay-fixed #anchor-menu.fixed,
.no-mouse.esense-overlay-fixed #fixed-menu {
padding-right: 0;
}

/* header */
#home #header {
border-bottom: 2px solid #000;
}

#sponsor {
margin: 25px 0 14px 0;
position: relative;
z-index: 2;
}

#logo {
position: relative;
width: 344px;
margin: 4px 0 -36px 0;
z-index: 1;
}

#page #logo {
width: 172px;
margin: 16px 0 -12px 0;;
}

#logo.mobile-logo {
width: 256px;
margin: 10px 0 47px 0;
}

#logo.opacity {
opacity: 0;
}

#page #header .title-2 span {
margin: 0 14px 0 0;
float: left;
}

#page #header .title-2 span:after {
content: "/";
margin-right: -10px;
float: right;
}

#header .title-2 a {
float: left;
}

#contact {
position: relative;
z-index: 10;
}

#search-button,
.language {
margin-left: 20px;
cursor: pointer;
position: relative;
z-index: 10;
}

.language.last {
margin-left: 6px;
}

#body-search,
#search {
position: relative;
margin: -11px 0 0 0;
width: 25%;
overflow: hidden;
border-radius: 0;
}

#body-search {
margin: 0;
width: 100%;
}

.border-bottom {
border-bottom: 2px solid #000;
padding-bottom: 10px;
}

#search.off {
width: 0px;
}

#body-search form,
#search form {
height: 49px;
background: rgba(0,0,0,0.1);
position: relative;
display: block;
clear: both;
margin-left: 20px;
border-radius: 0;
}

#body-search form {
margin-left: 0;
width: 50%;
}

#body-search #search-field,
#search form #search-field {
height: 45px;
background: transparent;
margin: 0 0 0 20px;
border: none;
border-radius: none;
outline: none;
float: left;
width: 70%;
border-radius: 0;
/*
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
-o-user-select: text;
user-select: text;
*/
}

#body-search form #search-link,
#search form #search-link {
height: 45px;
width: 20%;
background: transparent;
margin: 0 0 0 -20px;
border: none;
border-radius: none;
outline: none;
float: right;
text-indent: -9999px;
overflow: hidden;
cursor: pointer;
position: relative;
z-index: 10;
position: relative;
}

#body-search form #search-link:before,
#search form #search-link:before {
content: "";
position: absolute;
top: 14px;
right: 16px;
border: 2px solid #000;
width: 16px;
height: 16px;
border-radius: 50%;
}

#body-search form #search-link:after,
#search form #search-link:after {
content: "";
position: absolute;
top: 32px;
right: 12px;
width: 10px;
height: 2px;
background-color: #000;
transform: rotate(45deg);
}

.close-button {
position: absolute;
top: 0;
right: 0;
width: 49px;
height: 49px;
float: left;
cursor: pointer;
text-indent: -9999px;
overflow: hidden;
display: none;
z-index: 100;
}

.close-button:before,
.close-button:after {
content: "";
position: absolute;
top: 22px;
right: 10px;
width: 30px;
height: 2px;
float: left;
background-color: #000;
transform: rotate(45deg);
}

.close-button:after {
transform: rotate(-45deg);
}

#search-result-list li a em {
background: rgba(0,0,0,0.1);
font-weight: normal;
display: inline-block;
padding: 0px 5px;
}

.text #search-result-list li .url-link {
padding-top: 2px;
}

.text #search-result-list li strong {
margin-bottom: 2px;
}

.text .paging a,
.text .paging span {
padding: 0 10px 0 0;
}

/* menu */
#fixed-menu {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding-top: 11px;
background-color: #fff;
min-height: 49px;
z-index: 1000;
}

#menu-button {
position: relative;
width: 25px;
height: 18px;
float: left;
cursor: pointer;
margin: 2px 19px 0 0;
z-index: 10;
}

#menu-button.open {
z-index: -1;
}

#menu-button span,
#menu-button span:after,
#menu-button span:before {
position: absolute;
width: 100%;
height: 2px;
background-color: #000;
float: left;
margin-top: 8px;
}

#menu-button span:after,
#menu-button span:before {
content: "";
}

#menu-button span:before {
margin-top: -8px;
}

#menu-wrapper {
position: absolute;
top: -11px;
left: 24px;
z-index: 10;
float: left;
/*
margin-top: -100%;
*/
transform: translateY(-100%);
width: 25%;
min-width: 350px;
}

#menu-wrapper.open {
/*
margin-top: 0;
*/
transform: translateY(0);
}

#menu-wrapper #menu {
display: block;
clear: both;
float: none;
margin: 0 30px 0 0;
box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

#menu-wrapper #menu a {
display: block;
clear: both;
line-height: 20px;
padding: 15px 18px 13px 18px;
color: #000;
color: #fff;
}

#menu-wrapper #menu a.active {
background-color: #fff;
}

/* anchor menu / sub menu / a-z menu */
#sub-menu,
#anchor-menu {
margin-top: 0;
}

#sub-menu #sub-link-wrapper,
#anchor-menu #anchor-link-wrapper {
border-bottom: 2px solid #000;
overflow: hidden;
}

#sub-menu.fixed,
#a-to-z-menu.fixed,
#anchor-menu.fixed {
position: fixed;
top: 49px;
left: 0;
margin-top: 0;
width: 100%;
background-color: #fff;
z-index: 100;
}

#a-to-z-menu {
padding-bottom: 40px;
}

#a-to-z-menu.fixed {
top: 0;
padding-bottom: 0;
}

#a-to-z-menu.fixed .center,
#sub-menu.fixed .center,
#anchor-menu.fixed .center {
padding: 0 24px;
}

#a-to-z-menu a,
#sub-menu a,
#anchor-menu a {
padding: 11px 18px 9px 0px;
float: left;
}

#sub-menu-button,
#anchor-menu-button {
display: none;
width: 100%;
float: left;
cursor: pointer;
padding: 13px 0 11px 0;
position: relative;
}

#sub-menu-button:after,
#anchor-menu-button:after {
content: "";
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%) rotate(135deg);
width: 10px;
height: 10px;
border-top: 2px solid #000;
border-right: 2px solid #000;
}

#sub-menu-button.open:after,
#anchor-menu-button.open:after {
margin-top: 6px;
transform: translateY(-50%) rotate(-45deg);
}

.fixed #sub-menu-button.open:after,
.fixed #anchor-menu-button.open:after {
margin-top: 4px;
}

/* content */
#content {
border-bottom: 2px solid #000;
overflow: hidden;
}

/*
.edit-mode #content {
overflow: visible;
}
*/

#wrapper {
margin-right: -24px;
}

#home #wrapper {
margin-top: 22px;
}

#footer p {
padding-top: 24px;
width: 25%;
float: left;
padding-right: 24px;
}

/* link box */
.box strong {
display: block;
clear: both;
}

.box .match {
min-height: 120px;
padding: 13px 18px 20px 18px;
}

/* title text image */
.section {
padding-top: 48px;
padding-bottom: 48px;
border-bottom: 2px solid #000;
margin-bottom: -2px;
}

.section.no-sub-menu {
margin-top: 60px;
padding-top: 48px;
border-top: 2px solid #000;
}

#detail .section.no-sub-menu {
margin-top: 0;
padding-top: 0;
border-top: none;
}

#detail #header strong.title-1 {
padding-bottom: 14px;
}

#detail .section {
border-bottom: none;
}

#detail .section .text p.detail-include-text {
padding-top: 0;
}

#detail .section .text p.detail-include-text span {
white-space: nowrap;
}

#detail .section .text p.detail-include-text span:before {
content: " / ";
white-space: nowrap;
}

#detail .section .text p.detail-include-text span.first:before {
content: "";
display: none;
}

.section.left .text {
padding-right: 12px;
float: left;
}

#detail .section > .text {
padding-right: 24px;
float: left;
}

.section.right .text {
padding-left: 12px;
padding-right: 24px;
float: right;
}

.text.list-text {
padding-bottom: 48px;
border-bottom: 2px solid #000;
padding-right: 24px;
}

.text.list-text.c-50 {
width: 100%;
padding-right: 50%;
}

.text.list-text.cols p {
-webkit-column-count: 2;
-moz-column-count: 2;
-ms-column-count: 2;
-o-column-count: 2;
column-count: 2;
-webkit-column-gap: 24px;
-moz-column-gap: 24px;
-ms-column-gap: 24px;
-o-column-gap: 24px;
column-gap: 24px;
}

.text table,
.text table tr,
.text table th,
.text table td {
border: none;
border-collapse: collapse;
border-spacing: 0;
vertical-align: top;
text-align: left;
}

.text table {
width: auto !important;
max-width: 100%;
margin-top: 24px;
clear: both;
float: left;
}

.text table td,
.text table th {
padding: 12px 24px 12px 0;
border-bottom: 2px solid #000;
}

.text table th {
padding-bottom: 20px;
}

.text table caption {
text-align: left;
padding-bottom: 12px;
border-bottom: 2px solid #000;
margin-bottom: -2px;
}

.text table tbody {
border-top: 2px solid #000;
}

.section.left .image {
padding-left: 12px;
padding-right: 24px;
float: right;
}

.section .image.large .inner > span {
margin-bottom: 24px;
}

.section .image.large .inner > span:last-child {
margin-bottom: 0;
}

.section.left .image.small {
margin-right: 25%;
}

.section.right .image {
padding-right: 12px;
float: left;
}

.section.right .image.small {
margin-left: 25%;
}

.section.left.gallery .image {
padding-right: 0;
}

.section.right.gallery .image {
padding-left: 0;
}

.section.gallery .image a {
width: 50%;
padding: 0 24px 24px 0;
float: left;
}

.section .gallery a span,
.section.gallery a span,
.section.gallery .image a span {
background-color: #000;
position: relative;
overflow: hidden;
}

.section .image .inner span {
position: relative;
overflow: hidden;
}

.section.gallery .image a:last-child {
padding-bottom: 0;
}

.section.right.gallery .image img {
float: right;
}

.section.right.gallery .image .inner {
display: block;
clear: both;
margin-right: -24px;
}

.section .title-1 {
/*
margin-top: -13px;
margin-bottom: -10px;
*/
margin-top: -5px;
margin-bottom: 3px;
}

.text p {
padding-top: 24px;
width: 100%;
float: left;
}

.text strong {
border-bottom: 2px solid #000;
}

.text ul {
list-style: none;
padding-left: 24px;
}

.text ul li:before {
content: "–";
margin-left: -20px;
margin-top: -2px;
float: left;
font-weight: 700;
}

.text strong.red {
padding: 10px 22px;
width: auto;
float: left;
clear: both;
display: inline;
margin-top: 30px;
position: relaitve;
}

.history .match.image-wrap .caption,
.section .image .caption {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
float: left;
background-color: #fff;
border-bottom: 2px solid #000;
z-index: 10;
padding: 12px 0;
transform: translateY(100%);
}


/* history */
.history {
margin-left: 12.5%;
}

.history:first-child {
margin-top: 24px;
}

.history .match.text-wrap {
border-left: 1px solid #000;
padding: 24px 0 48px 12px;
}

.history .match.image-wrap {
border-right: 1px solid #000;
padding: 24px 12px 48px 0;
position: relative;
}

.history .match.image-wrap span {
overflow: hidden;
position: relative;
}

.history dt {
display: block;
width: 96px;
height: 96px;
border: 2px solid #000;
padding-top: 30px;
margin: 0px auto 0px;
}

.history.round dt,
.history.round-color dt {
border-radius: 50%;
}

.history dt span {
font-style: italic;
font-size: 32px;
line-height: 32px;
text-align: center;
display: block;
transform: rotate(-12deg);
margin-left: -5px;
}

/* form */
.form-wrapper {
border-top: 2px solid #000;
}

.form-wrapper .form-row {
padding: 6px 0;
border-bottom: 1px solid rgba(0,0,0,0.2);
}

.form-wrapper .form-row.txt-row,
.form-wrapper .form-row.select {
padding: 0;
}

.form-row .moz-select {
border: none;
border-left: 1px solid rgba(0,0,0,0.2);
border-right: 1px solid rgba(0,0,0,0.2);
background-color: rgba(0,0,0,0.1);
}

.form-row.error .moz-select {
border: none;
background-color: rgba(255,0,0,1);
}

.form-row.error .moz-select select {
color: #fff;
}

.form-row.error .moz-select:before {
border-color: #fff;
}

.form-row .moz-select:after {
background-color: transparent;
}

.form-wrapper .form-row > label {
width: 25%;
float: left;
}

.form-wrapper .form-row.select > label {
padding-top: 7px;
}

.form-wrapper .txt-form-item,
.form-wrapper .select-fieldset,
.form-wrapper .radio-fieldset,
.form-wrapper .checkbox-fieldset {
width: 75%;
float: left;
}

.form-wrapper .txt-form-item {
padding-right: 25%;
}

.form-wrapper .form-row.txt-row label {
padding-top: 6px;
}

.form-wrapper .txt-form-item .txt,
.form-wrapper .txt-form-item textarea {
border: none;
background-color: rgba(0,0,0,0.1);
padding: 6px 10px;
width: 100%;
max-width: 100%;
min-width: 100%;
}

.form-wrapper .form-row.error .txt-form-item .txt,
.form-wrapper .form-row.error .txt-form-item textarea {
background-color: rgba(255,0,0,1);
color: #fff;
}

.form-wrapper .form-row.error .txt-form-item .txt,
.form-wrapper .form-row.error .txt-form-item textarea {
background-color: rgba(255,0,0,1);
color: #fff;
}

.form-wrapper .form-row.error label,
.form-wrapper .form-row.error label span {
color: #dd0000;
}

.form-wrapper .txt {
clear: none;
}

.form-wrapper .select-fieldset {
padding-right: 25%;
}

.form-wrapper .form-item {
position: relative;
}

.form-wrapper .form-item-wrap {
padding: 0;
margin-left: 5px;
}

.form-wrapper .form-item-wrap.radio,
.form-wrapper .form-item-wrap.checkbox {
position: absolute;
top: 0; /* bugfix 25.10.2018 */
left: 0; /* bugfix 25.10.2018 */
}

.form-wrapper .form-item label {
padding-left: 30px;
}

.form-wrapper .form-row.button-wrapper {
border: none;
padding: 0;
margin-top: 48px;
padding-left: 25%;
}

.form-wrapper .form-row.button-wrapper .button {
line-height: 58px;
text-align: center;
width: auto;
padding: 0 50px;
margin: 0 12px 0 0;
cursor: pointer;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
-o-appearance: none;
appearance: none;
border-radius: 0;
}

.form-wrapper .form-row.button-wrapper .button.clear-form {
background-color: rgba(0,0,0,0.1);
}

.form-wrapper label span.is-required {
position: relative;
float: left;
}

.form-wrapper label span.is-required:after {
content: "*";
top: 0;
color: #999;
display: inline-block;
margin-left: 0.4rem;
/*
position: absolute;
right: -12px;
float: left;
*/
}

span.required > span {
color: #999;
}

.text.error .list.validation-error {
width: 100%;
padding: 0 0 0 24px;
margin: 24px 0;
}

.text.error .list.validation-error li {
width: 100%;
padding: 0;
margin: 0;
}

/* file upload */
form .file-upload {
width: 100%;
padding: 0;
border: none;
border-left: 1px solid rgba(0,0,0,0.2);
border-right: 1px solid rgba(0,0,0,0.2);
background-color: rgba(0,0,0,0.1);
}

form .file-upload .inputfile {
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}

.inputfile + label {
max-width: 100%;
font-weight: 700;
text-overflow: ellipsis;
white-space: nowrap;
cursor: pointer;
display: inline-block;
overflow: hidden;
line-height: 36px;
padding: 6px 10px;
width: 100%;
box-sizing: border-box;
}

.no-js .inputfile + label {
display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
outline: none;
}

.text .form-row label.file-label .has-file,
.text .form-row label.file-label .has-focus,
.text .form-row label.file-label:hover span {
color: #ff4603;
}

.form-wrapper .descr {
color: #999;
padding: 6px 10px 12px 10px;
}

.form-wrapper .txt-row .descr {
border-top: 1px solid rgba(0,0,0,0.2);
}

/* file download */
.list {
margin-top: 24px;
margin-bottom: -24px;
}

.list.images {
margin-bottom: -48px;
}

.list.c-50 {
margin-top: 0;
}

.list li {
width: 25%;
padding: 0 24px 24px 0;
float: left;
}

.list.c-50 li {
width: 50%;
}

.list li .file {
padding: 14px 18px 22px 18px;
float: left;
width: 100%;
position: relative;
background-color: rgba(0,0,0,0.1);
}

.list li .press span:before,
.list li .press span:after,
.list li .file:before,
.list li .file:after {
position: absolute;
content: "";
float: left;
bottom: 0;
right: 0;
}

.list li .press span:before,
.list li .file:before {
width: 31px;
height: 31px;
border-top: 2px solid #000;
border-left: 2px solid #000;
}

.list li .press span:after,
.list li .file:after {
width: 0px;
height: 0px;
border-bottom: 16px solid #fff;
border-right: 16px solid #fff;
border-top: 16px solid rgba(255,255,255,0);
border-left: 16px solid rgba(255,255,255,0);
}

.list li .museum strong,
.list li .file strong {
width: 100%;
float: left;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}

.file .size {
position: absolute;
bottom: 4px;
right: 36px;
margin-left: 12px;
background: transparent;
font-size: 12px;
line-height: 13px;
padding: 8px 6px;
opacity: 0;
float: left;
}


/* press image */
.list li .press {
float: left;
width: 100%;
position: relative;
}

.list li .press span {
width: 100%;
float: left;
position: relative;
background-color: #000;
overflow: hidden;
}

.list li .press span:before {
z-index: 2;
}

.list li .press span:after {
border-top: 16px solid #ddd;
border-left: 16px solid #ddd;
z-index: 1;
}

.list li .press figcaption {
padding: 12px 0 24px 0;
}

/* google map */
.map-wrapper {
position: relative;
height: 400px;
overflow: hidden;
}

.map-wrapper .map {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 110%;
float: left;
}

/* gallery list / performance list */
.gallery-anchor-link {
position: absolute;
top: -200px;
left: 0;
width: 100%;
height: 0px;
cursor: default;
opacity: 0;
}

.gallery-list-multi,
#gallery-list {
margin-bottom: -24px;
}

.performance {
padding-bottom: 24px;
}

.gallery-list-multi li,
.performance li,
#gallery-list li {
width: 25%;
float: left;
margin-bottom: 24px;
position: relative;
}

.gallery-list-multi li .match,
.performance li .match,
#gallery-list li .match {
padding-right: 24px;
float: left;
}

.gallery-list-multi li .match .image span,
.performance li .match .image span,
#gallery-list li .match .image span {
background-color: #000;
position: relative;
}

.gallery-list-multi li .match .image span {
overflow: hidden;
}

.gallery-list-multi li img,
.gallery-list-multi li .image,
.gallery-list-multi li figcaption
.performance li img,
.performance li .image,
.performance li figcaption,
#gallery-list li img,
#gallery-list li .image,
#gallery-list li figcaption {
float: left;
white-space: normal;
}

.gallery-list-multi li figcaption,
.performance li figcaption,
#gallery-list li figcaption {
padding: 12px 0;
}

.gallery-list-multi strong,
.performance strong,
#gallery-list strong {
float: left;
margin-top: -2px;
}

.gallery-list-multi .hidden-anchor,
#gallery-list .hidden-anchor {
width: 0;
height: 0;
overflow: hidden;
float: left;
}

/* gallery detail */
.scrollWrapper {
position: relative;
overflow: hidden;
width: 100%;
height: 240px;
float: left;
}

#scroll-gallery {
width:100%;
height: 240px;
margin: 14px 0 14px 0;
position: relative;
z-index: 2;
overflow: hidden;
}

#scroll-gallery .item {
position: relative;
float: left;
margin: 0 24px 0 0;
background-color: #000;
}

#scroll-gallery img {
position: relative;
float: left;
margin: 0;
width: auto;
min-width: 1px;
max-width: 9999px;
height: 240px;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}

#detail .title-1 {
width: 100%;
float: left;
margin-top: 34px;
}

#detail .section {
padding-top: 0;
}

.slider-next,
.slider-prev {
position: absolute;
top: 0;
width: 100px;
height: 100%;
z-index: 200;
float: left;
opacity: 1;
cursor: pointer;
zoom: 1;
text-indent: -9999px;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}

.slider-prev {
left: -40px;
}

.slider-next {
right: -16px;
}

.slider-next:before,
.slider-prev:before {
position: absolute;
content: "";
width: 15px;
height: 15px;
top: 50%;
margin-top: -9px;
}

.slider-prev:before {
border-top: 3px solid #000;
border-left: 3px solid #000;
transform: rotate(-45deg);
left: 15px;
}

.slider-next:before {
border-top: 3px solid #000;
border-right: 3px solid #000;
transform: rotate(45deg);
right: 15px;
}

/* search result */
#search-result-list.list li {
width: 100%;
}

/* item list */
.item-list-wrapper .title-1 {
padding-bottom: 24px;
}

.section.item-list-wrapper .text {
padding-right: 24px;
}

.item-list-wrapper p {
padding-bottom: 24px;
padding-top: 0;
}

.item-list-wrapper ul.item-list {
padding-left: 0;
width: 100%;
float: left;
}

.item-list-wrapper li {
padding-bottom: 24px;
}

.item-list-wrapper li:last-child {
padding-bottom: 0;
}

.item-list-wrapper li:before {
display: none;
}

.item-list-wrapper li .item-title {
width: 100%;
float:left;
}

.item-list-wrapper li span {
white-space: nowrap;
}

.museum-list {
margin-bottom: -72px;
}

.museum-list li {
padding-bottom: 72px;
}

/* social buttons */
#meta-social-wrapper {
float: right;
}

.social-button {
position: relative;
width: 28px;
height: 28px;
background-color: #000;
border-radius: 3px;
margin-left: 8px;
margin-top: -3px;
}

#menu-wrapper #menu a.social-button {
padding: 0;
margin: 0 4px;
border: none;
float: left;
clear: none;
}

#menu-wrapper #menu li#social-wrapper {
position: relative;
width: auto;
left: 50%;
transform: translateX(-50%);
margin-top: 10px;
}

.social-button.last {
margin-left: 20px;
}

#menu-wrapper #menu a.social-menu.social-button {
display: none;
float: left;
}

/* footer / paging / top-button / language */
#footer {
margin: 24px 0 48px 0;
padding-bottom: 48px;
}

#detail #footer {
border-top: 2px solid #000;
margin: 0 0 48px 0;
padding-top: 24px;
}

#footer-button {
position: fixed;
bottom: 0;
width: 100%;
left: 0;
float: left;
height: 1px;
z-index: 1000;
}

#paging a,
#footer-button a,
#footer-button span {
width: 60px;
height: 60px;
border-radius: 30px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
float: right;
}

#footer-button a,
#footer-button span {
position: absolute;
bottom: 25px;
right: 24px;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}

#paging a {
position: relative;
float: right;
margin-left: 12px;
}

#footer-button #language {
text-align: center;
line-height: 60px;
}

#footer-button #language {
display: none;
}

.bg-red #footer-button #top,
.bg-red #footer-button #language {
/*
background-color: #fff;
*/
display: none;
}

#paging a,
#footer-button #top {
text-indent: -9999px;
overflow: hidden;
cursor: pointer;
}

#paging #next:after,
#paging #previous:after,
#footer-button #top:after {
content: "";
width: 2px;
height: 20px;
background-color: #000;
position: absolute;
left: 29px;
top: 20px;
float: left;
}

#paging #next:before,
#paging #previous:before,
#footer-button #top:before {
content: "";
width: 10px;
height: 10px;
border-left: 2px solid #000;
border-top: 2px solid #000;
position: absolute;
left: 24px;
top: 20px;
float: left;
transform: rotate(45deg);
}

#paging #close:before,
#paging #close:after {
content: "";
width: 30px;
height: 2px;
background-color: #000;
position: absolute;
left: 16px;
top: 29px;
float: left;
transform: rotate(45deg);
}

#paging #close:before {
transform: rotate(-45deg);
}

#paging #next {
transform: rotate(90deg);
}

#paging #previous {
transform: rotate(-90deg);
}

/* overlay */
#home-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
float: left;
z-index: 1000;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
cursor: pointer;
}

#header a#friend-button {
width: 100%;
max-width: 150px;
float: left;
position: absolute;
top: 100px;
left: 66%;
transition: all 0.25s ease-in-out;
z-index: 1001;
}

/* transition */
.text #search-result-list .url-link,
.box a.bg-white strong,
.box a.bg-white span,
#sub-menu-button,
#anchor-menu-button,
#a-to-z-menu a,
#sub-menu a,
#anchor-menu a,
#header a,
#search-button {
transition: color 0.25s;
}

.form-wrapper .form-row.button-wrapper .button,
.text #search-result-list a strong,
.museum .underline,
.text li a,
p a {
transition: all 0.25s;
}

#header a.social-button,
.box a.bg-red,
.close-button:before,
.close-button:after,
#menu-wrapper #menu a,
#search form #search-link:after,
#footer-button a,
#paging a,
#footer-button span,
.box .bg-red,
#menu-button span,
#menu-button span:before,
#menu-button span:after {
transition: background-color 0.25s;
}

.box a.bg-white,
.slider-next:before,
.slider-prev:before,
#anchor-menu-button:after,
#search form #search-link:before {
transition: border-color 0.25s;
}

#menu-wrapper {
transition: margin 0.5s;
}

#logo {
transition: opacity 0.15s;
}

.file .size,
.section .image a img,
.section.gallery .image a img,
#scroll-gallery .item img,
.performance li .match img,
#gallery-list li .match img,
.gallery-list-multi .match img,
.list li .press span img {
transition: opacity 0.25s;
}

.file {
transition: background-color 0.25s;
}

.history .match.image-wrap .caption,
.section .image .caption {
transition: transform 0.25s;
}

/************** 2019 ****************/

/*.box .bg-white {*/
/*border-right: none !important;*/
/*border-top: none !important;*/
/*}*/

.box .match {
padding: 13px 16px 6px 16px;
}

#container #footer {
width: auto;
clear: both;
float: none;
margin-right: -24px;
margin-top: 0;
padding-top: 10px;
}

#container #content {
padding-bottom: 16px;
}

#header .meta-wrap {
position: absolute;
top: 0;
left: 50%;
float: left;
margin-left: 12px;
}

.history dt span {
transform: none;
font-style: normal !important;
margin-left: 0;
}

.history dt {
border-radius: 50%;
padding-top: 32px;
}

.list li .file {
background-color: #fff;
border: 2px solid #000;
}

.list li .file:before {
width: 2px;
height: 48px;
padding: 0;
transform: rotate(45deg);
z-index: 2;
border: none !important;
float: left;
background-color: #000;
bottom: 0;
right: 0;
margin: 0 16px -8px 0;
}

.list li .file:after {
border-top: 2px solid #000;
border-left: 2px solid #000;
border-right: 2px solid #fff;
border-bottom: 2px solid #fff;
bottom: -2px;
right: -2px;
width: 32px;
height: 32px;
}

#logo-wrapper.text-logo {
font-size: 56px;
line-height: 120%;
margin-top: 60px;
width: auto;
clear: both;
float: none;
display: block;
margin-right: -24px;
}

#logo-wrapper.text-logo * {
font-size: 100%;
line-height: 100%;
}

#logo-wrapper.text-logo .c-100 {
position: relative;
padding-bottom: 12px;
}

#logo-wrapper.text-logo .c-50 {
padding-bottom: 20px;
}

#logo-wrapper.text-logo .c-50.no-text1 {
min-height: 244px;
}

#logo-wrapper.text-logo .c-50 *:not(script, svg) {
float: left;
clear: both;
width: 100%;
display: inline-block;
}

.-moz- #logo-wrapper.text-logo .c-50 * {
float: none;
}

#logo-wrapper.text-logo time span {
position: relative;
margin-left: -2px;
}

#logo-wrapper.text-logo strong {
padding-bottom: 1em;
}

#logo-wrapper.text-logo strong {
opacity: 0.5;
}

#logo-wrapper.text-logo .sponsor {
position: absolute;
bottom: 0;
left: 50%;
width: 50%;
float: left;
font-size: 18px;
margin-bottom: 27px;
}

#logo-wrapper.text-logo .sponsor,
#logo-wrapper.text-logo .sponsor * {
color: #000;
}

#home #wrapper {
margin-top: 34px;
}

.section.no-sub-menu {
margin-top: 0;
}

.box strong {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}

.box .match {
min-height: 129px;
}

#menu-wrapper #menu a.active {
color: #000;
}

#logo-wrapper.text-logo .c-50.page-logo {
padding-bottom: 0;
}

#home #header strong.title-2 span {
display: none;
}

#home #header strong.title-2 span.menu-title-wrap {
display: block;
}

#search {
width: 200px;
}

#paging #next:before,
#paging #previous:before,
#footer-button #top:before {
border-color: #fff;
}

#paging #close:before,
#paging #close:after,
#paging #next:after,
#paging #previous:after,
#footer-button #top:after {
background-color: #fff;
}

#content {
border-bottom: none;
}

#home #content {
border-bottom: 2px solid #000;
}

.text strong {
border-bottom: none;
}

.nbb {
border-bottom: none !important;
}

.no-text .text p {
padding-top: 0;
}

.image-link-box a.match {
padding: 0;
padding-bottom: 6px;
display: inline-block;
}

.image-link-box a.match figure {
padding-bottom: 3px;
margin-left: -2px;
}

.image-link-box a.match strong,
.image-link-box a.match span {
padding-left: 16px;
padding-right: 16px;
float: left;
clear: both;
}

.box a.match strong {
padding-top: 10px;
margin-top: -10px;
}

.image-link-box a.match strong {
padding-top: 10px;
margin-top: 0;
}

#content .text em {
border-bottom: 1px solid #000 !important;
}

#content .text em * {
border-bottom: none !important;
}

.box .bg-white.bg-red2 {
transition: background 0.25s ease;
}

.box .bg-white.bg-red2.font-white * {
color: #fff;
}

/* show time button */
#showtime {
position: absolute;
top: 14rem;
right: 7rem;
width: 26vw;
height: 10vw;
padding: 1vw 0 1vw 1vw;
background: #4080FF;
border-radius: 2vw;
z-index: 1000;
box-sizing: content-box;
transform: rotate(11.5deg) !important;
transition: transform 0.25s ease-in-out !important;
}

#showtime:hover {
transform: rotate(-10deg) !important;
}

#showtime .showtime-logo {
display: block;
font-family: 'lausanne', helvetica;
font-size: 3.48vw;
float: left;
line-height: 3.4vw;
}

#showtime .showtime-logo.one {
padding-right: 1.4vw;
}

#showtime .showtime-logo.two {
animation-duration: 3s;
animation-name: skewText;
animation-iteration-count: infinite;
}

#showtime .showtime-logo.arrow {
float: right;
padding-top: 0.2vw;
margin-bottom: -0.2vw;
margin-right: 1vw;
}

@keyframes skewText {
	0% {
	transform: skew(0deg, 11deg);
	}

	20% {
	transform: skew(0deg, -11deg);
	}

	60% {
	transform: skew(0deg, -11deg);
	}

	80% {
	transform: skew(0deg, 11deg);
	}

	100% {
	transform: skew(0deg, 11deg);
	}
}

/* Bubbles */
#logo-wrapper.text-logo .has-bubbles > .c-50 {
min-height: auto;
position: relative;
}

#logo-wrapper.text-logo .c-50.bubbles-wrapper {
padding-bottom: 0;
}

#logo-wrapper.text-logo .bubble {
float: left;
width: 100%;
clear: left;
font-size: 26px;
line-height: 28px;
color: #000;
z-index: 10;
position: relative;
}

#logo-wrapper.text-logo .bubble span {
width: auto;
position: relative;
white-space: nowrap;
padding: 6px 14px 3px 14px;
    margin-bottom: 22px;
    margin-top: 13px;
}

#logo-wrapper.text-logo .bubble.blue {
transform: rotate(-2.5deg);
margin-top: -14px;
margin-bottom: -14px;
margin-left: -16px;
transition: transform 0.25s ease-out;
}

#logo-wrapper.text-logo .bubble.green {
transform: rotate(-1.2deg);
margin-bottom: -9px;
padding-right: 16px;
transition: transform 0.25s ease-out;
}

/*
#logo-wrapper.text-logo .bubble.blue:hover + .bubble.green {
transform: rotate(-1.7deg);
}

#logo-wrapper.text-logo .bubbles-wrapper:hover .bubble.blue {
transform: rotate(-1.5deg);
}

#logo-wrapper.text-logo .bubbles-wrapper:hover .bubble.green {
transform: rotate(-0.5deg);
}
*/

/*
#logo-wrapper.text-logo .bubbles-wrapper:hover .bubble.blue:hover,
*/
#logo-wrapper.text-logo .bubble.blue:hover {
transform: rotate(-3.5deg);
}

#logo-wrapper.text-logo .bubble.green:hover {
transform: rotate(0.2deg);
}


#logo-wrapper.text-logo .bubble.blue span {
float: left;
    border: 0.15rem solid #4080ff;
    color: #4080ff;
    border-radius: 100vw;
}

/*
#logo-wrapper.text-logo .bubble.blue span:after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 66px;
height: 66px;
float: left;
background: transparent url('/.resources/liste/webresources/images/page-pics/bubble_showtime.png') center left no-repeat;
background-size: auto 100%;
z-index: -1;
}

#logo-wrapper.text-logo .bubble.blue span:before {
content: "";
position: absolute;
top: 0;
right: 0;
width: calc( 100% - 66px );
height: 66px;
float: left;
background: transparent url('/.resources/liste/webresources/images/page-pics/bubble_showtime.png') center right no-repeat;
background-size: auto 100%;
z-index: -1;
}
*/

#logo-wrapper.text-logo .bubble.green span {
float: right;
    border: 0.15rem solid #71bd97;
    color: #71bd97;
    border-radius: 100vw;
}

/*
#logo-wrapper.text-logo .bubble.green span:after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 66px;
height: 66px;
float: left;
background: transparent url('/.resources/liste/webresources/images/page-pics/bubble_expedition.png') center right no-repeat;
background-size: auto 100%;
z-index: -1;
}

#logo-wrapper.text-logo .bubble.green span:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: calc( 100% - 65.5px );
height: 66px;
float: left;
background: transparent url('/.resources/liste/webresources/images/page-pics/bubble_expedition.png') center left no-repeat;
background-size: auto 100%;
z-index: -1;
}
*/

/* Sponsor Heart */
#logo-wrapper.text-logo .sponsor.heart {
width: auto;
max-width: 50%;
right: 50%;
left: auto;
transform: translateX(100%);
font-size: 32px;
line-height: 36px;
}

#logo-wrapper.text-logo .sponsor.heart a {
position: relative;
}

.sponsor.heart a:after {
content: "";
position: absolute;
bottom: 100%;
left: 50%;
width: 70px;
height: 70px;
float: left;
margin: 0 0 -10px -35px;
background: transparent url('/.resources/liste/webresources/images/page-pics/Herz.png') center center no-repeat;
background-size: cover;
animation-duration: 12s;
animation-name: heartBeat;
animation-iteration-count: infinite;
animation-delay: 10s;
}

@keyframes heartBeat {
	0% {
	transform: scale(1,1);
	transform-origin: bottom center;
	}
	60% {
	transform: scale(1,1);
	}
	66% {
	transform: scale(1.1,1.1);
	}
	67% {
	transform: scale(0.8,0.8);
	}
	68% {
	transform: scale(1,1);
	}
	69% {
	transform: scale(1.4,1.4);
	}
	70% {
	transform: scale(0.6,0.6);
	}
	71% {
	transform: scale(1.3,1.3);
	}
	72% {
	transform: scale(0.8,0.8);
	}
	73% {
	transform: scale(1.1,1.1);
	}
	80% {
	transform: scale(1,1);
	}
	100% {
	transform: scale(1,1);
	transform-origin: bottom center;
	}
}


#blob {
width: 150px;
height: 150px;
position: fixed;
top: 50%;
left: 50%;
z-index: 1000;
cursor: move;
background: transparent url('/.resources/liste/webresources/images/page-pics/Liste-Blob.png') center center no-repeat;
background-size: cover;
opacity: 0;
transition: all 0.74s ease-in-out;
}

.loading #blob,
#blob.dragging {
transition: none;
}

html.has-blob {
min-height: 100%;
height: auto;
}

/*
html {
background-color: rgb(245,246,246);
}
*/

/* youtube player */
.youtube {

}

.youtube .category {
padding-bottom: 1.5em;
}

.youtube figcaption {
padding-top: 3em;
}

.movie {
padding: 0;
position: relative;
width: 100%;
}

.movie .player {
position: relative;
cursor: pointer;
overflow: hidden;
width: 100%;
}

.movie img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: auto;
z-index: 1;
}

.movie .player:after {
content: "";
position: absolute;
top: 50%;
left: 50%;
float: left;
z-index: 2;
width: 64px;
height: 64px;
border-radius: 50%;
margin: -31px  0 0 -31px;
background-color: rgba(9,35,61,0.8);
}

.movie .player:before {
content: "";
position: absolute;
top: 50%;
left: 50%;
float: left;
z-index: 3;
width: 0;
height: 0;
border: 14px solid rgba(255,145,119,0);
border-left: 24px solid rgba(255,145,119,1);
margin: -13px  0 0 -8px;
}

.movie .player.active:before,
.movie .player.active:after {
display: none;
}

.movie .player-frame {
position: relative;
float: left;
}


#sub-menu-level3 {
border-top: 2px solid #000;
}

/* banner */
#cta-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 24px 0;
    z-index: 1000;
    /*box-shadow: 0 1rem 4rem 1rem rgb(0,0,0,0.05);*/
    border-top: 1px solid #000;
    display: none;
}

#cta-banner.show {
    display: block;
}

#cta-banner .card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

#cta-banner button {
    margin-right: auto;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #000;
    cursor: pointer;
    white-space: nowrap;
}

#cta-banner button,
#cta-banner p {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.5px;
}

#cta-banner p {
    max-width: 80ch;
}

#cta-banner button:hover,
#cta-banner p a:hover {
    color: #ff0000;
    border-color: #ff0000;
}

/* 2024 ticket button */
header.has-ticket-link {
    position: relative;
}

#ticket-link-button {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0.3em;
    display: grid;
    place-items: center;
    place-content: center;
    background-color: #ff0000;
    aspect-ratio: 1 / 1;
    border-radius: 100vw;
    transform: scale(1,1) translateY(20%) translateX(10%) rotate(18deg);
    transform-origin: center;
    transition: transform 500ms ease-out !important;
}

#ticket-link-button:hover {
    transform: scale(1.05, 1.05) translateY(20%) translateX(10%) rotate(10deg);
    transition: transform 180ms ease-in !important;
}

#ticket-link-button  span {
    font-size: 2em;
    line-height: 1.1;
}

@media screen and (max-width: 1024px) {
    #ticket-link-button {
        bottom: auto;
        top: 4em;
        right: -0.5em;
        transform: scale(1,1) translateY(0) translateX(0) rotate(18deg);
    }

    #ticket-link-button:hover {
        transform: scale(1.05, 1.05) translateY(0) translateX(0) rotate(0);
    }
}

@media screen and (max-width: 880px) {
    #ticket-link-button {
        right: 2em;
    }

    #ticket-link-button span {
        font-size: clamp(1em, 4vw, 2em);
    }
}

@media screen and (max-width: 700px) {
    #ticket-link-button {
        right: 3em;
        z-index: 100;
    }
}

@media screen and (max-width: 550px) {
    #ticket-link-button {
        top: -0.5em;
        right: 2em;
        z-index: 1001;
    }
}

/* changes 2025: 30 years liste */
#menu-wrapper {
    transform: translateY(-105%);
}

#logo-wrapper.text-logo .c-50 h1 {
    clear: none;
}

#logo-wrapper.text-logo .c-50 {
    padding-bottom: 0;
}

#logo-wrapper.text-logo .c-50 .logo-30-years-liste {
    float: right;
    margin: -0.1em 0.3em -0.75lh -100%;
    clear: right;
    height: 4lh;
    width: auto;
}

#logo-wrapper.text-logo .c-50 .logo-30-years-liste svg {
    height: 100%;
}

#logo-wrapper.text-logo .c-50 .logo-30-years-liste svg > * {
    display: none;
}


#logo-wrapper.text-logo .c-50 .logo-30-years-liste svg > *.active {
    display: block;
}

@media only screen and (max-width: 1024px) {
    #logo-wrapper.text-logo .c-50.no-text1 {
        max-width: calc(50% + 24px);
    }
}

@media only screen and (max-width: 850px) {
    #logo-wrapper.text-logo .c-50.no-text1 {
        max-width: 100%;
    }
}

@media only screen and (max-width: 700px) {
    #logo-wrapper.text-logo .c-50 .logo-30-years-liste {
        margin-right: 24px;
    }
}

#logo-wrapper.text-logo .bubble.blue {
    width: auto;
}

#logo-wrapper.text-logo .bubble.blue span {
    background-color: #fff;
}html.esense-overlay-fixed {
overflow: hidden;
padding-right: 15px;
width: auto;
display: block;
}

html.esense-overlay-fixed.no-mouse {
padding-right: 0;
}

html.esense-overlay-fixed #aside.fixed.no-mouse {
right: 0;
}

.esense-overlay {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: auto;
min-height: 100%;
float: left;
opacity: 0;
z-index: -1;
background: #fff;
}

.esense-overlay.active {
top: 0;
opacity: 1;
}

.esense-overlay.on-top {
z-index: 9990;
}

.esense-overlay .esense-overlay-inner {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
min-height: 100%;
display: block;
padding: 0 20px;
}

.esense-overlay.active .esense-overlay-center {
position: relative;
margin: 0 auto;
width: auto;
max-width: 1112px;
}

.esense-overlay .esense-overlay-body,
.esense-overlay .esense-overlay-body .esense-overlay-body-inner {
position: relative;
top: 0;
left: 0;
height: 100%;
z-index: 9993;
}

/*
.esense-overlay.horizontal .esense-overlay-body .esense-overlay-body-inner:after,
.esense-overlay.vertical .esense-overlay-body .esense-overlay-body-inner:after {
position: absolute;
top: 50%;
left: 50%;
content: "Bild laden …";
width: 100px;
height: 24px;
border-radius: 16px;
padding: 6px 0 4px 0;
margin: -17px 0 0 -50px;
z-index: 9990;
float: left;
text-align: center;
color: #fff;
line-height: 22px;
font-size: 12px;
color: #aaa;
text-transform: uppercase;
transition: opacity 0.25s;
}
*/

.esense-overlay.loaded .esense-overlay-body-inner:after {
opacity: 0;
}

.esense-overlay.horizontal .esense-overlay-body {
width: 100%;
float: left;
padding-top: 0;
/*
margin-left: -8px;
*/
margin: 0;
}

.esense-overlay.vertical .esense-overlay-body {
width: auto;
display: block;
margin: 0 300px 20px 0;
}

.esense-overlay .esense-overlay-body .esense-overlay-body-inner {
width: auto;
display: block;
clear: both;
}

.esense-overlay.vertical .esense-overlay-body .esense-overlay-body-inner {
margin: 20px 20px 0 20px;
}

.esense-overlay.horizontal .esense-overlay-body .esense-overlay-body-inner {
margin: 100px 0 0 0;
}

.esense-overlay.white.vertical .esense-overlay-body {
background: transparent;
margin: 0 300px 0 0;
padding: 0;
}

/* INFO SECTION */
.esense-overlay.horizontal .esense-overlay-info-group {
position: relative;
width: 100%;
float: left;
}

.esense-overlay.vertical .esense-overlay-info-group {
position: fixed;
top: 0;
right: -100%;
width: 300px;
height: 100%;
float: left;
overflow: hidden;
}

.esense-overlay.vertical .esense-overlay-info-group.active {
right: 0;
}

.esense-overlay .esense-overlay-info {
position: fixed;
width: 100%;
height: auto;
float: left;
z-index: 9992;
opacity: 0;
transition: opacity 0.25s;
/*
margin: 0 0 0 -8px;
*/
margin: 0;
}

.esense-overlay.horizontal .esense-overlay-info {
bottom: -100%;
}

.esense-overlay.horizontal .esense-overlay-info-group-center {
max-width: 1112px;
margin: 0 auto;
display: block;
clear: both;
padding: 0;
}

.esense-overlay.horizontal .esense-overlay-info.active {
bottom: 0;
}

.esense-overlay.vertical .esense-overlay-info {
position: absolute;
top: 0;
right: -100%;
overflow: auto;
}

.esense-overlay.vertical .esense-overlay-info.active {
right: 0;
}

/*
.esense-overlay.black .esense-overlay-info {
border-top: 1px solid rgba(255,255,255,0.5);
}

.esense-overlay.white .esense-overlay-info {
border-top: 1px solid rgba(0,0,0,0.5);
}
*/

.esense-overlay.vertical .esense-overlay-info {
border-left: 1px solid rgba(255,255,255,0.5);
border-top: none;
height: 100%;
}

.esense-overlay .esense-overlay-info.active {
position: relative;
top: 0;
bottom: auto;
}

.esense-overlay.vertical .esense-overlay-info.active {
position: absolute;
right: 0;
width: 300px;
}

.esense-overlay.white.horizontal .esense-overlay-info {
background-color: rgba(0,0,0,0);
}

.esense-overlay.horizontal .esense-overlay-info.active {
left: 0;
width: 100%;
}

.esense-overlay.vertical .esense-overlay-info.active {
left: 0;
width: auto;
display: block;
clear: both;
}

.esense-overlay .esense-overlay-info .esense-overlay-info-inner {
position: relative;
width: 100%;
height: auto;
float: left;
padding: 0 0 20px 0;
background-color: #fff;
}

.esense-overlay .esense-overlay-info .esense-overlay-info-inner * {
text-align: center;
}

.esense-overlay.vertical .esense-overlay-info .esense-overlay-info-inner {
padding: 100px 0 100px 0;
float: none;
display: block;
clear: both;
width: auto;
}

.esense-overlay.vertical.white .esense-overlay-info .esense-overlay-info-inner {
background-color: rgba(255,255,255,0.9);
}

.esense-overlay .esense-overlay-info .esense-overlay-title {
padding-top: 50px;
}

.esense-overlay .esense-overlay-info .esense-overlay-title,
.esense-overlay .esense-overlay-info .esense-overlay-description,
.esense-overlay .esense-overlay-info small {
margin: 0;
display: block;
clear: both;
}

.esense-overlay.black .esense-overlay-info .esense-overlay-title,
.esense-overlay.black .esense-overlay-info .esense-overlay-description,
.esense-overlay.black .esense-overlay-info .esense-overlay-file,
.esense-overlay.black .esense-overlay-info small {
color: #fff;
}

.esense-overlay.white .esense-overlay-info .esense-overlay-title,
.esense-overlay.white .esense-overlay-info .esense-overlay-description,
.esense-overlay.white .esense-overlay-info .esense-overlay-file,
.esense-overlay.white .esense-overlay-info small {
color: #000;
}

.esense-overlay.vertical .esense-overlay-info .esense-overlay-title,
.esense-overlay.vertical .esense-overlay-info .esense-overlay-description,
.esense-overlay.vertical .esense-overlay-info .esense-overlay-file,
.esense-overlay.vertical .esense-overlay-info small {
margin: 0 10px 0 10px;
}

.esense-overlay .esense-overlay-info-inner > * {
padding-left: 0;
padding-right: 0;
}

.esense-overlay .esense-overlay-info .esense-overlay-weblink {
transition: color 0.25s;
float: left;
font-weight: bold;
}

.esense-overlay .esense-overlay-info .esense-overlay-weblink:before {
content: "»";
float: left;
font-size: 170%;
position: relative;
top: -2px;
}

.esense-overlay .esense-overlay-info .esense-overlay-file {
transition: color 0.25s;
margin: 30px 30% 0 10px;
position: relative;
float: left;
}

.esense-overlay .esense-overlay-info .esense-overlay-file span {
position: relative;
text-decoration: none;
margin: 0;
float: left;
padding: 0;
transition: all 0.5s;
}

.esense-overlay .esense-overlay-info .esense-overlay-file span:before {
content: "»";
}

/*
.esense-overlay .esense-overlay-info .esense-overlay-file span:after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
float: left;
height: 22px;
border-top: 2px solid #000;
border-bottom: 10px solid #000;
}
*/

.esense-overlay .esense-overlay-info .esense-overlay-file em {
margin: 7px 0 0 5px;
float: left;
}

.esense-overlay.horizontal .esense-overlay-info small {
position: absolute;
bottom: 20px;
right: 0;
text-align: right;
width: 30%;
margin: 23px 10px 0 -10px;
color: rgba(255,255,255,0.5);
}

.esense-overlay.vertical .esense-overlay-info small {
position: relative;
width: 100%;
display:block;
margin: -57px 0 0 0;
padding: 20px 0 20px 0;
float: none;
text-align: center;
}

.esense-overlay.vertical.black .esense-overlay-info small {
border-top: 1px solid rgba(255,255,255,0.5);
}

.esense-overlay.vertical.white .esense-overlay-info small {
border-top: 1px solid rgba(0,0,0,0.75);
}

/* MEDIA */
.esense-overlay .esense-overlay-content {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-repeat: no-repeat;
background-position: center center;
background-color: transparent;
background-size: contain;
z-index: 9992;
opacity: 0;
transition: opacity 0.25s;
text-align: center;
float: left;
background-color: #fff;
}

.esense-overlay .esense-overlay-content img {
position: relative;
float: left;
}

.esense-overlay .esense-overlay-content.wide-on img {
width: 100%;
top: 50%;
transform: translateY(-50%);
}

.esense-overlay .esense-overlay-content.wide-off img {
height: 100%;
left: 50%;
transform: translateX(-50%);
width: auto !important;
max-width: 9999px !important;
}

/* BUTTONS */
.esense-overlay-close {
position: relative;
top: 0;
right: 0;
min-width: 50px;
height: 60px;
margin: 0;
z-index: 9995;
cursor: pointer;
transition: background-color 0.5s;
background-color: #fff;
display: block;
}

.esense-overlay-close > span {
position: absolute;
top: 24px;
right: 0;
width: 60px;
height: 60px;
float: right;
border-radius: 50%;
transition: background-color 0.75s;
text-indent: -9999px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
}

.esense-overlay-close > span:before,
.esense-overlay-close > span:after {
position: absolute;
content: "";
top: 29px;
left: 16px;
margin: 0;
width: 30px;
height: 2px;
padding: 0;
transition: background-color 0.25s;
background-color: #000;
}

.esense-overlay-close > span:before {
transform: rotate(45deg);
}

.esense-overlay-close > span:after {
transform: rotate(-45deg);
}

.esense-overlay-next,
.esense-overlay-prev {
position: absolute;
width: 30%;
top: 25%;
height: 50%;
margin: 35px 0 0 0;
background-color: transparent;
z-index: 9994;
text-indent: -9999px;
cursor: pointer;
}

.esense-overlay-prev {
left: -70px;
}

.esense-overlay-next {
right: -70px;
}

.esense-overlay-button {
position: absolute;
top: 50%;
margin-top: -10px;
width: 60px;
height: 60px;
float: left;
z-index: 1;
transition: background-color 0.75s;
border-radius: 50%;
box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
}

.esense-overlay-prev .esense-overlay-button {
float: left;
left: 0;
}

.esense-overlay-next .esense-overlay-button {
float: right;
right: 0;
}

.esense-overlay-next span:after,
.esense-overlay-prev span:after {
position: absolute;
top: 50%;
content: "";
width: 15px;
height: 15px;
margin-top: -10px;
transition: border-color 0.25s;
z-index: 2;
border-top: 3px solid #000;
}

.esense-overlay-next span:after {
margin-right: 4px;
}

.esense-overlay-prev span:after {
margin-left: 4px;
}

.esense-overlay-next span:after,
.esense-overlay-next span:before {
right: 20px;
transform: rotate(45deg);
border-right: 3px solid #000;
}

.esense-overlay-prev span:after,
.esense-overlay-prev span:before {
left: 20px;
transform: rotate(-45deg);
border-left: 3px solid #000;
}

.esense-overlay-counter {
position: absolute;
top: 0;
height: 50px;
line-height: 50px;
float: left;
z-index: 9996;
padding: 0;
text-align: left;
opacity: 0;
transition: opacity 0.5s;
background-color: #fff;
min-width: 100px;
}

/*
.esense-overlay-counter {
position: relative;
top: 0;
height: 50px;
line-height: 50px;
display: block;
z-index: 9996;
padding: 0 10px;
text-align: left;
opacity: 0;
transition: opacity 0.5s;
background-color: rgba(0,0,0,1);
min-width: 30px;
margin: 0 20px -50px 20px;
}
*/

.horizontal .esense-overlay-counter {
/*
left: 10px;
*/
left: 0;
}

.horizontal .esense-overlay-counter span {
color: #000;
top: 19px;
position: relative;
float: left;
}

.vertical .esense-overlay-counter {
right: 220px;
}

.esense-overlay-loading,
.esense-overlay-loading #loading-s,
.esense-overlay-loading #loading-h,
.esense-overlay-loading #loading-m {
position: absolute;
top: 0;
left: 0;
width: 49px;
height: 49px;

}

.esense-overlay-loading {
background-color: rgba(0,0,0,0.6);
border-radius: 50%;
top: 50%;
left: 50%;
margin: -24px 0 0 -24px;
z-index: 9994;
opacity: 1;
transition: opacity 0.5s;
}

.loaded .esense-overlay-loading {
opacity: 0;
}

.esense-overlay-loading:after {
position: absolute;
top: 23px;
left: 23px;
content: "";
width: 3px;
height: 3px;
background-color: rgba(255,255,255,0.9);
border-radius: 50%;
}

.esense-overlay-loading #loading-h:after,
.esense-overlay-loading #loading-m:after,
.esense-overlay-loading #loading-s:after {
content: "";
position: absolute;
top: 2px;
left: 24px;
width: 1px;
height: 23px;
background-color: rgba(255,255,255,0.3);
}

.esense-overlay-loading #loading-m:after {
top: 4px;
left: 24px;
width: 1px;
height: 20px;
background-color: rgba(255,255,255,0.6);
}

.esense-overlay-loading #loading-h:after {
top: 7px;
left: 24px;
width: 1px;
height: 18px;
background-color: rgba(255,255,255,0.9);
}

.esense-overlay-loading #loading-s {
-webkit-animation: rotating-s 6s linear infinite;
-moz-animation: rotating-s 6s linear infinite;
-ms-animation: rotating-s 6s linear infinite;
-o-animation: rotating-s 6s linear infinite;
animation: rotating-s 6s linear infinite;
}

.esense-overlay-loading #loading-m {
-webkit-animation: rotating-m 36s linear infinite;
-moz-animation: rotating-m 36s linear infinite;
-ms-animation: rotating-m 36s linear infinite;
-o-animation: rotating-m 36s linear infinite;
animation: rotating-m 36s linear infinite;
}

.esense-overlay-loading #loading-h {
-webkit-animation: rotating-h 216s linear infinite;
-moz-animation: rotating-h 216s linear infinite;
-ms-animation: rotating-h 216s linear infinite;
-o-animation: rotating-h 216s linear infinite;
animation: rotating-h 216s linear infinite;
}

/* H */
/* webkit */
@-webkit-keyframes rotating-h {
	from {
		-ms-transform: rotate(-40deg);
		-moz-transform: rotate(-40deg);
		-webkit-transform: rotate(-40deg);
		-o-transform: rotate(-40deg);
		transform: rotate(-40deg);
	} to {
		-ms-transform: rotate(320deg);
		-moz-transform: rotate(320deg);
		-webkit-transform: rotate(320deg);
		-o-transform: rotate(320deg);
		transform: rotate(320deg);
	}
}

/* others */
@keyframes rotating-h {
	from {
		-ms-transform: rotate(-40deg);
		-moz-transform: rotate(-40deg);
		-webkit-transform: rotate(-40deg);
		-o-transform: rotate(-40deg);
		transform: rotate(-40deg);
	} to {
		-ms-transform: rotate(320deg);
		-moz-transform: rotate(320deg);
		-webkit-transform: rotate(320deg);
		-o-transform: rotate(320deg);
		transform: rotate(320deg);
	}
}

* M */
/* webkit */
@-webkit-keyframes rotating-m {
	from {
		-ms-transform: rotate(40deg);
		-moz-transform: rotate(40deg);
		-webkit-transform: rotate(40deg);
		-o-transform: rotate(40deg);
		transform: rotate(40deg);
	} to {
		-ms-transform: rotate(400deg);
		-moz-transform: rotate(400deg);
		-webkit-transform: rotate(400deg);
		-o-transform: rotate(400deg);
		transform: rotate(400deg);
	}
}

/* others */
@keyframes rotating-m {
	from {
		-ms-transform: rotate(40deg);
		-moz-transform: rotate(40deg);
		-webkit-transform: rotate(40deg);
		-o-transform: rotate(40deg);
		transform: rotate(40deg);
	} to {
		-ms-transform: rotate(400deg);
		-moz-transform: rotate(400deg);
		-webkit-transform: rotate(400deg);
		-o-transform: rotate(400deg);
		transform: rotate(400deg);
	}
}

/* S */
/* webkit */
@-webkit-keyframes rotating-s {
	from {
		-ms-transform: rotate(160deg);
		-moz-transform: rotate(160deg);
		-webkit-transform: rotate(160deg);
		-o-transform: rotate(160deg);
		transform: rotate(160deg);
	} to {
		-ms-transform: rotate(520deg);
		-moz-transform: rotate(520deg);
		-webkit-transform: rotate(520deg);
		-o-transform: rotate(520deg);
		transform: rotate(520deg);
	}
}

/* others */
@keyframes rotating-s {
	from {
		-ms-transform: rotate(160deg);
		-moz-transform: rotate(160deg);
		-webkit-transform: rotate(160deg);
		-o-transform: rotate(160deg);
		transform: rotate(160deg);
	} to {
		-ms-transform: rotate(520deg);
		-moz-transform: rotate(520deg);
		-webkit-transform: rotate(520deg);
		-o-transform: rotate(520deg);
		transform: rotate(520deg);
	}
}

/* load error */
#ajax-error {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.8);
float: left;
z-index: 9999;
}

#ajax-error span {
position: absolute;
top: 50%;
left: 50%;
margin: -50px 0 0 -25%;
width: 50%;
height: 100px;
float: left;
color: #fff;
font-size: 15px;
line-height: 20px;
}

.esense-overlay-clean {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -10;
background-color: transparent;
background-color: rgba(0,0,0,0.001);
}

.esense-overlay-clean.clean {
z-index: 1000;
}@media only screen and (max-width : 1360px) {
	.esense-overlay-next {
	right: 0;
	}
	
	.esense-overlay-prev {
	left: 0;
	}
}

@media only screen and (min-width : 1360px) {
	.esense-overlay-button {
	background-color: transparent !important;
	box-shadow: none !important;
	}

	.esense-overlay-next span:after,
	.esense-overlay-prev span:after {
	border-top: 3px solid #000;
	}

	.esense-overlay-next span:after,
	.esense-overlay-next span:before {
	border-right: 3px solid #000;
	}
	
	.esense-overlay-prev span:after,
	.esense-overlay-prev span:before {
	border-left: 3px solid #000;
	}
	
	.esense-overlay-prev {
	left: -50px;
	}

	.esense-overlay-next {
	right: -50px;
	}

}

@media only screen and (max-width : 1220px) {
	.slider-prev {
	left: -10px;
	width: 80px;
	}
	
	.slider-next {
	right: 14px;
	width: 80px;
	}

	.slider-prev,
	.slider-next {
	opacity: 1;
	cursor: pointer;
	zoom: 1;
	}

	.slider-next:after,
	.slider-prev:after {
	z-index: -1;
	position: absolute;
	width: 60px;
	height: 60px;
	float: left;
	top: 50%;
	margin-top: -30px;
	border-radius: 50%;
	content: "";
	box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
	}
	
	.slider-next:before {
	right: 35px;
	}

	.slider-prev:before {
	left: 35px;
	}

	.slider-next:after {
	right: 10px;
	}

	.slider-prev:after {
	left: 10px;
	}

}


@media only screen and (max-width : 950px) {
	.list li {
	width: 50%;
	}
	
	.list.c-50 li {
	width: 100%;
	}

	.list.images li {
	width: 25%;
	}
	
	.list.images.c-50 li {
	width: 50%;
	}
	
	#detail .c-50 > .c-50 {
	width: 100%;
	}

	#menu-wrapper {
	width: 50%;
	}

	#header a#friend-button {
	left: 76%;
	}

}

@media only screen and (max-width : 850px) {
	.box,
	.gallery-list-multi li,
	.performance li,
	#gallery-list li {
	width: 50%;
	}
	
	#menu-wrapper #menu {
	margin-right: 36px;
	}
	
	.image.c-25	{
	width: 50%;
	}

	.gallery .image.c-50 img {
	width: 100%;
	}

	.section.left .image.small {
	margin-right: 0;
	}

	.section.right .image.small {
	margin-left: 0;
	}

	.list.images li {
	width: 50%;
	}
	
	.list.images.c-50 li {
	width: 100%;
	}
	
	.history {
	width: 100%;
	margin-left: 0;
	}
	
}

@media only screen and (max-width : 850px) {
	#search {
	width: 33.3333333333%;
	}
	
	#footer > p {
	width: 50%;
	}

}

@media only screen and (max-width : 800px) {

	#showtime {
	top: 14rem;
	right: 7rem;
	width: 26rem;
	height: 10rem;
	padding: 1rem 0 1rem 1rem;
	border-radius: 2rem;
	}

	#showtime .showtime-logo {
	font-size: 3.48rem;
	line-height: 3.4rem;
	}
	
	#showtime .showtime-logo.one {
	padding-right: 1.4rem;
	}

	#showtime .showtime-logo.arrow {
	padding-top: 0.2rem;
	margin-bottom: -0.2rem;
	margin-right: 1rem;
	}
	
}

@media only screen and (max-width : 700px) {
	#header a#friend-button {
	top: 40px;
	width: 80px;
	max-width: 20%;
	left: 10%;
	}

	#search,
	#search.on {
	transition: width 0.5s;
	}

	#search.off {
	transition: width 0s;
	}

	#showtime {
	top: 7rem;
	}
	
	
	#sub-menu-level3 {
	border-top: none;
	}
}

@media only screen and (max-width : 700px) {
	
		
	.close-button {
	display: block;
	}

	#search,
	#search.on {
	transition: height 0s;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	height: 49px;
	}
	
	#search.off {
	height: 0;
	transition: height 0s;
	width: 100%;
	}
	
	#search form {
	background-color: transparent;
	margin-left: 0;
	}

	#search form #search-link {
	float: left;
	width: 50px;
	margin-right: -50px;
	margin-left: 0;
	}
	
	#search form #search-field {
	float: right;
	width: 100%;
	padding-left: 50px;
	margin-left: 0;
	height: 49px;
	border-bottom: 2px solid #fff;
	}

	#page #content,
	#home #content,
	#header {
	border-bottom: none;
	}
	
	.text.list-text.c-50,
	#detail .c-50,
	.box {
	width: 100%;
	}
	
	#detail .c-50 > .c-50 {
	width: 50%;
	}
	
	.box .match {
	margin-bottom: 6px;
	min-height: 90px;
	padding: 6px 12px 12px 12px;
	}
	
	.center.page-w {
	padding-left: 12px;
	padding-right: 12px;
	}

	#content #sub-menu .center,
	#content #anchor-menu .center {
	padding-left: 0;
	padding-right: 0;
	}
	
	#content #sub-menu.fixed .center,
	#content #anchor-menu.fixed .center {
	padding-left: 12px;
	padding-right: 12px;
	}
	
	#fixed-menu.border-b > div  > div {
	border-bottom: 2px solid #000;
	padding-bottom: 13px;
	}
	
	#menu-button {
	margin-top: 4px;
	}
	
	#sub-menu-button, 
	#anchor-menu-button {
	padding: 12px 0;
	}
	
	#sub-menu-button:after, 
	#anchor-menu-button:after {
	margin-top: -2px;
	right: 4px;
	}
	
	#contact {
	display: none;
	}
	
	#search-button {
	overflow: hidden;
	text-indent: -9999px;
	width: 24px;
	height: 24px;
	margin: 0;
	position: relative;
	}

	#search-button:before {
	content: "";
	position: absolute;
	top: 2px;
	left: 1px;
	border: 2px solid #000;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	transition: border-color 0.25s;
	}
	
	#search-button:after {
	content: "";
	position: absolute;
	bottom: 3px;
	right: 1px;
	width: 8px;
	height: 2px;
	background-color: #000;
	transform: rotate(45deg);
	transition: background-color 0.25s;
	}
	
	#header .title-2,
	#header h1 {
	text-align: center;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	}
	
	#detail #header h1 {
	text-align: left;
	position: relative;
	margin-top: 10px;
	}
	
	#header .title-2 span,
	#header h1 span {
	display: none;
	}
	
	#menu-button.open {
	z-index: 10;
	}
	
	#menu-wrapper {
	left: 0;
	width: 100%;
	margin-top: -300vh;
	transition: margin 0s;
	overflow: hidden;
    overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	-moz-overflow-scrolling: touch;
	-ms-overflow-scrolling: touch;
	-o-overflow-scrolling: touch;
	overflow-scrolling: touch;
	}
	
	#menu-wrapper.open {
	margin-top: 48px;
	height: 100vh;
	}
	
	#menu-wrapper #menu {
	margin: 0 0;
	box-shadow: none;
	padding-bottom: 100px;
	}
	
	#menu-wrapper #menu a {
	padding: 10px 12px;
	border-bottom: 2px solid #fff;
	}
	
	.box .bg-white {
	border: none;
	border-bottom: 2px solid #000;
	}
	
	#footer {
	margin-top: 0;
	}
	
	#footer-button #language {
	line-height: 48px;
	}
	
	#paging a,
	#footer-button a, 
	#footer-button span {
	width: 48px;
	height: 48px;
	bottom: 12px;
	right: 12px;
	}

	.slider-next:after,
	.slider-prev:after {
	width: 48px;
	height: 48px;
	margin-top: -24px;
	}
	
	.esense-overlay-button {
	width: 48px;
	height: 48px;
	}
	
	.esense-overlay-close span {
	width: 48px;
	height: 48px;
	top: 14px;
	}

	.esense-overlay-prev span:after {
	left: 15px;
	margin-top: -7px;
	width: 12px;
    height: 12px;
    border-width: 2px;
	}
	
	.esense-overlay-next span:after {
	right: 15px;
	margin-top: -7px;
	width: 12px;
    height: 12px;
    border-width: 2px;
	}
	
	.esense-overlay-close > span:before,
	.esense-overlay-close > span:after {
	top: 23px;
    left: 10px;
	}
	
	.slider-next:before,
	.slider-prev:before {
    width: 12px;
    height: 12px;
    margin-top: -6px;
	}
	
	.slider-prev:before {
	border-top: 2px solid #000;
    border-left: 2px solid #000;
    left: 30px;
	}
	
	.slider-next:before {
	border-top: 2px solid #000;
    border-right: 2px solid #000;
    right: 30px;
	}
	
	div.scrollingHotSpotLeft:after,
	div.scrollingHotSpotRight:after {
	width: 48px;
	height: 48px;
	margin-top: -24px;
	}

	div.scrollingHotSpotRight:before,
	div.scrollingHotSpotLeft:before {
	width: 10px;
	height: 10px;
	margin-top: -6px;
	}
	
	#paging #next:before,
	#paging #previous:before,
	#footer-button #top:before {
	left: 18px;
	top: 16px;
	}

	#paging #next:after,
	#paging #previous:after,
	#footer-button #top:after {
	left: 23px;
	top: 16px;
	height: 18px;
	}
	
	#paging #close:before,
	#paging #close:after {
	width: 23px;
	left: 13px;
	top: 23px;
	}
	
	#paging a {
	right: 0;
	}
	
	#body-search form,
	.text .c-75,
	.text.c-50,
	.image.c-50 {
	width: 100%;
	}

	.text.list-text.cols p {
	-webkit-column-count: 1;
	-moz-column-count: 1;
	-ms-column-count: 1;
	-o-column-count: 1;
	column-count: 1;
	-webkit-column-gap: 0;
	-moz-column-gap: 0;
	-ms-column-gap: 0;
	-o-column-gap: 0;
	column-gap: 0;
	}
	
	#body-search form {
	padding-right: 24px;
	}
	
	.image.c-25	{
	width: 50%;
	}
	
	.section.left .text {
	padding-right: 24px;
	}

	.section.right .text {
	padding-left: 0;
	}
	
	.section.left .image {
	padding-left: 0;
	padding-top: 24px;
	}

	.section.right .image {
	padding-top: 24px;
	padding-right: 24px;
	}
	
	#sub-menu-button,
	#anchor-menu-button {
	display: block;
	}
	
	#sub-menu ul,
	#anchor-link-wrapper ul {
	display: none;
	width: 100%;
	float: left;
	border-top: 2px solid #000;
	}

	#sub-menu ul li,
	#sub-menu ul li a,
	#anchor-link-wrapper ul li,
	#anchor-link-wrapper ul li a {
	width: 100%;
	float: left;
	padding-right: 0;
	}
	
	#a-to-z-menu {
	display: none;
	}
	
	#page .section:last-child {
	margin-bottom: 24px;
	}

	.list.c-50 {
	width: 100%;
	margin-top: 24px;
	}
	
	.list.c-50 li {
	width: 50%;
	}
	
	.list.images.c-50 li {
	width: 50%;
	}

	::-webkit-input-placeholder { /* WebKit, Blink, Edge */
	color: #fff;
	}
	:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: #fff;
	opacity: 1;
	}
	::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: #fff;
	opacity: 1;
	}
	:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #fff;
	}
	:placeholder-shown { /* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */
	color: #fff;
	}
	
	#search form #search-field,
	#search form #search-field:placeholder-shown {
	color: #fff;
	}
	
	#sub-inner-wrapper,
	#anchor-inner-wrapper {
	overflow: hidden;
	margin-right: -15px;
	}

	#sub-scroll-wrapper,
	#anchor-scroll-wrapper {
	margin-right: -20px;
	display: block;
	clear: both;
	padding-right: 20px;
	overflow-y: scroll;
	}
	
	#sub-menu.open #sub-scroll-wrapper,
	#anchor-menu.open #anchor-scroll-wrapper {
	max-height: auto;
	}

	#sub-menu-button.open,
	#anchor-menu-button.open {
	border-bottom: 2px solid #000;
	margin-bottom: -2px;
	}	
	
	/*
	.social-button,
	*/
	.language {
	display: none;
	}
	
	#meta-social-wrapper {
	position: absolute;
	right: 10px;
	top: 0;
	margin-top: 36px;
	}
	
	#fixed-menu.border-b #meta-social-wrapper {
	margin-top: 100px;
	}
	
	#meta-social-wrapper .social-button {
	clear: both;
	margin-left: 0;
	margin-bottom: 8px;
    margin-top: 0;
	}
	
	#menu-wrapper #menu a.social-menu.social-button,
	#footer-button #language {
	display: block;
	}
	
	.form-wrapper .txt-form-item,
	.form-wrapper .select-fieldset,
	.form-wrapper .radio-fieldset,
	.form-wrapper .checkbox-fieldset,
	.form-wrapper .form-row > label {
	width: 100%;
	}
	
	.form-wrapper .form-row.txt-row label,
	.form-wrapper .form-row.select > label,
	.form-wrapper .form-row > label {
	padding: 12px 0 4px 0;
	}
	
	.form-wrapper .txt-form-item,
	.form-wrapper .select-fieldset {
	padding-right: 0;
	}	
	
	.form-wrapper .form-row {
	padding: 0;
	}
	
	.form-wrapper .descr {
	color: #999;
	padding: 6px 10px 0 0;
	}
	
	.form-row.checkbox .form-item,
	.form-row.radio .form-item {
	background-color: rgba(0,0,0,0.1);
	border-bottom: 1px solid #fff;
	padding: 5px 0;
	}
	
	.form-wrapper .form-row {
	border-bottom: none;	
	}
	
	.form-row .moz-select {
    border: 1px solid rgba(0,0,0,0.2);
	}
	
	.field-inner-wrap {
	width: 100%;
	}
	
	form .file-upload {
    border: 1px solid rgba(0,0,0,0.2);
	}
	
	.form-wrapper .form-row.button-wrapper {
	padding-left: 0;
	}
	
	.form-wrapper .form-row.button-wrapper {
	margin-bottom: -12px;
	}
	
	.form-wrapper .form-row.button-wrapper .button {
	margin: 0 0 12px 0;
	width: 100%;
	padding: 0;
	}

	.form-wrapper .txt-row .descr {
	border-top: none;
	}

	.text.list-text.c-50 {
    width: 100%;
    padding-right: 0;
	}
}

@media only screen and (max-width : 600px) {

	.list li,
	.list.c-50 li {
	width: 100%;
	}


	/* performance, galleries, press */
	.list.images.c-50 li,
	.performance li,
	.gallery-list-multi li,
	#gallery-list li {
	width: 100%;
	}
	
	.gallery-list-multi li,
	.performance li,
	#gallery-list li {
	margin-bottom: 6px;
	}
	
	.gallery-list-multi .image,
	.performance .image,
	#gallery-list .image {
	width: 100%;
	float: left;
	}
	
	.gallery-list-multi,
	.performance,
	#gallery-list {
	border-bottom: 2px solid #000;
	padding-bottom: 22px;
	padding-top: 24px;
	margin-bottom: 20px;
	}

	.list.images li {
	width: 100%;
	position: relative;
	padding-bottom: 6px;
	}

	.list.images li a {
	width: 100%;
	position: relative;
	}
	
	.gallery-list-multi .image img,
	.gallery-list-multi .image span,
	.performance .image img,
	#gallery-list .image img,
	.performance .image span,
	#gallery-list .image span {
	/*
	width: 96px;
	*/
	width: 144px;
	float: left;
	margin-right: -100%;
	}

	.list.images li span,
	.list.images.c-50 li span {
	width: 144px;
	float: left;
	margin-right: -100%;
	}
	
	.gallery-list-multi .image figcaption,
	.performance .image figcaption,
	#gallery-list .image figcaption,
	.list li .press figcaption {
	width: auto;
	float: left;
	padding: 0 0 12px 156px;
	margin-top: -5px;
	}
	
	.list li .press figcaption {
	padding: 0 0 12px 156px;
	}
	
	.gallery-list-multi strong,
	.performance strong,
	#gallery-list strong {
    font-size: 30px;
    line-height: 42px;
    margin-top: 0;
	}
	
	.history {
	padding-left: 47px;
	padding-right: 24px;
	}
	
	.history:last-child {
	border-bottom: 2px solid #000;
	}
	
	.history .text-wrap.match,
	.history .image-wrap.match {
	width: 100%;
	border: none;
	border-left: 2px solid #000;
	padding: 12px 0 12px 12px;
	}
	
	.history .image-wrap.match {
	padding: 0 0 24px 12px;
	}
	
	.history.no-image .text-wrap.match {
	padding-bottom: 24px
	}
	
	.history.no-image .image-wrap.match {
	display: none;
	}
	
	.history dt {
	margin: 0 0 0 -47px;
	}

	#footer > p {
	width: 100%;
	}

}

@media only screen and (max-width : 500px) {
	
	#detail .c-50 > .c-50,
	.gallery .image.c-50 img,
	.image.c-25,
	.section.gallery .image img {
	width: 100%;
	}
	
	#header a#friend-button {
	top: 40px;
	}

	#showtime {
	top: 10rem;
	right: 4rem;
	width: 21rem;
	height: 8rem;
	padding: 1rem 0 1rem 1rem;
	border-radius: 2rem;
	}

	#showtime .showtime-logo {
	font-size: 2.8rem;
	line-height: 2.6rem;
	}
	
	#showtime .showtime-logo.one {
	padding-right: 0.8rem;
	}

	#showtime .showtime-logo.arrow {
	padding-top: 0.2rem;
	margin-bottom: -0.2rem;
	margin-right: 1rem;
	}

}

@media only screen and (max-width : 440px) {

	#logo {
	padding: 0 20px;
	}

}



@media only screen and (max-width : 880px) {
	#meta-social-wrapper {
    position: absolute;
    right: 10px;
    top: 0;
    margin-top: 0;
	}
	
	#meta-social-wrapper .social-button {
    clear: both;
    margin-left: 0;
    margin-bottom: 8px;
    margin-top: 0;
	}
	
	#header #search.on {
	width: 200px;
	}
}

@media only screen and (max-width : 1024px) {
	#home #header strong.title-2 span.menu-title-wrap {
	display: none;
	}
	#home #header strong.title-2 span.menu-teaser-wrap {
	display: block;
	}
	
	#logo-wrapper .c-50 {
	width: 100%;
	}
	
	#logo-wrapper .sponsor,
	#logo-wrapper time.c-50 {
	display: none;
	}
	
	#logo-wrapper.text-logo .has-bubbles .sponsor.heart {
	display: block;
	position: relative;
	right: auto;
	left: 0;
	max-width: 100%;
	transform: translateX(0);
	margin-top: 40px;
	}
	
	#logo-wrapper.text-logo .c-50.no-text1 {
	min-height: 20px;
	}
}

@media only screen and (max-width: 700px) {
	.box .bg-white {
    border: none;
    /*border-bottom: 2px solid #000;*/
	/*border-left: 2px solid #000;*/
	border: 2px solid #000;
	}
	
	#header #logo-wrapper h1 {
	text-align: left;
	position: relative;
	}
	
	#meta-social-wrapper {
    margin-top: 34px;
	}
	
	#header .meta-wrap {
	position: absolute;
	top: 0;
	right: 0;
	left: auto;
	margin-left: 0;
	margin-right: 12px;
	}
	
	#header #search.on {
	position: absolute;
	right: 0;
	left: auto;
	width: 100vw;
	margin-right: -12px;
	padding-left: 12px;
	}
	
	#logo-wrapper.text-logo {
	font-size: 40px;
	line-height: 100%;
	}
	
	#footer-button #language {
	color: #fff !important;
	line-height: 44px;
	padding-top: 4px;
	}
	
	#logo-wrapper.text-logo .bubble {
	font-size: 20px;
	line-height: 24px;
	}
	
	#logo-wrapper.text-logo .bubble span {
	/*padding: 8px 24px 20px 24px;*/
	/*line-height: 34px;*/
		font-size: 16px;
		padding: 4px 8px 1px 8px;
		border-width: 0.1rem;
	}

	#logo-wrapper.text-logo .bubble.blue {
		margin-left: -5px;
	}

	#logo-wrapper.text-logo .bubble.blue span:after,
	#logo-wrapper.text-logo .bubble.green span:after {
	width: 62px;
	height: 62px;
	}
	
	#logo-wrapper.text-logo .bubble.blue span:before,
	#logo-wrapper.text-logo .bubble.green span:before {
	width: calc( 100% - 61px );
	height: 62px;
	}
	
	#logo-wrapper.text-logo .has-bubbles .sponsor.heart {
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 0;
	}
	
}

@media only screen and (max-width: 500px) {
	#logo-wrapper.text-logo .bubble {
	font-size: 16px;
	}
}


@media only screen and (max-width: 375px) {
	#logo-wrapper.text-logo .has-bubbles .sponsor.heart,
	#logo-wrapper.text-logo .bubble {
	display: none;
	}
}

/**** Get the colors from the config page ****/


	
	.text #search-result-list .url-link,
	.text table a,
	p a,
	.text li a,
	a.open,
	a.trail,
	a.active {
	color: #ff0000;
	}
	
	.history.round-color dt,
	.text strong.red {
	color: #ff0000;
	border: 2px solid #ff0000;
	}
	
	.form-wrapper .form-row.button-wrapper .button.submit,
	.history.round-color dt,
	#menu-wrapper #menu,
	.esense-overlay-button,
	.esense-overlay-close > span,
	#paging a,
	#footer-button a,
	#footer-button span,
	.bg-red {
	background-color: #ff0000;
	}
	
	.social-button:hover,
	.list li .file:hover,
	.esense-overlay-close:hover:before,
	.esense-overlay-close:hover:after,
	#body-search-button:hover:after,
	#search-button:hover:after,
	#search form #search-link:hover:after,
	#body-search form #search-link:hover:after,
	#menu-button:hover span,
	#menu-button:hover span:before,
	#menu-button:hover span:after {
	background-color: #ff0000;
	}
	
	#a-to-z-link-wrapper a:hover,
	.box a.bg-white:hover strong,
	.box a.bg-white:hover span,
	#sub-menu-button:hover,
	#anchor-menu-button:hover,
	a:hover,
	#anchor-menu a:hover,
	#search-button:hover,
	#body-search-button:hover,
	#header a:hover {
	color: #ff0000;
	}

	@media only screen and (min-width : 1360px) {
		.esense-overlay-next:hover span:after,
		.esense-overlay-prev:hover span:after {
		border-color: #ff0000 !important;
		}
	}
	
	.text #search-result-list a:hover strong,
	.museum:hover .underline,
	#footer a:hover,
	#footer p a:hover,
	p a:hover,
	.text li a:hover {
	color: #ff0000;
	border-color: #ff0000;
	}
	
	.text table a:hover,
	p a:hover,
	.text li a:hover {
	border-bottom: 1px solid #ff0000;
	}
	
	.box a.bg-white:hover,
	.scrollingHotSpotLeft:hover:before,
	.scrollingHotSpotRight:hover:before,
	#sub-menu-button:hover:after,
	#anchor-menu-button:hover:after,
	#search-button:hover:before,
	#body-search-button:hover:before,
	#search form #search-link:hover:before,
	#body-search form #search-link:hover:before {
	border-color: #ff0000;
	}

	@media only screen and (min-width : 1360px) {
		.esense-overlay-next:hover span:after,
		.esense-overlay-prev:hover span:after,
		#paging #next:hover:before,
		#paging #previous:hover:before,
		#footer-button #top:hover:before {
		border-color: #ff0000;
		}
	}

	.slider-prev:hover:before,
	.slider-next:hover:before {
	border-color: #ff0000;
	}

	@media only screen and (max-width : 700px) {
		.file:hover .size {
		color: #ff0000;
		}
	}
	
	@media only screen and (max-width : 1220px) {
		.slider-next:after,
		.slider-prev:after {
		background-color: #ff0000;
		}
	}
	
	@media only screen and (max-width : 700px) {
		#search,
		#search.on {
		background-color: #ff0000;
		}
	}
	










	.box .bg-red {
	/*border-left: 2px solid #ff0000;*/
	/*border-bottom: 2px solid #ff0000;*/
	border: 2px solid #ff0000;
	color: #ff0000;
	background-color: #fff;
	}
	
	.box .bg-red.txt-red strong {
	color: #ff0000;
	}
	
	.box a.bg-red:hover {
	background-color: #fff !important;
	}
	
	.box a.bg-red strong {
	transition: color 0.25s ease-in-out;
	}
	
	.box a.bg-red:hover strong {
	color: #ff0000 !important;
	}
	
	.history.round-color dt {
	background-color: #fff !important;
	border-color: #ff0000;
	}
	
	.history.round-color dt span {
	color: #ff0000;
	}
	
	.list li .file:hover {
	background-color: #fff;
	border: 2px solid #ff0000;
	}
	
	.list .file:hover span,
	.list .file:hover strong {
	color: #ff0000 !important;
	}
	
	.list li .file:hover:after {
	/*border-top: 2px solid #ff0000;*/
	/*border-left: 2px solid #ff0000;*/
	border: 2px solid #ff0000;
	}

	.list li .file:hover:before {
	background-color: #ff0000;
	}
	
	#logo-wrapper.text-logo .sponsor a:hover {
	color: #ff0000;
	}

	#content .text strong,
	#content .text strong * {
	color: #ff0000 !important;
	}
	
	.box .bg-white.bg-red2 {
	background-color: #ff0000;
	}

	.box .bg-white.bg-red2.font-white:hover * {
	color: #ff0000;
	}



