@charset "UTF-8";


/* -----  FONTS  --------------------------------------------- */

@font-face {
    font-family: 'DIN';
    src: url('../fonts/D-DIN.woff2') format('woff2'),
         url('../fonts/D-DIN.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'DIN';
    src: url('../fonts/D-DIN-Bold.woff2') format('woff2'),
         url('../fonts/D-DIN-Bold.woff') format('woff');
    font-weight: 700;
    font-style: bold;
}

@font-face {
    font-family: 'DIN';
    src: url('../fonts/D-DIN-Italic.woff2') format('woff2'),
         url('../fonts/D-DIN-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
} 



   



/* -----  RESET  ---------------------------------------- */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  list-style: none;
}

article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, summary {
  /* Add correct display for IE 9- and some newer browsers */
  display: block;
}


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

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


/* -----  TYPO  ------------------------------------------- */

h1, h2, h3, h4, h5, h6,
p, figure, pre {
  /* Reset font-sizes and normalize margins */
  font-size: inherit;
  line-height: inherit;
  margin: 0 0 1.1rem;
}

/* Headings */
h1, h2, h3 {
  font-weight: 300;
}

h1 {
  font-size: 1.48rem;
  line-height: 1.15em;
}

h2 {
  font-size: 1.3rem;
  line-height: 1.15em;
  text-align: left;
  margin-bottom: .8rem
}

h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: .5rem
}

h4 {
  font-size: 1em;
}


/* ----- LINKS ------------------------------------------- */


a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #7b7b7b;
}

.link a {
  border-bottom: 1px solid;
  padding-top: .5rem;
  padding-bottom: 0.05rem;

}



/* ----- MISC ------------------------------------------- */

hr {
  font-size: 1.25rem;
  font-weight: 500;
  height: 1.5rem;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: inherit;
}

hr::before {
  content: "";
  position: relative;
  display: block;
  background: currentColor;
  height: 1px;
  width: 70%;

  top: calc(50% + 1px);
}



i, em {
  /* Vesper Libre does not have Italics,
     so we use a the *medium* weight instead */
  font-weight: 400;
  font-style: italic;
}

b, strong {
  font-weight: 700;
}

mark {
  padding: .1em .05em;
  margin: -.1em 0;
  color: #fff;
  background: #000;
}


/* -----  IMAGES  --------------------------------------------- */

img {
  border-style: none;
  width: 100%;
  height: auto;
}

figcaption {
  font-size: .75rem;
  line-height: 1.5rem;
}


/* =====  CLEARFIX  =========================== */

/* The Clearfix™: A classic … */
.cf::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}


/* -----  TEXT  ---------------------------------------------------- */

.text {
  text-align: left;
  font-size: .85rem;
  margin-bottom: 3rem;
}

.textpage {
	width: 75%;
}

h1 + .intro {
  margin-top: -2.25rem;
}


.text ul, .text ol {
  margin-left: 1.5em;
}

.text ul {
  list-style: none;
}

.text ul > li::before {
  content: ">";
  display: inline-block;
  position: relative;
  width: 1.25em;
  margin-right: -1.25em;
  left: -1.25em;
  padding-left: .25em;
}

.text a {
  border-bottom: 1px solid;
  padding-bottom: 0.05rem;
}

.text ol > li {
  list-style: decimal;
}



/* -----  BUTTONS  ------------------------------------------------------- */

.btn {
  display: inline-block;
  border: 0px solid;
  margin: .6em 1.5em .6em 0;
  padding-bottom: .3em;
  white-space: nowrap;
  font-size: .85em;
  font-family: 'DIN';
  color: #000;
  line-height: 1;
  cursor: pointer;
  background-color: #fff;
}

.btn.is-active  {
  border-bottom: 2px solid;
  padding-bottom: 0.2rem;
}


.btn.mixitup-control-active {
	border-bottom: 2px solid #000;	
}

button {
	font-size: .65rem;
	border: 1px solid #000;
	padding: 3px 0;
    letter-spacing: .045em;
	text-transform: uppercase;
	margin-top: .3rem;
	z-index: 1000;
	background-color: #fff;
	cursor: pointer;
}

