/*DESKTOP*/

/* intro */
.cross_img.img_1 {
	width: calc(24.62vw * 0.8);
    height: calc(12.5vw * 0.8);
}

.cross_img.img_1:hover {
	z-index: 50;
}

.cross_img.img_2 {
	width: calc(22.5vw * 0.75);
    height: calc(22.5vw * 0.75);
	/*
	border: var(--borderSetup);
	border-radius: var(--borderRadius);
	*/
}

.cross_img.img_2:hover {
	z-index: 50;
}

.cross_img.img_3 {
	width: calc(14.8vw * 0.8);
    height: calc(14vw * 0.8);
}

.cross_img.img_3:hover {
	z-index: 50;
}

.cross_img.img_4 {
	width: calc(22.5vw * 0.8);
    height: calc(17.3vw * 0.8);
}

.cross_img.img_4:hover {
	z-index: 50;
}

.cross_img.img_5 {
	width: calc(13vw * 0.9);
    height: calc(17.3vw * 0.9);
}

.cross_img.img_5:hover {
	z-index: 50;
}

.cross_img.img_6 {
	width: calc(14.8vw * 0.85);
    height: calc(13.6vw * 0.85);
}

.cross_img.img_6:hover {
	z-index: 50;
}

.cross_img.img_7 {
	width: calc(22.5vw * 0.75);
    height: calc(15.9vw * 0.75);
}

.cross_img.img_7:hover {
	z-index: 50;
}

.cross_img {
	top: -25vw;
	position: fixed;
	display: flex;
    justify-content: center;
    align-items: center;
}

.cross_img img {
	max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
	-webkit-filter: drop-shadow(.66vw .99vw .99vw rgba(0,0,0,0.33));
    filter: drop-shadow(.66vw .99vw .99vw rgba(0,0,0,0.33));
}

.cross_img .caption {
	width: auto;
	height: auto;
	position: absolute;
	/*
    top: 0;
    right: 0;
	*/
	margin: var(--gridMargin);
	font-family: "Favorit Mono Regular", sans-serif;
	font-size: var(--smallFont);
	opacity: 0;
	transition: var(--transitionTime);
}

.cross_img:hover .caption {
	opacity: 1;
}

.cross_img .caption a {
	padding: var(--paddingX) var(--paddingY);
	border: var(--borderSetup);
	border-radius: var(--borderRadius);
	background: var(--blockColor);
	transition: var(--transitionTime);
	white-space: nowrap;
}

.cross_img .caption a:hover {
	color: var(--blockColor);
	background: var(--bodyColor);
}

/* lang switcher */
.en, .de, .es {
	display: none;
}
	
.en.active, .de.active, .es.active {
	display: block;
}

#more_en, #more_de, #more_es {
	display: none;
}

#dots_en, #dots_de, #dots_es {
	border-bottom: var(--borderSetup);
}

#more_button_en, #more_button_de, #more_button_es {
	border:none;
	border-bottom: var(--borderSetup);
	background:none;
	padding: 0;
	cursor: pointer;
	font-family: "Favorit Light", sans-serif;
	font-size: var(--textFont);
	/*font smooth*/
	-webkit-font-smoothing: smooth !important;
	-moz-osx-font-smoothing: smooth !important;
	text-rendering: geometricPrecision !important;
}

.sub_title, .lang_switch button, .contributors {
		font-size: var(--mediumFont);
}

.contributors {
	display: inline-block;
}
	
.lang_switch {
	margin-bottom: calc(var(--rowMargin)*1.5);
}
	
.lang_switch button {
	border: none;
	background: none;
	padding: 0;
	color: var(--blockColor);
	cursor: pointer;
	font-family: "Favorit Light", sans-serif;
	/*font smooth*/
	-webkit-font-smoothing: smooth !important;
	-moz-osx-font-smoothing: smooth !important;
	text-rendering: geometricPrecision !important;
	transition: var(--transitionTime);
}
	
.lang_switch button:hover {
	color: var(--bodyColor);
}
	
.lang_switch button.active {
	color: var(--bodyColor);
}

/* sections */
.bg_color {
	width: 100vw;
  	height: 100vh;
	position: fixed;
  	top: 0;
  	left: 0;
  	z-index: -1;
}

.entry_header {
	grid-column: 3 / 9;
	/*position: fixed;*/
	/*
	position: -webkit-sticky;
    position: sticky;
	*/
	top: var(--topMargin);
	margin-bottom: calc(var(--rowMargin)*3);
}

.entry_header .event {
	font-family: "Favorit Mono Regular", sans-serif;
    font-size: var(--smallFont);
}

.entry_header .event_title {
	text-transform: uppercase;
}

/*
.entry_header mono {
	font-family: "Favorit Mono Regular", sans-serif;
	font-size: var(--smallFont);
}
*/

.entry_header .join {
	font-family: "Favorit Mono Regular", sans-serif;
	font-size: var(--smallFont);
}

.entry_header .join:hover {
	border-bottom: var(--borderSetup);
}

.entry_content {
}

