/*
Theme Name: ISC CLUB
Theme URI: http://isc-club.ch
Description: Custom Theme for ISC Club
Author: Roger Burkhard
Author URI: http://www.rogerburkhard.com
*/

/*------------------------------------------------------
THE BIG FAT RESET
------------------------------------------------------*/

html, body, div, span, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td, header, footer {
	margin: 0;
	padding: 0;
}

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

@font-face {
    font-family: 'Sharp Grotesk Medium';
    src: url('styles/fonts/SharpGroteskMedium24.eot');
    src: url('styles/fonts/SharpGroteskMedium24.eot?#iefix') format('embedded-opentype'),
         url('styles/fonts/SharpGroteskMedium24.svg#raleway') format('svg'),
    	 url('styles/fonts/SharpGroteskMedium24.woff2') format('woff2'),
         url('styles/fonts/SharpGroteskMedium24.woff') format('woff'),
         url('styles/fonts/SharpGroteskMedium24.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*------------------------------------------------------
GENERAL
------------------------------------------------------*/

html {
	width: 100%;
	height: 100%;
	background: #fff;
	margin:0 !important;
	-webkit-text-size-adjust: 100%;
}

body {
	width: 100%;
	height: 100%;
	font: normal 18px/28px 'Sharp Grotesk Medium', Helvetica, Arial, Verdana, sans-serif;
	letter-spacing: 0.04em;
	color: rgba(0,0,0,0.9);
	overflow-x: hidden;
	min-width: 320px;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
}

body.noscroll {
	overflow: hidden;
}

body.wait, body.wait a {
	cursor:wait;
	overflow-y:hidden;
}

#wpadminbar {
	display:none !important;
}

div:focus {
	outline: none;
	ie-dummy: expression(this.hideFocus=true);
}

::selection {
  background: #ffc837;
  color:rgba(0,0,0,0.9);
}

::-moz-selection {
  background: #ffc837;
  color:rgba(0,0,0,0.9);
}

a::selection {
	color:rgba(0,0,0,0.9) !important;
}

a::-moz-selection {
	color:rgba(0,0,0,0.9) !important;
}

/*------------------------------------------------------
TYPOGRAPHY
------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	font: 'Sharp Grotesk Medium', Helvetica, Arial, Verdana, sans-serif;
	font-weight: normal;
}

h1 {
	font-size:64px;
	line-height:64px;
}

h2 {
	font-size: 24px;
	line-height: 24px;
}

h3, h3.leadtext {
	font-size:24px;
	line-height: 32px;	
}

h3.leadtext {
	margin-bottom:112px;
}

h3.section_title {
	display: block;
	padding-top:9px;
	border-top:4px solid rgba(0,0,0,0.9);
	text-align: center;
	margin-bottom:84px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top:103px;
}

h3.lightbox_title {
	color:#fff;
	display: block;
	text-align: center;
	margin-top:22px;
	margin-bottom:84px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

h4 {
	font-size:18px;
	line-height:28px;
}

p {
	margin-bottom: 25px;
	word-break: break-word;
	-webkit-hyphens: auto;
	   -moz-hyphens: auto;
	        hyphens: auto;
}

b, strong {
	font-weight: normal;
}

small {
	font-size: 14px;
	line-height: 20px;
}

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

a {
	outline: none;
	text-decoration: none;
	cursor: pointer;
	color: rgba(0,0,0,0.9);
}

a.black_button {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	display: inline-block;
	background: rgba(0,0,0,0.9) !important;
	color:#fff;
	text-align: center;
	padding:6px 0 4px 0;
	border-radius:4px;
	-webkit-transition:background 0.3s ease-out;
	transition:background 0.3s ease-out;
}

a.black_button:hover {
	background: rgba(0,0,0,1) !important;
}

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

img {
	border: none 0;
}

/*------------------------------------------------------
IMAGE FILTERS
------------------------------------------------------*/

/* Grayscale */

.filter_grayscale {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

/* Normal */

.filter_none {
	-webkit-filter: brightness(90%);
	filter: brightness(90%);
}

/* Brighter */

.filter_brightness {
	-webkit-filter: brightness(140%);
	filter: brightness(140%);
}

.filter_darken {
	-webkit-filter: brightness(50%);
	filter: brightness(50%);
}

/*------------------------------------------------------
VIDEO
------------------------------------------------------*/

video {
	outline: 0;
	-moz-outline-style: none;
}

/* Responsive iFrame */

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

.video_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*------------------------------------------------------
CUSTOM VIDEO PLAYER
------------------------------------------------------*/

.video_player {
    background-color: #000;
    margin-bottom: 30px;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
}

.video_player .video_thumb {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left:0;
	right:0;
	bottom:0;
	top:0;
	-webkit-filter: grayscale(100%) brightness(80%);
	filter: grayscale(100%) brightness(80%);
	-webkit-transition:filter 0.5s ease-out;
	transition:filter 0.5s ease-out;
}

.video_player:hover .video_thumb {
	-webkit-filter: grayscale(0%) brightness(80%);
	filter: grayscale(0%) brightness(80%);
}

.video_player .play-button {
    width: 140px;
    height: 40px;
    background-color: rgba(0,0,0,0.9);
    z-index: 1;
    font-size:24px;
    line-height: 24px;
    border-radius: 4px;
    text-align: center;
    color:#fff;
}

.video_player .play-button span {
	display: inline-block;
	margin-top:8px;
}

.video_player img,
.video_player .play-button {
    cursor: pointer;
}

.video_player iframe,
.video_player .play-button,
.video_player .play-button:before {
    position: absolute;
}

.video_player .play-button,
.video_player .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0 );
}

.video_player iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

/*------------------------------------------------------
MOBILE
------------------------------------------------------*/

.mobile_header, a.mobile_tickets {
	display: none;
}

/*------------------------------------------------------
WYSIWIG
------------------------------------------------------*/

.text_wysiwig .title_in_text {
	display: block;
	font-size: 24px;
	line-height: 32px;
	margin-bottom:5px;
}

.text_wysiwig .title_in_uppercase {
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.text_wysiwig a {
	line-height: 22px;
	border-bottom: 3px solid rgba(0, 0, 0, 0.9);
	display: inline-block;
	transform-origin: center center;
}

.shake:hover, .text_wysiwig a:hover, .all_artists h3 a:hover, .page_info .follow_us a:hover {
	animation-play-state: running;
	animation-name: shake;
	animation-duration: 400ms;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite; 
}

.letter_box {
	-webkit-transition:color 0.3s ease-out;
	transition:color 0.3s ease-out;
}

.letter_box.shake {
	color:#fff;
	animation-play-state: running;
	animation-name: shake;
	animation-duration: 400ms;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite; 
}

.text_wysiwig a:focus {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5); 
}