li .btn {
	float: left;
}

.tags  {	
}


/* -----  LAY  ------------------------------------------------ */

.grid {
  font-size: 0;
}

.grid-item img {
	width: 100% ;
}

.grid:after {
  	content: "";
  	display: block;
  	clear: both;
}

.grid.gutter-1 {
  /* We don’t use the shorthand attribute `margin: …` here
     to make vertical margin easily overridable by other
     styles with a lower specifity. */
  margin-left: -.8rem;
  margin-right: -.8rem;
}

.grid.gutter-2 {
  margin-left: -1.2rem;
  margin-right: -1.2rem;
}

.grid.gutter-1 .column {
  padding-left: .8rem;
  padding-right: .8rem;
}

.grid.gutter-2 .column {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.column {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  vertical-align: top;
}

.wrap {
  box-sizing: content-box;
  margin: 0 auto;
  padding-left: 0rem;
  padding-right: 0rem;
  width: 88%;
  max-width: 1800px;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
} 

.clearfix::after {
  clear: both;
}

.clearfix {
  *zoom: 1; /* Für den IE6 und IE7 */
}



/* -----  PAGINATION  --------------------------------------------------- */

.pagination {
  margin-bottom: 1rem;
  width: 100%;
}

.pagination-item {
  position: relative;
  }

.pagination-item:hover, .pagination-item:focus {
  color: #4f4f4f;
}


.pagination-item.left {
  float: left;
}

.pagination-item.right {
  float: right;
}

.pagination-item.is-inactive {
  color: #e4e3e6;
}

@media all and (min-width: 75em) {
  .pagination-item {
    position: relative;
    margin-top: 1rem;
  }
  .pagination-item.left {
    float: left;
    left: 0rem;
  }
  .pagination-item.right {
    float: right;
    right: 0rem;
  }
}

@media all and (pointer: coarse) {
  .pagination-item {
    width: 2.25rem;
    height: 2.25rem;
  }
}



/* =====  SITE  ==================================================== */

html {
  background: #fff;
  color: #000;
  font: normal 400 1.3em/1.5 'DIN';
  letter-spacing: .04em;	 
  /* Always show the vertical scrollbar to prevent `jumps`
     of page content after navigating from a very short page
     that does not scroll to a long pager */
  overflow-y: scroll;
  /* Setting this to `default` prevents the cursors from
     changing when hovering blocks of text or whitespace,
     which is less distracting */
  cursor: default;
  /* Neccessary for sticks footer. */
  position: relative;
  min-height: 100%;
  /* Prevent adjustments of font size after orientation
     changes in IE and iOS. */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* Highlight color for WebKit-bases touch devices. */
  -webkit-tap-highlight-color: rgba(113, 239, 172, .5);
  scroll-behavior: smooth;
}

@media all and (max-width: 50em) {
  html {
    /* We decrease the font-size a little-bit for tiny
       screens. Because this stylesheet uses relative units
       everywhere, everything scales nicely. */
    font-size: 1.2em;
  }
}

body {
  /* space for sticky footer */
  margin-bottom: 1.5rem;
  -webkit-animation-duration: 1s;
  -webkit-animation-name: fontfix;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 1s;
    -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;

}

body.ft {
	padding-top: 2rem;
}

/* ----- HEADER  ------------------------------------------------------- */

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  z-index: 700;
  left: 0;
  right: 0;
  top: 0;
  padding: 1.8rem 0 .6rem;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-right {
	padding-bottom: .15rem
}

.header-right.ft {
	padding-bottom: 2rem
}

.logo {
	font-weight: 700;
    text-transform: uppercase;
	font-size: 2.5rem;
	line-height: 2.5rem;
	letter-spacing: .4em;
    padding-bottom: 0rem;
        color: #000;
    white-space: nowrap;
    text-align: left;
    -webkit-transition: all 0.3s ease;
 	transition: all 0.3s ease;
}

.header.white .logo {
	color: #fff;
}
  
.logo a {
  border-bottom: 0;
}

.logo-pic {
	width: 16.6rem;
	margin-top: .3rem;
}

.menu {
	text-align: right;
	font-size: .85rem;
	letter-spacing: .045em;
	line-height: 1rem;
	 color: #000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header.white .menu {
	color: #fff;
}

.menu-item {
  display: inline-block;
  padding: 0 0 0 1.4em;
}

.menu-item a {
  border-bottom: 0;
}

a .is-active {
  border-bottom: 2px solid;
  padding-bottom: 0.2rem;
}

.menu.lang {
  text-align: right;
  font-size: .6rem;
  margin-bottom: 1rem;

}

.fee {
	color: #ff00c4
}

.fee:hover {
	color: #ff87e3
}

a .is-active .fee {
  border-bottom: 2px solid #ff00c4;
  padding-bottom: 0.2rem;
} 
  
.menu-item.lang:not(:last-child)::after {
  content: "|";
  display: inline-block;
  font-size: 1em;
  padding: 0 .5em;
}


.menu-item.lang:last-child {
  padding: 0 0 0 0;
}

.menu-item.lang.is-active a {
	 padding-bottom: 0.1rem;
}

.fas.fa-lock {
	font-size: .63rem;
}
 
.header.smaller {
	padding-top: 1.15rem;
}

.header.smaller .menu {
	 font-size: .7rem;
}

.header.smaller .menu.lang {
	display: none
}

.header.smaller .lock img {
	height: .8rem;
	vertical-align: text-bottom
}

.header.smaller .logo {
	 font-size: 1.2rem;
	 padding-bottom: .3rem;
	 line-height: .6rem;
}

.submenu {
	margin-top: 2rem;
}

.submenu-item {
   font-size: 0.85em;
   padding: 0 0 1em 0em;
}

.submenu-item.is-active a {
  border-bottom: 2px solid;
  padding-bottom: 0.2rem;
}

/* -----  FOOTER  ------------------------------------------------ */


.footerwrap {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 1);
}

