/*************************************************************/
/* MIXINS */
/*************************************************************/
/*@primaryColor: #4faebb;*/
#ui-datepicker-div {
  font-size: 13px;
}
/*************************************************************/
/* MISC. */
/*************************************************************/
body {
  font-family: "museo-sans", sans-serif;
  /*background-color: #fafafa;*/
  background-color: #F5F7F8;
}
/* site max width */
.row {
  max-width: 1230px;
}
h1,
h2,
h3,
h4 {
  font-family: "bree-serif", sans-serif;
}
h1 {
  font-size: 34px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
a,
button,
input[type=submit] {
  transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  cursor: pointer;
}
a {
  color: #4bae7a;
}
a:hover {
  color: #3c8a61;
}
* {
  outline: none;
}
hr {
  margin: 15px 0;
}
/* Foundation table reset */
table {
  background: none;
  border: none;
  margin: 0;
}
table tr:nth-of-type(even) {
  background-color: transparent;
}
table tr td,
table tr th {
  padding: 0px;
}
form .error {
  color: #F16C65;
}
form .error input,
form .error textarea {
  border: 1px solid #F16C65;
  margin-bottom: 1rem;
}
.fancybox-skin {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  background: #f0f7fc !important;
}
.fancybox-wrap {
  width: 100% !important;
  max-width: 460px !important;
  top: 12% !important;
  position: fixed !important;
}
.fancybox-wrap .fancybox-inner {
  width: 100% !important;
  height: auto !important;
}
.fancybox-close {
  position: absolute;
  top: 0px !important;
  right: 0px !important;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
  background: transparent url("/img/icon-close.png") no-repeat center center !important;
}
.boxShadow:hover {
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
}
.blackWeek {
  background: transparent url("/img/black-week-overlay.svg") no-repeat;
  width: 69px;
  height: 69px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.blackWeekResponsive {
  background: transparent url("/img/black-week-overlay.svg") no-repeat;
  width: 69px;
  height: 69px;
  position: absolute;
  top: 0;
  z-index: 1;
}
@media only screen and (min-width: 801px) {
  .blackWeekResponsive {
    left: 731px;
    /*800 - 69*/
  }
}
@media only screen and (max-width: 800px) {
  .blackWeekResponsive {
    right: 0;
  }
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
/*************************************************************/
/* OWN TIKKO CHECKBOXES */
/*************************************************************/
/* Customize the label (the custom_checkmark_container) */
.custom_checkmark_container {
  display: inline;
  position: relative;
  padding-left: 30px;
  padding-top: 2px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: right;
  height: 22px;
  width: 22px;
}
/* Hide the browser's default checkbox */
.custom_checkmark_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */
.large_own_checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
}
/* On mouse-over, add a grey background color */
.custom_checkmark_container:hover input ~ .large_own_checkmark {
  background-color: #ccc;
}
/* When the checkbox is checked, add a background */
.custom_checkmark_container input:checked ~ .large_own_checkmark {
  background-color: #4bae7a;
}
/* Create the checkmark/indicator (hidden when not checked) */
.large_own_checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.custom_checkmark_container input:checked ~ .large_own_checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.custom_checkmark_container .large_own_checkmark:after {
  left: 8px;
  top: 4px;
  width: 7px;
  height: 11px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*************************************************************/
/* MESSAGES */
/*************************************************************/
#messages {
  min-width: 100px;
  height: 50px;
  position: absolute;
  z-index: 9990;
  line-height: 50px;
  padding: 0 20px;
  right: 15px;
  top: 110px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  background: #11BA77;
  color: #fff;
}
.boxAttention,
.boxWarning,
.boxConfirmed,
.boxYellow {
  background: #eee;
  border: 1px solid #ddd;
  padding: 13px;
  margin-bottom: 20px;
  font-size: 12px;
}
.boxAttention a,
.boxWarning a,
.boxConfirmed a,
.boxYellow a {
  color: inherit;
  text-decoration: underline;
}
.boxAttention {
  /*background: #b2f2ed;
	color: #5e9097;
	border: 1px solid #8adfed;*/
  background: #ccdcea;
  color: #3c6a95;
  border: 1px solid #a8c3dc;
}
.boxWarning {
  /*background: #f2d0c5;
	color: #976262;
	border: 1px solid #edb7b2;*/
  background: #eacecd;
  color: #954b4a;
  border: 1px solid #dca2a4;
}
.boxConfirmed {
  /*background: #b5f2b5;
	color: #6c9766;
	border: 1px solid #8eed80;*/
  background: #cbeac6;
  color: #4f9544;
  border: 1px solid #abdca3;
}
.boxYellow {
  /*background: #b5f2b5;
	color: #6c9766;
	border: 1px solid #8eed80;*/
  background: #eae7c6;
  color: #95924b;
  border: 1px solid #dcd9a5;
}
.flexMapContainer {
  width: 100%;
  max-width: 600px;
  padding-top: 100%;
  /* 1:1 Aspect Ratio */
  padding-top: 60%;
  /* 1:1 Aspect Ratio */
  position: relative;
  /* If you want text inside of it */
}
/* If you want text inside of the container */
.flexMap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
/*************************************************************/
/* DIVS */
/*************************************************************/
.breadcrumbs {
  background: transparent;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  padding: 15px 0.9375rem;
}
.breadcrumbs > * {
  color: #333;
  font-family: "museo-sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
}
.breadcrumbs > *:before {
  font-family: FontAwesome;
  content: "\f105";
  color: #aaaaaa;
  margin: 0 0.75rem;
  position: relative;
  top: -0.5px;
}
.breadcrumbs a {
  color: #798488;
}
.breadcrumbs a:hover {
  text-decoration: none;
}
.imageHeader {
  background-color: #233034;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.imageHeader:before {
  content: "";
  display: block;
  padding-top: 25%;
}
.imageHeader > .inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.imageHeader .videoContainer {
  position: absolute;
  top: -50%;
  z-index: 1;
}
.imageHeader .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.imageHeader h1 {
  font-size: 38px;
  line-height: 1.15em;
  color: #fff;
  margin: 0;
}
.imageHeader .byline {
  color: inherit;
  font-family: "bree-serif", sans-serif;
  font-size: 22px;
  line-height: 1.15em;
  font-weight: 300;
}
.imageHeader .header {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 3;
  color: #fff;
}
.imageHeader .header > .inner {
  max-width: 800px;
  padding: 0 15px;
  margin: auto;
}
.imageHeader.simple:before {
  display: inline;
  padding: 0;
}
.imageHeader.simple > .inner {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
.imageHeader.simple .overlay {
  display: none;
}
.imageHeader.simple .header {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  padding: 25px 0 50px;
}
#headerBar {
  width: 100%;
  /*min-height: 100px;*/
  background: #ededed;
  margin-bottom: 30px;
  border-bottom: 1px solid #e2e2e2;
}
#headerBar.white {
  background: #fff;
  border-color: #f2f2f2;
}
#headerBar .row {
  padding: 15px 0 20px 0;
  background: url("/img/ticket-big-bg.png") no-repeat bottom -20px right;
}
#headerBar h1 {
  margin: 0px;
}
#headerBar h1 span {
  font-weight: 200;
}
#headerBar span.eventDateAndLocation {
  font-size: 24px;
  color: #999;
}
.contentBox {
  width: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 20px;
  margin-bottom: 30px;
  position: relative;
}
.contentBox.radius {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.contentBox.noborder {
  border: none;
}
.contentBox.shadow {
  -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.07);
}
.contentBox h2 {
  font-size: 24px;
  margin: -20px -20px 20px -20px;
  padding: 20px;
  background: #f2f2f2;
  line-height: 1em;
  border-bottom: 1px solid #e5e5e5;
}
.contentBox h3 {
  font-size: 18px;
  margin-top: 15px;
}
.contentBox p:last-child {
  margin-bottom: 0;
}
.horizontalNav {
  width: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  margin-bottom: 30px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
}
.horizontalNav ul {
  margin: 0;
  list-style: none;
}
.horizontalNav ul li a {
  display: block;
  padding: 12px 15px;
  line-height: 1.1em;
  border-bottom: 1px solid #f5f5f5;
  color: #233034;
}
.horizontalNav ul li a:hover,
.horizontalNav ul li a.active {
  padding-left: 20px;
  color: #fff;
  background: #4bae7a;
  background: #5d6c70;
}
.thumbPreview {
  position: relative;
  width: 100%;
  background: #f6f6f6;
  margin-bottom: 20px;
}
.thumbPreview:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.thumbPreview .inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.thumbPreview .inner img {
  width: auto;
}
/*************************************************************/
/* TABS */
/*************************************************************/
.tabs {
  font-size: 18px;
  background: #ededed;
  border: 1px solid #e2e2e2;
}
.tabs dd > a {
  padding: 10px 20px;
  border-right: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  color: #6E727C;
  font-size: 17px;
  font-family: "museo-sans", sans-serif;
  background: none;
  outline: none;
  margin-bottom: -1px;
}
.tabs dd > a:hover {
  background: #fff;
  border-bottom: 1px solid #fff;
}
.tabs dd.active > a {
  background: #fff;
  border-bottom: 1px solid #fff;
}
.tabs-content {
  display: block;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-top: none;
  list-style: none;
  margin: 0 0 30px 0;
}
.tabs-content > .content {
  display: none;
  margin: 0;
  padding: 0;
}
.tabs-content > .content > .top {
  padding: 20px;
  border-bottom: 1px solid #e2e2e2;
}
.tabs-content > .content > .content {
  padding: 20px;
}
.tabs-content > .content.active {
  display: block;
}
/*************************************************************/
/* TABLES */
/*************************************************************/
.confirmTicketsTable {
  width: 100%;
}
.confirmTicketsTable tr td {
  background-color: #f8f8f8;
  border-bottom: 2px solid #fff;
  padding: 10px;
}
.tableStyle1 {
  width: 100%;
  border: 1px solid #e2e2e2;
  font-family: "museo-sans", sans-serif;
}
.tableStyle1 thead tr th {
  background: #ededed;
  color: #A5A9B5;
  padding: 10px 15px;
  border-bottom: 1px solid #e2e2e2;
}
.tableStyle1 tbody tr td {
  background: #fff;
  color: #6E727C;
  padding: 10px 15px;
  border-bottom: 1px solid #e2e2e2;
  vertical-align: middle;
  transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
}
.tableStyle1 tbody tr td .button {
  margin: 0;
  padding: 7px 15px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "museo-sans", sans-serif;
}
.tableStyle1 tbody tr td span {
  font-family: "museo-sans", sans-serif;
}
.tableStyle1 tbody tr:hover td {
  background: #ededed;
}
.tableStyle1 tfoot tr td {
  background: #ededed;
}
.tableStyle1 tfoot tr td a {
  color: #6E727C;
  font-weight: 500;
  font-family: "museo-sans", sans-serif;
}
/*************************************************************/
/* BUTTONS */
/*************************************************************/
.btn {
  display: inline-block;
  border: none;
  background-color: #4bae7a;
  font-family: "museo-sans", sans-serif;
  font-size: 12px;
  line-height: 1.1em;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 20px 12px 20px;
  text-align: center;
  margin: 0;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.btn .fa {
  margin-left: 5px;
}
.btn:active,
.btn:visited,
.btn:focus,
.btn:link {
  color: #fff;
  background-color: #4bae7a;
}
.btn:hover {
  background-color: #3c8a61;
  color: #fff;
}
.btn.grey {
  background-color: #ddd;
  color: #777;
}
.btn.grey:hover {
  color: #555;
  background-color: #bbb;
}
.btn.expand {
  width: 100%;
}
.btn.small {
  font-size: 10px;
  padding: 10px 15px 9px 15px;
}
.btn.large {
  font-size: 14px;
  padding: 15px 25px 14px 25px;
}
.btn.xlarge {
  font-size: 16px;
  padding: 18px 30px 17px 30px;
}
#fixedBuyBtnContainer {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: #233037;
  padding: 12px 15px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
}
#fixedBuyBtnContainer .button {
  padding: 10px 15px;
  width: 100%;
}
.label {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  font-family: "bree-serif", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  padding: 6px 10px 7px 10px;
}
.button {
  /*display: inline-block;*/
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  font-family: "bree-serif", sans-serif;
  font-weight: 300;
  /*padding: 4px 15px 6px 15px;*/
  margin: 0;
}
.green,
.success {
  background: #4bae7a;
}
.green:hover,
.success:hover {
  background: #347955;
}
.red,
.alert {
  background: #ba4f4f;
}
.red:hover,
.alert:hover {
  background: #873535;
}
.yellow {
  background: #a88b4c;
}
.yellow:hover {
  background: #735f34;
}
.darkblue,
.secondary {
  background: #5d6c70;
}
.darkblue:hover,
.secondary:hover {
  background: #829397;
}
.signinButton {
  display: inline-block;
  background: #233034;
  padding: 3px 12px 4px 12px;
  color: #fff;
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  float: right;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  margin-left: 20px;
  margin-top: 8px;
}
.signinButton:hover {
  background: #25553c;
}
#cartButton {
  display: inline-block;
  height: 36px;
  float: right;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  background-color: #4bae7a;
  color: #fff;
  padding: 6px 20px;
  margin-top: 12px;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 16px;
}
#cartButton:hover {
  background: #347955;
}
.submitBig {
  background: #4bae7a;
  border: none;
  color: #fff;
  padding: 22px 25px 27px 25px;
  margin: 0;
  font-family: "bree-serif", sans-serif;
  font-size: 28px;
  font-weight: 300;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
}
.submitBig:hover {
  background: #347955;
}
.submit {
  text-align: center;
  background: #4bae7a;
  border: none;
  color: #fff;
  padding: 6px 10px 7px 10px;
  margin: 0;
  font-family: "bree-serif", sans-serif;
  font-size: 16px;
  font-weight: 300;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
}
.submit:hover {
  background: #347955;
}
/*************************************************************/
/* LOGIN BOX */
/*************************************************************/
#loginWrapper {
  display: none;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  padding: 0 15px;
}
#loginWrapper #loginBox {
  max-width: 400px;
  margin: 100px auto;
  background: #fff;
  padding-bottom: 20px;
  overflow: auto;
  zoom: 1;
}
#loginWrapper #loginBox .top {
  width: 100%;
  height: 40px;
  background: #eee;
  padding: 10px 20px;
  margin-bottom: 20px;
}
#loginWrapper #loginBox .top #closeLogin {
  cursor: pointer;
  font-size: 18px;
  float: right;
}
#loginWrapper #loginBox .left {
  width: 100%;
  padding: 0 20px;
  min-height: 200px;
  float: left;
}
/*************************************************************/
/* TOP */
/*************************************************************/
#topContainer {
  width: 100%;
  min-height: 40px;
  background: #4bae7a;
  color: #fff;
  font-family: "bree-serif", sans-serif;
}
#topContainer a {
  color: #fff;
}
#topContainer #logo {
  float: left;
}
#topContainer #logo img {
  margin-top: 6px;
  height: 25px;
  width: auto;
}
#topContainer #topNavTrigger {
  display: none;
  float: right;
  font-size: 26px;
  cursor: pointer;
  margin-top: -1px;
  margin-left: 15px;
}
#topContainer #topNav {
  /*display: none;*/
  float: right;
  margin: 0;
  padding: 0;
  list-style: none;
}
#topContainer #topNav li {
  float: left;
}
#topContainer #topNav li a {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  padding: 9px 0;
  margin-left: 20px;
}
/*************************************************************/
/* NAVIGATION */
/*************************************************************/
#navigationContainer {
  width: 100%;
  min-height: 50px;
  background: #233034;
  color: #fff;
  font-family: "bree-serif", sans-serif;
}
#navigationContainer #menuline {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}
#navigationContainer #menuline li {
  float: left;
}
#navigationContainer #menuline li a {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
  color: #dfdfdf;
  font-size: 14px;
  line-height: 50px;
  padding: 0 12px;
  margin: 0 3px;
  border-bottom: 4px solid transparent;
}
#navigationContainer #menuline li a:hover,
#navigationContainer #menuline li a.active {
  color: #fff;
  border-color: #4bae7a;
}
#navigationContainer #navSearch {
  display: inline-block;
  width: 250px;
  height: 30px;
  margin-top: 12px;
  float: left;
  background: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
}
#navigationContainer #navSearch input[type=text] {
  width: 85%;
  height: 30px;
  display: inline-block;
  font-size: 12px;
  line-height: 28px;
  padding: 0 8px;
  margin: 0;
  color: #999;
  font-weight: 300;
  background: none;
  float: left;
  border: none;
  transition: none;
  box-shadow: none;
}
#navigationContainer #navSearch input[type=submit],
#navigationContainer #navSearch button {
  width: 15%;
  height: 30px;
  display: inline-block;
  margin: 0;
  padding: 0;
  float: left;
  background: transparent url("/img/searchicon-small.png") no-repeat center center;
  background: transparent;
  border: none;
  outline: none;
  color: #999;
}
#navigationContainer .navCreateEventBtn {
  display: inline-block;
  float: right;
  line-height: 30px;
  background: #4bae7a;
  color: #fff;
  padding: 0 15px;
  margin: 12px 0 12px 12px;
  font-size: 13px;
  text-transform: uppercase;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#navigationContainer .navCreateEventBtn .fa {
  margin-right: 5px;
}
/*************************************************************/
/* SEARCH SECTION */
/*************************************************************/
#searchSection {
  width: 100%;
  padding: 50px 0;
  text-align: center;
  background: url("/img/searchsectionbg-new.jpg") #070503 no-repeat top center;
  background-size: cover;
}
#searchSection h1 {
  font-weight: 200;
  color: #fff;
  line-height: 1em;
  font-size: 26px;
  margin-bottom: 15px;
}
#searchSection h1 span {
  font-weight: 500;
}
#searchSection #largeSearch {
  max-width: 400px;
  height: 40px;
  margin: 0 auto;
  background: #fff;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