.text_wysiwig a.link_with_arrow {
	display: inline-block;
	border-bottom:none 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 100%;
}

.text_wysiwig a.link_with_arrow:before {
  content: "\2192\00A0"; 
}

@keyframes shake {
  10% {
    transform: translate(-1px, 0.5px) rotate(1deg); }
  20% {
    transform: translate(-0.5px, -0.5px) rotate(-0.5deg); }
  30% {
    transform: translate(2px, 0.5px) rotate(0.5deg); }
  40% {
    transform: translate(0.5px, 0px) rotate(0.25deg); }
  50% {
    transform: translate(1px, -1px) rotate(1deg); }
  60% {
    transform: translate(-1px, -0.5px) rotate(0.5deg); }
  70% {
    transform: translate(0.5px, 1px) rotate(1deg); }
  80% {
    transform: translate(-1px, 0.5px) rotate(-0.75deg); }
  90% {
    transform: translate(0.5px, -0.5px) rotate(0.5deg); }
  0%, 100% {
    transform: translate(0, 0) rotate(0); } 
}

@keyframes shake-wide {
  10% {
    transform: translate(-1px, 0.5px) rotate(0.5deg); }
  20% {
    transform: translate(-0.5px, -0.5px) rotate(-0.25deg); }
  30% {
    transform: translate(2px, 0.5px) rotate(0.25deg); }
  40% {
    transform: translate(0.5px, 0px) rotate(0.125deg); }
  50% {
    transform: translate(1px, -1px) rotate(0.5deg); }
  60% {
    transform: translate(-1px, -0.5px) rotate(0.25deg); }
  70% {
    transform: translate(0.5px, 1px) rotate(0.5deg); }
  80% {
    transform: translate(-1px, 0.5px) rotate(-0.25deg); }
  90% {
    transform: translate(0.5px, -0.5px) rotate(0.25deg); }
  0%, 100% {
    transform: translate(0, 0) rotate(0); } 
}

/*------------------------------------------------------
CLEAR
------------------------------------------------------*/

.clear {
	clear: both;
}

/*------------------------------------------------------
Focus Input & Textarea
------------------------------------------------------*/

input, textarea {
	font: normal 18px/28px 'Sharp Grotesk Medium', Helvetica, Arial, Verdana, sans-serif;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	resize: none;
	background: transparent;
	border:2px solid rgba(0,0,0,0.9);
	border-radius:4px;
}

textarea:focus, input:focus{
    outline: 0;
}

input[type="button"], button {
   outline:none !important;
}
input[type="button"]::-moz-focus-inner, button::-moz-focus-inner {
   border: 0 !important;
}

/*------------------------------------------------------
WRAPPER
------------------------------------------------------*/

#wrapper {
	display: block;
	width: 100%;
	height: 100%;
	overflow:hidden;
}

#wrapper.red_bg {
	background: #FF3737;
}

#wrapper.white_bg {
	background: #fff;
}

.inside_content {
	width: -moz-calc(100% - 160px);
	width: -webkit-calc(100% - 160px);
	width: -o-calc(100% - 160px);
	width: calc(100% - 160px);
	margin:0 80px;
}

/*------------------------------------------------------
LOADER
------------------------------------------------------*/

.loader {
	position: fixed;
	top:0;
	bottom:0;
	width: 100%;
	height: 100%;
	z-index: 20000;
	-webkit-transition:width 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
	transition:width 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
}

.loader.go_away {
	width: 80px;
}

.loader.red_loader {
	left:0;
	background: #FF3737;
}

.loader.white_loader {
	background: #fff;
	right: 0;
}

.loader span {
	display: block;
	opacity: 0;
	position: absolute;
	width: 35px;
	height: 56px;
	top:50%;
	left:50%;
	margin-top:-28px;
	margin-left:-17.5px;
	background: url('images/logo_black.svg') no-repeat center center;
	background-size:35px 56px;
	-webkit-transition:opacity 0.5s ease-out;
	transition:opacity 0.5s ease-out;
}

.loader span.show {
	opacity: 1;
}


/*------------------------------------------------------
PAGE DETAIL
------------------------------------------------------*/

.detail_page {
	display: none;
	position: absolute;
	top:0;
	bottom:0;
	z-index: 1;
	overflow-x:hidden;
	overflow-y:auto;
	-webkit-overflow-scrolling: touch;
}

.detail_page .inside_wrapper {
	display: block;
	opacity: 0;
	-webkit-transition:opacity 0.3s ease-out;
	transition:opacity 0.3s ease-out;
}

.inside_wrapper.show {
	opacity: 1;
}

.detail_page.overlay_page {
	z-index: 2;
}

.detail_page.overlay_page.sub_page {
	z-index: 3;
}

.detail_page.page_right {
	/*left:80px;*/
	left:0;
	padding-left:80px;
	right:-15px;
	background: #fff;
}

.detail_page.page_left {
	right: 0;
	padding-right:80px;
	left:0;
	background:#FF3737; 
}

#google_map {
	display: block;
	width: 100%;
	height: 650px;
	margin-bottom:50px;
	background: #e53131 !important;
}

#google_map a {
	background: none !important;
}

  /*the desired background for the map*/
#map_canvas{background-color:#e53131 !important}

  /*hides the tiles (and maybe more^^)*/
#map_canvas div div div div div div img{visibility:hidden}

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

.header_title {
	display: block;
	left:0;
	right: 0;
	position: absolute;
	text-align: center;
	z-index: 2;
	height: 64px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.page_left .header_title {
	right: 80px;
}

.page_right .header_title {
	left: 80px;
}

.header_title.white_color {
	color:#fff;
}

.header_title span, .sticky_header .current_page_title {
	display: inline-block;
	margin-top:18px;
	font-size:24px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 400;
}

.sticky_header .current_page_title {
	cursor:pointer;
}

.page_programm .header_title {
	background: #fff;
}

/* Close Overlay */

.header_title.close_overlay {
	cursor:pointer;
}

.header_title.close_overlay span {
	background: url('images/arrow_left_black_small.svg') no-repeat left top 6px;
	background-size:12px 15px;
	padding-left:40px;
}

.header_title.close_overlay.white_color span {
	background: url('images/arrow_left_white_small.svg') no-repeat left top 6px;
	background-size:12px 15px;
}

/* Sticky Header */

.sticky_header {
	display: block;
	position: fixed;
	height: 64px;
	top:0;
	width: -moz-calc(100% - 80px);
	width: -webkit-calc(100% - 80px);
	width: -o-calc(100% - 80px);
	box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.40);
	z-index: 1000;
	text-align: center;
	-webkit-transform: translateY(-80px);
	transform: translateY(-80px);
	-webkit-transition: -webkit-transform 0.5s ease-out;
	transition: transform 0.5s ease-out;
}

