/******************************************************************
Site Name: www.bb-promotion.com
Author: Philipp Schreiber / Schreiber & Freunde GmbH
URL: http://www.schreiber-freunde.de

Stylesheet: Main Stylesheet
******************************************************************/
@font-face {
  font-family: 'Dosis';
  src: url('../fonts/Dosis-Bold.woff2') format('woff2'), url('../fonts/Dosis-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Dosis';
  src: url('../fonts/Dosis-Regular.woff2') format('woff2'), url('../fonts/Dosis-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/SourceSansPro-Bold.woff2') format('woff2'), url('../fonts/SourceSansPro-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/SourceSansPro-Regular.woff2') format('woff2'), url('../fonts/SourceSansPro-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Asap';
  src: url('../fonts/Asap-Regular.woff2') format('woff2'), url('../fonts/Asap-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Asap';
  src: url('../fonts/Asap-Bold.woff2') format('woff2'), url('../fonts/Asap-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/******************************************************************
Site Name: www.bb-promotion.com
Author: Philipp Schreiber / Schreiber & Freunde GmbH
URL: http://www.schreiber-freunde.de

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of LESS' great features: 
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques like box shadow and
border-radius.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more. 

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*********************
TOOLS
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
	and place your fonts inside the 
	library/fonts folder. For more information
	on embedding fonts, go to:
	http://www.fontsquirrel.com/
	Be sure to remove the comment brackets.
*/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('../fonts/font-name.eot');
    	src: url('../fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('../fonts/font-name.woff') format('woff'),
             url('../fonts/font-name.ttf') format('truetype'),
             url('../fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
/* 
use the best ampersand 
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, 'Goudy Old Style', Palatino, 'Book Antiqua', serif;
  font-style: italic;
}
/* text alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.ellipsis {
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}
.alert {
  margin: 10px 0;
  padding: 5px 18px;
  border: 1px solid;
  color: #fff !important;
  text-align: center;
}
.alert-help {
  margin: 10px 0;
  padding: 5px 18px;
  border: 1px solid;
  color: #fff !important;
  text-align: center;
  border-color: #e8dc59;
  background: #ebe16f;
}
.alert-info,
.alert-sold_out {
  margin: 10px 0;
  padding: 5px 18px;
  border: 1px solid;
  color: #fff !important;
  text-align: center;
  border-color: #4284ca;
  background: #5691d0;
}
.alert-error,
.alert-cancelled {
  margin: 10px 0;
  padding: 5px 18px;
  border: 1px solid;
  color: #fff !important;
  text-align: center;
  border-color: #ee3d3d;
  background: #f05454;
}
.alert-success,
.alert-new_dates {
  margin: 10px 0;
  padding: 5px 18px;
  border: 1px solid;
  color: #fff !important;
  text-align: center;
  border-color: #56b042;
  background: #63bd4e;
}
/*********************
BORDER RADIUS
*********************/
/* 
NOTE: For older browser support (and some mobile), 
don't use the shorthand to define *different* corners. 

USAGE: .border-radius(4px); 

*/
/*********************
TRANISTION
*********************/
/* .transition(all,2s); */
/*********************
CSS3 GRADIENTS
Be careful with these since they can 
really slow down your CSS. Don't overdo it.
*********************/
/* .css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SHADOW
*********************/
/* .boxShadow(0,0,4px,0,#444); */
/* .boxShadow(none); */
/*********************
FORMS
*********************/
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=date],
textarea {
  background: #ffffff;
  border: 1px solid #9e9e9e;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: inset 0px 2px 4px #e7e7e7;
  -moz-box-shadow: inset 0px 2px 4px #e7e7e7;
  box-shadow: inset 0px 2px 4px #e7e7e7;
  color: #5c5c5c;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 20px;
  padding: 6px 14px 6px;
  width: 100%;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=date]:focus,
textarea:focus {
  color: #333333;
}
.select2-choices {
  background: #ffffff;
  border: 1px solid #9e9e9e;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: inset 0px 2px 4px #e7e7e7;
  -moz-box-shadow: inset 0px 2px 4px #e7e7e7;
  box-shadow: inset 0px 2px 4px #e7e7e7;
  color: #5c5c5c;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 20px;
  padding: 6px 14px 6px;
  width: 265px;
  margin-bottom: 19px;
}
.select2-drop {
  border: 1px solid #9e9e9e;
}
.select2-drop li div {
  font-size: 16px;
  color: #333333;
  line-height: 20px;
  background: #ffffff;
}
.multi-select {
  padding: 50px 0 0;
  min-height: 211px;
}
.select2-drop-multi {
  width: 294px !important;
}
/*********************
BUTTONS
*********************/
.btn {
  position: relative;
  display: inline-block;
  text-shadow: 0 1px 1px #000;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 400;
  font-size: 16px;
  font-family: 'Asap', sans-serif;
  text-align: center;
  border: 1px solid #ececec;
  background: #323232;
  background: -moz-linear-gradient(top, #191919 0%, #212121 2%, #323232 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #191919), color-stop(2%, #212121), color-stop(100%, #323232));
  background: -webkit-linear-gradient(top, #191919 0%, #212121 2%, #323232 100%);
  background: -o-linear-gradient(top, #191919 0%, #212121 2%, #323232 100%);
  background: -ms-linear-gradient(top, #191919 0%, #212121 2%, #323232 100%);
  background: linear-gradient(to bottom, #191919 0%, #212121 2%, #323232 100%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
}
.btn:hover,
.btn:active {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.btn-action,
.btn-tickets,
.btn-press {
  border: 1px solid #941e1e;
  color: #ffd5d5;
  background: #d13535;
  background: -moz-linear-gradient(top, #f59595 0%, #ed5151 2%, #d13535 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f59595), color-stop(2%, #ed5151), color-stop(100%, #d13535));
  background: -webkit-linear-gradient(top, #f59595 0%, #ed5151 2%, #d13535 100%);
  background: -o-linear-gradient(top, #f59595 0%, #ed5151 2%, #d13535 100%);
  background: -ms-linear-gradient(top, #f59595 0%, #ed5151 2%, #d13535 100%);
  background: linear-gradient(to bottom, #f59595 0%, #ed5151 2%, #d13535 100%);
}
.btn-action:hover,
.btn-tickets:hover,
.btn-press:hover,
.btn-action:active,
.btn-tickets:active,
.btn-press:active {
  color: #fff;
  background: #e82323;
  background: -moz-linear-gradient(top, #f16666 0%, #ac2727 2%, #e82323 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f16666), color-stop(2%, #ac2727), color-stop(100%, #e82323));
  background: -webkit-linear-gradient(top, #f16666 0%, #ac2727 2%, #e82323 100%);
  background: -o-linear-gradient(top, #f16666 0%, #ac2727 2%, #e82323 100%);
  background: -ms-linear-gradient(top, #f16666 0%, #ac2727 2%, #e82323 100%);
  background: linear-gradient(to bottom, #f16666 0%, #ac2727 2%, #e82323 100%);
}
.btn-share {
  width: 100%;
  color: #fff;
  border: 1px solid #3c3c3c;
  background: #6d6d6d;
  background: -moz-linear-gradient(top, #9c9c9c 0%, #4d4d4d 2%, #6d6d6d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9c9c9c), color-stop(2%, #4d4d4d), color-stop(100%, #6d6d6d));
  background: -webkit-linear-gradient(top, #9c9c9c 0%, #4d4d4d 2%, #6d6d6d 100%);
  background: -o-linear-gradient(top, #9c9c9c 0%, #4d4d4d 2%, #6d6d6d 100%);
  background: -ms-linear-gradient(top, #9c9c9c 0%, #4d4d4d 2%, #6d6d6d 100%);
  background: linear-gradient(to bottom, #9c9c9c 0%, #4d4d4d 2%, #6d6d6d 100%);
}
.btn-share:hover,
.btn-share:active {
  color: #fff;
  background: #6d6d6d;
  background: -moz-linear-gradient(top, #9c9c9c 0%, #4d4d4d 2%, #6d6d6d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9c9c9c), color-stop(2%, #4d4d4d), color-stop(100%, #6d6d6d));
  background: -webkit-linear-gradient(top, #9c9c9c 0%, #4d4d4d 2%, #6d6d6d 100%);
  background: -o-linear-gradient(top, #9c9c9c 0%, #4d4d4d 2%, #6d6d6d 100%);
  background: -ms-linear-gradient(top, #9c9c9c 0%, #4d4d4d 2%, #6d6d6d 100%);
  background: linear-gradient(to bottom, #9c9c9c 0%, #4d4d4d 2%, #6d6d6d 100%);
}
.btn-share.btn-fb-share {
  padding-left: 50px;
}
.btn-share.btn-fb-share:before {
  position: absolute;
  content: '';
  width: 14px;
  height: 27px;
  left: 12px;
  bottom: 0px;
  background: url(../images/icon-share-facebook.png);
}
.btn-share.btn-fb-share:after {
  position: absolute;
  left: 40px;
  top: 1px;
  width: 2px;
  height: 33px;
  background: url(../images/btn-icon-line.png);
  content: '';
}
.btn-share.btn-fb-share:after {
  left: 35px;
}
.btn-share.btn-send-to-friend {
  padding-left: 30px;
  padding-left: 50px;
}
.btn-share.btn-send-to-friend:before {
  position: absolute;
  content: '';
  width: 21px;
  height: 15px;
  background: url(../images/icon-share-mail.png);
  left: 10px;
  top: 10px;
}
.btn-share.btn-send-to-friend:after {
  position: absolute;
  left: 40px;
  top: 1px;
  width: 2px;
  height: 33px;
  background: url(../images/btn-icon-line.png);
  content: '';
}
.btn-action-secondary {
  border-color: #1e9448;
  color: #fff;
  background: #1d9246;
  background: -moz-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #57e48b), color-stop(2%, #1ec159), color-stop(100%, #1d9246));
  background: -webkit-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: -o-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: -ms-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: linear-gradient(to bottom, #57e48b 0%, #1ec159 2%, #1d9246 100%);
}
.btn-action-secondary:hover,
.btn-action-secondary:active {
  color: #fff;
  background: #1d9246;
  background: -moz-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #57e48b), color-stop(2%, #1ec159), color-stop(100%, #1d9246));
  background: -webkit-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: -o-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: -ms-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: linear-gradient(to bottom, #57e48b 0%, #1ec159 2%, #1d9246 100%);
}
.btn-feedback {
  background: #7b5a15;
  background: -moz-linear-gradient(top, #e7ad47 0%, #b47a16 2%, #7b5a15 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e7ad47), color-stop(2%, #b47a16), color-stop(100%, #7b5a15));
  background: -webkit-linear-gradient(top, #e7ad47 0%, #b47a16 2%, #7b5a15 100%);
  background: -o-linear-gradient(top, #e7ad47 0%, #b47a16 2%, #7b5a15 100%);
  background: -ms-linear-gradient(top, #e7ad47 0%, #b47a16 2%, #7b5a15 100%);
  background: linear-gradient(to bottom, #e7ad47 0%, #b47a16 2%, #7b5a15 100%);
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #3a2b06;
  padding-left: 50px;
}
.btn-feedback:hover,
.btn-feedback:active {
  color: #fff;
}
.btn-feedback:before {
  position: absolute;
  width: 20px;
  height: 15px;
  content: '';
  background: url(../images/icon-feedback.png);
  left: 12px;
  top: 9px;
}
.btn-feedback:after {
  position: absolute;
  left: 40px;
  top: 1px;
  width: 2px;
  height: 33px;
  background: url(../images/btn-icon-line.png);
  content: '';
}
.btn-press {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding-left: 50px;
}
.btn-press:before {
  position: absolute;
  width: 19px;
  height: 19px;
  content: '';
  background: url(../images/icon-press.png) no-repeat;
  left: 12px;
  top: 7px;
}
.btn-press:after {
  position: absolute;
  left: 40px;
  top: 1px;
  width: 2px;
  height: 33px;
  background: url(../images/btn-icon-line.png);
  content: '';
}
.btn-passive {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
}
.btn-passive:hover {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
}
.btn-search {
  border: 0;
  background: none;
  font-size: 14px;
  opacity: 0.6;
  height: 34px;
}
.btn-search:hover {
  opacity: 1;
}
.btn-search:after {
  display: inline-block;
  margin-top: 2px;
  width: 16px;
  height: 17px;
  background: url(../images/icon-search.png) no-repeat;
}
/*********************
ANIMATIONS
*********************/
@-webkit-keyframes special {
  0% {
    -webkit-transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(15deg);
  }
  20% {
    -webkit-transform: rotate(-10deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes special {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  25% {
    transform: rotate(0deg);
  }
}
@-o-keyframes special {
  0% {
    -webkit-transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(15deg);
  }
  20% {
    -webkit-transform: rotate(-10deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes special {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  25% {
    transform: rotate(0deg);
  }
}
/*! normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE6/7/8/9 & FF3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
/*
 * Corrects `inline-block` display not defined in IE6/7/8/9 & FF3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/*
 * Addresses styling for `hidden` attribute not present in IE7/8/9, FF3, S4.
 * Known issue: no IE6 support.
 */
[hidden] {
  display: none;
}
/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}
/*
 * Addresses `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}
/*
 * Addresses margins handled incorrectly in IE6/7.
 */
body {
  margin: 0;
}
/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}
/*
 * Improves readability when focused and also mouse hovered in all browsers.
 * people.opera.com/patrickl/experiments/keyboard/test
 */
a:active,
a:hover {
  outline: 0;
}
/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses font sizes and margins set differently in IE6/7.
 * Addresses font sizes within `section` and `article` in FF4+, Chrome, S5.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}
h3 {
  font-size: 1.17em;
  margin: 1em 0;
}
h4 {
  font-size: 1em;
  margin: 1.33em 0;
}
h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}
h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}
/*
 * Addresses styling not present in IE7/8/9, S5, Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/*
 * Addresses style set to `bolder` in FF3+, S4/5, Chrome.
 */
b,
strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
/*
 * Addresses styling not present in S5, Chrome.
 */
dfn {
  font-style: italic;
}
/*
 * Addresses styling not present in IE6/7/8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/*
 * Addresses margins set differently in IE6/7.
 */
p,
pre {
  margin: 1em 0;
}
/*
 * Corrects font family set oddly in IE6, S4/5, Chrome.
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
/*
 * Addresses CSS quotes not supported in IE6/7.
 */
q {
  quotes: none;
}
/*
 * Addresses `quotes` property not supported in S4.
 */
q:before,
q:after {
  content: '';
  content: none;
}
small {
  font-size: 75%;
}
/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 * gist.github.com/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* ==========================================================================
   Lists
   ========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}
dd {
  margin: 0 0 0 40px;
}
/*
 * Addresses paddings set differently in IE6/7.
 */
menu,
ol,
ul {
  padding: 0 0 0 40px;
}
/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}
/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside `a` element in IE6/7/8/9, FF3.
 * 2. Improves image quality when scaled in IE7.
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}
/*
 * Corrects overflow displayed oddly in IE9.
 */
svg:not(:root) {
  overflow: hidden;
}
/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11.
 */
figure {
  margin: 0;
}
/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7.
 */
form {
  margin: 0;
}
/*
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/*
 * 1. Corrects color not being inherited in IE6/7/8/9.
 * 2. Corrects text not wrapping in FF3.
 * 3. Corrects alignment displayed oddly in IE6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}
/*
 * 1. Corrects font size not being inherited in all browsers.
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome.
 * 3. Improves appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}
/*
 * Addresses FF3/4 setting `line-height` on `input` using `!important` in the
 * UA stylesheet.
 */
button,
input {
  line-height: normal;
}
/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Removes inner spacing in IE7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}
/*
 * Re-set default cursor for disabled elements.
 */
button[disabled],
input[disabled] {
  cursor: default;
}
/*
 * 1. Addresses box sizing set to content-box in IE8/9.
 * 2. Removes excess padding in IE8/9.
 * 3. Removes excess padding in IE7.
 *    Known issue: excess padding remains in IE6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}
/*
 * 1. Addresses `appearance` set to `searchfield` in S5, Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in S5, Chrome (include `-moz`
 *    to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Removes inner padding and border in FF3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9.
 * 2. Improves readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}
/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/******************************************************************
CUSTOMIZED RESET VALUES
I added these extra styles as a more personalized reset. Feel free
to remove them if you like or add your own. If you want to update
the normalize styles, make sure to edit from this point up.
******************************************************************/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
b,
strong,
.strong {
  font-weight: bold;
}
dfn,
em,
.em {
  font-style: italic;
}
small,
.small {
  font-size: 75%;
}
ul,
ol {
  padding: 0;
  list-style-type: none;
}
dd {
  margin: 0;
}
.sidebar ul,
.sidebar ol,
.commentlist {
  list-style: none;
}
/******************************************************************
Site Name: www.bb-promotion.com
Author: Philipp Schreiber / Schreiber & Freunde GmbH
URL: http://www.schreiber-freunde.de

Stylesheet: Base Mobile Stylesheet
******************************************************************/
body {
  font: 14px/18px 'Source Sans Pro', sans-serif;
  background: #171717;
  color: #333;
  -webkit-font-smoothing: antialiased;
  border-top: 2px solid #931010;
}
#main-wrapper {
  background: url(../images/bg-body.png) repeat-y top center;
  background-size: 100% auto;
}
/* =Headings
--------------------------------------------------------------------------------------------------*/
h1,
.h1 {
  font: 35px/40px 'Dosis', sans-serif;
  color: #333;
  margin: 0 0 20px 0;
  font-weight: bold;
  font-size: 35px;
}
h2,
.h2 {
  font-size: 20px;
  color: #565555;
  line-height: 24px;
  text-shadow: 0 1px 1px #fff;
  margin: 0 0 20px 0;
  font-family: 'Dosis', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}
h3,
.h3 {
  font: 25px/30px 'Dosis', sans-serif;
  color: #333;
  margin: 0 0 15px 0;
  font-weight: bold;
  font-size: 25px;
}
h4,
.h4 {
  font: 20px/25px 'Dosis', sans-serif;
  color: #333;
  margin: 0 0 15px 0;
  font-weight: bold;
  font-size: 20px;
}
h5,
.h5 {
  font: 16px/21px 'Dosis', sans-serif;
  color: #333;
  margin: 0 0 15px 0;
  font-weight: bold;
  font-size: 15px;
}
.entry-content p.pub-date,
p.pub-date {
  font-size: 14px;
  color: #909090;
  line-height: 16px;
  text-transform: uppercase;
  display: block;
  margin-top: 0;
}
.entry-content p.pub-date:before,
p.pub-date:before {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -4px;
  width: 12px;
  height: 12px;
  background: url(../images/icon-time.png);
  content: '';
}
.wp-prev-next li {
  width: 50%;
  float: left;
  font-size: 16px;
}
.wp-prev-next li.next-link {
  float: right;
  text-align: right;
}
.entry-content h2 {
  margin-top: 2em;
  margin-top: 2rem;
}
.entry-content a {
  border-bottom: 1px dotted #333;
}
.entry-content a.more-link,
.entry-content a.no-border {
  border: 0;
}
.entry-content blockquote {
  font-size: 16px;
  color: #625a5a;
  font-style: italic;
  font-family: 'Source Sans Pro', sans-serif;
  text-align: center;
  margin: 10px 60px 30px 40px;
}
.entry-content blockquote footer cite {
  font-style: normal;
  font-weight: bold;
}
.entry-content p,
.entry-content #gforms_confirmation_message {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  font-family: 'Source Sans Pro', sans-serif;
  margin: 0 0 15px 0;
}
.entry-content p.wp-caption-text,
.entry-content #gforms_confirmation_message.wp-caption-text {
  margin-top: 2px;
  font-size: 12px;
}
.entry-content u {
  text-decoration: underline;
  display: inline-block;
}
.entry-content del {
  display: inline-block;
  text-decoration: line-through;
  color: #888888;
  font-style: normal;
}
.entry-content ul,
.entry-content ol {
  margin-left: 40px;
  color: #333;
}
.entry-content ul li,
.entry-content ol li {
  display: block;
  display: list-item;
  font-size: 16px;
  font-family: 'Source Sans Pro', sans-serif;
  line-height: 1.25;
  margin-bottom: 5px;
}
.entry-content ul li.second,
.entry-content ol li.second {
  padding-bottom: 0;
}
.entry-content ul {
  list-style-type: disc;
}
.entry-content ul li ul {
  list-style-type: circle;
}
.entry-content ol {
  list-style-type: decimal;
  margin-left: 26px;
}
.entry-content ol li ol {
  margin: 10px 0 0 48px;
  padding: 6px 0 0;
}
.entry-content table th {
  font-size: 16px;
  color: #333;
  line-height: 20px;
  font-weight: bold;
  padding: 7px 19px;
}
.entry-content table td {
  font-size: 16px;
  color: #333;
  line-height: 20px;
  padding: 7px 19px;
}
.entry-content table.table-striped tr:last-child td {
  border-bottom: 1px solid #dddddd;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignright {
  margin-bottom: 20px;
}
.entry-content .alignleft {
  margin-bottom: 20px;
}
.accordion {
  zoom: 1;
}
.accordion:before,
.accordion:after {
  content: "";
  display: table;
}
.accordion:after {
  clear: both;
}
.accordion h2 {
  position: relative;
  border: 1px solid #c3c3c3;
  background: #f4f4f4;
  padding: 5px 30px 5px 10px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  margin-top: 0px;
}
.accordion h2:hover {
  background: #dbdbdb;
}
.accordion h2:after {
  position: absolute;
  width: 12px;
  height: 12px;
  right: 10px;
  top: 10px;
  background: url(../images/icon-plus.png) no-repeat;
  content: '';
}
.accordion h2.active:after {
  background: url(../images/icon-minus.png) no-repeat;
  height: 2px;
  top: 15px;
}
.accordion .content {
  display: none;
  padding-bottom: 20px;
}
.accordion .content > p {
  margin: 0;
  padding-bottom: 25px;
}
.accordion .gform_wrapper {
  padding-bottom: 20px;
  border-bottom: 1px solid #c3c3c3;
}
.gform_wrapper {
  zoom: 1;
}
.gform_wrapper:before,
.gform_wrapper:after {
  content: "";
  display: table;
}
.gform_wrapper:after {
  clear: both;
}
.gform_wrapper .gf_progressbar {
  display: none;
}
.gform_wrapper .gform_page_fields {
  zoom: 1;
}
.gform_wrapper .gform_page_fields:before,
.gform_wrapper .gform_page_fields:after {
  content: "";
  display: table;
}
.gform_wrapper .gform_page_fields:after {
  clear: both;
}
.gform_wrapper .validation_message {
  font-weight: bold;
  color: #db0132;
}
.gform_wrapper .gfield_description {
  margin-top: 10px;
}
.gform_wrapper ul {
  margin: 0;
}
.gform_wrapper li {
  list-style: none;
}
.gform_wrapper li.gfield {
  margin-top: 10px;
}
.gform_wrapper li.col-xs-12 {
  float: left;
}
.gform_wrapper .button {
  position: relative;
  display: inline-block;
  text-shadow: 0 1px 1px #000;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-weight: 400;
  font-size: 16px;
  font-family: 'Asap', sans-serif;
  text-align: center;
  border: 1px solid #ececec;
  background: #323232;
  background: -moz-linear-gradient(top, #191919 0%, #212121 2%, #323232 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #191919), color-stop(2%, #212121), color-stop(100%, #323232));
  background: -webkit-linear-gradient(top, #191919 0%, #212121 2%, #323232 100%);
  background: -o-linear-gradient(top, #191919 0%, #212121 2%, #323232 100%);
  background: -ms-linear-gradient(top, #191919 0%, #212121 2%, #323232 100%);
  background: linear-gradient(to bottom, #191919 0%, #212121 2%, #323232 100%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  margin-top: 20px;
  margin-bottom: 35px;
}
.gform_wrapper .button:hover,
.gform_wrapper .button:active {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.gform_wrapper .gform_previous_button {
  float: left;
  font-size: 16px;
  padding: 6px 12px;
  border-color: #1e9448;
  color: #fff;
  background: #1d9246;
  background: -moz-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #57e48b), color-stop(2%, #1ec159), color-stop(100%, #1d9246));
  background: -webkit-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: -o-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: -ms-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: linear-gradient(to bottom, #57e48b 0%, #1ec159 2%, #1d9246 100%);
}
.gform_wrapper .gform_previous_button:hover,
.gform_wrapper .gform_previous_button:active {
  color: #fff;
  background: #1d9246;
  background: -moz-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #57e48b), color-stop(2%, #1ec159), color-stop(100%, #1d9246));
  background: -webkit-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: -o-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: -ms-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  background: linear-gradient(to bottom, #57e48b 0%, #1ec159 2%, #1d9246 100%);
}
.gform_wrapper .gform_next_button,
.gform_wrapper .gform_button {
  float: right;
  font-size: 16px;
  padding: 6px 12px;
  border: 1px solid #941e1e;
  color: #ffd5d5;
  background: #d13535;
  background: -moz-linear-gradient(top, #f59595 0%, #ed5151 2%, #d13535 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f59595), color-stop(2%, #ed5151), color-stop(100%, #d13535));
  background: -webkit-linear-gradient(top, #f59595 0%, #ed5151 2%, #d13535 100%);
  background: -o-linear-gradient(top, #f59595 0%, #ed5151 2%, #d13535 100%);
  background: -ms-linear-gradient(top, #f59595 0%, #ed5151 2%, #d13535 100%);
  background: linear-gradient(to bottom, #f59595 0%, #ed5151 2%, #d13535 100%);
}
.gform_wrapper .gform_next_button:hover,
.gform_wrapper .gform_button:hover,
.gform_wrapper .gform_next_button:active,
.gform_wrapper .gform_button:active {
  color: #fff;
  background: #e82323;
  background: -moz-linear-gradient(top, #f16666 0%, #ac2727 2%, #e82323 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f16666), color-stop(2%, #ac2727), color-stop(100%, #e82323));
  background: -webkit-linear-gradient(top, #f16666 0%, #ac2727 2%, #e82323 100%);
  background: -o-linear-gradient(top, #f16666 0%, #ac2727 2%, #e82323 100%);
  background: -ms-linear-gradient(top, #f16666 0%, #ac2727 2%, #e82323 100%);
  background: linear-gradient(to bottom, #f16666 0%, #ac2727 2%, #e82323 100%);
}
.gform_wrapper .gfield_required {
  display: inline-block;
  margin-left: 5px;
}
.gform_wrapper .gfield_radio,
.gform_wrapper .gfield_checkbox {
  padding: 0;
}
.gform_wrapper .gfield_radio li,
.gform_wrapper .gfield_checkbox li {
  display: inline-block;
  margin-right: 30px;
}
.gform_wrapper .gfield_radio li label,
.gform_wrapper .gfield_checkbox li label {
  margin-left: 10px;
}
.gform_wrapper .gfield_radio input,
.gform_wrapper .gfield_checkbox input,
.gform_wrapper .gfield_radio label,
.gform_wrapper .gfield_checkbox label {
  display: inline;
}
.gform_wrapper .gform_hidden {
  display: none;
}
.gform_wrapper .gfield_select {
  width: 100%;
}
.gform_wrapper .col-sm-4,
.gform_wrapper .col-sm-6,
.gform_wrapper .col-sm-12 {
  padding-left: 0;
}
.gform_wrapper .col-sm-12:before {
  position: relative;
  content: "";
  display: table;
  clear: both;
}
.gform_wrapper .admin-hidden-markup {
  display: none;
}
.gform_wrapper .admin-hidden-markup + p {
  margin-bottom: 0;
}
.gform_wrapper .gchoice input + br {
  display: none;
}
.filter-tools div.date,
.filter-tools div.genre,
.filter-tools div.city,
.filter-tools div.selectable {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.filter-tools div.date.passive,
.filter-tools div.genre.passive,
.filter-tools div.city.passive,
.filter-tools div.selectable.passive {
  opacity: 0.3;
}
input[type="text"].input-filter {
  height: 38px;
  background: #545454;
  background: -moz-linear-gradient(top, #3f3f3f 0%, #404040 2%, #545454 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3f3f3f), color-stop(2%, #404040), color-stop(100%, #545454));
  background: -webkit-linear-gradient(top, #3f3f3f 0%, #404040 2%, #545454 100%);
  background: -o-linear-gradient(top, #3f3f3f 0%, #404040 2%, #545454 100%);
  background: -ms-linear-gradient(top, #3f3f3f 0%, #404040 2%, #545454 100%);
  background: linear-gradient(to bottom, #3f3f3f 0%, #404040 2%, #545454 100%);
  border: 1px solid #aaa;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  font-size: 15px;
  color: #d3d2d2;
  text-shadow: 0 1px 1px #000;
  line-height: 35px;
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.trivago-improved .select2-choice,
.select2-container.gfield_select .select2-choice {
  height: 34px;
  line-height: 34px;
}
.trivago-improved .select2-choice .select2-arrow b,
.select2-container.gfield_select .select2-choice .select2-arrow b {
  background-position: 0px 4px;
}
.trivago-improved .select2-choice {
  height: 38px;
}
.trivago-improved .trivago-logo {
  display: inline-block;
  width: 97px;
  height: 34px;
  background: url(../images/logo-trivago.png) no-repeat;
  margin-top: 15px;
  float: left;
}
.trivago-improved .powered-by {
  zoom: 1;
  line-height: 34px;
  vertical-align: baseline;
}
.trivago-improved .powered-by:before,
.trivago-improved .powered-by:after {
  content: "";
  display: table;
}
.trivago-improved .powered-by:after {
  clear: both;
}
.trivago-improved .powered-by p {
  float: left;
  margin-right: 10px;
}
.select2-drop.select2-gform li.select2-highlighted div {
  background: #ccc;
}
.select2-container.select2-filter .select2-choice {
  height: 38px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #545454;
  background: -moz-linear-gradient(top, #3f3f3f 0%, #404040 2%, #545454 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3f3f3f), color-stop(2%, #404040), color-stop(100%, #545454));
  background: -webkit-linear-gradient(top, #3f3f3f 0%, #404040 2%, #545454 100%);
  background: -o-linear-gradient(top, #3f3f3f 0%, #404040 2%, #545454 100%);
  background: -ms-linear-gradient(top, #3f3f3f 0%, #404040 2%, #545454 100%);
  background: linear-gradient(to bottom, #3f3f3f 0%, #404040 2%, #545454 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3f3f3f', endColorstr='#545454', GradientType=0);
}
.select2-container.select2-filter .select2-choice .select2-arrow {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 0;
  width: 24px;
  background: #3f3f3f;
  background: -moz-linear-gradient(top, #303030 0%, #313131 2%, #3f3f3f 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #303030), color-stop(2%, #313131), color-stop(100%, #3f3f3f));
  background: -webkit-linear-gradient(top, #303030 0%, #313131 2%, #3f3f3f 100%);
  background: -o-linear-gradient(top, #303030 0%, #313131 2%, #3f3f3f 100%);
  background: -ms-linear-gradient(top, #303030 0%, #313131 2%, #3f3f3f 100%);
  background: linear-gradient(to bottom, #303030 0%, #313131 2%, #3f3f3f 100%);
}
.select2-container.select2-filter .select2-choice .select2-arrow b {
  background-position: 4px 6px;
}
.select2-container.select2-filter .select2-choice abbr {
  right: 30px;
  top: 12px;
}
.select2-container.select2-filter .select2-choice > .select2-chosen {
  font-size: 15px;
  color: #d3d2d2;
  text-shadow: 0 1px 1px #000;
  line-height: 35px;
}
.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  border: 1px solid #aaa;
}
.select2-drop.select2-filter {
  padding: 5px 0;
  background: #545454;
}
.select2-drop.select2-filter li div {
  background: #545454;
  color: #d3d2d2;
}
.select2-drop.select2-filter li.select2-highlighted div {
  background: #747474;
}
.area .input-group {
  border: 1px solid #aaa;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.area .input-group input {
  border: 0;
  -webkit-border-top-right-radius: 0;
  -moz-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}
.area .input-group .btn {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 7px 12px;
  -webkit-border-top-left-radius: 0;
  -moz-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
}
.header > .nav-wrapper nav ul,
.footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header > .nav-wrapper nav ul li,
.footer nav ul li {
  margin: 0;
}
.header > .nav-wrapper nav > ul,
.footer nav > ul {
  margin: 20px 0;
}
.header > .nav-wrapper nav > ul li,
.footer nav > ul li {
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  position: relative;
  border-bottom: 1px solid #666;
}
.header > .nav-wrapper nav > ul li a,
.footer nav > ul li a {
  display: block;
  padding: 8px 0;
}
.header > .nav-wrapper nav > ul li.current_page_parent > a,
.footer nav > ul li.current_page_parent > a,
.header > .nav-wrapper nav > ul li.current-menu-item > a,
.footer nav > ul li.current-menu-item > a {
  color: #fff;
  font-weight: bold;
}
.header > .nav-wrapper nav > ul li:first-child,
.footer nav > ul li:first-child {
  border-top: 1px solid #666;
}
.header > .nav-wrapper nav > ul ul,
.footer nav > ul ul {
  margin: 5px 0 0 0;
  font-size: 14px;
}
.header > .nav-wrapper nav > ul ul li,
.footer nav > ul ul li {
  padding-left: 20px;
}
.header > .nav-wrapper nav > ul ul li:last-child,
.footer nav > ul ul li:last-child {
  border-bottom: none;
}
.header > .nav-wrapper nav > ul ul ul,
.footer nav > ul ul ul {
  display: none;
}
.header > .nav-wrapper nav a,
.footer nav a {
  display: block;
  color: #dfdfdf;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.header > .nav-wrapper nav a:hover,
.footer nav a:hover {
  color: #fff;
  font-weight: bold;
}
.widget {
  margin-bottom: 20px;
}
.widget img {
  height: auto;
  width: auto\0/;
  max-width: 100%;
  min-width: 100%;
}
.widget.contact {
  border: 1px solid #c3c3c3;
  background: #f4f4f4;
  padding: 35px;
}
.widget.image-text {
  position: relative;
}
.widget.image-text .text {
  display: none;
}
.image img {
  width: 100%;
}
.event,
.press-picture {
  position: relative;
  margin: 20px 0;
}
.event .image,
.press-picture .image {
  overflow: hidden;
}
.event .image img,
.press-picture .image img {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.event .text,
.press-picture .text {
  margin-top: 10px;
  padding: 2px 9px 4px;
}
.event .text h3,
.press-picture .text h3,
.event .text h2,
.press-picture .text h2 {
  font-weight: 700;
  margin-bottom: 0;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}
.event .text p.subline,
.press-picture .text p.subline {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #8b8b8b;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}
.event.gallery .status,
.event.panorama .status {
  position: absolute;
  content: '';
  top: -4px;
  right: 6px;
  background: url(../images/event-status.png?v=2);
}
.event.gallery .status.status-cancelled,
.event.panorama .status.status-cancelled {
  width: 88px;
  height: 88px;
  background-position: -322px 0;
}
.event.gallery .status.status-new,
.event.panorama .status.status-new {
  width: 83px;
  height: 83px;
  background-position: -515px 0;
}
.event.gallery .status.status-new_dates,
.event.panorama .status.status-new_dates {
  width: 125px;
  height: 124px;
  background-position: -703px 0;
}
.event.gallery .status.status-sold_out,
.event.panorama .status.status-sold_out {
  width: 112px;
  height: 112px;
  background-position: -105px 0;
}
.event.gallery .status.status-today,
.event.panorama .status.status-today {
  width: 88px;
  height: 88px;
  background-position: -933px 0;
}
.event.panorama .status {
  right: -4px;
}
.event.list .status {
  position: absolute;
  content: '';
  top: -6px;
  right: 180px;
  background: url(../images/event-status.png?v=2);
  width: 104px;
}
.event.list .status.status-cancelled {
  height: 38px;
  background-position: -217px 0;
}
.event.list .status.status-new {
  height: 38px;
  background-position: -411px 0;
}
.event.list .status.status-new_dates {
  height: 51px;
  background-position: -599px 0;
}
.event.list .status.status-sold_out {
  height: 51px;
  background-position: 0 0;
}
.event.list .status.status-today {
  height: 38px;
  background-position: -829px 0;
}
.related-events {
  margin-bottom: 10px;
}
.related-events .event {
  border: 1px solid #d5d5d5;
}
.related-events .event .status {
  right: -4px;
}
/* End Headings
--------------------------------------------------------------------------------------------------*/
/* =Social Links
--------------------------------------------------------------------------------------------------*/
a.social {
  display: inline-block;
  width: 29px;
  height: 29px;
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a.social.facebook {
  background: url(../images/icon-facebook.png);
}
a.social.youtube {
  background: url(../images/icon-youtube.png);
}
a.social.instagram {
  background: url(../images/icon-instagram.png);
}
a.social.twitter {
  margin-bottom: 5px;
  width: 28px;
  height: 23px;
  background: url(../images/icon-twitter.png);
}
a.social:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
/* End Social Links
--------------------------------------------------------------------------------------------------*/
/* =Links
--------------------------------------------------------------------------------------------------*/
a {
  text-decoration: none;
  color: #333;
  cursor: pointer !important;
  outline: 0;
}
a.more-link,
a.facebook-link,
a.instagram-link {
  display: inline-block;
  font-weight: bold;
  color: #000;
  line-height: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a.more-link span,
a.facebook-link span,
a.instagram-link span {
  letter-spacing: -1px;
}
a.more-link:before,
a.facebook-link:before,
a.instagram-link:before {
  display: inline-block;
  vertical-align: top;
  margin-right: 6px;
  width: 11px;
  height: 8px;
  margin-top: 5px;
  content: '';
  background: url(../images/arrow-left.png);
}
a.facebook-link {
  opacity: 0.3;
  color: #000;
}
a.facebook-link:before {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  background: url(../images/icon-facebook-link.png);
}
a.facebook-link:hover {
  opacity: 1;
  color: #000;
}
a.instagram-link {
  opacity: 0.3;
  color: #000;
}
a.instagram-link:before {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  background: url(../images/icon-instagram-link.png);
  background-size: 19px 19px;
}
a.instagram-link:hover {
  opacity: 1;
  color: #000;
}
a.ical-link {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../images/icon-calendar.png);
}
a.ical-link:hover {
  background-position: -22px 0;
}
a:hover {
  color: #777;
  text-decoration: none;
}
/* End Links
--------------------------------------------------------------------------------------------------*/
.row-fluid {
  position: relative;
  width: 100%;
}
.header {
  position: relative;
  margin: 0;
}
.header .logo {
  float: left;
  width: 202px;
}
.header .logo img {
  width: 202px;
  height: 40px;
}
.header .logo a {
  display: block;
  padding: 6px 0 0;
}
.header .nav-toggle {
  display: block;
  float: right;
  padding: 16px 12px 14px 12px;
}
.header .nav-toggle span {
  display: block;
  background: url(../images/icon-nav.png);
  width: 25px;
  height: 23px;
}
.header .main-header {
  zoom: 1;
  height: 53px;
  background: url(../images/bg-nav.png) repeat-x;
  border: 1px solid #fff;
}
.header .main-header:before,
.header .main-header:after {
  content: "";
  display: table;
}
.header .main-header:after {
  clear: both;
}
.header .search-wrapper {
  margin: 14px 0;
}
.header .search-wrapper .form-search {
  background: url(../images/bg-search.png) repeat-x;
  border: 1px solid #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.header .search-wrapper .form-search .btn-submit {
  background: url(../images/bg-search-btn.png) repeat;
  border: 0;
  font-size: 20px;
}
.header .search-wrapper .form-search .search-query {
  font-size: 20px;
  color: #d2d2d2;
  line-height: 25px;
  text-shadow: 0 1px 1px #000;
  font-weight: bold;
  background: none;
  border: 0;
  height: 40px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.footer .nav .hide-footer {
  display: none;
}
.footer .footer-bottom {
  padding: 15px 10px;
  background: #171717;
}
.footer .in-memoriam {
  text-align: center;
  font-size: 14px;
  line-height: 1;
  margin-top: 5px;
  margin-bottom: 0;
}
.footer .in-memoriam a {
  color: #5d5d5d;
  font-weight: 700;
}
.footer .in-memoriam a:hover {
  color: #fff;
}
.footer .social-links {
  text-align: center;
  margin-bottom: 20px;
}
.footer .social-links a {
  display: inline-block;
  margin: 0 10px;
}
.footer .social-links a.twitter {
  margin-bottom: 2px;
}
.home .slider-wrapper ul,
.home .news ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.home .slider-wrapper .btn-action,
.home .news .btn-action {
  margin-bottom: 10px;
  width: 100%;
}
.home .slider-wrapper .event .text,
.home .news .event .text {
  margin-top: 2px;
}
.home .slider-wrapper .event:first-child {
  margin-top: 0;
}
.home .slider-wrapper .event .text {
  background: #fff url(../images/icon-plus.png) no-repeat 95% center;
  padding: 4px 9px;
  border: 1px solid #a6a6a6;
}
.home .slider-wrapper .event .text h3 {
  margin-top: 0px;
}
.home .slider-wrapper .event .text p {
  color: #8b8b8b;
  margin: 0;
}
.home .news {
  background: #fff;
}
.home .news li {
  margin-bottom: 10px;
}
.home .news .text > div {
  padding: 8px 11px 12px;
  border: 1px solid #e5e5e5;
  height: 100%;
}
.home .news h2 {
  margin-top: 20px;
  font-size: 25px;
}
.home .news h3 {
  margin-bottom: 5px;
}
.home .news p:last-child {
  margin-bottom: 0;
}
.single-event .slide a,
.single-event .slide .cta {
  display: none !important;
}
.single-event .item-wrapper-outer .overlay {
  display: none;
}
.single-event .item-wrapper {
  position: relative;
}
.single-event .items {
  zoom: 1;
  margin-top: 0;
}
.single-event .items:before,
.single-event .items:after {
  content: "";
  display: table;
}
.single-event .items:after {
  clear: both;
}
.single-event .entry-content,
.single-event .media,
.single-event .commentaries {
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 20px;
}
.single-event .content-wrapper {
  background: #fff;
}
.single-event .content-wrapper .hentry {
  margin-top: 35px;
}
.single-event .content-wrapper .hentry h1.h3 {
  margin-bottom: 3px;
}
.single-event .content-wrapper .feedback-press {
  padding-top: 35px;
}
.single-event .content-wrapper .feedback-press {
  margin-bottom: 35px;
}
.single-event .content-wrapper .link {
  margin-top: 0;
  font-size: 18px;
}
.single-event .content-wrapper .link a {
  border-bottom: 0;
}
.single-event .content-wrapper .toggle-media {
  margin: 1em 0;
}
.single-event .content-wrapper .media ul {
  list-style: none;
  margin: 0;
}
.single-event .content-wrapper .media .item {
  margin: 0;
}
.single-event .content-wrapper .media .item.audio {
  background: #fff;
  border: 1px solid #aaa;
  padding: 20px;
}
.single-event .content-wrapper .media .item.audio p {
  font-size: 20px;
  color: #565555;
  line-height: 24px;
  text-shadow: 0 1px 1px #fff;
  margin: 0 0 20px 0;
  font-family: 'Dosis', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
}
.single-event .content-wrapper .media .item.audio .mejs-container {
  margin: 0 auto 10px auto;
}
.single-event .content-wrapper .commentaries p.read-more {
  text-align: center;
}
.single-event .content-wrapper .tickets {
  position: relative;
  border: 1px solid #c3c3c3;
  background: #f4f4f4;
  padding: 20px;
  margin-top: 35px;
}
.single-event .content-wrapper .tickets h2 {
  color: #565555;
  font-size: 35px;
}
.single-event .content-wrapper .tickets h2:before {
  display: inline-block;
  background: url(../images/icon-tickets-tablet-up.png);
  margin-right: 10px;
  width: 45px;
  height: 26px;
  content: '';
}
.single-event .content-wrapper .tickets h2:after {
  display: none;
}
.single-event .content-wrapper .tickets article.date p.date {
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
}
.single-event .content-wrapper .tickets article.date header {
  position: relative;
  border-top: 1px solid #d5d5d5;
  padding: 10px 0;
}
.single-event .content-wrapper .tickets article.date header h3,
.single-event .content-wrapper .tickets article.date header p {
  margin: 0;
}
.single-event .content-wrapper .tickets article.date header h3 {
  font-size: 17px;
  margin-top: 5px;
  color: #000;
  line-height: 1.25;
}
.single-event .content-wrapper .tickets article.date header p.venue {
  font-size: 15px;
  font-weight: 700;
  color: #8d8d8d;
  line-height: 20px;
  margin-bottom: 5px;
  margin-right: 10%;
}
.single-event .content-wrapper .tickets article.date header.has-dates {
  cursor: pointer;
}
.single-event .content-wrapper .tickets article.date header.has-dates:after {
  position: absolute;
  color: #949494;
  content: '+';
  right: 5%;
  top: 35px;
  font-size: 30px;
  font-weight: 400;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.single-event .content-wrapper .tickets article.date header.has-dates:hover:after {
  color: #ff000c;
}
.single-event .content-wrapper .tickets article.date header.has-dates.active:after {
  content: '-';
}
.single-event .content-wrapper .tickets article.date section .map img {
  max-width: 100%;
  width: 100%;
}
.single-event .content-wrapper .tickets article.date section .date {
  margin-top: 1.5em;
  margin-bottom: 0;
}
.single-event .content-wrapper .tickets article.date section .hint {
  margin: 0;
  color: #ff000c;
}
.single-event .content-wrapper .tickets article.date section .buttons {
  margin-bottom: 0;
}
.single-event .content-wrapper .tickets article.date section .buttons a {
  display: block;
  float: left;
}
.single-event .content-wrapper .tickets article.date section .buttons a.ical-link {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 8px;
}
.single-event .content-wrapper .tickets article.date .btn-tickets-big {
  font-size: 16px;
  width: 100%;
  margin: 10px 0;
}
.single-event .content-wrapper .tickets article.date .partners {
  margin-top: 35px;
  margin-bottom: 20px;
}
.single-event .content-wrapper .tickets article.date .partners .row {
  margin-left: -15px;
  margin-right: -15px;
}
.single-event .content-wrapper .tickets article.date .partners h4.h2 {
  margin-bottom: 0px;
  color: #000;
}
.single-event .content-wrapper .tickets article.date:first-child {
  margin-top: 10px;
}
.single-event .content-wrapper .tickets article.date:last-child .header {
  border-bottom: 1px solid #d5d5d5;
}
.single-event .content-wrapper .tickets .status {
  position: absolute;
  content: '';
  top: -7px;
  right: 2px;
  background: url(../images/event-status.png?v=2);
  width: 104px;
}
.single-event .content-wrapper .tickets .status.status-cancelled {
  height: 38px;
  background-position: -217px 0;
}
.single-event .content-wrapper .tickets .status.status-new {
  height: 38px;
  background-position: -411px 0;
}
.single-event .content-wrapper .tickets .status.status-new_dates {
  height: 51px;
  background-position: -599px 0;
}
.single-event .content-wrapper .tickets .status.status-sold_out {
  height: 51px;
  background-position: 0 0;
}
.single-event .content-wrapper .tickets .status.status-today {
  height: 38px;
  background-position: -829px 0;
}
.single-event .content-wrapper .sponsors,
.single-event .content-wrapper .share,
.single-event .content-wrapper .newsletter,
.single-event .content-wrapper .related-events,
.single-event .content-wrapper .trivago,
.single-event .content-wrapper .trivago-improved {
  margin-top: 35px;
}
.single-event .content-wrapper .newsletter {
  border: 1px solid #d5d5d5;
  padding: 10px;
}
.single-event .content-wrapper .newsletter h2 {
  font-weight: 700;
}
.single-event .content-wrapper .newsletter p:last-child {
  margin-bottom: 0;
}
.single-event .content-wrapper .newsletter .btn {
  width: 100%;
  margin-bottom: 0;
}
.single-event .content-wrapper .trivago-improved .btn-wrapper {
  text-align: right;
}
.single-event .content-wrapper .partners a {
  display: block;
  margin: 10px 5px;
  background: #fff;
  border: 1px solid #d5d5d5;
  padding: 20px 10px;
  text-align: center;
}
.single-event .content-wrapper .partners a img {
  max-width: 100%;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.single-event .content-wrapper .partners a:hover img {
  opacity: 1;
}
.post-type-archive-event .content-wrapper {
  background: #fff;
  padding: 35px 0;
}
.post-type-archive-event .trigger-filter {
  width: 100%;
}
.post-type-archive-event .filter {
  background: #3e3e3e;
  background: -moz-linear-gradient(top, #4b4b4b 0%, #4a4a4a 2%, #3e3e3e 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4b4b4b), color-stop(2%, #4a4a4a), color-stop(100%, #3e3e3e));
  background: -webkit-linear-gradient(top, #4b4b4b 0%, #4a4a4a 2%, #3e3e3e 100%);
  background: -o-linear-gradient(top, #4b4b4b 0%, #4a4a4a 2%, #3e3e3e 100%);
  background: -ms-linear-gradient(top, #4b4b4b 0%, #4a4a4a 2%, #3e3e3e 100%);
  background: linear-gradient(to bottom, #4b4b4b 0%, #4a4a4a 2%, #3e3e3e 100%);
  border: 1px solid #757575;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.post-type-archive-event .filter .inner {
  padding: 10px 5%;
}
.post-type-archive-event .event {
  margin-bottom: 20px;
}
.post-type-archive-event .event .text {
  border: 1px solid #c3c3c3;
  padding: 10px 15px;
}
.post-type-archive-event .event .text h2,
.post-type-archive-event .event .text h3 {
  text-transform: none;
}
.post-type-archive-event .event .text .more-link {
  font-size: 16px;
}
.post-type-archive-event .event .text p strong {
  font-weight: 400;
}
.post-type-archive-event .gallery .event .content p {
  display: none;
  line-height: 1.3em;
}
.post-type-archive-event .gallery .event .content p:first-child {
  display: block;
  position: relative;
  height: 3.9em;
  overflow: hidden;
  margin: 0;
}
.post-type-archive-event .gallery .event .content p:first-child:after {
  content: '';
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 1.3em;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff 50%);
}
.post-type-archive-event .gallery .event .content ul {
  display: none;
}
.page-template .content-wrapper,
.blog .content-wrapper,
.archive .content-wrapper {
  background: #fff;
  padding: 35px 0;
  margin-top: 15px;
}
.page-template .content-wrapper .sidebar,
.blog .content-wrapper .sidebar,
.archive .content-wrapper .sidebar {
  margin-top: 35px;
}
.page-template .subnav,
.blog .subnav,
.archive .subnav {
  border: 1px solid #c3c3c3;
  background: #f4f4f4;
  padding: 35px;
  margin: 0 0 35px 0;
  font-size: 15px;
}
.page-template .subnav h3.divider,
.blog .subnav h3.divider,
.archive .subnav h3.divider {
  border-top: 1px solid #c3c3c3;
  padding-top: 20px;
  margin-top: 25px;
}
.page-template .subnav p,
.blog .subnav p,
.archive .subnav p {
  margin-bottom: 0;
}
.page-template .subnav ul.children,
.blog .subnav ul.children,
.archive .subnav ul.children {
  display: none;
}
.page-template .subnav ul.parent li,
.blog .subnav ul.parent li,
.archive .subnav ul.parent li {
  margin-bottom: 2px;
}
.page-template .subnav ul.parent li.current_page_parent > a,
.blog .subnav ul.parent li.current_page_parent > a,
.archive .subnav ul.parent li.current_page_parent > a,
.page-template .subnav ul.parent li.current_page_item > a,
.blog .subnav ul.parent li.current_page_item > a,
.archive .subnav ul.parent li.current_page_item > a,
.page-template .subnav ul.parent li.current_page_ancestor > a,
.blog .subnav ul.parent li.current_page_ancestor > a,
.archive .subnav ul.parent li.current_page_ancestor > a {
  font-size: 16px;
  font-weight: 700;
}
.page-template .subnav ul.parent li.current_page_parent ul.children,
.blog .subnav ul.parent li.current_page_parent ul.children,
.archive .subnav ul.parent li.current_page_parent ul.children,
.page-template .subnav ul.parent li.current_page_item ul.children,
.blog .subnav ul.parent li.current_page_item ul.children,
.archive .subnav ul.parent li.current_page_item ul.children,
.page-template .subnav ul.parent li.current_page_ancestor ul.children,
.blog .subnav ul.parent li.current_page_ancestor ul.children,
.archive .subnav ul.parent li.current_page_ancestor ul.children {
  display: block;
  margin: 5px 0 0 10px;
}
.page-template .subnav ul.parent > li,
.blog .subnav ul.parent > li,
.archive .subnav ul.parent > li {
  background: url(../images/icon-subnav-arrow.png) no-repeat 0 8px;
  padding-left: 15px;
}
.page-template .subnav ul.parent a,
.blog .subnav ul.parent a,
.archive .subnav ul.parent a {
  display: block;
  padding: 4px 0;
}
.page-template .logout,
.blog .logout,
.archive .logout {
  text-align: right;
  margin-bottom: 10px;
}
.page-template .logout .btn,
.blog .logout .btn,
.archive .logout .btn {
  font-size: 12px;
}
.blog .post {
  margin-bottom: 20px;
}
.blog .post h2 {
  margin-bottom: 5px;
}
.blog .post .text {
  margin-top: 10px;
  height: 100%;
}
.blog .post .text > div {
  border: 1px solid #c3c3c3;
  padding: 10px 15px;
  min-height: 100%;
}
.page-template-page-press-b2b-php .press-picture .image {
  border: 1px solid #c3c3c3;
  overflow: hidden;
  width: 100%;
  text-align: center;
  padding: 5%;
}
.page-template-page-press-b2b-php .press-picture .image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
}
.page-template-page-press-b2b-php .press-picture .text {
  border: 1px solid #c3c3c3;
  background: #f4f4f4;
  zoom: 1;
}
.page-template-page-press-b2b-php .press-picture .text:before,
.page-template-page-press-b2b-php .press-picture .text:after {
  content: "";
  display: table;
}
.page-template-page-press-b2b-php .press-picture .text:after {
  clear: both;
}
.page-template-page-press-b2b-php .press-picture .text p {
  margin: 0;
}
.page-template-page-press-b2b-php .press-picture .text p.copyright {
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}
.page-template-page-press-b2b-php .press-picture .text p.download,
.page-template-page-press-b2b-php .press-picture .text p.cart {
  width: 50%;
  float: left;
}
.page-template-page-press-b2b-php .press-picture .text p.download.inactive,
.page-template-page-press-b2b-php .press-picture .text p.cart.inactive {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
  width: 100%;
}
.page-template-page-press-b2b-php .press-picture .text p.cart {
  text-align: right;
}
.page-template-page-press-b2b-php .video {
  margin-bottom: 20px;
}
.page-template-page-press-b2b-php .video textarea {
  width: 100%;
  height: 100px;
  background: #f4f4f4;
  font-family: monospace;
}
.page-template-page-press-b2b-php .audio td {
  vertical-align: top;
}
.page-template-page-press-b2b-php .audio .player {
  width: 40%;
}
.page-template-page-press-b2b-php .audio .download,
.page-template-page-press-b2b-php .audio .cart {
  width: 20%;
  text-align: right;
}
.page-template-page-press-b2b-php .btn.download {
  width: 100%;
}
.page-template-page-press-b2b-php .accordion h3 {
  margin-top: 35px;
}
.page-template-page-press-b2b-php .accordion h3:first-child {
  margin-top: 0;
}
.page-template-page-jobs-php h3.h2 {
  margin-bottom: 0px;
  margin-top: 20px;
}
.page-template-page-jobs-php .job-type {
  margin-bottom: 30px;
}
.page-template-page-jobs-php .job-type p {
  margin-top: 10px;
  margin-bottom: 10px;
}
.page-template-page-jobs-php .job-type ul {
  margin-top: 0;
}
.page-template-page-jobs-php ul.jobs {
  margin-left: 0;
}
.page-template-page-jobs-php ul.jobs li {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 0;
}
.page-template-page-jobs-php ul.jobs li a {
  display: block;
  border: 1px solid #e5e5e5;
  font-size: 17px;
  color: #909090;
  line-height: 22px;
  padding: 5px 14px 6px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.page-template-page-jobs-php ul.jobs li a:hover {
  background: #e5e5e5;
  color: #000;
}
.page-template-page-jobs-php .process {
  border-top: 1px solid #c3c3c3;
  padding-top: 20px;
}
.page-template-page-jobs-php .process .step {
  margin-bottom: 20px;
}
.page-template-page-jobs-php .process .step .inner {
  padding: 10px 20px;
  border: 1px solid #c3c3c3;
  background: #f4f4f4;
}
.page-template-page-discover-php .loading {
  padding: 60px 0 45px;
}
.page-template-page-discover-php .content-wrapper {
  padding-top: 10px;
}
.page-template-page-discover-php .item-wrapper {
  position: relative;
}
.page-template-page-discover-php .items {
  zoom: 1;
  margin-top: 0;
}
.page-template-page-discover-php .items:before,
.page-template-page-discover-php .items:after {
  content: "";
  display: table;
}
.page-template-page-discover-php .items:after {
  clear: both;
}
.page-template-page-discover-php .item {
  display: none;
  overflow: hidden;
}
.page-template-page-discover-php .item > div {
  position: relative;
  background: #f4f4f4;
  height: 100%;
}
.page-template-page-discover-php .item > div > span {
  display: block;
}
.page-template-page-discover-php .item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}
.page-template-page-discover-php .item .text,
.page-template-page-discover-php .item .headline {
  padding: 20px;
}
.page-template-page-discover-php .item .headline {
  font-size: 20px;
  color: #565555;
  line-height: 24px;
  text-shadow: 0 1px 1px #fff;
  margin: 0 0 20px 0;
  font-family: 'Dosis', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
  color: #fff;
  margin-bottom: 0px;
  text-shadow: none;
}
.page-template-page-discover-php .item .headline a {
  color: #fff;
}
.page-template-page-discover-php .item .info {
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 16px;
}
.page-template-page-discover-php .item .info .text {
  padding: 0 20px 20px 20px;
  display: none;
}
.page-template-page-discover-php .item .info .text p {
  color: #fff;
  margin-top: 0px;
}
.page-template-page-discover-php .item .info .text .more-link {
  color: #fff;
}
.page-template-page-discover-php .item .info .text .more-link:before {
  background-image: url(../images/arrow-left-white.png);
  width: 14px;
  height: 10px;
}
.page-template-page-discover-php .item .info .text .more-link:hover {
  text-decoration: underline;
}
.search-results .search-result {
  margin-bottom: 20px;
}
body.lang-en-US .footer .footer-top .social-links {
  margin-top: 20px;
}
.trivago #trivago_dealform .trv-widget {
  width: auto;
  height: auto;
}
.trivago #trivago_dealform .trv-widget .trv-search-corner {
  display: none;
}
.trivago #trivago_dealform .trv-widget button.trv-search {
  max-width: 90%;
}
.trivago #trivago_dealform .trv-widget input.trv-shadow {
  width: 83%;
}
.trivago #trivago_dealform .trv-widget .trv-deal-options {
  height: auto;
  padding-bottom: 10px;
}
.page-single-event-landingpage.single-event .entry-content {
  border-bottom: 0;
  padding-bottom: 0;
}
.page-single-event-landingpage #kruu_wp_motivticket {
  display: none;
}
.page-single-event-landingpage .content-wrapper {
  padding-bottom: 20px;
}
.page-single-event-landingpage .featured-image {
  position: relative;
  width: 100%;
  max-width: 100%;
  background-color: #FFF;
}
.page-single-event-landingpage .featured-image .show-logo {
  display: none;
}
.page-single-event-landingpage .featured-image .image {
  width: 98%;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}
.page-single-event-landingpage .featured-image .landingpage-venue {
  position: relative;
  background-color: #FFF;
  padding: 20px;
}
.page-single-event-landingpage .featured-image .landingpage-venue span {
  display: block;
}
.page-single-event-landingpage .featured-image .landingpage-venue span.title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 5px;
  color: #000;
  line-height: 1.25;
}
.page-single-event-landingpage .featured-image .landingpage-venue span.date {
  font-size: 20px;
}
.page-single-event-landingpage .featured-image .landingpage-venue span.venue {
  font-size: 15px;
  font-weight: 700;
  color: #8d8d8d;
  line-height: 20px;
  margin-bottom: 5px;
  margin-right: 10%;
}
.page-single-event-landingpage .has-dates:after {
  display: none !important;
}
.page-single-event-landingpage .content-wrapper .tickets {
  margin-top: 0;
}
/* Audio-Player sizing */
.mejs-audio {
  max-width: 100% !important;
  min-width: auto !important;
  width: auto !important;
}
.audio .player br {
  display: none;
}
/**
 *
 * Main container
 *
 */
#addToHomeScreen {
  z-index: 9999;
  -webkit-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  touch-callout: none;
  width: 240px;
  font-size: 15px;
  padding: 12px 14px;
  text-align: left;
  font-family: helvetica;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0, #fff), color-stop(0.02, #eee), color-stop(0.98, #ccc), color-stop(1, #a3a3a3));
  border: 1px solid #505050;
  -webkit-border-radius: 8px;
  -webkit-background-clip: padding-box;
  color: #333;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
  line-height: 130%;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
#addToHomeScreen.addToHomeIOS7 {
  background: #f2f2f2 !important;
  -webkit-border-radius: 1px !important;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
#addToHomeScreen.addToHomeIpad {
  width: 268px;
  font-size: 18px;
  padding: 14px;
}
/**
 *
 * The 'wide' class is added when the popup contains the touch icon
 *
 */
#addToHomeScreen.addToHomeWide {
  width: 296px;
}
#addToHomeScreen.addToHomeIpad.addToHomeWide {
  width: 320px;
  font-size: 18px;
  padding: 14px;
}
/**
 *
 * The balloon arrow
 *
 */
#addToHomeScreen .addToHomeArrow {
  position: absolute;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0, rgba(204, 204, 204, 0)), color-stop(0.4, rgba(204, 204, 204, 0)), color-stop(0.4, #ccc));
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #505050;
  width: 16px;
  height: 16px;
  -webkit-transform: rotateZ(45deg);
  bottom: -9px;
  left: 50%;
  margin-left: -8px;
  -webkit-box-shadow: inset -1px -1px 0 #a9a9a9;
  -webkit-border-bottom-right-radius: 2px;
}
#addToHomeScreen.addToHomeIOS7 .addToHomeArrow {
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0, rgba(204, 204, 204, 0)), color-stop(0.4, rgba(204, 204, 204, 0)), color-stop(0.4, #f2f2f2)) !important;
  -webkit-box-shadow: inset -1px -1px 0 #fff !important;
  border-color: #ccc !important;
}
/**
 *
 * The balloon arrow for iPad
 *
 */
#addToHomeScreen.addToHomeIpad .addToHomeArrow {
  -webkit-transform: rotateZ(-135deg);
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0, rgba(238, 238, 238, 0)), color-stop(0.4, rgba(238, 238, 238, 0)), color-stop(0.4, #eee));
  -webkit-box-shadow: inset -1px -1px 0 #fff;
  top: -9px;
  bottom: auto;
  left: 50%;
}
/**
 *
 * Close button
 *
 */
#addToHomeScreen .addToHomeClose {
  -webkit-box-sizing: border-box;
  position: absolute;
  right: 4px;
  top: 4px;
  width: 18px;
  height: 18px;
  line-height: 14px;
  text-align: center;
  text-indent: 1px;
  -webkit-border-radius: 9px;
  background: rgba(0, 0, 0, 0.12);
  color: #888;
  -webkit-box-shadow: 0 1px 0 #fff;
  font-size: 16px;
}
#addToHomeScreen.addToHomeIOS7 .addToHomeClose {
  line-height: 12px;
  padding-right: 1px;
  background: transparent;
  border: 1px solid #888;
  -webkit-box-shadow: none;
}
/**
 *
 * The '+' icon, displayed only on iOS < 4.2
 *
 */
#addToHomeScreen .addToHomePlus {
  font-weight: bold;
  font-size: 1.3em;
}
/**
 *
 * The 'share' icon, displayed only on iOS >= 4.2
 *
 */
#addToHomeScreen .addToHomeShare {
  display: inline-block;
  width: 18px;
  height: 15px;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAeCAQAAADu6HTYAAADPElEQVR4Xq3TX2gcRRzA8e/M7mVv2+TSNpc/TZtrY6jUGqgaSAmEChKLrYK0YH0RFC2CSCkEfCghiKU04J8qNigq6os+iQV98MHWFwVBrQQRWs21lBw5cw3NNb1/udu72RGG5Y77IzXW77D7sAwf5scyYoL6BGXSDKFZwaGpLvIUaeoCkvX1MmsM0Ny6oRSQYOLuIS+YZOpfQdqslpUxcZrzTVAz4qPwW2O3CeIwC/RSzeY6Ow1QhUrkr+YOWfEKDkEP8Rij7CHKJmrFSDHBdwGEE5wiGChPN+PnT8VdRtEIl1d4gRj/1EVe5ZSBKGh8iqQpo/Fo5+3C/gz0MYg4zgwbqday1/Q4B8BGQ45d/Hi54lakCrU5obOcidJpu1+Lg9whjabyaOYLnrIBFFaRD+xe2ybMDWY66GmP/WA9cGfGp0CWhy0wkMN8inepFiH2rV1j0NQSNQbFLRQnS8/8YSDBBpadfv4CYDub2fmeHDNAsL1MBWUel0iA+Xik6eHcyvD3vAMSU1TGuA/YRS+dD7ovCQN43GKRFCU20Kd3V/avDVVyAZ5niTEuLA5/zBGWg9EEEhfJKN200Tat8CmRAQb9+wv7soPlHt2tQorsz1uPbr0HTY4sJwrH47zJZwABBAKLMBoQXepwgTwdHCo+fXMkQ4lrxEmQ5AaXipPqDY9V2vn09tgvTPI71EEGYxM+/uMJLJ4svpgaWGKOi/xKgmqLSUGSUd5f2vIVJ/CgBaTIUsZ7ZBsn0+NzfMOXLFCXQyTcybN6ep5ZZgUOHn7jpfUpsZshdugPGf+E5zjbyHTSRyQ8xfRPPM/s63RHeuknSoT22mjmmnAOIMkUZ6D1xSfPPAfd1WFKM3sO2CMaHx8M1NjnXKHaAGGkOW0C02WeYHUz4qMtx+w5gUDS8NckYe5lHsMYwCZEPyEEmjLDZFmAS7CDviMdxyTkMNVBKEmYLvbiQQBIBBbCQG04bGQvFWz6CfsCQLWCigILFwcfkGYBiOpbYuOizTAyYyDdCtrGaRG1LCkIgMYEFhI0WqQZoSlbGRyHKe4qOx7iv2bVQW9dp4dlM/x6kmwnWQcd/Q3FCqwTEiT5s+6D5v/pb0SSHyg7uhMWAAAAAElFTkSuQmCC);
  background-size: 18px 15px;
  text-indent: -9999em;
  overflow: hidden;
}
#addToHomeScreen.addToHomeIOS7 .addToHomeShare {
  width: 11px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAA8CAYAAAAQTCjdAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAASCQAAEgkB80sG3AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAKjSURBVGiB7dpPiFVVHMDxz7m9NCtMyI2bEJEC25WrEkzHUXCRraIwdNE8ZxfYIlcis1ZEbGEzT1QCF4XgH1CyWhUoJKIWNRGEiCNKmkSiYTzfcfGuOokx77x3ZlS8382959zfn+/invvn3RdijHIRBrwkOINCYXEcdjpb7VyiYdBsLScwt5y6IloYdzqXo36Ro0gY9IKWo+5JwmzBt2HQnBw9ehYNazyn5TBee8Dh+Vq+CWu92GufnkTDR6ab7gDeBNHouMM/l9tXTXM0fGBmL726Fg1Dam74EsvKqR8VNowL2Yzj5f7rnnE4DHq2235diYYhhTGfC94up35T0y+6di/ITU0rKVd+sEi0P7xr2pSJOu8zvF+OzqEv7vDH/WFxt7/cshy/ticsN8sXYUht0kXDOlsF9XJ4UaEvNoz9X3zc5bKaZThbyr5jzJ4wlNY7KTgM+ES0vhz+KeiPw36fKC/ucAF9uFBOrTZm26SJCtaV27+xIo7cXdkTEhvOoh+XyxprU1qnim7CQdGK2HAyKRexYVShT3RItDElN+mkjiP2Ym+S3f01hv2EVal5WW6hU0ElmptaqJuBpXg6MbeFH2LDpU6CQ93zWIKnEvs0cayGU3glMfkOo1jQYewZzOuyz7FC95Jwo5OgUFfgeg993hh/eTqCTxOSm/iuk8DY0Ap1b2GhtHXxsfZN4j/X0fOx4auEIknEhqv4OiUn1L13Z/+xWfWVaG4q0dxUormpRHNTieamEs1NJZqbJ1Q0jHvdiJo5S2cVjSNOCHZhn3/SnuYnIvl3yomIIz7MXZMn9hydRCrR3FSiualEc1OJ5qYSzU0lmptKNDePjWgwcPePT7/g+4cp8wCW4GXaryK3tL+mLdD5x62ppllgu7bso8q/2HIbzGWdNmWnSJwAAAAASUVORK5CYII=);
  background-size: 11px 15px;
}
/**
 *
 * The touch icon (if available)
 *
 */
#addToHomeScreen .addToHomeTouchIcon {
  display: block;
  float: left;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(255, 255, 255, 0.9);
  background-repeat: no-repeat;
  width: 57px;
  height: 57px;
  -webkit-background-size: 57px 57px;
  background-size: 57px 57px;
  margin: 0 12px 0 0;
  border: 1px solid #333;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
/*! jQuery UI - v1.10.3 - 2013-09-23
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.datepicker.css, jquery.ui.theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?tr%26ffDefault=Helvetica%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=5px&bgColorHeader=888888&bgTextureHeader=highlight_hard&bgImgOpacityHeader=15&borderColorHeader=404040&fcHeader=ffffff&iconColorHeader=cccccc&bgColorContent=121212&bgTextureContent=gloss_wave&bgImgOpacityContent=16&borderColorContent=404040&fcContent=eeeeee&iconColorContent=bbbbbb&bgColorDefault=adadad&bgTextureDefault=highlight_soft&bgImgOpacityDefault=35&borderColorDefault=cccccc&fcDefault=333333&iconColorDefault=666666&bgColorHover=dddddd&bgTextureHover=highlight_soft&bgImgOpacityHover=60&borderColorHover=dddddd&fcHover=000000&iconColorHover=c98000&bgColorActive=121212&bgTextureActive=inset_soft&bgImgOpacityActive=15&borderColorActive=000000&fcActive=ffffff&iconColorActive=f29a00&bgColorHighlight=555555&bgTextureHighlight=highlight_hard&bgImgOpacityHighlight=55&borderColorHighlight=404040&fcHighlight=cccccc&iconColorHighlight=aaaaaa&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a
* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}
.ui-helper-clearfix:after {
  clear: both;
}
.ui-helper-clearfix {
  min-height: 0;
  /* support: IE7 */
}
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
}
.ui-front {
  z-index: 100;
}
/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}
/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month-year {
  width: 100%;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%;
}
.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}
.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}
.ui-datepicker td {
  border: 0;
  padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}
/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}
.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}
/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1.1em;
}
.ui-widget .ui-widget {
  font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1em;
}
.ui-widget-content {
  border: 1px solid #404040;
  background: #121212 url(../images/jquery.ui/ui-bg_gloss-wave_16_121212_500x100.png) 50% top repeat-x;
  color: #eeeeee;
}
.ui-widget-content a {
  color: #eeeeee;
}
.ui-widget-header {
  border: 1px solid #404040;
  background: #888888 url(../images/jquery.ui/ui-bg_highlight-hard_15_888888_1x100.png) 50% 50% repeat-x;
  color: #ffffff;
  font-weight: bold;
}
.ui-widget-header a {
  color: #ffffff;
}
/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #cccccc;
  background: #adadad url(../images/jquery.ui/ui-bg_highlight-soft_35_adadad_1x100.png) 50% 50% repeat-x;
  font-weight: normal;
  color: #333333;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #333333;
  text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #dddddd;
  background: #dddddd url(../images/jquery.ui/ui-bg_highlight-soft_60_dddddd_1x100.png) 50% 50% repeat-x;
  font-weight: normal;
  color: #000000;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
  color: #000000;
  text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #000000;
  background: #121212 url(../images/jquery.ui/ui-bg_inset-soft_15_121212_1x100.png) 50% 50% repeat-x;
  font-weight: normal;
  color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}
/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #404040;
  background: #555555 url(../images/jquery.ui/ui-bg_highlight-hard_55_555555_1x100.png) 50% top repeat-x;
  color: #cccccc;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #cccccc;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #fef1ec url(../images/jquery.ui/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;
  color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: alpha(opacity=70);
  font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: alpha(opacity=35);
  background-image: none;
}
.ui-state-disabled .ui-icon {
  filter: alpha(opacity=35);
  /* For IE8 - See #6059 */
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url(../images/jquery.ui/ui-icons_bbbbbb_256x240.png);
}
.ui-widget-header .ui-icon {
  background-image: url(../images/jquery.ui/ui-icons_cccccc_256x240.png);
}
.ui-state-default .ui-icon {
  background-image: url(../images/jquery.ui/ui-icons_666666_256x240.png);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
  background-image: url(../images/jquery.ui/ui-icons_c98000_256x240.png);
}
.ui-state-active .ui-icon {
  background-image: url(../images/jquery.ui/ui-icons_f29a00_256x240.png);
}
.ui-state-highlight .ui-icon {
  background-image: url(../images/jquery.ui/ui-icons_aaaaaa_256x240.png);
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url(../images/jquery.ui/ui-icons_cd0a0a_256x240.png);
}
/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}
.ui-icon-carat-1-n {
  background-position: 0 0;
}
.ui-icon-carat-1-ne {
  background-position: -16px 0;
}
.ui-icon-carat-1-e {
  background-position: -32px 0;
}
.ui-icon-carat-1-se {
  background-position: -48px 0;
}
.ui-icon-carat-1-s {
  background-position: -64px 0;
}
.ui-icon-carat-1-sw {
  background-position: -80px 0;
}
.ui-icon-carat-1-w {
  background-position: -96px 0;
}
.ui-icon-carat-1-nw {
  background-position: -112px 0;
}
.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}
.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}
.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}
.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}
.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}
.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}
.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}
.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}
.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}
.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}
.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}
.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}
.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}
.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}
.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}
.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}
.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}
.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}
.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}
.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}
.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}
.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}
.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}
.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}
.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}
.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}
.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}
.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}
.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}
.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}
.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}
.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}
.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}
.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}
.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}
.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}
.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}
.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}
.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}
.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}
.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}
.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}
.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}
.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}
.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}
.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}
.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}
.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}
.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}
.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}
.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}
.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}
.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}
.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}
.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}
.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}
.ui-icon-arrow-4 {
  background-position: 0 -80px;
}
.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}
.ui-icon-extlink {
  background-position: -32px -80px;
}
.ui-icon-newwin {
  background-position: -48px -80px;
}
.ui-icon-refresh {
  background-position: -64px -80px;
}
.ui-icon-shuffle {
  background-position: -80px -80px;
}
.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}
.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}
.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}
.ui-icon-folder-open {
  background-position: -16px -96px;
}
.ui-icon-document {
  background-position: -32px -96px;
}
.ui-icon-document-b {
  background-position: -48px -96px;
}
.ui-icon-note {
  background-position: -64px -96px;
}
.ui-icon-mail-closed {
  background-position: -80px -96px;
}
.ui-icon-mail-open {
  background-position: -96px -96px;
}
.ui-icon-suitcase {
  background-position: -112px -96px;
}
.ui-icon-comment {
  background-position: -128px -96px;
}
.ui-icon-person {
  background-position: -144px -96px;
}
.ui-icon-print {
  background-position: -160px -96px;
}
.ui-icon-trash {
  background-position: -176px -96px;
}
.ui-icon-locked {
  background-position: -192px -96px;
}
.ui-icon-unlocked {
  background-position: -208px -96px;
}
.ui-icon-bookmark {
  background-position: -224px -96px;
}
.ui-icon-tag {
  background-position: -240px -96px;
}
.ui-icon-home {
  background-position: 0 -112px;
}
.ui-icon-flag {
  background-position: -16px -112px;
}
.ui-icon-calendar {
  background-position: -32px -112px;
}
.ui-icon-cart {
  background-position: -48px -112px;
}
.ui-icon-pencil {
  background-position: -64px -112px;
}
.ui-icon-clock {
  background-position: -80px -112px;
}
.ui-icon-disk {
  background-position: -96px -112px;
}
.ui-icon-calculator {
  background-position: -112px -112px;
}
.ui-icon-zoomin {
  background-position: -128px -112px;
}
.ui-icon-zoomout {
  background-position: -144px -112px;
}
.ui-icon-search {
  background-position: -160px -112px;
}
.ui-icon-wrench {
  background-position: -176px -112px;
}
.ui-icon-gear {
  background-position: -192px -112px;
}
.ui-icon-heart {
  background-position: -208px -112px;
}
.ui-icon-star {
  background-position: -224px -112px;
}
.ui-icon-link {
  background-position: -240px -112px;
}
.ui-icon-cancel {
  background-position: 0 -128px;
}
.ui-icon-plus {
  background-position: -16px -128px;
}
.ui-icon-plusthick {
  background-position: -32px -128px;
}
.ui-icon-minus {
  background-position: -48px -128px;
}
.ui-icon-minusthick {
  background-position: -64px -128px;
}
.ui-icon-close {
  background-position: -80px -128px;
}
.ui-icon-closethick {
  background-position: -96px -128px;
}
.ui-icon-key {
  background-position: -112px -128px;
}
.ui-icon-lightbulb {
  background-position: -128px -128px;
}
.ui-icon-scissors {
  background-position: -144px -128px;
}
.ui-icon-clipboard {
  background-position: -160px -128px;
}
.ui-icon-copy {
  background-position: -176px -128px;
}
.ui-icon-contact {
  background-position: -192px -128px;
}
.ui-icon-image {
  background-position: -208px -128px;
}
.ui-icon-video {
  background-position: -224px -128px;
}
.ui-icon-script {
  background-position: -240px -128px;
}
.ui-icon-alert {
  background-position: 0 -144px;
}
.ui-icon-info {
  background-position: -16px -144px;
}
.ui-icon-notice {
  background-position: -32px -144px;
}
.ui-icon-help {
  background-position: -48px -144px;
}
.ui-icon-check {
  background-position: -64px -144px;
}
.ui-icon-bullet {
  background-position: -80px -144px;
}
.ui-icon-radio-on {
  background-position: -96px -144px;
}
.ui-icon-radio-off {
  background-position: -112px -144px;
}
.ui-icon-pin-w {
  background-position: -128px -144px;
}
.ui-icon-pin-s {
  background-position: -144px -144px;
}
.ui-icon-play {
  background-position: 0 -160px;
}
.ui-icon-pause {
  background-position: -16px -160px;
}
.ui-icon-seek-next {
  background-position: -32px -160px;
}
.ui-icon-seek-prev {
  background-position: -48px -160px;
}
.ui-icon-seek-end {
  background-position: -64px -160px;
}
.ui-icon-seek-start {
  background-position: -80px -160px;
}
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}
.ui-icon-stop {
  background-position: -96px -160px;
}
.ui-icon-eject {
  background-position: -112px -160px;
}
.ui-icon-volume-off {
  background-position: -128px -160px;
}
.ui-icon-volume-on {
  background-position: -144px -160px;
}
.ui-icon-power {
  background-position: 0 -176px;
}
.ui-icon-signal-diag {
  background-position: -16px -176px;
}
.ui-icon-signal {
  background-position: -32px -176px;
}
.ui-icon-battery-0 {
  background-position: -48px -176px;
}
.ui-icon-battery-1 {
  background-position: -64px -176px;
}
.ui-icon-battery-2 {
  background-position: -80px -176px;
}
.ui-icon-battery-3 {
  background-position: -96px -176px;
}
.ui-icon-circle-plus {
  background-position: 0 -192px;
}
.ui-icon-circle-minus {
  background-position: -16px -192px;
}
.ui-icon-circle-close {
  background-position: -32px -192px;
}
.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}
.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}
.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}
.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}
.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}
.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}
.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}
.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}
.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}
.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}
.ui-icon-circle-check {
  background-position: -208px -192px;
}
.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}
.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}
.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}
.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}
.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}
.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}
.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}
.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}
.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}
.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}
.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}
.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}
/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 5px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 5px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 5px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 5px;
}
/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa url(../images/jquery.ui/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #aaaaaa url(../images/jquery.ui/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: 0.3;
  filter: alpha(opacity=30);
  border-radius: 8px;
}
@media only screen and (min-width: 768px) {
  /*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
  /* Browser Resets
*********************************/
  .flex-container a:active,
  .flexslider a:active,
  .flex-container a:focus,
  .flexslider a:focus {
    outline: none;
  }
  .slides,
  .flex-control-nav,
  .flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .flexslider {
    margin: 0;
    padding: 0;
  }
  .flexslider .slides > li {
    display: none;
    -webkit-backface-visibility: hidden;
  }
  /* Hide the slides before the JS is loaded. Avoids image jumping */
  .flexslider .slides img {
    width: 100%;
    display: block;
  }
  .flex-pauseplay span {
    text-transform: capitalize;
  }
  /* Clearfix for the .slides element */
  .slides:after {
    content: "\0020";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
  }
  html[xmlns] .slides {
    display: block;
  }
  * html .slides {
    height: 1%;
  }
  /* No JavaScript Fallback */
  /* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
  .no-js .slides > li:first-child {
    display: block;
  }
  /* FlexSlider Default Theme
*********************************/
  .flex-viewport {
    padding-top: 4px;
    max-height: 2000px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }
  .loading .flex-viewport {
    max-height: 300px;
  }
  .flexslider .slides {
    zoom: 1;
  }
  .carousel li {
    margin-right: 5px;
  }
  /* Direction Nav */
  .flex-direction-nav {
    *height: 0;
  }
  .flex-direction-nav a {
    display: block;
    width: 39px;
    height: 39px;
    margin: -20px 0 0;
    position: absolute;
    top: 39.5%;
    z-index: 10;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: url(../images/sprite.png) no-repeat;
    text-indent: -9999px;
  }
  .flex-direction-nav .flex-prev {
    left: 0px;
    background-position: -50px -47px;
  }
  .flex-direction-nav .flex-next {
    right: 0px;
    background-position: -99px -47px;
  }
  .flexslider:hover .flex-prev {
    opacity: 0.7;
  }
  .flexslider:hover .flex-next {
    opacity: 0.7;
  }
  .flexslider:hover .flex-next:hover,
  .flexslider:hover .flex-prev:hover {
    opacity: 1;
  }
  .flex-direction-nav .flex-disabled {
    opacity: 1!important;
    filter: alpha(opacity=0);
    cursor: default;
  }
  .flex-direction-nav a:before {
    font-family: "flexslider-icon";
    font-size: 40px;
    display: inline-block;
    content: '\f001';
  }
  .flex-direction-nav a.flex-next:before {
    content: '\f002';
  }
  /* Pause/Play */
  .flex-pauseplay a {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 5px;
    left: 10px;
    opacity: 0.8;
    z-index: 10;
    overflow: hidden;
    cursor: pointer;
    color: #000;
  }
  .flex-pauseplay a:before {
    font-family: "flexslider-icon";
    font-size: 20px;
    display: inline-block;
    content: '\f004';
  }
  .flex-pauseplay a:hover {
    opacity: 1;
  }
  .flex-pauseplay a.flex-play:before {
    content: '\f003';
  }
  /* Control Nav */
  .flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: -40px;
    text-align: center;
  }
  .flex-control-nav li {
    margin: 0  0 0 5px;
    display: inline-block;
    zoom: 1;
    *display: inline;
  }
  .flex-control-paging li a {
    width: 10px;
    height: 10px;
    display: block;
    background: url(../images/flexslider-pills.png) no-repeat;
    background-position: 0 0;
    text-indent: -9999px;
  }
  .flex-control-paging li a:hover {
    background-position: -10px 0;
  }
  .flex-control-paging li a.flex-active {
    background-position: -10px 0;
  }
  .flex-control-thumbs {
    margin: 5px 0 0;
    position: static;
    overflow: hidden;
  }
  .flex-control-thumbs li {
    width: 25%;
    float: left;
    margin: 0;
  }
  .flex-control-thumbs img {
    width: 100%;
    display: block;
    opacity: 0.7;
    cursor: pointer;
  }
  .flex-control-thumbs img:hover {
    opacity: 1;
  }
  .flex-control-thumbs .flex-active {
    opacity: 1;
    cursor: default;
  }
  body.blur header.header .pre-header,
  body.blur .filter-wrapper,
  body.blur .featured-image,
  body.blur .slider-wrapper,
  body.blur .content-wrapper,
  body.blur footer.footer {
    filter: blur(3px);
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='3');
  }
  #main-wrapper {
    background: url(../images/bg-body-tablet.png);
  }
  a.reset {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url(../images/icon-event-filter-reset.png);
    margin-right: 10px;
    margin-top: 3px;
    border: 0;
    -webkit-transition: none 0.2s ease-in-out;
    -moz-transition: none 0.2s ease-in-out;
    -ms-transition: none 0.2s ease-in-out;
    -o-transition: none 0.2s ease-in-out;
    transition: none 0.2s ease-in-out;
  }
  a.reset:hover {
    background-position: 0 -32px;
  }
  .scroll-top {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 83px;
    right: 20px;
    outline: none;
    width: 40px;
    height: 40px;
    background: #000;
    opacity: 0.5;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    z-index: 10000;
  }
  .scroll-top:after {
    position: absolute;
    content: '';
    left: 13px;
    top: 17px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #888;
  }
  .scroll-top:hover {
    opacity: 0.8;
  }
  .entry-content .alignright {
    float: right;
    margin-left: 20px;
  }
  .entry-content .alignleft {
    float: left;
    margin-right: 20px;
  }
  .event,
  .press-picture {
    margin: 10px 0;
  }
  .event .text,
  .press-picture .text {
    margin-top: 10px;
  }
  .widget.image-text .text {
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    max-height: 0px;
    margin: 0 10px;
    padding: 0 10px;
    background: #000;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    overflow: hidden;
    font-size: 12px;
    line-height: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .widget.image-text .text p {
    margin-top: 5px;
    margin-bottom: 0px;
  }
  .widget.image-text .text p:last-child {
    margin-bottom: 10px;
  }
  .widget.image-text:hover .text {
    max-height: 200px;
  }
  .filter {
    zoom: 1;
    padding: 10px 10px 9px 20px;
    margin-bottom: 0px;
  }
  .filter:before,
  .filter:after {
    content: "";
    display: table;
  }
  .filter:after {
    clear: both;
  }
  .filter .view-tools {
    text-align: right;
  }
  .filter input[type=text] {
    padding: 2px 14px 2px;
  }
  .filter ul {
    padding: 0;
    margin: 0;
    zoom: 1;
  }
  .filter ul:before,
  .filter ul:after {
    content: "";
    display: table;
  }
  .filter ul:after {
    clear: both;
  }
  .filter ul:first-child {
    float: left;
  }
  .filter ul:last-child {
    float: left;
  }
  .filter li {
    float: left;
  }
  .filter a.view {
    display: inline-block;
    margin-right: 10px;
    margin-top: 5px;
    font-weight: 400;
    color: #8a8a8a;
    font-size: 10px;
    text-align: center;
  }
  .filter a.view:before {
    display: block;
    width: 38px;
    height: 16px;
    content: '';
  }
  .filter a.view.panorama:before {
    width: 50px;
    background: url(../images/icon-event-view-panorama.png);
  }
  .filter a.view.gallery:before {
    width: 51px;
    background: url(../images/icon-event-view-gallery.png);
  }
  .filter a.view.list:before {
    background: url(../images/icon-event-view-list.png);
  }
  .filter a.view:hover,
  .filter a.view.active {
    color: #d2d2d2;
  }
  .filter a.view:hover:before,
  .filter a.view.active:before {
    background-position: 0 -16px;
  }
  .more-container {
    position: relative;
    display: block !important;
    background: #ededed;
    background: rgba(237, 237, 237, 0.95);
    border-top: 5px solid #fff;
  }
  .more-container .toggle {
    width: 100%;
    position: absolute;
    z-index: 10;
    bottom: 0px;
    left: 0px;
  }
  .more-container .toggle-arrows {
    height: 30px;
  }
  .more-container .toggle-arrows a {
    position: relative;
    display: block;
    width: 77px;
    height: 50px;
    background: url(../images/btn-trigger-bg.png) no-repeat;
    margin: 0 auto;
    padding: 20px 32px 0 32px;
  }
  .more-container .toggle-arrows a:after {
    display: block;
    width: 13px;
    height: 16px;
    content: '';
    background: url(../images/btn-trigger-arrows.gif);
    background-position: 0 0;
  }
  .more-container .toggle-arrows.active a:after {
    background-position: -13px 0;
  }
  .more-container .toggle-btn {
    height: 37px;
    bottom: -18px;
  }
  .more-container .toggle-btn a {
    position: relative;
    display: block;
    width: 199px;
    height: 37px;
    margin: 0 auto;
    background: url(../images/btn-trigger.png) no-repeat;
    text-align: center;
    line-height: 34px;
    font-size: 15px;
    text-transform: uppercase;
    color: #7c7c7c;
    font-weight: 700;
  }
  .more-container .toggle-btn a:hover {
    color: #ed5151;
  }
  .more-container .toggle-btn a span {
    display: inline-block;
    width: 13px;
    height: 16px;
    background: url(../images/btn-trigger-arrows.png) no-repeat;
    background-position: -13px 0;
    margin-left: 8px;
    margin-right: 8px;
  }
  .more-container .toggle-btn.active a span {
    background-position: 0 0;
  }
  .more-container:after {
    height: 10px;
    background: url(../images/bg-shadow-bottom.png) repeat-x;
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 1;
  }
  .more-container.active:before {
    height: 6px;
    background: url(../images/bg-shadow-top.png) repeat-x;
    content: '';
    position: absolute;
    width: 100%;
    z-index: 1;
  }
  .header {
    z-index: 9999;
    padding-top: 20px;
  }
  .header .pre-header {
    zoom: 1;
    background: url(../images/bg-pre-header.png);
    border: 1px solid #7f7f7f;
  }
  .header .pre-header:before,
  .header .pre-header:after {
    content: "";
    display: table;
  }
  .header .pre-header:after {
    clear: both;
  }
  .header .pre-header .language {
    float: left;
    margin: 14px 0 14px 10px;
  }
  .header .pre-header .language a {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/flag-english.png);
    opacity: 0.8;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .header .pre-header .language a:hover {
    opacity: 1;
  }
  .header .pre-header .social-links {
    float: left;
    margin-left: 10px;
  }
  .header .pre-header .social-links a {
    margin: 8px 10px 8px 0;
  }
  .header .pre-header .social-links a.twitter {
    margin-bottom: 10px;
  }
  .header .main-header > .container {
    -webkit-box-shadow: 0px 0px 15px #000;
    -moz-box-shadow: 0px 0px 15px #000;
    box-shadow: 0px 0px 15px #000;
  }
  .header .logo a {
    padding: 14px 0 14px 7px;
  }
  .header .main-header {
    background: none;
    border: 0;
    height: auto;
  }
  .header .main-header .container {
    background: url(../images/bg-nav.png) repeat-x;
    border: 1px solid #fff;
    height: 70px;
  }
  .header .nav {
    font-family: 'Asap', sans-serif;
    margin: 0;
  }
  .header .nav li {
    float: left;
  }
  .header .nav-main {
    float: left;
    margin-left: 20px;
  }
  .header .nav-main li a {
    display: block;
    font-size: 18px;
    color: #262626;
    line-height: 23px;
    text-shadow: 0px 1px 1px #ffffff;
    padding: 22px 14px;
    font-weight: 400;
  }
  .header .nav-main li a:hover {
    font-weight: 700;
  }
  .header .nav-main li.has-border a {
    background: url(../images/nav-pipe.png) no-repeat right 5px;
  }
  .header .nav-main li.current-menu-item a,
  .header .nav-main li.current-page-ancestor a {
    font-weight: 700;
    text-decoration: underline;
  }
  .header .nav-main .sub-menu,
  .header .nav-main .hide-main {
    display: none;
  }
  .header .nav-meta {
    float: right;
  }
  .header .nav-meta li a {
    display: block;
    font-size: 16px;
    color: #bebebe;
    text-shadow: 0 1px 1px #333;
    line-height: 18px;
    padding: 14px 15px;
    font-weight: 400;
  }
  .header .nav-meta li a:hover {
    font-weight: 700;
  }
  .header .nav-meta li.current-menu-item > a,
  .header .nav-meta li.current-page-ancestor > a {
    font-weight: 700;
    text-decoration: underline;
  }
  .header div.search {
    float: right;
    display: inline-block;
    margin-top: 17px;
    width: 125px;
    overflow: hidden;
  }
  .header div.search .input-group {
    width: 100%;
  }
  .header .btn-tickets,
  .header .btn-search {
    float: right;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
  .header .btn-tickets {
    margin-top: 17px;
    font-size: 15px;
    background: #d13535;
    background: -moz-linear-gradient(top, #f59595 0%, #ed5151 2%, #d13535 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f59595), color-stop(2%, #ed5151), color-stop(100%, #d13535));
    background: -webkit-linear-gradient(top, #f59595 0%, #ed5151 2%, #d13535 100%);
    background: -o-linear-gradient(top, #f59595 0%, #ed5151 2%, #d13535 100%);
    background: -ms-linear-gradient(top, #f59595 0%, #ed5151 2%, #d13535 100%);
    background: linear-gradient(to bottom, #f59595 0%, #ed5151 2%, #d13535 100%);
    opacity: 1;
    display: none;
  }
  .header .btn-search {
    background: #323232;
    background: -moz-linear-gradient(top, #191919 0%, #212121 2%, #323232 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #191919), color-stop(2%, #212121), color-stop(100%, #323232));
    background: -webkit-linear-gradient(top, #191919 0%, #212121 2%, #323232 100%);
    background: -o-linear-gradient(top, #191919 0%, #212121 2%, #323232 100%);
    background: -ms-linear-gradient(top, #191919 0%, #212121 2%, #323232 100%);
    background: linear-gradient(to bottom, #191919 0%, #212121 2%, #323232 100%);
    margin-left: 10px;
    padding: 7px 10px;
  }
  .header .tickets-wrapper {
    position: absolute;
    width: 100%;
    height: 370px;
  }
  .header .tickets-wrapper .container {
    position: relative;
  }
  .header .tickets-wrapper .tickets-inner {
    position: absolute;
    right: 0px;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    height: 370px;
    background: #393839;
    background: rgba(59, 59, 59, 0.95);
    border: 1px solid #7a7879;
    color: #fff;
  }
  .header .tickets-wrapper .tickets-inner h3 {
    font: 35px/40px 'Dosis', sans-serif;
    margin: 0 0 20px 0;
    font-weight: bold;
    font-size: 35px;
    color: #fff;
  }
  .header .tickets-wrapper .tickets-inner a {
    color: #fff;
  }
  .header .tickets-wrapper .tickets-inner .germany {
    height: 370px;
  }
  .header .tickets-wrapper .tickets-inner .germany,
  .header .tickets-wrapper .tickets-inner .austria,
  .header .tickets-wrapper .tickets-inner .swiss {
    padding: 25px 25px 0 25px;
  }
  .header .tickets-wrapper .tickets-inner .germany,
  .header .tickets-wrapper .tickets-inner .austria {
    border-right: 1px solid #7a7879;
  }
  .header .tickets-wrapper .tickets-inner .austria,
  .header .tickets-wrapper .tickets-inner .swiss {
    height: 270px;
  }
  .header .tickets-wrapper .tickets-inner .pricing-info {
    background: #000;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    height: 100px;
    border-top: 1px solid #7a7879;
    margin-left: -10px;
    margin-right: -10px;
  }
  .header .tickets-wrapper .tickets-inner .pricing-info p {
    margin: 0;
  }
  .header .tickets-wrapper .close-tickets {
    position: absolute;
    content: '';
    width: 29px;
    height: 29px;
    background: url(../images/icon-close-search.png);
    right: -15px;
    top: -15px;
    border: 0;
  }
  .header .fancy-search-wrapper {
    position: absolute;
    width: 100%;
    height: 600px;
    margin-top: 0;
  }
  .header .fancy-search-wrapper .standard-content {
    padding: 20px 10px;
  }
  .header .fancy-search-wrapper .filter-tools {
    margin-bottom: 20px;
  }
  .header .fancy-search-wrapper .search-inner {
    position: relative;
    margin-top: 20px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 10px;
    padding-right: 10px;
    height: auto;
    min-height: 620px;
    background: #393839;
    background: rgba(59, 59, 59, 0.95);
    border: 1px solid #7a7879;
    font-size: 16px;
    color: #fff;
    -webkit-box-shadow: 0px 0px 15px #000;
    -moz-box-shadow: 0px 0px 15px #000;
    box-shadow: 0px 0px 15px #000;
  }
  .header .fancy-search-wrapper .search-inner .close-search {
    position: absolute;
    content: '';
    width: 29px;
    height: 29px;
    background: url(../images/icon-close-search.png);
    right: -15px;
    top: -15px;
    border: 0;
  }
  .header .fancy-search-wrapper h1,
  .header .fancy-search-wrapper .h1 {
    font-size: 25px;
    text-transform: uppercase;
  }
  .header .fancy-search-wrapper h3 {
    font-size: 20px;
  }
  .header .fancy-search-wrapper h1,
  .header .fancy-search-wrapper .h1,
  .header .fancy-search-wrapper a,
  .header .fancy-search-wrapper h3 {
    color: #fff;
    text-shadow: none;
  }
  .header .fancy-search-wrapper h2.tickets:before {
    display: block;
    float: left;
    background: url(../images/icon-tickets-tablet-up.png);
    margin-right: 10px;
    width: 45px;
    height: 26px;
    content: '';
    margin-top: 8px;
  }
  .header .fancy-search-wrapper .event-text,
  .header .fancy-search-wrapper .content-results {
    background: #000;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-right: 1px solid #7a7879;
    height: 548px;
  }
  .header .fancy-search-wrapper .event-text {
    cursor: pointer;
  }
  .header .fancy-search-wrapper .content-results {
    border-right: none;
  }
  .header .fancy-search-wrapper .content-results h3 {
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    hyphens: none;
  }
  .header .fancy-search-wrapper .content-results p {
    margin: 0;
  }
  .header .fancy-search-wrapper .content-results li {
    border-top: 1px solid #fff;
    padding: 10px 0;
  }
  .header .fancy-search-wrapper .content-results li:last-child {
    border-bottom: 1px solid #fff;
  }
  .header .fancy-search-wrapper .dates {
    padding: 20px;
    border-right: 1px solid #7a7879;
    height: 548px;
  }
  .header .fancy-search-wrapper .dates .show {
    margin-bottom: 5px;
    line-height: 30px;
  }
  .header .fancy-search-wrapper .dates .show .date p,
  .header .fancy-search-wrapper .dates .show .city p {
    margin: 0;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    hyphens: none;
  }
  .header .fancy-search-wrapper .dates .show .btn-tickets {
    margin: 0;
    font-size: 12px;
  }
  .header .fancy-search-wrapper .dates .btn,
  .header .fancy-search-wrapper .content-results .btn {
    width: 100%;
  }
  .footer .footer-top {
    padding-bottom: 20px;
  }
  .footer .footer-bottom .social-links {
    text-align: right;
    margin-bottom: 0;
  }
  .footer .logo-footer {
    display: block;
    width: 151px;
    height: 30px;
    background: url(../images/logo-footer.png);
    opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    filter: alpha(opacity=30);
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
  }
  .footer .logo-footer:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }
  .footer .newsletter {
    padding-top: 20px;
    color: #bbbbbb;
  }
  .footer .newsletter h3 {
    color: #bbbbbb;
    font-size: 18px;
    line-height: 22px;
  }
  .footer .newsletter a {
    color: #bbbbbb;
    font-weight: bold;
    text-decoration: underline;
  }
  .feedback {
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 10000;
  }
  .feedback a {
    display: block;
    width: 108px;
    height: 108px;
    background: url(../images/btn-feedback.png) no-repeat;
    opacity: 0.6;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
  }
  .feedback a:hover {
    opacity: 1;
  }
  .content-wrapper {
    z-index: 10;
  }
  .slider-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #b7b7b7;
  }
  .slider-wrapper .container {
    padding-left: 0;
    padding-right: 0;
  }
  .slider-wrapper .slides {
    height: 100%;
    width: 100%;
    -webkit-transition: margin-top 0.75s ease-out;
    -moz-transition: margin-top 0.75s ease-out;
    -ms-transition: margin-top 0.75s ease-out;
    -o-transition: margin-top 0.75s ease-out;
    transition: margin-top 0.75s ease-out;
  }
  .slider-wrapper .slide {
    z-index: 1;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
  }
  .slider-wrapper .nav {
    position: absolute;
    height: 291px;
    width: 85px;
    z-index: 1000;
  }
  .slider-wrapper .nav div {
    height: 192px;
    overflow: hidden;
  }
  .slider-wrapper .nav ul {
    width: 85px;
    margin: 0 auto;
    -webkit-transition: margin 0.2s ease-in-out;
    -moz-transition: margin 0.2s ease-in-out;
    -ms-transition: margin 0.2s ease-in-out;
    -o-transition: margin 0.2s ease-in-out;
    transition: margin 0.2s ease-in-out;
  }
  .slider-wrapper .nav li {
    height: 67px;
  }
  .slider-wrapper .nav a {
    display: block;
    margin-bottom: 10px;
  }
  .slider-wrapper .nav a img {
    display: block;
  }
  .slider-wrapper .nav a.active img {
    border: 2px solid #fff;
    width: 85px;
  }
  .slider-wrapper .top,
  .slider-wrapper .bottom {
    width: 85px;
    height: 42px;
    background: url(../images/btn-layerslider.png);
    opacity: 0.6;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
  }
  .slider-wrapper .top:hover,
  .slider-wrapper .bottom:hover {
    opacity: 0.9;
  }
  .slider-wrapper .top {
    margin-bottom: 10px;
  }
  .slider-wrapper .bottom {
    margin-top: 10px;
    background-position: 0 -42px;
  }
  .slider-wrapper .xmas-teaser,
  .slider-wrapper .valentine-teaser,
  .slider-wrapper .easter-teaser {
    width: 225px;
    height: 222px;
    position: absolute;
    z-index: 9999;
    left: 0px;
    bottom: 0px;
  }
  .slider-wrapper .xmas-teaser .symbol,
  .slider-wrapper .valentine-teaser .symbol,
  .slider-wrapper .easter-teaser .symbol {
    width: 139px;
    height: 143px;
    position: absolute;
    bottom: -77px;
    left: -10px;
    z-index: 10;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .slider-wrapper .xmas-teaser .text,
  .slider-wrapper .valentine-teaser .text,
  .slider-wrapper .easter-teaser .text {
    display: none;
  }
  .slider-wrapper .xmas-teaser:hover .text,
  .slider-wrapper .valentine-teaser:hover .text,
  .slider-wrapper .easter-teaser:hover .text {
    z-index: 1;
    display: block;
    position: absolute;
    left: 30px;
    bottom: 10px;
    width: 500px;
  }
  .slider-wrapper .xmas-teaser:hover .text p,
  .slider-wrapper .valentine-teaser:hover .text p,
  .slider-wrapper .easter-teaser:hover .text p {
    padding-left: 80px;
    padding-right: 5px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.4);
    margin: 2px;
    color: #fff;
  }
  .slider-wrapper .xmas-teaser:hover .text p strong,
  .slider-wrapper .valentine-teaser:hover .text p strong,
  .slider-wrapper .easter-teaser:hover .text p strong {
    text-transform: uppercase;
  }
  .slider-wrapper .xmas-teaser:hover .symbol,
  .slider-wrapper .valentine-teaser:hover .symbol,
  .slider-wrapper .easter-teaser:hover .symbol {
    bottom: -50px;
  }
  .slider-wrapper .xmas-teaser {
    background: url(../images/bg-xmas.png);
  }
  .slider-wrapper .xmas-teaser .symbol {
    background: url(../images/santa.png);
    -webkit-animation: special 4s infinite;
    -moz-animation: special 4s infinite;
    -o-animation: special 4s infinite;
    animation: special 4s infinite;
  }
  .slider-wrapper .valentine-teaser {
    background: url(../images/specials/valentinstag/bg-valentine.png);
  }
  .slider-wrapper .valentine-teaser .symbol {
    background: url(../images/specials/valentinstag/herzl.png);
    -webkit-animation: special 4s infinite;
    -moz-animation: special 4s infinite;
    -o-animation: special 4s infinite;
    animation: special 4s infinite;
  }
  .slider-wrapper .easter-teaser {
    background: url(../images/specials/ostern/bg-ostern.png);
  }
  .slider-wrapper .easter-teaser .symbol {
    background: url(../images/specials/ostern/bunny.png);
    -webkit-animation: special 4s infinite;
    -moz-animation: special 4s infinite;
    -o-animation: special 4s infinite;
    animation: special 4s infinite;
  }
  .slider-wrapper .easter-teaser:hover .text {
    left: 50px;
  }
  .no-slider-nav .nav {
    display: none !important;
  }
  .page-template .content-wrapper,
  .blog .content-wrapper,
  .archive .content-wrapper {
    margin-top: 35px;
  }
  .page-template .content-wrapper.has-featured-image,
  .blog .content-wrapper.has-featured-image,
  .archive .content-wrapper.has-featured-image {
    margin-top: 0;
  }
  .home .event-slider h2,
  .home .news h2 {
    float: left;
    margin-top: 0;
  }
  .home .event-slider .slider,
  .home .news .slider {
    position: relative;
  }
  .home .event-slider .flex-control-nav,
  .home .news .flex-control-nav {
    top: -37px;
    right: 25%;
    width: auto;
    bottom: auto;
  }
  .home .event-slider .flex-direction-nav a,
  .home .news .flex-direction-nav a {
    background: url(../images/icon-slider-nav-sprite.png);
    background-position: 0 0;
    margin-top: -33px;
  }
  .home .event-slider .flex-direction-nav a.flex-next,
  .home .news .flex-direction-nav a.flex-next {
    background-position: -39px 0;
  }
  .home .event-slider .btn,
  .home .news .btn {
    float: right;
    width: 22.5%;
    font-size: 13px;
    background: #cfcfcf;
    color: #555;
    text-shadow: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: none;
  }
  .home .event-slider .btn:hover,
  .home .news .btn:hover {
    background: #b6b6b6;
  }
  .home .news {
    position: relative;
    padding-top: 35px;
    padding-bottom: 25px;
  }
  .home .news .sidebar {
    margin-top: 20px;
  }
  .home .news .slides li .image,
  .home .news .slides li .text {
    width: 50%;
    float: left;
  }
  .home .news .slides li .image {
    padding-right: 10px;
  }
  .home .news .slides li .text {
    height: 100%;
    padding-left: 10px;
  }
  .home .regional-container .event-slider {
    margin-top: 35px;
  }
  .home .regional-container .event-slider ul.slides li {
    margin-top: 0;
    margin-bottom: 15px;
    margin-right: 21px;
  }
  .home .regional-container .event-slider ul.slides li .image {
    margin-bottom: 10px;
  }
  .home .regional-container .event-slider ul.slides li .text {
    padding: 0;
  }
  .home .regional-container .event-slider ul.slides li .text h3 {
    font-weight: 700;
    margin-bottom: 0;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    -moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    hyphens: none;
  }
  .home .regional-container .event-slider ul.slides li .text p {
    margin: 0;
    font-size: 15px;
    color: #8b8b8b;
    margin-bottom: 20px;
  }
  .home .regional-container .status {
    right: -4px;
  }
  .home .regional-container .sidebar .widget {
    margin-bottom: 35px;
  }
  .home .regional-container .sidebar .widget:first-child {
    padding-left: 0px;
  }
  .home .regional-container .sidebar .widget:last-child {
    padding-right: 0px;
  }
  .home .regional-container .sidebar img {
    max-width: 100%;
  }
  .single-event .content-wrapper .hentry h1,
  .single-event .content-wrapper .further-information h1,
  .single-event .content-wrapper .newsletter h1,
  .single-event .content-wrapper .hentry h2,
  .single-event .content-wrapper .further-information h2,
  .single-event .content-wrapper .newsletter h2 {
    font-size: 35px;
  }
  .single-event .content-wrapper .feedback-press,
  .single-event .content-wrapper .share {
    text-align: center;
  }
  .single-event .content-wrapper .feedback-press .btn,
  .single-event .content-wrapper .share .btn {
    margin: 5px;
    display: inline-block;
  }
  .single-event .content-wrapper .newsletter,
  .single-event .content-wrapper .share,
  .single-event .content-wrapper .event-feedback,
  .single-event .content-wrapper .trivago-improved {
    border: 1px solid #c3c3c3;
    background: #f4f4f4;
    padding: 35px;
  }
  .single-event .content-wrapper .event-feedback {
    margin-bottom: 35px;
  }
  .single-event .content-wrapper .tickets {
    padding: 35px;
  }
  .single-event .content-wrapper .tickets article.date header p.date {
    margin: 20px 0 0 0;
    font-size: 20px;
  }
  .single-event .content-wrapper .tickets article.date header.has-dates:after {
    top: 31px;
  }
  .single-event .content-wrapper .tickets article.date section .map {
    margin-bottom: 20px;
  }
  .single-event .content-wrapper .tickets article.date section .map img {
    width: auto;
    opacity: 0.6;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
  }
  .single-event .content-wrapper .tickets article.date section .map a:hover img {
    opacity: 1;
  }
  .single-event .content-wrapper .tickets article.date .btn-tickets {
    font-size: 13px;
    margin-top: 7px;
  }
  .single-event .content-wrapper .tickets .status {
    position: absolute;
    content: '';
    top: -5px;
    right: -5px;
    background: url(../images/event-status.png?v=2);
  }
  .single-event .content-wrapper .tickets .status.status-cancelled {
    width: 88px;
    height: 88px;
    background-position: -322px 0;
  }
  .single-event .content-wrapper .tickets .status.status-new {
    width: 83px;
    height: 83px;
    background-position: -515px 0;
  }
  .single-event .content-wrapper .tickets .status.status-new_dates {
    width: 125px;
    height: 124px;
    background-position: -703px 0;
  }
  .single-event .content-wrapper .tickets .status.status-sold_out {
    width: 112px;
    height: 112px;
    background-position: -105px 0;
  }
  .single-event .content-wrapper .tickets .status.status-today {
    width: 88px;
    height: 88px;
    background-position: -933px 0;
  }
  .single-event .content-wrapper .item-wrapper-outer {
    position: relative;
    height: 220px;
    overflow: hidden;
  }
  .single-event .content-wrapper .item-wrapper-outer .item {
    z-index: 10;
  }
  .single-event .content-wrapper .item-wrapper-outer .overlay {
    display: block;
    position: absolute;
    z-index: 100;
    content: '';
    height: 150px;
    width: 100%;
    background: url(../images/bg-media-overlay.png) repeat-x;
    left: 0;
    bottom: 0;
    text-align: center;
  }
  .single-event .content-wrapper .item-wrapper-outer .overlay a {
    display: block;
    margin-top: 100px;
    border-bottom: none;
    font-size: 18px;
  }
  .single-event .content-wrapper .item-wrapper-outer .overlay a:before,
  .single-event .content-wrapper .item-wrapper-outer .overlay a:after {
    display: inline-block;
    content: '';
    width: 10px;
    height: 15px;
    margin: 0 10px;
    background: url(../images/btn-media-more.png);
  }
  .post-type-archive-event .filter {
    margin-bottom: 0;
  }
  .post-type-archive-event .filter .inner {
    padding: 0;
  }
  .post-type-archive-event .events-wrapper .event {
    margin-bottom: 10px;
  }
  .post-type-archive-event .events-wrapper .event:nth-child(3n+3) {
    zoom: 1;
  }
  .post-type-archive-event .events-wrapper .event:nth-child(3n+3):before,
  .post-type-archive-event .events-wrapper .event:nth-child(3n+3):after {
    content: "";
    display: table;
  }
  .post-type-archive-event .events-wrapper .event:nth-child(3n+3):after {
    clear: both;
  }
  .page-template-page-jobs-php .process .step .inner {
    height: 100%;
  }
  .page-template-page-jobs-php .process .step .inner:after {
    position: absolute;
    content: '';
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #f4f4f4;
    top: 20px;
    right: -5px;
  }
  .page-template-page-jobs-php .process .step .inner:before {
    position: absolute;
    content: '';
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #c3c3c3;
    top: 20px;
    right: -6px;
  }
  .page-template-page-jobs-php .process .step h3 {
    font-size: 20px;
    line-height: 1.25;
    margin-top: 10px;
  }
  .page-template-page-jobs-php .process .step:after {
    position: absolute;
    content: '';
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #fff;
    top: 20px;
    left: 9px;
  }
  .page-template-page-jobs-php .process .step:before {
    position: absolute;
    content: '';
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #c3c3c3;
    top: 20px;
    left: 10px;
  }
  .page-template-page-jobs-php .process .step:first-child:after,
  .page-template-page-jobs-php .process .step:first-child:before {
    display: none;
  }
  .page-template-page-jobs-php .process .step:last-child .inner:after,
  .page-template-page-jobs-php .process .step:last-child .inner:before {
    display: none;
  }
  .single-job .gform_wrapper ul.gform_fields {
    zoom: 1;
  }
  .single-job .gform_wrapper ul.gform_fields:before,
  .single-job .gform_wrapper ul.gform_fields:after {
    content: "";
    display: table;
  }
  .single-job .gform_wrapper ul.gform_fields:after {
    clear: both;
  }
  .single-job .gform_wrapper > li {
    width: 33%;
    float: left;
    padding: 0 10px;
  }
  .single-job .gform_wrapper > li.full-width {
    width: 100%;
  }
  .single-job .gform_wrapper > li.full-width:before {
    clear: both;
  }
  .single-job .gform_wrapper li.full-width li label {
    font-weight: 500;
    display: inline;
  }
  .single-job .gform_wrapper .gform_button {
    width: 100%;
    border-color: #1e9448;
    color: #fff;
    background: #1d9246;
    background: -moz-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #57e48b), color-stop(2%, #1ec159), color-stop(100%, #1d9246));
    background: -webkit-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
    background: -o-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
    background: -ms-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
    background: linear-gradient(to bottom, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  }
  .single-job .gform_wrapper .gform_button:hover,
  .single-job .gform_wrapper .gform_button:active {
    color: #fff;
    background: #1d9246;
    background: -moz-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #57e48b), color-stop(2%, #1ec159), color-stop(100%, #1d9246));
    background: -webkit-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
    background: -o-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
    background: -ms-linear-gradient(top, #57e48b 0%, #1ec159 2%, #1d9246 100%);
    background: linear-gradient(to bottom, #57e48b 0%, #1ec159 2%, #1d9246 100%);
  }
  .single-job .gform_wrapper .gform_footer {
    width: 33%;
    float: right;
    padding: 0 10px 0 5px;
  }
  .single-job .gform_wrapper .gfield_required {
    display: none;
  }
  .blog .post .text {
    margin-top: 0px;
  }
  .page-template-page-discover-php .content-wrapper {
    padding-top: 10px;
  }
  body.lang-en-US .header .pre-header .language a {
    background: url(../images/flag-german.png);
  }
  body.lang-en-US .footer .footer-top {
    display: none;
  }
  .page-single-event-landingpage.single-event .entry-content {
    padding-bottom: 20px;
  }
  .page-single-event-landingpage .featured-image .show-logo {
    display: block;
    position: absolute;
    left: 7%;
    top: 10%;
    width: 200px;
  }
  .page-single-event-landingpage .featured-image .show-logo img {
    position: relative;
    width: 100%;
  }
  .page-single-event-landingpage .featured-image .partners {
    position: absolute;
    top: 20px;
    right: 50px;
    width: 150px;
  }
  .page-single-event-landingpage .featured-image .partners .logo-landingpage {
    position: relative;
    display: block;
    width: 170px;
    height: 50px;
    background-image: url(../images/logo-footer.png);
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 20px;
    background-color: #000;
  }
  .page-single-event-landingpage .featured-image .partners h2 {
    font-size: 16px;
    color: #FFF;
    text-shadow: none;
    background-color: #000;
    padding: 10px;
    width: 170px;
  }
  .page-single-event-landingpage .featured-image .partners .partner a {
    display: block;
    margin: 10px 5px;
    background: #fff;
    border: 1px solid #d5d5d5;
    padding: 20px 10px;
    text-align: center;
  }
  .page-single-event-landingpage .featured-image .landingpage-venue {
    position: absolute;
    padding: 0;
    left: 7%;
    bottom: 10%;
    background-color: transparent;
  }
  .page-single-event-landingpage .featured-image .landingpage-venue span {
    display: table;
    background-color: #000;
  }
  .page-single-event-landingpage .featured-image .landingpage-venue span.title {
    font-size: 25px;
    font-weight: 700;
    margin-top: 5px;
    color: #FFF;
    line-height: 1.25;
    padding: 10px;
  }
  .page-single-event-landingpage .featured-image .landingpage-venue span.date {
    padding: 10px 20px 10px 10px;
    font-size: 21px;
    color: #FFF;
    margin-top: 2px;
  }
  .page-single-event-landingpage .featured-image .landingpage-venue span.venue {
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    line-height: 20px;
    padding: 10px;
    margin-right: 0;
    margin-top: 2px;
  }
  .page-single-event-landingpage .content-wrapper .tickets {
    margin-top: 35px;
  }
  /* Seite Abenteuerland*/
  .postid-42986 .slider-wrapper .slide {
    background-position: center bottom;
  }
}
@media only screen and (min-width: 992px) {
  /******************************************************************
Site Name: www.bb-promotion.com
Author: Philipp Schreiber / Schreiber & Freunde GmbH
URL: http://www.schreiber-freunde.de

Stylesheet: Intermediate

******************************************************************/
  .header div.search {
    width: 150px;
    -webkit-transition: width 0.2s ease-in-out;
    -moz-transition: width 0.2s ease-in-out;
    -ms-transition: width 0.2s ease-in-out;
    -o-transition: width 0.2s ease-in-out;
    transition: width 0.2s ease-in-out;
  }
  .header div.search.active {
    width: 225px;
  }
  .header .tickets-wrapper .tickets-inner {
    width: 80%;
  }
  .home .regional-container .sidebar .widget:first-child {
    margin-top: 35px;
    padding-left: 10px;
  }
  .home .regional-container .sidebar .widget:last-child {
    padding-right: 10px;
  }
  .home .regional-container .sidebar h2 {
    margin-bottom: 17px;
    line-height: 12px;
  }
  .home .regional-container .sidebar h2 small {
    font-size: 60%;
  }
  .home .news .sidebar {
    margin-top: 0px;
  }
  .post-type-archive-event p.tickets .more-link:before {
    margin-top: 6px;
  }
  .post-type-archive-event .panorama .event .text {
    margin-top: 0;
    height: 100%;
  }
  .post-type-archive-event .panorama .event .content p {
    display: none;
  }
  .post-type-archive-event .panorama .event .content p:first-child,
  .post-type-archive-event .panorama .event .content p:nth-child(2) {
    display: block;
  }
  .post-type-archive-event .list .event h2,
  .post-type-archive-event .list .event h3 {
    float: left;
    line-height: 1.25;
    margin-right: 2.2%;
    width: auto;
    max-width: 50%;
    padding: 10px 0 0 0;
  }
  .post-type-archive-event .list .event p.subline {
    float: left;
    padding: 0;
    line-height: 1.25;
    padding: 16px 0 0 0;
  }
  .post-type-archive-event .list .event p.tickets {
    float: right;
    margin: 0;
    padding: 12px 0 0;
  }
  .post-type-archive-event .list .event .text {
    margin-top: 0;
    padding: 4px 15px;
    height: 100%;
    zoom: 1;
  }
  .post-type-archive-event .list .event .text:before,
  .post-type-archive-event .list .event .text:after {
    content: "";
    display: table;
  }
  .post-type-archive-event .list .event .text:after {
    clear: both;
  }
  .post-type-archive-event .list .event .content {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  /******************************************************************
Site Name: www.bb-promotion.com
Author: Philipp Schreiber / Schreiber & Freunde GmbH
URL: http://www.schreiber-freunde.de

Stylesheet: Desktop

******************************************************************/
  .container {
    width: 98%;
    max-width: 1240px;
  }
  .header .pre-header {
    background: none;
    border: none;
  }
  .header .pre-header .languages {
    margin-left: 10px;
  }
  .header .pre-header .social-links {
    float: right;
  }
  .header .nav-meta {
    margin-right: 20px;
  }
  .header .nav-meta li a {
    font-size: 14px;
    color: #262626;
    text-shadow: 0 1px 1px #fff;
    padding: 25px 5px;
  }
  .footer nav {
    font-family: 'Asap', sans-serif;
  }
  .footer nav > ul > li {
    float: left;
    border: 0;
    width: 20%;
  }
  .footer nav > ul > li > a {
    font-size: 16px;
    color: #dfdfdf;
  }
  .footer nav > ul > li > a:after {
    display: none;
  }
  .footer nav > ul li,
  .footer nav > ul li:first-child {
    border: 0;
  }
  .footer nav > ul ul {
    display: block;
  }
  .footer nav > ul ul li {
    padding-left: 0;
  }
  .footer nav > ul ul a {
    padding: 0;
    font-size: 14px;
  }
  .footer nav > ul ul ul {
    display: none;
  }
}
@media (min-resolution: 144dpi), (-webkit-min-device-pixel-ratio: 1.5) {
  a.social.facebook {
    background: url(../images/icon-facebook@2x.png);
    background-size: 29px 29px;
  }
  a.social.youtube {
    background: url(../images/icon-youtube@2x.png);
    background-size: 29px 29px;
  }
  a.social.instagram {
    background: url(../images/icon-instagram@2x.png);
    background-size: 29px 29px;
  }
  a.social.twitter {
    background: url(../images/icon-twitter@2x.png);
    background-size: 28px 23px;
  }
  a.more-link:before {
    background: url(../images/arrow-left@2x.png);
    background-size: 11px 8px;
  }
  a.facebook-link:before {
    background: url(../images/icon-facebook-link@2x.png);
    background-size: 19px 19px;
  }
  a.instagram-link:before {
    background: url(../images/icon-instagram-link@2x.png);
    background-size: 19px 19px;
  }
  a.ical-link {
    background: url(../images/icon-calendar@2x.png);
    background-size: 44px 22px;
  }
  .btn-share.btn-send-to-friend:before {
    background-image: url(../images/icon-share-mail@2x.png);
    background-size: 21px 15px;
  }
  .btn-share.btn-fb-share:before {
    background: url(../images/icon-share-facebook@2x.png);
    background-size: 14px 27px;
  }
  .btn-search:after {
    background-image: url(../images/icon-search@2x.png);
    background-size: 16px 17px;
  }
  p.pub-date:before {
    background: url(../images/icon-time@2x.png);
    background-size: 12px 12px;
  }
  .header .nav-toggle span {
    background: url(../images/icon-nav@2x.png);
    background-size: 25px 23px;
  }
  .header .pre-header .language a {
    background: url(../images/flag-english@2x.png);
    background-size: 24px;
  }
  body.lang-en-US .header .pre-header .language a {
    background: url(../images/flag-german@2x.png);
    background-size: 24px;
  }
  .flex-control-paging li a {
    background-image: url(../images/flexslider-pills@2x.png);
    background-size: 20px 10px;
  }
  .more-container .toggle a:after {
    background: url(../images/btn-trigger-arrows@2x.gif);
    background-size: 26px 16px;
  }
  .home .slider-wrapper .event .text {
    background-image: url(../images/icon-plus@2x.png);
    background-size: 12px 12px;
  }
  .home .event-slider .flex-direction-nav a,
  .home .news .flex-direction-nav a {
    background: url(../images/icon-slider-nav-sprite@2x.png);
    background-size: 78px 39px;
  }
  .single-event .content-wrapper .tickets h2:before {
    background: url(../images/icon-tickets-tablet-up@2x.png);
    background-size: 45px 26px;
  }
  .event.gallery .status,
  .event.panorama .status,
  .event.list .status {
    background-image: url(../images/event-status@2x.png);
    background-size: 1021px 124px;
  }
  .footer .logo-footer {
    background: url(../images/logo-footer@2x.png);
    background-size: 151px 30px;
  }
  .feedback a {
    background: url(../images/btn-feedback@2x.png) no-repeat;
    background-size: 108px 108px;
  }
}
/*
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*/
@media print {
  /******************************************************************
Site Name: www.bb-promotion.com
Author: Philipp Schreiber / Schreiber & Freunde GmbH
URL: http://www.schreiber-freunde.de

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. If you want to
though, go for it.

******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  @page {
    size: auto;
    /* auto is the initial value */
    /* this affects the margin in the printer settings */
    margin: 10mm 0;
  }
  body {
    border-top: 1px solid #fff;
    font: 12px/18px 'Source Sans Pro', sans-serif;
  }
  .entry-content p {
    font: 12px/18px 'Source Sans Pro', sans-serif;
    display: inline !important;
    overflow: visible !important;
  }
  h1,
  .h1 {
    font-size: 25px;
  }
  h2,
  .h2 {
    font-size: 16px;
  }
  h3,
  .h3 {
    font-size: 14px;
  }
  h4,
  .h4 {
    font-size: 12px;
    font-weight: 700;
  }
  h5,
  .h5 {
    font-size: 12px;
    text-decoration: underline;
  }
  ul li {
    font: 12px/18px 'Source Sans Pro', sans-serif;
  }
  a,
  a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after,
  a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after,
  a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .header .logo {
    width: 100%;
    float: none;
    text-align: center;
    margin-bottom: 0;
  }
  .header .logo img {
    display: inline;
  }
  .header .logo a:after {
    content: '';
  }
  .content-wrapper,
  .sidebar {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .page-template-page-jobs-php .process .step .inner {
    height: 100%;
  }
  .page-template-page-jobs-php .process .step .inner:after {
    position: absolute;
    content: '';
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #f4f4f4;
    top: 20px;
    right: -5px;
  }
  .page-template-page-jobs-php .process .step .inner:before {
    position: absolute;
    content: '';
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #c3c3c3;
    top: 20px;
    right: -6px;
  }
  .page-template-page-jobs-php .process .step h3 {
    font-size: 20px;
    line-height: 1.25;
    margin-top: 10px;
  }
  .page-template-page-jobs-php .process .step:after {
    position: absolute;
    content: '';
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #fff;
    top: 20px;
    left: 9px;
  }
  .page-template-page-jobs-php .process .step:before {
    position: absolute;
    content: '';
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #c3c3c3;
    top: 20px;
    left: 10px;
  }
  .page-template-page-jobs-php .process .step:first-child:after,
  .page-template-page-jobs-php .process .step:first-child:before {
    display: none;
  }
  .page-template-page-jobs-php .process .step:last-child .inner:after,
  .page-template-page-jobs-php .process .step:last-child .inner:before {
    display: none;
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  thead {
    display: table-header-group;
  }
  tr,
  img,
  ul,
  .events-wrapper .event,
  .process,
  .widget,
  .contact,
  .inner,
  .slide,
  .tickets {
    page-break-inside: avoid;
  }
  .event .image {
    height: auto !important;
  }
  .event .image img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .element,
  .accordion,
  .content {
    display: inline !important;
    overflow: visible !important;
    height: auto !important;
  }
  .single-event {
    /*.col-sm-8 .row .col-xs-7 .content{
		p{
			display: inline !important;
			overflow: visible !important;
			height: auto !important;
		}
	}*/
  }
  .single-event article.date section {
    display: block !important;
    border: 0 !important;
  }
  .pre-header a {
    display: none !important;
  }
  .gform_body,
  .button,
  .map.col-sm-4,
  .btn,
  .btn-tickets,
  .ical-link,
  .partner {
    display: none !important;
  }
  .hidden-print {
    display: none !important;
  }
  tr.hidden-print {
    display: none !important;
  }
  th.hidden-print,
  td.hidden-print {
    display: none !important;
  }
}