#searchSection #largeSearch form {
  /*input[type=submit]{*/
}
#searchSection #largeSearch form input[type=text] {
  width: 85%;
  font-size: 20px;
  padding: 10px 15px;
  font-family: "bree-serif", sans-serif;
  font-weight: 300;
  background: transparent;
  box-shadow: none;
  border: none;
  color: #999;
  float: left;
}
#searchSection #largeSearch form button[type=submit] {
  width: 15%;
  display: inline-block;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 40px;
  padding: 0;
  font-size: 18px;
  font-family: "bree-serif", sans-serif;
  color: #C5E6D5;
  background: #4bae7a;
  border: none;
  /*text-indent: -9999px;*/
  outline: none;
  float: left;
}
#searchSection #largeSearch form button[type=submit]:hover {
  background-color: #347955;
}
/*************************************************************/
/* FILTERS (FRONTPAGE) */
/*************************************************************/
#filterSection {
  width: 100%;
  padding: 15px 0 0 0;
  background: #fff;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
  background: -webkit-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
#filterSection form select {
  font-family: "bree-serif", sans-serif;
  color: #888;
  background-color: #fff;
  margin: 0 0 15px 0;
  cursor: pointer;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
}
#filterSection form input[type=submit] {
  display: inline-block;
  width: 100%;
  border: none;
  padding: 4px 0 6px 0;
  margin: 0 0 15px 0;
  background: #4bae7a;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  color: #fff;
  font-family: "bree-serif", sans-serif;
  font-weight: 300;
  font-size: 18px;
  outline: none;
}
#filterSection form input[type=submit]:hover {
  background-color: #347955;
}
#filterSection2 {
  width: 100%;
  padding: 45px 0 35px 0;
  background: #fff;
  background: url("/img/searchsectionbg-new.jpg") #070503 no-repeat top center;
  background-size: cover;
  margin-bottom: 30px;
}
#filterSection2 form select {
  font-family: "bree-serif", sans-serif;
  color: #888;
  background-color: #fff;
  margin: 0 0 15px 0;
  cursor: pointer;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
}
#filterSection2 form input[type=text] {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  background: #fff url("/img/searchicon-small.png") no-repeat right 10px center;
}
#filterSection2 .categoryButtons {
  text-align: center;
  padding-top: 10px;
}
#filterSection2 .categoryButtons .categoryBtn {
  display: inline-block;
  color: #888;
  line-height: 30px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  padding: 0 15px 3px 15px;
  background: #fff;
  margin: 0 5px 10px 5px;
  font-family: "bree-serif", sans-serif;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