.sticky_header.active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.sticky_header.sticky_left {
	background: #FF3737;
	right:80px;
	left:0;
}

.sticky_header.sticky_right {
	background: #fff;
	left:80px;
	right:0;
}

.sticky_header .close_overlay {
	display: block;
	position: absolute;
	left:32px;
	top:13px;
	width: 32px;
	height: 32px;
	background: url('images/arrow_left_black_small.svg') no-repeat left center;
	background-size:12px 15px;
}

.sticky_header .current_page_title {
	display: inline-block;
	overflow: hidden;
	white-space: nowrap; /* Don't forget this one */
	text-overflow: ellipsis;
	width: -moz-calc(100% - 140px);
	width: -webkit-calc(100% - 140px);
	width: -o-calc(100% - 140px);
	width: calc(100% - 140px);
}

.sticky_header.sticky_event_detail .current_page_title {
	width: -moz-calc(100% - 450px);
	width: -webkit-calc(100% - 450px);
	width: -o-calc(100% - 450px);
	width: calc(100% - 450px);
}

.sticky_header a.black_button {
	width: 140px;
	position: absolute;
	right:32px;
	top:13px;
}

/*------------------------------------------------------
SIDEBARS
------------------------------------------------------*/

.sidebar {
	display: none;
	opacity: 0;
	position: fixed;
	height: 100%;
	width: 80px;
	top:0;
	bottom:0;
	z-index: 100;
	-webkit-transition:width 0.3s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease-out, margin 0.3s ease-out;
	transition:width 0.3s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease-out, margin 0.3s ease-out;
}

.sidebar.active {
	display: block;
}

.sidebar.show {
	opacity: 1;
}

.sidebar div {
	opacity: 1;
	-webkit-transition:opacity 0.3s ease-out;
	transition:opacity 0.3s ease-out;
}

.sidebar.remove_elements div {
	opacity: 0;
}

.sidebar:hover {
	width: 90px;
}

.sidebar.sidebar_info {
	left:0;
	background: #FF3737;
}

.sidebar.do_animation {
	width: -moz-calc(100% - 80px);
	width: -webkit-calc(100% - 80px);
	width: -o-calc(100% - 80px);
	width: calc(100% - 80px);
}

.sidebar.sidebar_programm {
	right:0;
	background: #fff;
}

/* Logo */

.sidebar .logo {
	position: absolute;
	z-index: 10;
	width: 35px;
	height: 56px;
	top:20px;
	background: url('images/logo_black.svg') no-repeat center center;
	background-size:35px 56px;
}

.sidebar.sidebar_programm .logo {
	left:22px;
}

.sidebar.sidebar_info .logo {
	right:22px;
}

/* Arrow */

.sidebar .arrow {
	position: absolute;
	z-index: 10;
	width: 20px;
	height: 25px;
	bottom:20px;
	left:0;
	right:0;
	margin-left:auto;
	margin-right:auto;
}

.sidebar.sidebar_programm .arrow {
	background: url('images/arrow_left_black.svg') no-repeat center center;
	background-size:16px 20px;
}

.sidebar.sidebar_info .arrow {
	background: url('images/arrow_right_black.svg') no-repeat center center;
	background-size:16px 20px;
}

/* Title */

.sidebar .title {
	display: block;
	position: absolute;
	z-index: 5;
	font-size:24px;
	line-height: 24px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	width: 100vh;
	height: 80px;
	top:-80px;
	text-align: center;
	-webkit-backface-visibility: hidden;
}

.sidebar .title span {
	display: block;
	margin-top:28px;
	-webkit-transition:margin 0.4s ease-out;
	transition:margin 0.4s ease-out;
}

.sidebar.sidebar_programm .title {
	z-index: 100;
	left:0;
	-ms-transform: rotate(90deg) -ms-translateZ(0);
	-webkit-transform: rotate(90deg) -webkit-translateZ(0);
	transform: rotate(90deg) translateZ(0);
	-ms-transform-origin: bottom left;
	-webkit-transform-origin: bottom left;
	transform-origin: bottom left;
}

.sidebar.sidebar_info .title {
	z-index: 100;
	right:0;
	-ms-transform: rotate(-90deg) -ms-translateZ(0);
	-webkit-transform: rotate(-90deg) -webkit-translateZ(0);
	transform: rotate(-90deg) translateZ(0);
	-ms-transform-origin: bottom right;
	-webkit-transform-origin: bottom right;
	transform-origin: bottom right;
}

/*------------------------------------------------------
INFO
------------------------------------------------------*/

.detail_page.page_info {
	min-height: 640px;
}

.page_info .nav_listing {
	display: block;
	position: absolute;
	left:0;
	right:80px;
	top:128px;
	bottom:128px;
	min-height: -moz-calc(100% - 256px);
	min-height: -webkit-calc(100% - 256px);
	min-height: -o-calc(100% - 256px);
	min-height: calc(100% - 256px);
	text-align: center;
}

.page_info .nav_listing:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.page_info .nav_listing nav {
	display: inline-block;
	vertical-align: middle;
	width: 99%;
}

.page_info .nav_listing nav a {
	display: inline-block;
	font-size:64px;
	line-height: 64px;
	margin-bottom:16px;
	padding-top:20px;
	margin-top:-20px;
}

.page_info .follow_us {
	display: block;
	position: absolute;
	bottom:20px;
	left:0;
	right: 80px;
	text-align: center;
}

.page_info .follow_us, .page_info .follow_us a {
	font-size:18px;
	line-height: 28px;
}

.page_info .follow_us a {
	display: inline-block;
	border-bottom:2px solid rgba(0,0,0,0.9);
	-webkit-transition:color 0.3s ease-in, border 0.3s ease-in;
	transition:color 0.3s ease-in, border 0.3s ease-in;
}

/*------------------------------------------------------
TWO COLUMN ELEMENT
------------------------------------------------------*/

.two_column_element, .two_column_gallery {
	display: block;
}

.two_column_element .column_left, .two_column_element .column_right, .two_column_gallery a, .two_column_element.with_columns .column {
	display: block;
	float: left;
	width: -moz-calc(50% - 20px);
	width: -webkit-calc(50% - 20px);
	width: -o-calc(50% - 20px);
	width: calc(50% - 20px);
}

.two_column_element .column_left, .two_column_gallery a:nth-child(odd), .two_column_element.with_columns .column:nth-child(odd) {
	margin-right:20px;
}