.footer {
  opacity: 1;
  position: relative;
  vertical-align: middle;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem 0;
  -webkit-transition: all 0.5s ease;
 		transition: all 0.5s ease;
}

.footer.smaller {
	opacity: 0;
}


.footer-copyright {
	font-size: 0.6rem;
	margin-top: .5rem;
	display: inline-block;
	float: left;
}


.footer a {
  border-bottom: 0;
}


.copyright {
	margin-right: .5rem;
}

.sociallinks {
	font-size: 0.8rem;
	display: inline-block;
	bottom: 0;
	float: right;
	padding: .2rem 0 .5rem;
}

.social {
	display: inline-block;
	margin: 0 0 0 1rem;
}

 .artsy{
	 width: 20px;
	 vertical-align: middle;
	 padding-bottom: 5px;
 }


.wechat {
	display: none;
	position: absolute;
	bottom: 4.5vh;
	right: 0rem;
	padding: 10px;
	background-color: #fff;
	width: 150px;
}

.wechat2 {
	display: block;
	position: relative;
	margin: 0 auto;
	top: 30vh;
	width: 150px;
}

.close {
  font-size: 1rem;
  color: #000;
  line-height: 30px;
  position: absolute;
  right: -25px;
  text-align: center;
  top: -35px;
  width: 30px;
  height: 30px;
  border: 1px solid #000;
  text-decoration: none;
  font-weight: bold;
  	background-color: #fff;

  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.fade.rsMinW img {
	opacity: .4 !important;
}


.chat:hover .wechat {
	display: block;
}

a.animated-arrow, a.back-to-top  {
	border-bottom: 0;
}

a.back-to-top {
	display: none;
	position: fixed;
	z-index: 999;
	right: 2rem;
	bottom: 2rem;
}

/* -----  MAIN  ------------------------------------------------- */

.main {
  margin-top: 6rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  height: auto;
}


/* -----  HOME  ------------------------------------------------- */

.topframe {
    position: absolute;
    width: 88%;
    max-width: 1800px;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
}

.toptitle {
  font-size: 1.8rem;
  padding: 0;
  line-height: 1.1em;
  position: absolute; 
  left: 0rem;
  bottom: 2.5rem;
  max-width: 50rem;
  z-index: 650 !important;
  color: #000;
  opacity: 1;
  pointer-events: all;
}

.toptitle.white {
   color: #fff;
}

.toptitle.upright {
  left: auto;
  right: 0;
  top: 3.5em;
  bottom: auto;
}

.toptitle.downright {
  left: auto;
  right: 0;

}

.toptitle.upleft {
  left: 0;
  right: auto;
  top: 3.5em;
  bottom: auto;
}

.toptitle a:hover {
  color: #7b7b7b;
}

.toptitle.white a:hover {
  color: #e4e4e4;
}


/* -----  ARTISTS  ------------------------------------------------- */


.artists.grid {
	margin: 0 -1.2% 4rem;
	display: flex;
	flex-flow: row wrap;
	justify-content: left ;
}



.artists.grid-item {
	width: 25%;
	padding: 1.3%;
	
}


.artisttitle {
	 vertical-align:bottom;
	 margin-bottom: 1.5rem;
}

.artisttitle h1{
	text-align: left;
	display:block;
	margin-bottom: 0rem;
}

.artistmenu {
  display:block;	
  letter-spacing: .04em;
  font-size: 0.85em;
  margin-top: .4rem;
  width: 100%;
}

.artistmenu li {
  list-style: none;
  display: inline-block;
  padding: 0em 1.4em 0 0em;
}

.artistmenu li a {
  border-bottom: 0;
}

.artistmenu .is-active  a {
  border-bottom: 2px solid;
  padding-bottom: 0.2rem;
}

.artist-title {
	text-align: center;
	text-transform: uppercase;
	padding-top: .5rem;

	font-size: .9rem;
}

.artist-img {
	position:relative;
	display: block;	
}

.artist.grid-sizer, .artist.grid-item { 
	width:22%; 
	margin-bottom: 4%;
	float: left;
}

.artist.gutter-sizer { 
	width: 4%; 
}

.artistvideo, .artisttextvideo{
	position:relative;
}

.artisttextvideo:before,
.artisttextvideo:after,
.artistvideo:before,
.artistvideo:after {
	position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: -29px 0 0 -29px;
    border: 3px solid #fff;
    border-radius: 100%;
    background-size: 175px;
    background-position: 12px -428px;
	box-sizing: content-box;
	background-image: url(../icons/modulobox.svg);
	background-repeat: no-repeat;
	background-color: transparent;
	pointer-events: none;
}

.artisttextvideo:after,
.artistvideo:after {
	opacity: 0;
	visibility: hidden;
	background-image: none;
	background-color: transparent;
	border-color: transparent;
	border-left-color: #fff;
}

.artisttextvideo{
	margin-bottom: 1rem;
}

.artisttext {
  text-align: left;
  float: right;
  width: 63%;
}

.artisttext .text p {
	width: 80%;
}

.artisttextimages {
	float: left;
	width: 33%;
	margin-right: 4%;
}

.artisttextimage {
	margin-bottom: 1rem;
}

.artistlink {
  font-size: .8rem;	
}

.artistlink a {
  border-bottom: 1px solid;
  padding-bottom: 0.05rem;
}



/* -----  SHOWROOM  ------------------------------------------------- */


#lightgallery li {
	cursor: pointer;
}