#filterSection2 .categoryButtons .categoryBtn:hover,
#filterSection2 .categoryButtons .categoryBtn.active {
  background: #4bae7a;
  color: #fff;
}
.event-pagination {
  text-align: center;
}
.event-pagination a {
  border: 1px solid #E4E4E4;
  margin: 1px;
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
}
.event-pagination a.selected {
  color: white;
  background-color: #4BAE7A;
}
/*************************************************************/
/* RESULT SORT/TAGS */
/*************************************************************/
#resultSort {
  margin-bottom: 0px;
}
#resultSort .resultTags .tagBtn {
  display: inline-block;
  background: #E9ECEC;
  border: 1px solid #D4DCDD;
  color: #636A6B;
  line-height: 28px;
  padding: 0 12px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  font-size: 12px;
  font-family: "bree-serif", sans-serif;
  font-weight: 300;
  margin: 0 8px 8px 0;
}
/*************************************************************/
/* FRONTPAGE ELEMENTS */
/*************************************************************/
#frontpageElementsContainer {
  margin: 40px 0;
  padding: 0 5px;
  position: relative;
}
#frontpageElementsContainer .item {
  position: relative;
  padding: 10px;
  margin-bottom: 0px;
  cursor: pointer;
  overflow: hidden;
}
#frontpageElementsContainer .item .image {
  overflow: hidden;
  position: relative;
}
#frontpageElementsContainer .item .image .inner img {
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
  transition: all 800ms ease;
  vertical-align: bottom;
  width: 100%;
}
#frontpageElementsContainer .item .info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 20px;
  /*background: rgba(75, 174, 117, 0.15);*/
  /*background: rgba(0, 0, 0, .15);*/
  font-family: "bree-serif", sans-serif;
  color: #fff;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
}
#frontpageElementsContainer .item .info .title {
  font-size: 24px;
  line-height: 1.1em;
  /*margin-bottom: 4px;*/
  /*padding: 5px 7px 6px 7px;*/
  padding: 0 0 3px 0;
  /*background: @secondaryColor;*/
}
#frontpageElementsContainer .item .info .byline {
  display: inline-block;
  padding: 3px 7px 5px 7px;
  /*background: @primaryColor;*/
  /*background: rgba(75, 174, 117, 0.5);*/
  background: rgba(0, 0, 0, 0.4);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.1em;
  text-shadow: none;
}
#frontpageElementsContainer .item.large .image {
  width: 100%;
  padding-top: 9px;
  padding-bottom: 2.5%;
}
#frontpageElementsContainer .item.large .image:before {
  content: "";
  display: block;
  padding-top: 53.7%;
}
#frontpageElementsContainer .item.large .image .inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#frontpageElementsContainer .item.large .image .inner img {
  height: 100%;
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
  transition: all 800ms ease;
  vertical-align: bottom;
}
#frontpageElementsContainer .item.large .info {
  /*padding: 25px 15px;*/
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
#frontpageElementsContainer .item.large .info .title {
  font-size: 38px;
  padding: 0 0 8px 0;
}
#frontpageElementsContainer .item.large .info .byline {
  font-size: 16px;
}
#frontpageElementsContainer .item:hover .image img {
  transform: scale(1.1);
}
/*************************************************************/
/* SEAT CHART */
/*************************************************************/
#seatChart {
  background: #fff;
  border: 1px solid #EFEFEF;
  border-left: none;
  margin: 0px auto 50px;
  max-width: 1170px;
}
#seatChart .column {
  padding: 0;
}
#seatChart .category {
  padding: 10px;
  border-bottom: 1px solid #EFEFEF;
}
#seatChart .left,
#seatChart .right {
  border-left: 1px solid #EFEFEF;
}
#seatChart .right {
  padding: 20px;
}
/*************************************************************/
/* GIFTCARDS */
/*************************************************************/
.giftcardsContainer {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}
.giftcardsContainer .giftcardItem {
  margin-bottom: 20px;
}
.giftcardsContainer .giftcardItem .inner {
  background: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 20px 20px 60px 20px;
  text-align: center;
  position: relative;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.giftcardsContainer .giftcardItem .inner:hover {
  -webkit-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.08);
}
.giftcardsContainer .giftcardItem .inner .title {
  font-size: 1.1em;
  margin-bottom: 10px;
  line-height: 1.1em;
}
.giftcardsContainer .giftcardItem .inner .priceBefore {
  font-size: 0.8em;
  text-decoration: line-through;
  line-height: 1.1em;
}
.giftcardsContainer .giftcardItem .inner .price {
  line-height: 1.1em;
  margin-bottom: 14px;
  font-size: 1.1em;
  font-weight: 600;
}
.giftcardsContainer .giftcardItem .inner .btn {
  width: auto;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.giftcardsContainer .giftcardItem .inner .button {
  display: block;
  background: #4bae7a;
  font-family: "museo-sans", sans-serif;
  letter-spacing: 1.5px;
  font-size: 12px;
  text-transform: uppercase;
  padding: 13px 20px 12px 20px;
  line-height: 1.1em;
  width: 100%;
  text-align: center;
}
.giftcardsContainer .giftcardItem .inner .button .fa {
  margin-left: 5px;
}
.giftcardsContainer .giftcardItem .inner .button:hover {
  background: #3c8a61;
}
.discountCircle {
  width: 46px;
  height: 46px;
  background: transparent url("/img/tilbud-circle2.png") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: -17px;
  left: -17px;
  display: inline-block;
}
.giftcardBox .priceDetails {
  margin-bottom: 15px;
}
.giftcardBox .vatInfo {
  font-size: 0.9em;
  line-height: 1.1em;
}
.giftcardBox .priceBefore {
  line-height: 1em;
  text-decoration: line-through;
  color: #999;
}
.giftcardBox .price {
  line-height: 1em;
  font-size: 1.4em;
  font-weight: 600;
}
.giftcardBox input[type=number] {
  height: 38px;
  box-shadow: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}
.giftcardBox select {
  height: 38px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
/*************************************************************/
/* EVENTS SECTION */
/*************************************************************/
#eventsSection {
  width: 100%;
  max-width: 1230px;
  margin: auto;
  padding: 0px 5px 0 5px;
  /*border-bottom: 1px solid #e5e5e5;*/
}
#eventsSection .row {
  max-width: 100%;
  overflow: auto;
  zoom: 1;
}
#eventsSection .row .event {
  /*max-width: 300px;*/
  /*width: 16.666666667%;*/
  padding: 10px;
  float: left;
  width: 25%;
}
#eventsSection .row .event a {
  color: #fff;
}
#eventsSection .row .event .eventInner {
  width: 100%;
  position: relative;
}
#eventsSection .row .event .eventInner:before {
  content: "";
  display: block;
  padding-top: 100%;
}
#eventsSection .row .event .eventInner .eventContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
#eventsSection .row .event .eventInner .eventContainer .image {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
}
#eventsSection .row .event .eventInner .eventContainer .image img {
  width: 100%;
}
#eventsSection .row .event .eventInner .eventContainer .redoverlay {
  /*background: url("/img/overlayred.png") repeat;*/
}
#eventsSection .row .event .eventInner .eventContainer .redoverlay:hover .title div.inner {
  background: url("/img/overlayred.png") repeat;
}
#eventsSection .row .event .eventInner .eventContainer .blueoverlay {
  /*background: url("/img/overlayblue.png") repeat;*/
}
#eventsSection .row .event .eventInner .eventContainer .blueoverlay:hover .title div.inner {
  background: url("/img/overlayblue.png") repeat;
}
#eventsSection .row .event .eventInner .eventContainer .darkblueoverlay {
  /*background: url("/img/overlaydarkblue.png") repeat;*/
}
#eventsSection .row .event .eventInner .eventContainer .darkblueoverlay:hover .title div.inner {
  background: url("/img/overlaydarkblue.png") repeat;
}
#eventsSection .row .event .eventInner .eventContainer .greenoverlay {
  /*background: url("/img/overlaygreen.png") repeat;*/
}
#eventsSection .row .event .eventInner .eventContainer .greenoverlay:hover .title div.inner {
  background: url("/img/overlaygreen.png") repeat;
}
#eventsSection .row .event .eventInner .eventContainer .yellowoverlay {
  /*background: url("/img/overlayyellow.png") repeat;*/
}
#eventsSection .row .event .eventInner .eventContainer .yellowoverlay:hover .title div.inner {
  background: url("/img/overlayyellow.png") repeat;
}
#eventsSection .row .event .eventInner .eventContainer .info {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  color: #fff;
  cursor: pointer;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}