.two_column_element .column_right, .two_column_gallery a:nth-child(even),  .two_column_element.with_columns .column:nth-child(even) {
	margin-left:20px;
}

.two_column_gallery a:nth-child(2n+1), .two_column_element.with_columns .column:nth-child(2n+1) {
    clear:left
}

/* Image Gallery */

.two_column_gallery a, .two_column_element .column {
	padding:0;
	background: 0;
	margin-bottom:40px;
}

.two_column_gallery a {
	background: #FF3737;
}

.two_column_gallery a img, .two_column_element.with_columns .column img, .two_column_gallery a img.show, .two_column_element.with_columns .column img.show {
	width: 100%;
	mix-blend-mode: multiply;
	filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); /* Firefox 10+, Firefox on Android */
	filter: gray;
	-webkit-filter: grayscale(100%);
	opacity: 0.9;
}

/*------------------------------------------------------
THREE COLUMN ELEMENT
------------------------------------------------------*/

.three_column_element {
	display: block;
	margin-left:-20px;
	margin-right:-20px;
}

.three_column_element .column {
	display: block;
	width: -moz-calc(33.3333% - 40px);
	width: -webkit-calc(33.3333% - 40px);
	width: -o-calc(33.3333% - 40px);
	width: calc(33.3333% - 40px);
	float: left;
	margin:0 20px;
}

.three_column_element .column:nth-child(3n+1){
    clear:left
}

/* Gallery */

.three_column_element {
	margin-bottom:-64px;
}

.three_column_element .column {
	background: none;
	padding:0;
	margin-bottom:64px;
}

.three_column_element .column span {
	display: block;
}

.three_column_element .column span.team_name {
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.three_column_element .column a.team_email {
	display: inline-block;
	border-bottom: 3px solid rgba(0, 0, 0, 0.9);
}

.three_column_element .column img {
	width: 100%;
	height: auto;
	mix-blend-mode: multiply;
	filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); /* Firefox 10+, Firefox on Android */
	filter: gray;
	-webkit-filter: grayscale(100%);
	opacity: 0.9;
}

/*------------------------------------------------------
IMAGE SLIDER
------------------------------------------------------*/

.image_slider {
	display: block;
	position: relative;
	margin-left:-100px;
	margin-right: -100px;
	margin-bottom:62px;
}

.image_slider .image_slide {
	display: inline-block;
	position: relative;
	width: auto;
	max-width: 100%;
	top:0;
	bottom:0;
	margin:0 27px;
	text-align: center;
	background: #FF3737;
	cursor: -webkit-grab; 
	cursor: -moz-grab;
}

.image_slider.type_fullscreen_lightbox {
	position: absolute;
	top:0;
	width: 100%;
	top:128px;
	left:0;
	right:0;
	margin-left:0;
	margin-right:0;
}

.image_slider.type_fullscreen_lightbox .image_slide {
	background: #181818;
}

.image_slider .image_slide:active {
	cursor: -webkit-grabbing; 
	cursor: -moz-grabbing;
}

.image_slider .image_slide img {
	display: inline-block;
	max-height: 550px;
	max-width: 100%;
	width: auto;
	height: auto;
}

.image_slider.type_fullscreen_lightbox .image_slide img {
	height: auto;
	width: auto;
	max-width: 100%;
	max-height: 100%;
}

.image_slider.type_detail_page_lightbox .image_slide img {
	mix-blend-mode: multiply;
	opacity: 0.9;
}

.image_slider.type_fullscreen_lightbox .image_slide img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: 0.9;
	-webkit-transition:filter 0.3s ease-out, opacity 0.3s ease-out;
	transition:filter 0.3s ease-out, opacity 0.3s ease-out;
}

.image_slider .image_slide.type_hochformat img {
	max-height: 720px;
}

.image_slider.type_fullscreen_lightbox .image_slide.type_hochformat img  {
	max-height: 100%;
}

.image_slider.type_detail_page_lightbox .image_slide.slick-current img{
	mix-blend-mode: normal;
	opacity: 1;
}