.showroom.grid-sizer, .showroom.grid-item { 
	width:30%; 
	margin-bottom: 5%;
	float: left;
}

.showroom.gutter-sizer { 
	width: 5%; 
}

.showroom-artist {
		position: relative;
	text-transform: uppercase;
	padding-top: 1rem;
	font-size: .9rem;
	margin-bottom: .1rem;
	line-height: 1rem;
}

.showroom-title {
	position: relative;
	font-size: .9rem;
	margin-bottom: .3rem;
	line-height: 1.1rem;
width: 85%
}

.showroom-txt {
	font-size: .8rem;
	line-height: 1rem;
	letter-spacing: .02rem;

}

.showroom-img {
	position: relative
}

.showroom-txt {
	margin-bottom: 0;
}

.showroom-price {
	font-size: .7rem;
}

.showroom-mail{
	font-size: .7rem;
	position: absolute;
	top: 1rem;
	right: 0;
	border: 1px solid #000;
	padding: 3px 5px;
	text-transform: uppercase;
	z-index: 1000;
}

a:hover .showroom-txt, a:hover .showroom-title, a:hover .showroom-artist  {
	color: #000;
}

.video {
	width: 100%;
	margin-bottom: 1em;
	height: auto;
	}


/* -----  EXHIBITIONS  ------------------------------------------------- */