.headline {
	/*
	font-family: "Favorit Light", sans-serif;
	font-size: var(--textFont);
	*/
	grid-column: 3 / 9;
	margin-top: calc(var(--rowMargin)*2);
	margin-bottom: var(--rowMargin);
}

.text, .src {
	font-family: "Favorit Light", sans-serif;
	font-size: var(--textFont);
	grid-column: 3 / 9;
	margin-bottom: var(--rowMargin);
}

.text:last-child {
	margin-bottom: 0;
}

.text .cross_category {
	position: relative;
	display: inline;
}

.text .cross_category span {
	padding-bottom: var(--rowMargin);
	font-family: "Favorit Regular", sans-serif;
	color: white;
	text-shadow: .33vw .33vw .66vw rgba(0,0,0,0.5);
	cursor: pointer;
}

.text .cross_category a {
	width: 20vw;
	position: absolute;
	top: calc(var(--rowMargin)*1.5);
	left: 1.25rem;
	/*margin-left: 50%;*/
	font-family: "Favorit Mono Regular", sans-serif;
	font-size: var(--smallFont);
	/*text-transform: uppercase;*/
	padding: calc(var(--paddingX)*1.25) var(--paddingY) calc(var(--paddingX)*0.75) var(--paddingY);
	border: var(--borderSetup);
	border-radius: var(--borderRadius);
	background-color: var(--blockColor);
	opacity: 0;
	pointer-events: none;
	transition-property: background, background-color, color;
	transition-duration: var(--transitionTime);
}

.text .cross_category:hover a {
	opacity: 1;
	pointer-events: auto !important;
}

.text .cross_category a:hover {
	color: var(--blockColor);
	background-color: var(--bodyColor);
}

/*
.text p:not(:last-child) {
	margin-bottom: var(--rowMargin);
}
*/

.src {
	/*max-height: calc(100vh - (var(--marginTop)*10));*/
	/*position: relative;*/
	margin-top: calc(var(--rowMargin)*1.5);
	margin-bottom: calc(var(--rowMargin)*1.5);
	/*padding:56.25% 0 0 0;*/
}

.src img, .src iframe, .src audio {
	width: 100%;
	height: auto;
}

.src.small {
	grid-column: 5 / 7;
	/*
	width: 35%:
	height: auto;
	margin-left: 50%;
	translate: -50% 0;
	*/
}

.src .embed_video {
	--videoWidth: 1920;
	--videoHeight: 1000;
	position: relative;
	padding-bottom: calc(var(--videoHeight) / var(--videoWidth) * 100%);
	overflow: hidden;
	max-width: 100%;
	background: black;
}
.src .embed_video iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.src audio,
.src audio::-webkit-media-controls-panel,
.src audio::-webkit-media-controls-mute-button {
	border: var(--borderSetup);
	border-radius: var(--borderRadius);
	background: var(--bodyColor);
}

/*
.src iframe,
.src object,
.src embed {
  width: 100%;
  height: 100%;
}
*/

.src .caption {
	font-size: var(--smallFont);
	text-align: left;
	margin-top: calc(var(--rowMargin)*0.5);
}

.footnotes {
	font-family: "Favorit Light", sans-serif;
    font-size: var(--smallFont);
    grid-column: 3 / 9;
    margin-top: calc(var(--rowMargin)*3);
    /*margin-bottom: var(--rowMargin);*/
	column-count: 3;
    column-gap: var(--gridMargin);
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
.footnotes .active {
	display: inline !important;
}
/*
.footnotes p {
	text-indent: 1.25rem;
}
.footnotes span {
	position: absolute;
}
*/

.contributors {
	font-family: "Favorit Light", sans-serif;
	font-size: var(--smallFont);
	grid-column: 3 / 9;
	margin-top: calc(var(--rowMargin)*3);
	/*margin-bottom: var(--rowMargin);*/
}

/* MOBILE */
@media (max-width:1024px) {

#more_button_en, #more_button_ge, #more_button_es {
	font-size: var(--largeFont);
	color: var(--bodyColor) !important;
}

.lang_switch button {
	font-size: var(--largeFont);
}

.cross_img.img_1 {
	width: calc(24.62vw * 1.5);
    height: calc(12.5vw * 1.5);
}

.cross_img.img_2 {
	width: calc(22.5vw * 1.5);
    height: calc(22.5vw * 1.5);
}

.cross_img.img_3 {
	width: calc(14.8vw * 1.5);
    height: calc(14vw * 1.5);
}

.entry_header {
	grid-column: 1 / 11;
	position: static;
}

.entry_header .join {
	font-size: var(--mediumFont);
}

.headline {
    grid-column: 1 / 11;
    margin-top: calc(var(--rowMargin)*3);
    margin-bottom: var(--rowMargin);
    font-size: var(--largeFont);
}

.headline h2.medium_bold_font {
    font-size: var(--largeFont);
}

.text, .src {
	font-size: var(--largeFont);
	grid-column: 1 / 11;
	margin-bottom: var(--rowMargin);
}

.footnotes {
	grid-column: 1 / 11;
}

.contributors {
	grid-column: 1 / 11;
	font-size: var(--smallFont);
}

}