.image_slider.type_fullscreen_lightbox .image_slide.slick-current img{
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

.image_description {
	display: block;
	opacity: 0;
	text-align: left;
	position: absolute;
	bottom:0;
	height: auto;
	left:0;
	right: 0;
}

.image_slider .image_description, .image_slider .image_description a {
	font-size:14px;
	line-height: 20px;
}

.image_slider.type_fullscreen_lightbox .image_description, .image_slider.type_fullscreen_lightbox .image_description a {
	color:#fff;
}

.image_description .column_left {
	display: block;
	width: 50px;
	float: left;
}

.image_description .column_right {
	display: block;
	width: -moz-calc(100% - 50px);
	width: -webkit-calc(100% - 50px);
	width: -o-calc(100% - 50px);
	width: calc(100% - 50px);
	float: left;
}

/*------------------------------------------------------
FACTS LISTING
------------------------------------------------------*/

.lightbox {
	display: none;
	position: fixed;
	z-index: 5000;
	top:0;
	right:0;
	bottom:0;
	left:0;
	background: #181818;
}

.lightbox a.close_lightbox {
	display: block;
	width: 80px;
	height: 80px;
	position: fixed;
	top:0;
	right: 0;
	z-index: 5100;
	background: url('images/close_white.svg') no-repeat center center;
	background-size:21px 21px;
}

/*------------------------------------------------------
FACTS LISTING
------------------------------------------------------*/

.facts_listing {
	display: block;
	margin-top:64px;
	margin-bottom:64px;
}

.facts_listing .facts_listing_row {
	display: block;
	padding:7px 8px 5px 8px;
	border-top:2px solid rgba(0,0,0,0.9);
}

.facts_listing .facts_listing_row:last-child {
	border-bottom:2px solid rgba(0,0,0,0.9);
}

.facts_listing .facts_listing_row .column_left {
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.facts_listing .facts_listing_row .column_right {
	text-align: right;
}

/* With Link */

.facts_listing.with_links a.facts_listing_row {
	padding-left:10px;
	padding-right:10px;
	background: none;
	-webkit-transition:background 0.3s ease-in, color 0.3s ease-in;
	transition:background 0.3s ease-in, color 0.3s ease-in;
}

.facts_listing.with_links a.facts_listing_row:hover {
	background:rgba(0,0,0,0.9);
	color:#fff;
}

.facts_listing.with_links a.facts_listing_row span.filetype_infos {
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/*------------------------------------------------------
EVENT LISTING
------------------------------------------------------*/

.event_listing {
	display: block;
	width: 100%;
}

.event_listing a {
	display: block;
	position: relative;
	padding:20px 0 29px 0;
	background: #fff;
	border-top:2px solid rgba(0,0,0,0.9);
	color:rgba(0,0,0,0.9);
	-webkit-transition:background 0.3s ease-out, color 0.3s ease-out, padding 0.3s ease-out;
	transition:background 0.3s ease-out, color 0.3s ease-out, padding 0.3s ease-out;
}

.event_listing a .event_preview_bg, .event_listing a .event_preview_bg_overlay {
	display: block;
	position: absolute;
	z-index: 0;
	left:0;
	right:0;
	bottom:0;
	top:0;
}

.event_listing a.last_image_has_image {
	border-top:none 0;
}

/* Has Image */

.event_listing a.event_preview.has_image {
	color:#fff;
	border-top:none 0;
}

.event_listing a .event_preview_bg {
	-webkit-transition:filter 0s ease-out;
	transition:filter 0s ease-out;
}

.event_listing a .event_preview_bg {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: 0.9;
	-webkit-transition:filter 0.3s ease-out;
	transition:filter 0.3s ease-out;
}

.event_listing a:hover .event_preview_bg {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
	opacity: 0.9;
}

.event_listing a .event_preview_bg_overlay {
	background: #000;
	z-index: 1;
	opacity: 0.6;
	-webkit-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}

.event_listing a:hover .event_preview_bg_overlay {
	opacity: 0.5;
}

/* No Image */

.event_listing .no_image:hover {
	/*
	color:#fff;
	background: rgba(0,0,0,0.9);*/
	animation-play-state: running;
	animation-name: shake-wide;
	animation-duration: 400ms;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite; 
}

/* First Event */

.event_listing a.event_preview_0 {
	min-height: 560px;
	-webkit-transition:height 0.3s ease-out;
	transition:height 0.3s ease-out;
}
/*
.event_listing a.event_preview_0:hover {
	animation-play-state: paused;
}
*/

.event_listing a.event_preview_0 .event_title_two_colums {
	position: absolute;
	bottom:54px;
}

/*------------------------------------------------------
EVENT TITLE
------------------------------------------------------*/

.event_title_two_colums {
	display: block;
	position: relative;
	z-index: 2;
}

.event_title_two_colums .column_left {
	display: block;
	width: 20%;
	float: left;
}

.event_title_two_colums .column_right {
	display: block;
	width: 80%;
	float: left;
}

.event_title_date, .event_title_info {
	display: block;
	font-size:18px;
	line-height: 28px;
	margin-bottom:4px;
}

.event_title_weekday, .event_title_title {
	display: block;
	font-size:64px;
	line-height: 64px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* Mobile */

.event_title_date_mobile, .event_title_info_mobile {
	display: none;
}

/*------------------------------------------------------
EVENT DETAIL HEADER
------------------------------------------------------*/

.event_detail_header {
	display: block;
	position: relative;
	width: 100%;
}

/* Fullscreen Header Box */

.event_detail_header.type_fullscreen {
	height: 100vh;
	min-height: 400px;
}

.event_detail_header .fullscreen_event_header_box, .event_detail_header .fullscreen_event_bg {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
}

.event_detail_header .fullscreen_event_header_box .event_title_two_colums {
	color:#fff;
	position: absolute;
	bottom:64px;
}

/* Default Header Box */

.event_detail_header .default_event_header_box .event_title_two_colums {
	margin-top:106px;
}

.event_detail_header .default_event_header_box .default.event_bg {
	height: auto;
	margin-top:54px;
}

/*------------------------------------------------------
TEXT AND MEDIA BOX
------------------------------------------------------*/

.text_media_box {
	display: block;
	margin-bottom:64px;
}

/* Two Columns */

.text_media_box.type_two_columns {
	display: block;
}

.text_media_box.type_two_columns .column {
	display: block;
	width: -moz-calc(50% - 20px);
	width: -webkit-calc(50% - 20px);
	width: -o-calc(50% - 20px);
	width: calc(50% - 20px);
}

/* Type 0 (Left) */

.text_media_box.no_0.type_two_columns .column.media_column {
	float: left;
	margin-right:20px;
}

.text_media_box.no_0.type_two_columns .column.text_column {
	float: right;
	margin-left:20px;
}

/* Type 1 (Right) */

.text_media_box.no_1.type_two_columns .column.media_column {
	float: right;
	margin-left:20px;
}

.text_media_box.no_1.type_two_columns .column.text_column {
	float: left;
	margin-right:20px;
}

.column.media_column img {
	max-width: 100%;
	height: auto;
	margin-bottom:30px;
}

/* Media Only */

.text_media_box .type_media_only {
	display: block;
}

.text_media_box.type_media_only .media_element {
	display: block;
	float: left;
	width: -moz-calc(50% - 20px);
	width: -webkit-calc(50% - 20px);
	width: -o-calc(50% - 20px);
	width: calc(50% - 20px);
}

.text_media_box.type_media_only .media_element:nth-child(odd) {
	margin-right:20px;
}

.text_media_box.type_media_only .media_element:nth-child(even) {
	margin-left:20px;
}

.text_media_box.type_media_only .media_element:nth-child(even):after {
	display: block;
	content:'';
	clear:both;
}

/* Media Only with only 1 Video or Image */

.text_media_box .type_media_only.total_media_1 .media_element {
	width: 100%;
	float: none;
	margin-left:0 !important;
	margin-right:0 !important;
}

/*------------------------------------------------------
EVENT CALENDAR
------------------------------------------------------*/

.calendar_fb_event {
	display: block;
	margin-bottom:96px;
}

.calendar_fb_event .column_left, .calendar_fb_event .column_right {
	display: block;
	float: left;
	width: -moz-calc(50% - 20px);
	width: -webkit-calc(50% - 20px);
	width: -o-calc(50% - 20px);
	width: calc(50% - 20px);
}

.calendar_fb_event .column_left {
	margin-right:20px;
}

.calendar_fb_event .column_right {
	margin-left:20px;
}

.calendar_fb_event a.black_button {
	display: block;
}

.atc_event {
	display: none;
}

ul.atcb-list {
	display: none;
	list-style: none;
	background: #fff;
	list-style: none;
	background: #FFFFFF;
	border: 2px solid rgba(0,0,0,0.9);
	border-radius: 4px;
	margin-top:10px;
	padding:20px 0;
	width: -moz-calc(100% - 4px);
	width: -webkit-calc(100% - 4px);
	width: -o-calc(100% - 4px);
	width: calc(100% - 4px);
}

ul.atcb-list li {
	padding-left:20px;
}

/*------------------------------------------------------
PAGES
------------------------------------------------------*/

.page_detail_inside {
	display: block;
	width: -moz-calc(100% - 160px);
	width: -webkit-calc(100% - 160px);
	width: -o-calc(100% - 160px);
	width: calc(100% - 160px);
	margin-left:80px;
	margin-right:80px;
	margin-bottom:80px;
}

.max_width_box {
	display: block;
	max-width: 1120px;
	margin-left:auto;
	margin-right:auto;
	left:0;
	right: 0;
}

.page_detail_inside h1 {
	display: block;
	text-align: center;
	margin-top:80px;
	text-align: center;
	margin-bottom:70px;
	position: relative;
	z-index: 1;
}

.page_detail_inside .two_column_element h3 {
	margin-bottom:15px;
}

/* Location */

.page_detail_inside_location .facts_listing {
	margin-top:0;
}

/*------------------------------------------------------
CONTACT PERSON BOX
------------------------------------------------------*/

.contact_person_box {
	display: block;
	margin:0 auto;
}

.contact_person_box.single_box {
	max-width: 500px;
}

.contact_person_box img {
	display: block;
	width: 140px !important;
	float: left;
	margin-right:40px;
	height: auto;
	mix-blend-mode: multiply;
	opacity: 0.9;
}

.contact_person_box .contact_person_text {
	text-align: center;
	/*
	width: -moz-calc(100% - 180px);
	width: -webkit-calc(100% - 180px);
	width: -o-calc(100% - 180px);
	width: calc(100% - 180px);
	float: right;
	*/
	margin-bottom:40px;
}

/*------------------------------------------------------
HALL OF FAME
------------------------------------------------------*/

.featured_artists {
	display: block;
}

.featured_artists .outer_featured_artist {
	display: block;
	text-align: center;
	position: relative;
	z-index: 1;
}

.featured_artists a {
	display: inline-block;
	background: none;
	padding:0;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	-webkit-transition:color 0.3s ease-out;
	transition:color 0.3s ease-out;
}

.featured_artists a:hover {
	color:#fff;
}

.featured_artists a span  {
	display: inline-block;
	float: left;
}

.featured_artists a span.years_in_ISC {
	margin-top:20px;
	margin-right:22px;
} 

.featured_artists a span.artist_name {
	font-size:48px;
	line-height: 52px;
	padding-top:20px;
	margin-top:-20px;
}

.bg_artist_img {
	display: block;
	position: fixed;
	left:0;
	right:0;
	top:0;
	bottom:0;
	z-index: 0;
}

.bg_artist_img .artist_bg {
	opacity: 0;
	position: absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	z-index: 0;
	-webkit-filter: grayscale(100%) brightness(80%);
	filter: grayscale(100%) brightness(80%);
	-webkit-transition:opacity 0.3s ease-out;
	transition:opacity 0.3s ease-out;
}

.bg_artist_img .artist_bg.active {
	opacity: 1;
}

/* Filter */

.all_artists {
	position: relative;
	z-index: 1;
}

.all_artists h3 a {
	background: none;
	padding-left:0;
	text-transform: lowercase;
}

.all_artists h3 a:last-child {
	margin-left:5px;
}

/* Listing of All Artists */

.all_artists_listing {
	display: block;
	position: relative;
	z-index: 1;
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 40px;
	-moz-column-gap: 40px;
	column-gap: 40px;
}

.letter_box {
	display: block;
	margin-bottom:35px;
	break-inside: avoid-column;
	-webkit-column-break-inside: avoid;
}

.letter_box a {
	display: block;
	background: none;
	padding-left:0;
}

.letter_box h2 {
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/*------------------------------------------------------
Hall OF FAME DETAIL
------------------------------------------------------*/

.hall_of_fame_facts {
	display: block;
}

.hall_of_fame_facts img {
	width: 100%;
	height: auto;
	mix-blend-mode: multiply;
	opacity: 0.9;
}

.hall_of_fame_facts .facts_listing {
	margin:0;
}

/*------------------------------------------------------
NL COPYRIGHT
------------------------------------------------------*/

.nl_copyright {
	display: block;
	position: absolute;
	box-shadow: inset 0px 16px 16px -16px rgba(0,0,0,0.40);
	width: 100%;
	text-align: center;
	padding-top:66px;
	left:0;
	right:0;
}

.nl_copyright .divider {
	display: block;
	width: 150%;
	overflow: hidden;
	height: 16px;
	background-image: linear-gradient(-180deg, rgba(0,0,0,0.20) 1%, rgba(0,0,0,0.00) 100%);
	margin-bottom:66px;
}

.nl_copyright h3 {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 400;
	margin-bottom:34px;
}

.nl_copyright .nl_form {
	display: block;
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

.nl_copyright .nl_form .error_nl {
	display: none;
	text-align: left;
	padding-bottom:20px;
}

input {
	display: block;
	width: -moz-calc(100% - 216px);
	width: -webkit-calc(100% - 216px);
	width: -o-calc(100% - 216px);
	width: calc(100% - 216px);
	padding:4px 15px 2px 15px;
	float: left;
}

input::-webkit-input-placeholder {
    color: rgba(0,0,0,0.9);
}

input:-moz-placeholder {
   color: rgba(0,0,0,0.9);
   opacity: 1;
}

input::-moz-placeholder {
   color: rgba(0,0,0,0.9);
   opacity: 1;
}

input:-ms-input-placeholder {
   color: rgba(0,0,0,0.9);
}

.nl_copyright .nl_form a.black_button {
	width: 140px;
	margin-left:40px;
	background: rgba(0,0,0,0.9);
}

.nl_copyright .copyright {
	display: block;
	margin-top:103px;
	margin-bottom:23px;
}

.page_programm .nl_copyright.active_news_ticker .copyright {
	padding-bottom:73px; /* Height of News Ticker + 23px */
}

.nl_copyright .copyright, .nl_copyright .copyright a {
	font-size:14px;
	line-height: 21px;
}

.nl_copyright .copyright a {
	border-bottom:2px solid rgba(0,0,0,0.9);
}

/*------------------------------------------------------
NEWS TICKER
------------------------------------------------------*/
.marquee {
	opacity: 0;
	display: block;
	position: fixed;
	bottom:0;
	left:80px;
	right:0;
	width: 500px;
	height: 70px;
	overflow: hidden;
	background: #FFC837;
	z-index: -1;
	font-size:24px;
	line-height: 24px;
}

.marquee.show {
	opacity:1;
	z-index: 10000;
}

.news_content, .news_title {
	display: inline-block;
	height: 70px;
	background: rgba(0,0,0,0.9);
	color:#FFC837;
	padding:0 20px;
}

.news_title {
	background: transparent;
	padding:0;
}

.news_content span, .news_title span {
	display: inline-block;
	margin-top:22px;
}

.news_title span {
	margin-right:28px;
	color:rgba(0,0,0,0.9);
}

/*------------------------------------------------------
LOGIN BOX
------------------------------------------------------*/

.login_box {
	display: block;
	max-width: 500px;
	margin:200px auto 200px auto;
}

.login_box input {
	display: block;
	width: 100%;
	margin-bottom:24px;
}

.login_box a.black_button {
	width: 140px;
}

.login_box .error_message {
	display: block;
	color:#fff;
	margin-bottom:20px;
}

/*------------------------------------------------------
Media Queries
------------------------------------------------------*/


@media all and (max-width: 800px) and (min-width: 0) {

	/* Home */

	.event_title_two_colums .column_left, .event_title_info {
		display: none;
	}

	.event_title_two_colums .column_right {
		width: 100%;
	}

	.inside_content, .event_title_two_colums .column_right  {
		width: -moz-calc(100% - 80px);
		width: -webkit-calc(100% - 80px);
		width: -o-calc(100% - 80px);
		width: calc(100% - 80px);
		margin-left:40px;
		margin-right:40px;
	}

	.max_width_box {
		margin-left:40px;
		margin-right:40px;
	}

	.page_detail_inside_ueber-uns .max_width_box {
		margin-left:0;
		margin-right:0;
	}

	.inside_wrapper.nav_listing.max_width_box,
	.inside_wrapper.follow_us.max_width_box  {
		width: -moz-calc(100% - 160px);
		width: -webkit-calc(100% - 160px);
		width: -o-calc(100% - 160px);
		width: calc(100% - 160px);
		margin:0 120px 0 40px;
	}

	.event_title_date_mobile, .event_title_info_mobile {
		display: block;
		font-size:14px;
		line-height: 20px;
	}

	.event_listing a.event_preview_0 .event_title_two_colums {
		bottom:30px;
	}

	.event_listing a.event_preview_0 {
		min-height: 400px;
	}

	/* Detail */

	.text_media_box.type_two_columns .column, .text_media_box.no_0.type_two_columns .column.text_column, .text_media_box.no_0.type_two_columns .column.text_column, 
	.text_media_box.no_1.type_two_columns .column.text_column, .calendar_fb_event .column_left, .calendar_fb_event .column_right {
		float: none;
		width: 100%;
		margin-left:0;
		margin-right:0;
	}

	.text_media_box {
		margin-bottom:13px;
	}

	.calendar_fb_event .column_left {
		margin-bottom:24px;
	}

	.nl_copyright .nl_form a.black_button {
		margin-left:20px;
	}

	.nl_copyright .copyright {
		margin-top:80px;
	}

	.nl_subscription h3 span {
		display: none;
	}

	.facts_listing {
		margin-top:37px;
		margin-bottom:37px;
	}

	h1 {
		font-size:48px;
		line-height: 48px;
	}

	.page_detail_inside h1 {
		margin-top:70px;
		margin-bottom:54px;
	}

	h3.leadtext {
		margin-bottom:75px;
	}

	h3.section_title {
		margin-top:60px;
		margin-bottom:64px;
	}

	.two_column_element .column_left, .two_column_element .column_right, .two_column_element.with_columns .column {
		width: 100% !important;
		float: none !important;
		margin-left:0 !important;
		margin-right:0 !important;
	}

	.facts_listing .column_left, .facts_listing .column_right {
		width: 50% !important;
		float: left !important;
	}

	#google_map {
		height: 380px;
	}

	.image_slider {
		margin-left:0;
		margin-right:0;
	}

	.image_slider .image_slide .image_slide {
		width: -moz-calc(100% - 80px);
		width: -webkit-calc(100% - 80px);
		width: -o-calc(100% - 80px);
		width: calc(100% - 80px);
		margin:0;
	}

	.slick-slider .slick-track, .slick-slider .slick-list {
		padding:0 !important;
	}

	.image_slider .image_slide img {
		width: auto;
		max-width: 100%;
		height: auto;
		max-height: 400px;
	}

	.two_column_element .column.contact_person_box {
		width: 50% !important;
	}
	.three_column_element, .two_column_element.contact_listing {
		display: block;
		margin-left:0 !important;
		margin-right:0 !important;
	}

	.three_column_element .column, .two_column_element.contact_listing .column {
		width: -moz-calc(50% - 40px) !important;
		width: -webkit-calc(50% - 40px) !important;
		width: -o-calc(50% - 40px) !important;
		width: calc(50% - 40px) !important;
		margin-left:20px !important;
		margin-right:20px !important;
		float: left !important;
	}

	.three_column_element .column:nth-child(3n+1) {
		clear: none;
	}

	.three_column_element .column:nth-child(2n+1), .two_column_element.contact_listing .column:nth-child(2n+1) {
		clear: both !important;
	}

	.featured_artists a span.years_in_ISC {
		display: none;
	}

	.featured_artists a span {
		float: none;
	}

	.bg_artist_img, .all_artists {
		display: none !important;
	}

	.all_artists_listing {
		display: block;
		margin-top:230px;
	}

	.all_artists_listing {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
		-webkit-column-gap: 0;
		-moz-column-gap: 0;
		column-gap: 0;
	}

	.letter_box {
		display: block;
		margin-bottom:0;
		break-inside: avoid-column;
		-webkit-column-break-inside: avoid;
	}

	.letter_box h2 {
		display: block;
		text-align: center;
		border-top:2px solid rgba(0,0,0,0.9);
		padding-top:5px;
		margin-bottom:5px;
		cursor:pointer;
	}

	.inside_letter_box {
		display: none;
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 40px;
		-moz-column-gap: 40px;
		column-gap: 40px;
		margin-bottom:5px;
	}

	.hall_of_fame_facts img {
		margin-bottom:30px;
	}

	.contact_person_box img {
		width: 100% !important;
		margin-right:0;
		margin-left:0;
		float: none;
		margin-bottom:10px;
	}

	.contact_person_box .contact_person_text {
		width: 100%;
		float: none;
	}

	.detail_page.page_info {
		min-height: 850px;
	}

}

@media all and (max-width: 560px) and (min-width: 0) {

	.sidebar, .sidebar:hover, .loader.go_away {
		width: 8px;
	}

	.sidebar.do_animation {
		width: -moz-calc(100% - 8px);
		width: -webkit-calc(100% - 8px);
		width: -o-calc(100% - 8px);
		width: calc(100% - 8px);
	}

	.sidebar div {
		display: none;
	}

	.detail_page.page_right {
		padding-left:8px;
	}

	.detail_page.page_left {
		padding-right:8px;
	}

	.page_right .header_title {
		left:8px;
	}

	.nl_copyright {
		width: -moz-calc(100% - 8px);
		width: -webkit-calc(100% - 8px);
		width: -o-calc(100% - 8px);
		width: calc(100% - 8px);
	}

	.page_right .nl_copyright {
		left:8px;
	}

	.page_left .nl_copyright {
		right:8px;
	}

	.inside_content, .event_title_two_colums .column_right  {
		width: -moz-calc(100% - 40px);
		width: -webkit-calc(100% - 40px);
		width: -o-calc(100% - 40px);
		width: calc(100% - 40px);
		margin-left:20px;
		margin-right:20px;
	}

	.max_width_box {
		margin-left:20px;
		margin-right:20px;
	}

	.inside_wrapper.nav_listing.max_width_box,
	.inside_wrapper.follow_us.max_width_box  {
		width: -moz-calc(100% - 48px);
		width: -webkit-calc(100% - 48px);
		width: -o-calc(100% - 48px);
		width: calc(100% - 48px);
		margin:0 28px 0 20px;
	}

	.sticky_header, .sticky_header.sticky_right, .sticky_header.sticky_left {
		width: 100%;
		left:0 !important;
		right:0 !important;
		height: 50px;
	}

	.sticky_header .close_overlay {
		top:7px;
		left:20px;
	}

	.header_title span, .sticky_header .current_page_title {
		font-size:16px;
		margin-top:12px;
	}

	.sticky_header.sticky_event_detail .current_page_title {
		width: -moz-calc(100% - 140px);
		width: -webkit-calc(100% - 140px);
		width: -o-calc(100% - 140px);
		width: calc(100% - 140px);
	}

	.sticky_header a.black_button {
		display: none;
	}

	.header_title {
		display: block;
		height: 48px;
		top:0;
		left:8px;
		right:0;
		z-index: 10;
	}

	.page_left .header_title {
		right: 20px;
	}

	.mobile_hamburger {
		display: block;
		width: 24px;
		height: 10px;
		position: absolute;
		left: 2px;
		top: 1px;
		padding: 18px;
	}

	.page_right .mobile_hamburger {
		background: url('images/hamburger_black.svg') no-repeat center left 20px;
		background-size:24px 10px;
	}

	.page_left .mobile_hamburger {
		background: url('images/hamburger_black.svg') no-repeat center right;
		background-size:24px 10px;
	}

	.page_left .mobile_hamburger {
		right:10px;
		left: initial;
	}

	.white_color .mobile_hamburger {
		background: url('images/hamburger_white.svg') no-repeat center left 20px;
		background-size:24px 10px;
	}

	.mobile_logo {
		display: block;
		position: absolute;
		right:20px;
		top:10px;
		width: 21px;
		height: 33px;
		background: url('images/logo_mobile_black.svg') no-repeat center center;
		background-size:21px 33px;
	}

	.page_left .mobile_logo {
		left:10px;
		right: initial;
	}

	.white_color .mobile_logo {
		background: url('images/logo_mobile_white.svg') no-repeat center center;
		background-size:21px 33px;
	}

	.sidebar {
		cursor:default;
	}

	.shake:hover, .text_wysiwig a:hover, .all_artists h3 a:hover, .page_info .follow_us a:hover {
		animation-play-state: paused;
		animation-duration: none;
		animation-iteration-count: none;
	}

	.header_title.close_overlay.white_color span, .header_title.close_overlay span {
		padding-left:0;
		background: none;
	}

	.event_title_two_colums .column_right {
		width: 100%;
		margin-left:0;
		margin-right:0;
	}

	body {
		font-size:16px;
		line-height: 24px;
	}

	.event_title_weekday, .event_title_title {
		font-size:24px;
		line-height: 24px;
	}

	.nl_copyright .divider {
		margin-bottom:20px;
	}

	h3, h3.leadtext {
		font-size:20px;
		line-height: 30px;
	}

	h3.leadtext {
		margin-bottom:50px;
	}

	.text_wysiwig .title_in_text {
		font-size:20px;
		line-height: 24px;
		margin-bottom:13px;
	}

	input {
		width: -moz-calc(100% - 20px);
		width: -webkit-calc(100% - 20px);
		width: -o-calc(100% - 20px);
		width: calc(100% - 20px);
		padding:4px 10px 2px 10px;
		float: none;
	}

	.nl_copyright .nl_form a.black_button {
		width: 100%;
		float: none;
		margin-left:0;
		margin-top:16px;
	}

	.nl_copyright .copyright {
		margin-top:60px;
	}

	a.mobile_tickets {
		display: block;
		margin-top:20px;
	}

	.facts_listing {
		margin-top:20px;
		margin-bottom:20px;
	}

	.page_info .nav_listing nav a {
		font-size:32px;
		line-height: 32px;
	}

	.page_info .nav_listing {
		right:8px;
		top: 0;
		bottom:0;
	}

	.page_info .follow_us, .page_info .follow_us a {
		font-size:16px;
		line-height: 24px;
	}

	.page_info .follow_us {
		bottom:0;
	}

	.page_detail_inside h1 {
		font-size:32px;
		line-height: 32px;
	}

	h3.section_title {
		margin-top:35px;
		margin-bottom:35px;
	}

	#google_map {
		height: 280px;
	}

	.two_column_element .column_left, .two_column_element .column_right, .two_column_gallery a, .two_column_element.with_columns .column {
		width: 100% !important;
		float: none !important;
		margin-left:0 !important;
		margin-right:0 !important;
		text-align: left;
	}

	.two_column_gallery .column{
		margin-bottom:20px;
	}

	.facts_listing .facts_listing_row .column_right {
		text-align: left;
	}

	.three_column_element .column {
		width: 100% !important;
		margin-left:0 !important;
		margin-right:0 !important;
	}

	.three_column_element .column.teambox {
		width: 100% !important
		margin-left:0 !important;
		margin-right:0 !important;
		float: none !important;
	}

	.three_column_element {
		margin-bottom:0;
	}

	.three_column_element .column {
		margin-bottom:20px;
	}

	.featured_artists a span.years_in_ISC {
		display: block;
	}

	.featured_artists a span.artist_name {
		font-size:24px;
		line-height: 24px;
	}

	.featured_artists a {
		display: block;
		text-align: left;
		margin-bottom:40px;
	}

	.all_artists_listing {
		margin-top:130px;
	}

	.detail_page.page_info {
		min-height: 420px;
	}

	.image_slider .image_description {
		left:5px;
		right:5px;
	}

	.marquee {
		left:8px;
		height: 40px;
		font-size:16px;
		line-height: 16px;
	}

	.news_content, .news_title {
		height: 40px;
	}

	.news_content span, .news_title span {
		margin-top: 14px;
	}


}