.exhibition-frame {
	display: block;
	position: relative;
	float: none;
	margin-bottom: 4rem;
}

.archive.grid {
	margin: 0 -1.5% 2rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start ;
}


.exhibition.grid-item {   
	width: 33.33%;
	padding: 1.5%;
}


.exhibimg {
	position: relative;
	padding: 0;
}

.exhibtop {
	margin-bottom: 4rem;
}

.exhibtop-ft {
	margin-top:1rem;
	margin-bottom: 4rem;
}

.exhibtext {
	font-size: .9rem;
	line-height: 1.3em;
	margin-top: .5rem;
}

.exhibview {
	width: 75%;
	float: right;
}


.exhibtitle {
   float: left; 
   max-width: 24%;
   padding-right: 1rem;
}

.exhibtitle.fair {
	float: none;
	text-align: center;
	margin: 2rem auto 3rem;
	max-width: 70%;
}

.exhibtitle.fair h2 {
		text-align: center;
}

.exhibtitle h1, .exhibtitle h2, .exhibtitle p {
	margin-bottom: 0.3rem;
}

.exhibsubhead {
   float: left; 
   max-width: 29%;
}

.exhibimg-current {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
}


.exhibtext-current {
	position: absolute;
	top: 0;
	left: 0;
	padding: 30px;
	color: #fff;
	font-size: 1.9rem;
	line-height: 1.1em;
	max-width: 55%;
	z-index: 700;
}

.exhibtext-current a:hover {
  color: #e4e4e4;
}

.exhibtext-current.black {
	color: #000;
}

.exhibhead {
	font-size: 1.8rem;
	line-height: 1.1em;
	text-align: left;
	margin-bottom: 1.5rem;
}

.exhibworks {
	display: block;
	margin: 3em 0;
}

.exhib.grid {
	float: right;
	width: 75%;
}

.exhib.grid-sizer, .exhib.grid-item { 
	height: auto;
	width:22.75%; 
	margin-bottom: 3%;
	float: left;
}

.exhib.gutter-sizer { 
	width: 3%; 
}

.fair-subhead {
	margin: 0 auto;
	text-align: center;
	width: 100%;
}



/* -----  PUBL  ------------------------------------------------------- */

.publ.grid {
	display: flex;
	flex-wrap: wrap;
     margin: 0 -1.3%;
}

.publ.grid-item { 
width: 20%;
	padding: 1.3%;	
}

.publbox {
	position: relative;
	padding: 0em;
}

.publbox p {
	margin-bottom: .5em;
	line-height: 1.2em;
}

.publimg {
	position: relative;
}

.publimg:before {
	content: "";
	display:block;
	padding-top: 140%;
}

.publimg img{
	position: absolute;
	bottom: 0;
	left: 0;
	max-height: 100%;
	object-fit: contain;
}

.publtext {
	font-size: .75rem;
	padding: 1.5em 0 1em;
}

.publtitle {
	font-size: 1rem;
	margin-bottom: .3em;
	line-height: 1.1em;
    text-transform: uppercase;
}

.publhead {
	font-size: 1.2rem;
	margin-bottom: .3em;
	line-height: 1.2em;
}

.publlink a {
	  border-bottom: 0px
}


/* -----  NEWS  ------------------------------------------------------- */


.newssection {
	margin-bottom: 2vh;
}

.news.grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1.2% 5rem;
}

.news.grid-item { 
	width: 25%; 
	padding: 1rem 1.2%;
}