#eventsSection .row .event .eventInner .eventContainer .info .title {
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
  bottom: 8px;
  font-size: 20px;
  line-height: 1.1em;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
}
#eventsSection .row .event .eventInner .eventContainer .info .title div.inner {
  font-family: "bree-serif", sans-serif;
  position: absolute;
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 15px 20px;
  bottom: 0px;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  word-wrap: break-word;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
}
#eventsSection .row .event .eventInner .eventContainer .info .title div.inner span {
  display: block;
  font-weight: 200;
  font-size: 0.8em;
  word-wrap: break-word;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
}
#eventsSection .row .event .eventInner .eventContainer .info .title div.inner .date {
  display: inline-block;
  background: #233034;
  padding: 2px 5px 3px 5px;
  margin-top: 4px;
  font-size: 16px;
  /*text-transform: uppercase;*/
  font-weight: 300;
}
#eventsSection .row .event .eventInner .eventContainer .info .eventinfo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 65px;
  padding: 10px 20px;
  background: #fff;
  color: #555;
  font-size: 14px;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}
#eventsSection .row .event .eventInner .eventContainer .isFreeOverlay,
#eventsSection .row .event .eventInner .eventContainer .isSoldoutOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 69px;
  height: 69px;
  background: transparent url("/img/isfree-overlay.png") top left no-repeat;
  z-index: 9999;
}
#eventsSection .row .event .eventInner .eventContainer .isSoldoutOverlay {
  background: transparent url("/img/soldout-overlay.png") top left no-repeat;
}
#eventsSection .row .event:hover {
  cursor: pointer;
}
#eventsSection .row .event:hover .eventContainer .info {
  background: transparent;
}
#eventsSection .row .event:hover .eventContainer .info .eventinfo {
  margin-top: -65px;
}
#eventsSection .row .event:hover .eventContainer .info .title div.inner {
  bottom: 55px;
}
#eventsSection2 .row {
  padding: 0 15px;
}
#eventsSection2 .row .event {
  width: 100%;
  margin-bottom: 15px;
  background: #fff;
  border: 1px solid #E3E8E9;
  border-bottom: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 1px solid #e4e4e4;
  /*-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.3);
			-moz-box-shadow:    0px 1px 1px 0px rgba(0, 0, 0, 0.3);
			box-shadow:         0px 1px 1px 0px rgba(0, 0, 0, 0.3);*/
}
#eventsSection2 .row .event:hover {
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
}
#eventsSection2 .row .event .eventContainer {
  overflow: auto;
  zoom: 1;
  position: relative;
}
#eventsSection2 .row .event .eventContainer .image {
  background: #F8FAFA;
  vertical-align: top;
  width: 20%;
  overflow: hidden;
}
#eventsSection2 .row .event .eventContainer .image .inner {
  /*max-width: 100%;
						height: 100%;*/
}
#eventsSection2 .row .event .eventContainer .image .inner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
#eventsSection2 .row .event .eventContainer .info {
  cursor: pointer;
  width: 60%;
  padding: 15px;
  /*border-top: 1px solid #E3E8E9;*/
  /*border-bottom: 1px solid #E3E8E9;*/
}
#eventsSection2 .row .event .eventContainer .info .date {
  color: #4D5C5F;
  margin-bottom: 10px;
  font-family: "bree-serif", sans-serif;
  font-size: 16px;
}
#eventsSection2 .row .event .eventContainer .info .date .fa {
  margin-right: 4px;
}
#eventsSection2 .row .event .eventContainer .info .title {
  font-family: "bree-serif", sans-serif;
  font-size: 20px;
  line-height: 1.1em;
  margin-bottom: 0px;
}
#eventsSection2 .row .event .eventContainer .info .title .byline {
  font-size: 14px;
  line-height: 1.1em;
  font-weight: 300;
  text-transform: uppercase;
  color: #566366;
}
#eventsSection2 .row .event .eventContainer .info .ticketCountText {
  margin-top: 5px;
  font-family: "bree-serif", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: #bfa35b;
  /*color: #bf5349;*/
}
#eventsSection2 .row .event .eventContainer .info .moreInfoBtn {
  display: inline-block;
  padding: 0 10px 3px 10px;
  line-height: 26px;
  text-transform: uppercase;
  font-size: 12px;
  font-family: "bree-serif", sans-serif;
  color: #fff;
  background: #4bae7a;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#eventsSection2 .row .event .eventContainer .buy {
  background: #F8FAFA;
  position: relative;
  width: 20%;
  border-left: 3px dashed #E3E8E9;
  border-left: 1px solid #E3E8E9;
  border-bottom: none;
  background: #F8FAFA url("/img/ticket-transparent-bg.png") right -5px top -5px no-repeat;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 15px;
  /*&:before{
						content: "";
						display: block;
						padding-top: 100%;
					}*/
  /*.circleTop {
						position: absolute;
						top: -1px;
						left: -11px;
						width: 22px;
						height: 13px;
						background: url("/img/circle-top.png") top left no-repeat;
						z-index: 99999;
					}
					.circleBottom {
						position: absolute;
						bottom: -1px;
						left: -11px;
						width: 22px;
						height: 13px;
						background: url("/img/circle-bottom.png") bottom left no-repeat;
						z-index: 99999;
					}*/
}
#eventsSection2 .row .event .eventContainer .buy .inner {
  background: none;
  height: 100%;
  /*position: absolute;*/
  /*top: 0;
						left: 0;
						bottom: 0;
						right: 0;*/
}
#eventsSection2 .row .event .eventContainer .buy .inner table {
  width: 100%;
  height: 100%;
}
#eventsSection2 .row .event .eventContainer .buy .inner table td {
  height: 100%;
  text-align: center;
}
#eventsSection2 .row .event .eventContainer .buy .inner .infoBtn {
  display: inline-block;
  text-align: center;
  padding: 0 20px 3px 20px;
  background: #4bae7a;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-transform: uppercase;
  color: #fff;
  font-family: "bree-serif", sans-serif;
  line-height: 32px;
}
#eventsSection2 .row .event .eventContainer .buy .inner .infoBtn:hover {
  background: #409569;
}
#eventsSection2 .row .event .eventContainer .buy .inner .buyLink {
  font-family: "bree-serif", sans-serif;
  font-size: 12px;
  line-height: 1.1em;
  font-weight: 300;
  text-transform: uppercase;
  color: #888;
}
#eventsSection2 .row .event .eventContainer .buy .inner .buyLink:hover {
  text-decoration: underline;
}
#eventsSection2 .row .event .eventContainer .buy .inner p {
  line-height: 1em;
  margin: 3px 0 0 0;
}
#eventsSection2 .row .event .eventContainer .isFreeOverlay,
#eventsSection2 .row .event .eventContainer .isSoldoutOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 69px;
  height: 69px;
  background: transparent url("/img/isfree-overlay.png") top left no-repeat;
  z-index: 9999;
}
#eventsSection2 .row .event .eventContainer .isSoldoutOverlay {
  background: transparent url("/img/soldout-overlay.png") top left no-repeat;
}
.isSoldoutOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 69px;
  height: 69px;
  z-index: 8000;
  background: transparent url("/img/soldout-overlay.png") top left no-repeat;
}
@media (max-width: 768px) {
  .isSoldoutOverlay.desktop {
    display: none;
  }
}
/*************************************************************/
/* EVENTGROUP PAGE */
/*************************************************************/
.eventGroupPage {
  background: #fff;
}
.eventGroupPage .dateRange {
  font-family: "bree-serif", sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eventGroupPage .dateRange .fa {
  color: #A3ADB0;
  margin-right: 10px;
}
.eventGroupPage h3 {
  margin-bottom: 20px;
}
.eventGroupPage .events {
  padding: 70px 0;
  background: #E6E9EB;
  background: #f5f7f7;
}
.eventgroupDesc {
  background: transparent url("/img/tikko-background-skew.png?v1") no-repeat top center;
  margin-top: -35px;
  position: relative;
  z-index: 5;
  padding-top: 30px;
}
.eventListAlt {
  overflow: auto;
  zoom: 1;
}
.eventListAlt .listItem {
  float: left;
  width: 33.33333%;
  margin-bottom: 40px;
}
.eventListAlt .listItem > .inner {
  padding: 0 15px;
}
.eventListAlt .listItem .image {
  position: relative;
  margin-bottom: 10px;
}
.eventListAlt .listItem .image:before {
  content: "";
  display: block;
  padding-top: 52.25%;
}
.eventListAlt .listItem .image .inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #f5f7f7;
  overflow: hidden;
}
.eventListAlt .listItem .info {
  font-family: "bree-serif", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.eventListAlt .listItem .title {
  font-family: "bree-serif", sans-serif;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eventListAlt .listItem .numEvents {
  font-size: 0.8em;
  color: #798488;
  font-weight: 500;
}
.eventListItem {
  position: relative;
  background: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: 1px solid #e8e8e8;
}
.eventListItem .eventDate {
  background: #F1F4F4;
  width: 90px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  font-family: "bree-serif", sans-serif;
  color: #223034;
}
.eventListItem .eventDate .md {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.eventListItem .eventDate .month {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 14px;
  font-weight: 400;
  vertical-align: bottom;
}
.eventListItem .eventDate .date {
  vertical-align: top;
  font-size: 26px;
  line-height: 26px;
  font-weight: 600;
}
.eventListItem .info {
  margin-left: 90px;
  margin-right: 150px;
  padding: 20px 0 20px 15px;
  color: #223034;
}
.eventListItem .info > div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}
.eventListItem .info > div .fa {
  margin-right: 5px;
}
.eventListItem .action {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 150px;
  height: 100%;
  padding-right: 20px;
  text-align: right;
}
.eventListItem .action .btn {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-family: "bree-serif", sans-serif;
  letter-spacing: 0.5px;
  font-size: 12px;
}
.eventListItem .action img {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.waitingListContainer {
  text-align: center;
}
@media (min-width: 1023px) {
  .waitingListContainer {
    margin-top: 60px;
  }
}
.waitingListBtn {
  display: inline-block;
  text-align: center;
  padding: 0 20px 3px 20px;
  background: #c855c8;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  text-transform: uppercase;
  color: #fff;
  font-family: "bree-serif", sans-serif;
  line-height: 32px;
}
.waitingListBtn:hover {
  background: #bc3dbc;
  color: #fff;
}
#waiting_list_form_wrapper p {
  font-size: 20px;
}
.tooSoonEventBtn {
  display: inline-block;
  text-align: center;
  padding: 14px 28px 15px 28px;
  background: #c7142f;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  font-family: "bree-serif", sans-serif;
  line-height: 27px;
}
.tooSoonEventBtn:hover {
  background: #c94459;
  color: #fff;
}
#tooSoonEvent_form_wrapper p {
  font-size: 20px;
}
/*************************************************************/
/* EVENT PAGE */
/*************************************************************/
#popupBtn {
  display: none !important;
  visibility: hidden !important;
}
#popupDiv {
  width: 100%;
  text-align: center;
  background: url("/img/ticket-transparent-bg.png") right -5px top -5px no-repeat;
}
#popupDiv .content {
  padding: 30px 25px 5px 25px;
}
#popupDiv .bottom {
  border-top: 1px solid #e4e4e4;
  padding: 30px 25px;
  background: #f2f2f2;
}
#popupDiv h2 {
  color: #233034;
  font-size: 22px;
  margin-bottom: 25px;
}
#popupDiv .fbInterestedBtn {
  display: inline-block;
  background: #3b5998;
  color: #fff;
  line-height: 36px;
  padding: 0 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-size: 14px;
}
#popupDiv .fbInterestedBtn .icon {
  font-size: 16px;
  display: inline-block;
  line-height: 36px;
  height: 36px;
  padding-right: 15px;
  border-right: 1px solid #263961;
  margin-right: 12px;
}
#popupDiv .fbInterestedBtn:hover {
  background: #2d4373;
}
#eventTop {
  background: #233034;
  max-height: 330px;
  margin-top: -30px;
}
#eventTop .image {
  position: relative;
  width: auto;
  max-height: 450px;
  overflow: hidden;
  margin-top: -12px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 5px 19px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 5px 19px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 5px 19px 0px rgba(0, 0, 0, 0.35);
}
#eventTop .image #imageThumb {
  display: none;
  margin: 0 auto;
}
#eventTop .image img {
  display: block;
}
#eventTop .image .isFreeOverlay {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0;
  width: 69px;
  height: 69px;
  background: transparent url("/img/isfree-overlay.png") top left no-repeat;
  z-index: 9999;
}
#eventTop .eventInfo {
  /*background: @secondaryColor;*/
  padding: 30px 0;
}
#eventTop .eventInfo .spanLight {
  display: block;
  font-size: 14px;
  color: #909fa3;
  line-height: 1em;
  font-family: "bree-serif", sans-serif;
}
#eventTop .eventInfo .spanDark {
  display: block;
  font-size: 19px;
  color: #e4e7e8;
  line-height: 1.1em;
  font-family: "bree-serif", sans-serif;
  margin-bottom: 12px;
}
#eventTop .eventInfo a {
  color: #e4e7e8;
}
#eventTop .eventInfo .website {
  font-size: 15px;
}
#eventTop .eventInfo .soldoutImg {
  margin-top: 40px;
}
#eventTop .eventInfo .button {
  /*font-family: "museo-sans",sans-serif;*/
  margin-top: 30px;
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  font-weight: 500;
  /*background: #4faebb;*/
  padding: 12px 20px 13px 20px;
  font-size: 20px;
}
#eventBottom .button {
  margin-top: 60px;
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  align-items: center;
  margin: auto;
  font-weight: 500;
  padding: 12px 20px 13px 20px;
  font-size: 20px;
}
.eventgroup {
  padding: 20px;
  cursor: pointer;
  border-bottom: 1px solid #e8e8e8;
}
.eventgroup:hover {
  background: #4bae7a;
  color: #fff;
}
/*************************************************************/
/* ORDER PAGE */
/*************************************************************/
.moreInfo {
  display: none;
  font-size: 13px;
  color: #ccc;
  padding-top: 10px;
}
#orderDetails {
  width: 100%;
}
#orderDetails .left,
#orderDetails .right {
  width: 100%;
  margin-bottom: 30px;
}
#orderDetails .left {
  padding: 30px 30px 10px 30px;
  background: #ededed;
  overflow: auto;
}
#orderDetails .left .fa {
  font-size: 38px;
}
#orderDetails .left table td {
  vertical-align: top;
  padding: 0 0 20px 0;
  font-size: 18px;
  line-height: 1.3em;
  font-weight: 500;
}
#orderDetails .right #eventThumb {
  display: block;
}
#orderDetails .right #eventImg {
  display: none;
}
#ticketOptions {
  width: 100%;
  margin-bottom: 30px;
}
#ticketOptions .container {
  background: #233034;
  min-height: 100px;
  padding: 20px 0;
}
#ticketOptions .container h2 {
  color: #fff;
  font-size: 24px;
  margin-left: 20px;
  margin-bottom: 25px;
}
#ticketOptions .container h3 {
  color: #fff;
  font-size: 18px;
  margin-left: 20px;
  font-weight: 300;
}
#ticketOptions .container .ticketsTable {
  width: 100%;
  background: none;
  border: none;
}
#ticketOptions .container .ticketsTable td {
  padding: 20px;
  color: #fff;
  font-size: 18px;
  background: #2e3b3e;
  border-bottom: 3px solid #233034;
}
#ticketOptions .container .ticketsTable td a {
  text-transform: uppercase;
  color: #aaadae;
  font-weight: 500;
  font-size: 14px;
  transition: all 200ms ease;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
}
#ticketOptions .container .ticketsTable td a:hover {
  color: #f2f2f2;
}
#ticketOptions .container .ticketsTable td input[type=text] {
  display: inline-block;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  width: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px 0 0;
}
#ticketOptions .container .ticketsTable td select {
  width: 50px;
  margin: 0 10px 0 0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  text-align: center;
}
#ticketOptions .container .ticketsTable td .price {
  display: inline-block;
  background: #4bae7a;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  padding: 10px 12px 9px 12px;
  float: right;
}
#ticketOptions .container .ticketsTable td .label {
  padding: 8px 10px 11px 10px;
  font-size: 18px;
  float: right;
}
#ticketOptions .container .ticketsTable .disabled td {
  color: #697072;
}
#ticketOptions .container .ticketsTable .disabled td a {
  color: #697072;
}
#ticketOptions .container .ticketsTable .disabled td input[type=text] {
  background: #586265;
  color: #4c5557;
  border: 1px solid #4c5557;
}
#ticketOptions .container .ticketsTable .disabled td .price {
  background: #39524b;
  color: #6f7e7a;
}
#ticketOptions .container .ticketspriceTable {
  width: 100%;
  margin-top: 15px;
}
#ticketOptions .container .ticketspriceTable td {
  padding: 2px 20px 2px 0;
  text-align: right;
  color: #fff;
}
#ticketOptions .container .ticketspriceTable td .total {
  font-size: 20px;
  font-weight: 700;
}
#ticketOptions .container .submitTickets {
  width: 100%;
  padding: 20px;
  text-align: right;
}
#ticketOptions .container .submitTickets label {
  color: #fff;
  font-size: 17px;
  margin-right: 0;
}
#ticketOptions .container .submitTickets a {
  margin-right: 10px;
  padding: 6px 15px 8px 15px;
}
#ticketOptions .container .submitTickets .acceptterms {
  margin: 0;
  padding: 0;
  color: #fff;
  text-decoration: underline;
}
#ticketOptions .container .submitTickets .newsletterlegaltxt {
  font-size: 75%;
  color: #787878;
  margin: 0;
  padding: 0;
}
#ticketOptions .container .submitTickets .newsletterlegaltxt a {
  color: #787878;
  margin: 0;
  padding: 0;
  text-decoration: underline;
}
@media (min-width: 500px) {
  #ticketOptions .container .submitTickets .paddingalignthem {
    padding-right: 77px;
  }
}
#ticketOptions .container .submitTickets input[type=submit] {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
  padding: 6px 15px 8px 15px;
}
/*************************************************************/
/* CUSTOMER DETAILS */
/*************************************************************/
#customerDetails .contentBox .tickets {
  font-size: 14px;
}
/*************************************************************/
/* CONFIRM PAGE */
/*************************************************************/
.inputDiscount {
  float: left;
  text-align: left;
  max-width: 500px;
  min-width: 260px;
}
.inputDiscount input[type=text],
.inputDiscount input[type=submit] {
  float: left;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.inputDiscount input[type=text] {
  width: 60%;
}
.inputDiscount input[type=submit] {
  width: 20%;
  height: 37px;
  font-size: 12px;
  display: inline-block;
  color: #fff;
  border: none;
  background: #4bae7a;
  font-family: "museo-sans", sans-serif;
  margin-left: 10px;
}
/*************************************************************/
/* YOUTUBE/VIMEO */
/*************************************************************/
.youtubeContainerOuter {
  max-width: 500px;
  margin-top: 15px;
}
.youtubeContainerOuter .youtubeContainer {
  position: relative;
  padding-bottom: 49%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.youtubeContainerOuter .youtubeContainer iframe,
.youtubeContainerOuter .youtubeContainer object,
.youtubeContainerOuter .youtubeContainer embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.videoContainer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
}
.videoContainer iframe,
.videoContainer object,
.videoContainer embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*************************************************************/
/* MESSAGES (CALL-TO-ACTION FRONTPAGE) */
/*************************************************************/
.messages {
  width: 100%;
  padding: 50px 0;
}
.messages .fa {
  font-size: 70px;
  color: #dcdcdc;
  padding-bottom: 10px;
}
.messages .column {
  text-align: center;
}
.messages h1,
.messages h2,
.messages h3 {
  color: #707070;
}
.messages p {
  color: #aaaaaa;
}
/*************************************************************/
/* ORGANIZER SECTION */
/*************************************************************/
.organizerSection {
  text-align: center;
  padding: 50px 0;
  background: #4bae7a url("/img/sectionbg-green2.jpg") top center no-repeat;
  background-size: cover;
}
.organizerSection h1 {
  margin-top: 0;
  margin-bottom: 20px;
}
.organizerSection h1,
.organizerSection h2,
.organizerSection p,
.organizerSection a {
  color: #fff;
}
.organizerSection .button {
  background: #2e3b3e;
}
.organizerSection.dark {
  padding: 60px 0 70px 0;
  background: #2e3b3e url("/img/sectionbg-dark.jpg") top center no-repeat;
  background-size: cover;
}
.organizerSection.dark .button {
  background: #4bae7a;
  border: 1px solid #4bae7a;
}
.organizerSection.dark .button.borderBtn {
  background: transparent;
  border-color: #fff;
}
.whiteSection {
  background: #fff;
  padding: 60px 0;
}
.whiteSection.shadow {
  -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.05);
}
.greySection {
  background: #f6f6f6;
  padding: 60px 0;
}
.socialIconsContainer {
  margin-bottom: 1.25rem;
}
.socialIconsContainer a {
  display: inline-block;
  vertical-align: top;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 15px;
  color: #fff;
  background: #999;
  text-align: center;
  margin-right: 5px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
/*************************************************************/
/* FAQ LIST */
/*************************************************************/
ul.faqList {
  margin-bottom: 20px;
}
ul.faqList li a {
  color: #233034;
  font-weight: 600;
}
.faqAnswers {
  margin-bottom: 40px;
}
.faqAnswers h3 {
  border-top: 1px solid #dedede;
  font-size: 16px;
  padding-top: 15px;
}
.faqAnswers .answer {
  margin-bottom: 15px;
}
.faqAnswers .answer p {
  font-size: 16px;
  margin-bottom: 10px;
}
/*************************************************************/
/* NEWSLETTER */
/*************************************************************/
#dataPolicyLinkAndNewsletter {
  background: #2e3b3e;
  color: #fff;
  text-align: center;
}
#newsletterContainer {
  width: 100%;
  min-height: 150px;
  background: #2e3b3e;
  color: #fff;
  text-align: center;
  padding: 50px 0;
}
#newsletterContainer p {
  color: #aaaaaa;
}
#newsletterContainer h1,
#newsletterContainer h2,
#newsletterContainer h3 {
  color: #fff;
  line-height: 1.1em;
}
#newsletterContainer input[type=text],
#newsletterContainer select,
#newsletterContainer input[type=submit],
#newsletterContainer input[type=email] {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
}
#newsletterContainer .error input[type=text] {
  border: 2px solid #ff1e23;
}
.dropdown-check-list {
  display: inline-block;
  width: 100%;
  background: #fff;
  color: #666;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
  margin-bottom: 10px;
}
.dropdown-check-list:focus {
  outline: 0;
}
.dropdown-check-list .anchor {
  width: 100%;
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding-top: 5px;
  padding-left: 10px;
  padding-bottom: 5px;
  border: 1px #ccc solid;
}
.dropdown-check-list .anchor:after {
  position: absolute;
  content: "";
  border-left: 2px solid black;
  border-top: 2px solid black;
  padding: 5px;
  right: 10px;
  top: 20%;
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.dropdown-check-list .anchor:active:after {
  right: 8px;
  top: 21%;
}
.dropdown-check-list ul.items {
  padding: 2px;
  display: none;
  margin: 0;
  border: 1px solid #ccc;
  border-top: none;
  padding-left: 10px;
}
.dropdown-check-list ul.items li {
  list-style: none;
  color: #666;
}
.dropdown-check-list ul.items li label {
  color: #666;
}
.dropdown-check-list.visible .anchor {
  color: #0094ff;
}
.dropdown-check-list.visible .items {
  display: block;
}
#newsletter_notice {
  padding-top: 1.5rem;
}
/*************************************************************/
/* MAILCHIMP FORM */
/*************************************************************/
#mc_embed_signup {
  /*padding: 0 30px;*/
  max-width: 1000px;
  margin: 0 auto;
}
#mc_embed_signup .mc-field-group {
  text-align: center;
}
#mc_embed_signup .mc-field-group label {
  text-align: left;
  /*color: #fff;*/
}
#mc_embed_signup .mc-field-group ul {
  width: 100%;
  list-style: none;
  margin: 0;
  clear: both;
}
#mc_embed_signup .mc-field-group ul li {
  display: inline-block;
  line-height: 1.2em;
}
#mc_embed_signup .submitBig {
  width: 100%;
}
/*************************************************************/
/* ORGANIZER */
/*************************************************************/
.ticketRow,
.addonRow {
  overflow: auto;
  zoom: 1;
  margin: 0 -5px;
}
.ticketRow:nth-child(odd),
.addonRow:nth-child(odd) {
  background: transparent;
  padding: 0px 5px;
}
.ticketRow:nth-child(even),
.addonRow:nth-child(even) {
  background: #f5f5f5;
  padding: 8px 5px;
  margin-bottom: 8px;
}
/*************************************************************/
/* NEWSLETTER SUBSCRIBE BOX */
/*************************************************************/
.subscribeBox {
  position: relative;
  padding: 25px;
  border: 1px solid #e8e8e8;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  text-align: center;
  background: #f2f2f2;
}
.subscribeBox #closeBtn {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
.subscribeBox h2 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 0;
  background: transparent;
  border: none;
}
.subscribeBox .body {
  font-size: 1.2em;
}
.subscribeBox .button {
  margin-top: 20px;
  padding: 12px 25px 13px;
  font-size: 20px;
  border: 1px solid #439c6e;
  text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.35);
}
/*************************************************************/
/* FOOTER */
/*************************************************************/
#footerContainer {
  width: 100%;
  min-height: 60px;
  background: #233034;
  color: #5d6c70;
  color: #819094;
  font-size: 13px;
}
#footerContainer p {
  font-size: 13px;
}
#footerContainer a {
  color: #647377;
  color: #819094;
}
#footerContainer .footerText {
  padding-top: 20px;
}
#footerContainer .creditcards {
  float: right;
  padding-top: 18px;
}
#footerContainer .creditcards img {
  height: 20px;
}
/*************************************************************/
/* IMAGE CROP v3 */
/*************************************************************/
.cropContainer {
  padding: 40px;
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  background-image: -webkit-linear-gradient(45deg, #ccc 25%, transparent 25%, transparent 75%, #ccc 75%), -webkit-linear-gradient(45deg, #ccc 25%, transparent 25%, transparent 75%, #ccc 75%);
  background-image: linear-gradient(45deg, #ccc 25%, transparent 25%, transparent 75%, #ccc 75%), linear-gradient(45deg, #ccc 25%, transparent 25%, transparent 75%, #ccc 75%);
  background-size: 16px 16px;
  background-position: 0 0,8px 8px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.cropContainer .default {
  /*background: #f5f5f5;*/
}
.cropContainer .default img {
  max-width: none;
}
.hidden {
  display: none;
}
.nopadding {
  padding: 0;
}
.nomargin {
  margin: 0;
}
.margintb {
  margin: 30px 0;
}
.paddingtb {
  padding: 30px 0;
}
.paddingTop {
  padding-top: 30px;
}