.newscat {
	text-align: left;
	font-size: .65rem;
	margin-bottom: .3em;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.newsimg:before {
	content: "";
	display:block;
	padding-top: 70%;
} 
	
.newsimg {
	position: relative;
	margin-bottom: .2rem;
}

.newsimg img{
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.newshead {
	font-size: 1.2rem;
	margin-bottom: .3em;
	line-height: 1.2em;
	width: 80%;
}

.newstext {
	font-size: .75rem;
    line-height: 1.25em;
	padding: .5em 1em 1em 0;
}

.newstext p {
	margin-bottom: 0rem;
}	

.newstitle {
	font-size: 1.2em;
	margin-bottom: .1em;
	line-height: 1.1em;
    text-transform: uppercase;
}

.newstextimages {
	float: left;
	width: 50%;
	padding-right: 40px;
}
.newstextimages img {
	margin-bottom: 1rem;
	}

.news.text {
	float: left;
	width:50%;
}	

.newsarticle {
	font-size: .85rem;
}

.newsarticle p {
	margin-bottom: .75rem;
}	
	
.newslink a {
	  border-bottom: 0px
}

.fa-caret-down {
	margin-left: 5px;
}

.dropmenu {
  position: relative;
  display: block;
  width: 150px;
}

.dropcontent {
  display: none;
  position: absolute;
  background-color: #fff;
  width: auto;
  padding: 10px 10px 10px 0;
  z-index: 100;	
}

.dropcontent button {
	display: block;
}

.dropmenu:hover .dropcontent {display: block;}

.pdfbox {
	height: 50vh;
	margin-bottom: 2rem;
}

/* -----  GALL  ------------------------------------------------------- */


.galleryview {
	width: 70%;
	float: right;
}

.galleryview #slides {
	margin-bottom: 2rem;
}

.galleryview {
	margin-top: 0rem;
}

.galleryview p {
	width: 80%
}

.gallerymenu {
	margin-top: 0rem;
	position: fixed;
}

.gallerytitle {
   float: left; 
   max-width: 29%;
   padding-right: 1rem;
}

.gallerysection {
	margin-bottom: 3.5rem;
}

.gallerysection h3 {
	margin-top: 3rem;
}

.gallerysection  > *:first-child {
	margin-top: 0rem;
}

.gallerytext.text {
width: 100%
}


#map-canvas {
    width: 100%;
    height: 35rem;
    background-color: #CCC;
    margin-bottom: 1.5rem;
}


.teammember {
	margin-bottom: 2rem;
	width: 70%;
}

.teammember p {
	margin-bottom: 0;
}


/* ----- VIEWING  ------------------------------------------------------- */




.viewing .text {
   font-size: .9rem;
   margin: 1rem 0 2rem;
}


.viewlink {
	position: absolute;
	display: none;
	width: 35px;
	height: 35px;
	border: 0px solid #000;
	background-color: #fff;
	border-radius: 50%;
	cursor: pointer;
	transform: translate(-18px,-18px);
}

.viewflex {
	display: flex;
	justify-content: center;
	align-content: center;
	height: 100%;
	width: 100%;
}

.viewimage li:first-child .viewlink {
	display: block;
}

.viewimage {
	position: relative;
	cursor: pointer;
	margin: 2rem 0 1rem;
}

.viewflex .fas {
	font-size: .95rem;
	align-self: center;
}

.blind {
	display: none
}

.viewing-intro, .viewing .text p {
	width: 60%;
	margin: 1rem auto;
	padding: .25rem 0;
}

.viewing-video {
	width: 60%;
	margin: 0 auto;
	font-size: .9rem;
}

.viewing-video p {
		padding: 1rem 0;
}

.viewing-small {
	width: 40%;
	margin: 0 auto;
	padding: 1rem 0;
	margin-top: 2rem;
}

.viewing-small p, .viewing-big p {
	font-size: .8rem;
	line-height: 1.1rem;
	padding-top: .2rem;	
}

.viewing-intro {
	text-align: center
}

.viewing-big {
	margin-top: 4rem;
	margin-bottom: 2rem;
}

.viewing-intro h1 {
	font-size: 1.9rem;
    margin-bottom: 1.5rem;
}

.viewing figure img {
	width: 100%;
	margin: 0 auto;
}

.viewing-quote{
	width: 75%;
	margin: 0 auto;	
	padding: 2rem 0;
	margin-top: 2rem;
}

.viewing-quote p {
	font-style: italic;
	margin-bottom: .3rem;
}

.viewing-quote .text {
	font-size: 1.4rem;
	line-height: 1.8rem;
	margin-bottom: 0;
}

.viewing-quote .citation {
	font-size: .85rem;
} 



.videowrap {
	position: relative;
    margin-top: 2rem;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.videowrap2 {
	position: relative;
    margin-top: 0;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 0px;
	height: 0;
}

.videowrap iframe, .videowrap2 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.viewing-link {
	width: 60%;
	margin: 0 auto;
	padding: 1rem 0;
	font-size: .9rem;
	text-align: center
}


.viewing-grid {
	width: auto;
	display: flex;
	flex-flow: row wrap;
	justify-content: center ;
	margin-top: 4rem;
}

.viewing-grid.fair {
	justify-content: center ;
	margin-top: 2rem;
}

.viewing-grid .gridwork3 {
	width: 33.33%;
	padding: 1rem 2rem;	
}

.viewing-grid .gridwork2 {
	width: 50%;
	padding: 1rem 2rem;	
}

.viewing-grid .gridwork1 {
	width: 40%;
	margin: 0 auto;
	padding: 1rem 0;
}

.viewing-grid .gridwork1.fair {
	margin: 0 30%;
	padding: 2rem 0;
}

.viewing-grid .gridwork100 {
	width: 100%;
	margin: 0 auto;
	padding: 1rem 0;
}

.viewing-grid .fairwork {
	padding: 2rem 2rem;
}


.viewing-grid .text {
	margin-left: auto;
	margin-right: auto;
	height: auto;
	max-width: 600px;
	font-size: .8rem;
	line-height: 1.1rem;
	padding-top: 1rem;	
	margin-bottom: 0;
	letter-spacing: .02rem;
	text-align: center
}

.viewing-grid .gridwork3-img {
	position: relative;
	width: 100%;
	height: 28vw;
	cursor: pointer;
}

.viewing-grid .gridwork2-img {
	position: relative;
	width: 100%;
	height: 30vw;
	cursor: pointer;
}

.viewing-grid .gridwork3-img img, .viewing-grid .gridwork2-img img{
width: auto;
max-width: 100%;
max-height: 100%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}

/* ----- FEENTEICH  ------------------------------------------------------- */


.feenteich {
	width: 100%;
	margin-bottom: 4rem;
}

.ft-info {
	display: inline-block;
	width: 39%;
	padding-left: 3rem;
	vertical-align: top;
	margin-bottom: 0;
}

.ft-info p {

}

.ft-image {
	display: inline-block;
	width: 60%;
}

.ft-press {
	margin-top: 3rem;
}

.ft-press p, .ft-press h2 {
	text-align: left;
}


/* -----  Formular  ------------------------------------------------------- */


input[type=password], input[type=email] {
	border: 1px solid rgba(0, 0, 0, 0.2);
	-webkit-border-radius:0;
	-webkit-appearance:none;
	width: 30%;
	height: 3em;
	padding: 0 .5em;
	font-size: .75rem;
}

input[type=submit] {
	background:#fff;
	border:solid .1em #000;
	cursor:pointer;
	font-size: .9rem;
	font-weight:400;
	font-family: 'DIN', Arial;
	text-transform: uppercase;
	height:2em;
	padding:0 .5em;
	margin-top: 0.5em;
}
	
input[type=submit]:hover {
	border-color:#222
}

.text .fa-file-pdf {
	margin-right: .5em;
}

.artistmenu .fa-file-pdf, .artistmenu .fa-link, .newslink .fa-link, .viewing-link .fa-link {
	font-size: .7rem;
	margin-right: .5em;
}


