@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5rem;
  background: #f5f7f8;
}

@media only screen and (min-width: 1024px) {
  body {
    background: #d1d1d1 url(/img/body_bg.png?v=1) 50% 0 no-repeat;
  }
}

header,
div.main,
footer {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

div.main {
  padding: 0 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

div.main.noads {
  padding-top: 0;
}

div.main.wide {
  padding: 0;
  margin: 0 auto;
}

@media only screen and (min-width: 560px) {
  div.main.wide {
    display: block;
  }
}

p,
h1,
h2,
h3 {
  color: #333;
}

h1,
h2,
h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}

h2,
h3 {
  font-weight: 400;
}

p {
  margin: 0 0 0.5rem 0;
}

ol {
  margin-left: 40px;
}

ol li {
  margin-left: 10px;
}

p.standout {
  background: #fff;
  padding: 10px 15px;
  border: 1px solid #ddd;
}

p.standout a {
  color: #f43875;
}

div.empty {
  position: relative;
  min-height: 400px;
  text-align: center;
  opacity: 0.9;
}

div.empty > div {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url(/img/logo-300x300.png) center center no-repeat;
  opacity: 0.05;
}

div.empty p {
  font-size: 170%;
  line-height: 130%;
  margin-bottom: 15px;
}

h1 {
  line-height: 1.92rem;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0.2rem 0 0.6rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  padding-top: 15px;
}

@media only screen and (min-width: 1024px) {
  h1 {
    padding-top: 0;
  }
}

h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 0.2rem 0 1rem 0;
}

div.main > article > section.content h2 {
  margin: 2.2rem 0 0.5rem 0;
}

a {
  color: #0375af;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: #0375af;
}

@media only screen and (min-width: 560px) {
  div.main {
    padding: 30px;
  }
}

div.main div.ad_320 {
  text-align: center;
  background: #fff;
  padding: 30px 0 0 0;
}

@media only screen and (max-width: 380px) {
  div.main div.ad_320 {
    overflow: hidden;
    margin-left: -30px;
    width: 100vw;
    text-align: center;
  }

  div.main div.ad_320 > div {
    margin: 0 auto;
  }
}

div.main div.panorama {
  display: none;
  text-align: center;
  overflow: hidden;
  background: #f6f6f6;
}

@media only screen and (min-width: 768px) {
  div.main div.panorama {
    display: block;
  }
}

div.main div.panorama > div {
  margin: 0 auto;
  padding: 0 0 30px 0;
}

div.main aside.ad {
  width: 100%;
  text-align: center;
}

div.main article {
  z-index: 0;
}

div.main article.main {
  padding: 0 15px;
}

div.main article.main section.content,
div.main article.main section.box-container,
div.main article.main section.pagination-container {
  padding: 0 30px;
}

@media only screen and (min-width: 560px) {
  div.main article.main section.box-container,
  div.main article.main section.pagination-container {
    padding: 0;
  }
}

div.main article.main section.content h2 {
  margin-top: 2rem;
}

div.main article.main section.content ul,
div.main article.main section.content ol {
  list-style: none;
}

div.main article.main section.content ul li,
div.main article.main section.content ol li {
  position: relative;
  padding: 0 6rem 0 2rem;
}

div.main article.main section.content ul li:before,
div.main article.main section.content ol li:before {
  position: absolute;
  left: 0.45rem;
  content: "\2B51";
  opacity: 0.6;
}

@media only screen and (min-width: 768px) {
  div.main article.main {
    padding: 0;
  }

  div.main article.main section.content,
  div.main article.main section.box-container {
    padding: 0;
  }

  div.main article.main section.pagination-container nav.pagination {
    padding: 0 0 15px 0 !important;
  }
}

@supports (display: grid) {
@media only screen and (min-width: 1024px) {
    div.main {
      background: #fff;
      display: grid;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: start;
      grid-gap: 30px;
      grid-template-rows: auto;
      grid-template-columns: auto 300px;
      grid-template-areas: "topad topad" "maincontent atop" "maincontent aad" "maincontent aside" "maincontent abottom" "bcontent acontent";
    }

    div.main > section.main,
    div.main > article {
      grid-area: maincontent;
    }

    div.main > aside.top {
      grid-area: atop;
    }

    div.main > aside.ad {
      margin: 30px 0;
      grid-area: aad;
      margin: 0;
    }

    div.main > aside.aside {
      grid-area: aside;
    }

    div.main > aside.bottom {
      grid-area: atop;
    }

    div.main > section.bcontent {
      grid-area: bcontent;
    }

    div.main > section.acontent {
      grid-area: acontent;
    }

    div.main div.panorama {
      display: block;
      grid-area: topad;
    }

    div.main div.panorama > div {
      padding-bottom: 0;
    }
}
}

header {
  position: relative;
}

header > strong {
  display: block;
  position: relative;
  background: #fff url(/img/logo_m.png) no-repeat;
  background-size: 191px 28px;
  background-position: 10px 10px;
  overflow: auto;
  margin: 0;
}

header > strong a {
  display: block;
  float: left;
  width: 200px;
  height: 50px;
  text-indent: -5000px;
}

header > strong span.tagline {
  display: none;
}

header form {
  position: relative;
  padding: 15px;
  background: #303030;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #303030), color-stop(79%, #1c1c1c), to(#131313));
  background: linear-gradient(to bottom, #303030 0, #1c1c1c 79%, #131313 100%);
}

header form > label {
  display: none;
}

header form input,
header form div {
  padding: 0;
  margin: 0;
  height: 38px;
  line-height: 36px;
  font-size: 95%;
  letter-spacing: 0.01rem;
}

header form input {
  outline: 0;
  border: 0;
  background-color: transparent;
}

header form #what {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 99%;
  padding: 0 10px;
  background: #fff;
  border-radius: 2px 0 0 2px;
}

header form .button {
  position: absolute;
  top: 15px;
  right: 15px;
  display: inline-block;
  color: #fff;
  width: 85px;
  background: 0;
}

header form #submit {
  width: 100%;
  padding-left: 20px;
  text-transform: uppercase;
  color: #fff;
  background: #f43875 url(/img/icons/search_w.png) no-repeat;
  background-size: 1.08rem 1.08rem;
  background-position: 13px center;
  border-radius: 0 2px 2px 0;
  font-weight: bold;
  cursor: pointer;
}

header form #submit:hover {
  background-color: #f32a6b;
}

header nav {
  height: 45px;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  background: #f1f1f1;
}

header nav.breadcrumb {
  display: none;
  border: 0;
  background: #fff;
  padding: 8px 0 8px 30px;
  height: inherit;
  font-weight: 300;
  color: #222;
  font-size: 85%;
}

header nav.breadcrumb span {
  display: inline-block;
  padding: 0 5px;
  opacity: 0.3;
}

header nav.breadcrumb a {
  color: #555 !important;
}

header nav > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 70px;
  overflow-y: hidden;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  -webkit-mask-image: -webkit-gradient(linear, 90% top, right top, from(#000), to(transparent));
}

header nav > div a {
  display: block;
  line-height: 45px;
  height: 43px;
  text-transform: capitalize;
  color: #333 !important;
  padding: 0 7px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 0.99rem;
}

header nav > div a:hover {
  text-decoration: none;
  color: #111 !important;
  border-bottom: 2px solid #aaa;
}

header nav > div a:first-child {
  margin-left: 23px;
}

header nav > div a:last-child {
  padding-right: 60px;
}

header nav > div a.active {
  border-bottom: 2px solid #f43875;
}

header nav > div a.active strong {
  color: #000 !important;
}

header nav > div span {
  display: block;
  padding-right: 30px;
}

header nav.breadcrumb {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: -webkit-gradient(linear, 90% top, right top, from(#000), to(transparent));
}

@media screen and (min-width: 768px) {
  header #search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 0;
    width: 100%;
  }

  header #search #what {
    width: 500px;
  }

  header #search .button {
    position: inherit;
    top: 0;
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  header {
    /**
        	 * Header logo
        	 */
  }

  header > strong {
    background-image: url(/img/logo.png);
    background-size: 263px 76px;
    background-position: 15px 15px;
    height: 91px;
  }

  header > strong a {
    height: 91px;
    width: 278px;
  }

  header > strong span.tagline {
    display: block !important;
    position: absolute;
    color: #666;
    font-size: 18px;
    font-weight: 100;
    width: 340px;
    left: 220px;
    top: 11px;
  }

  header .tagline {
    display: block !important;
    position: absolute;
    color: #888;
    font-size: 120%;
    font-weight: 300;
    width: 340px;
    left: 254px;
    top: 11px;
    font-family: "Source Sans pro";
  }

  header .tagline span {
    color: #dd3e74;
    font-weight: bold;
    padding: 2px 11px;
  }

  header .tagline img {
    margin: -12px 7px;
    width: 30px;
  }

  header .tagline.secondary {
    left: auto;
    width: auto;
    right: 35px;
    top: 50px;
    display: none !important;
  }

  header .tagline.secondary img {
    margin: -12px 7px;
    width: 30px;
  }

  header nav.breadcrumb {
    background: #fff;
  }
}

@media screen and (min-width: 768px) {
  header nav.breadcrumb {
    margin-bottom: -30px;
  }
}

footer {
  background: #21282e;
}

footer section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
  padding: 0 30px;
}

footer section:first-child {
  padding-top: 30px;
}

footer section:last-child {
  margin-bottom: 0;
  padding-bottom: 30px;
}

footer section a {
  color: #fff !important;
}

footer section img.logo {
  width: 250px;
  height: 36.5px;
  margin: 0 auto 20px auto;
}

footer section p {
  color: #f0f0f0;
  text-align: center;
  margin: 10px 0;
}

footer section p:first-child {
  margin-top: 0;
}

footer section p:last-child {
  margin-bottom: 0;
}

footer section p.links > a {
  display: inline-block;
  font-size: 100%;
  white-space: nowrap;
  margin-left: 15px;
}

footer section p.links > a:first-child {
  margin-left: 0;
}

footer section p.payment img {
  width: 280px;
  height: 91px;
}

footer section p.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer section p.social a {
  width: 32px;
  height: 32px;
  background-size: 32px 320px;
  background-image: url(/img/logos/social.png);
  background-color: #101419;
  background-repeat: no-repeat;
  border-radius: 8px;
  padding: 6px;
  margin: 0 8px;
}

footer section p.social a.atom {
  background-position: 6px 6px;
}

footer section p.social a.atom:hover {
  background-color: #fc8c33;
}

footer section p.social a.facebook {
  background-position: 6px -58px;
}

footer section p.social a.facebook:hover {
  background-color: #4c68a1;
}

footer section p.social a.twitter {
  background-position: 6px -122px;
}

footer section p.social a.twitter:hover {
  background-color: #55acee;
}

footer section.information {
  display: block;
  background: #eee;
  padding: 30px;
  font-size: 120%;
  line-height: 120%;
}

footer section.information h3 {
  font-weight: 300;
  margin-bottom: 15px;
}

footer section.information p {
  font-size: 90%;
  color: #444;
  margin: 0 auto auto 0 !important;
  text-align: left !important;
  padding-bottom: 25px;
}

footer section.information p a {
  color: #111 !important;
  text-decoration: underline;
}

@media only screen and (min-width: 768px) {
  footer section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  footer section img.logo {
    margin: 0 20px 0 0;
  }

  footer section p {
    margin: 0 10px;
    text-align: left;
  }

  footer section p:first-child {
    margin-left: 0;
  }

  footer section p:last-child {
    margin-right: 0;
  }

  footer section p.about {
    margin: 4px 10px 0 20px;
  }

  footer section p.social {
    margin-top: 6px;
  }

  footer section p.links {
    margin: 0;
    padding: 0;
    line-height: 43px;
  }

  footer section p.links:after {
    content: "";
    display: table;
    clear: both;
  }

  footer section p.links a {
    display: block;
    float: left;
    margin-left: 10px;
  }

  footer section p.links a:after {
    content: '\2022';
    margin-left: 10px;
  }

  footer section p.links a:first-child {
    margin-left: 0;
  }

  footer section p.links a:last-child:after {
    content: '';
    margin-left: 0;
  }
}

#topslider {
  display: none;
  position: absolute;
  top: 0;
  right: 11px;
  margin-top: 11px;
  text-align: center;
  width: 380px;
  height: 80px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  #topslider {
    display: block;
  }
}

#topslider > ul {
  width: 1147px;
  height: 80px;
  list-style: none;
  display: block;
  overflow: hidden;
}

#topslider > ul.slide {
  -webkit-transition: margin-left 0.6s ease-in-out;
  transition: margin-left 0.6s ease-in-out;
}

#topslider > ul.noslide {
  -webkit-transition: none;
  transition: none;
}

#topslider > ul li {
  display: block;
  float: left;
  width: 380px;
  line-height: 22px;
  font-size: 18px;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
  opacity: 1;
}

#topslider > ul li a {
  width: 380px;
  color: #222;
}

#topslider > ul li a div {
  display: none;
  float: left;
  width: 240px;
  height: 50px;
  padding-top: 4px;
}

@media screen and (min-width: 1024px) {
  #topslider > ul li a div {
    display: inline;
  }
}

#topslider > ul li a div h4 {
  font-weight: 300 !important;
}

#topslider > ul li a div h4 em {
  font-style: normal;
  color: #F5477F;
}

#topslider > ul li a img {
  float: right;
  width: 120px;
  height: 70px;
}

#topslider > nav {
  width: 240px;
  height: 20px;
  margin-top: -25px;
  display: none;
  text-align: center;
  background: none;
  border: none;
}

@media screen and (min-width: 1024px) {
  #topslider > nav {
    display: block;
  }
}

#topslider > nav span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 3px;
  border-radius: 4px;
  background: #ddd;
  cursor: default;
}

#topslider > nav span.active {
  background: #333;
}

aside.counties,
section.places {
  background: #fff;
  margin-bottom: 30px;
  padding: 20px 30px 0 30px;
  border: 1px solid #eee;
}

aside.counties h2,
section.places h2 {
  font-size: 1.35rem;
  line-height: 2.1rem;
  margin-top: 0;
  font-weight: 600;
}

aside.counties nav a,
section.places nav a {
  display: block;
  height: 0;
  line-height: 0;
  border-top: 0px solid #eee;
  border-width: 0;
  overflow: hidden;
  -webkit-transition-property: height, line-height, border-width;
  transition-property: height, line-height, border-width;
  -webkit-transition-duration: .2s, .2s, .5s;
          transition-duration: .2s, .2s, .5s;
  -webkit-transition-delay: 0, 0, .2s;
          transition-delay: 0, 0, .2s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  font-weight: 400;
  font-size: 105%;
}

aside.counties nav a.primary,
aside.counties nav a.show,
section.places nav a.primary,
section.places nav a.show {
  height: 2.7rem;
  line-height: 2.7rem;
  border-width: 1px;
}

aside.counties nav a.show,
aside.counties nav a.hide,
section.places nav a.show,
section.places nav a.hide {
  text-align: center;
  text-transform: uppercase;
  font-size: 90%;
  font-weight: 600;
  color: #f43875;
}

aside.counties nav a.show::after,
aside.counties nav a.hide::after,
section.places nav a.show::after,
section.places nav a.hide::after {
  display: inline-block;
  content: "+";
  font-size: 1.08rem;
  width: 1.08rem;
  line-height: 1.08rem;
  height: 1.08rem;
  margin-left: 0.72rem;
  border: 1px solid #f43875;
  border-radius: 1.08rem;
  padding: 0;
  text-align: center;
  font-weight: 100;
  color: #f43875;
}

aside.counties nav.large,
aside.counties nav.larger,
section.places nav.large,
section.places nav.larger {
  padding-bottom: 22.5px;
  margin-right: 10px;
}

aside.counties nav.expanded a,
section.places nav.expanded a {
  height: 2.7rem;
  line-height: 2.7rem;
  border-top: 1px solid #eee;
}

aside.counties nav.expanded a.show,
section.places nav.expanded a.show {
  display: none;
}

aside.counties nav.expanded a.hide::after,
section.places nav.expanded a.hide::after {
  content: "-";
}

@supports (display: grid) {
@media only screen and (min-width: 415px) {
    aside.counties nav,
    section.places nav {
      display: grid;
      grid-template-columns: 1fr 1fr;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
    }

    aside.counties nav a,
    section.places nav a {
      display: none;
    }

    aside.counties nav a.primary,
    aside.counties nav a.secondary,
    aside.counties nav a.show,
    section.places nav a.primary,
    section.places nav a.secondary,
    section.places nav a.show {
      display: block;
      height: 2.7rem;
      line-height: 2.7rem;
      border-width: 1px;
    }

    aside.counties nav a.show,
    aside.counties nav a.hide,
    section.places nav a.show,
    section.places nav a.hide {
      grid-column: 1 / span 2;
    }

    aside.counties nav.expanded a,
    section.places nav.expanded a {
      display: block;
      height: 2.7rem;
      line-height: 2.7rem;
      border-width: 1px;
    }

    aside.counties nav.expanded a.show,
    section.places nav.expanded a.show {
      display: none;
    }

    aside.counties nav.expanded a.hide::after,
    section.places nav.expanded a.hide::after {
      content: "-";
    }
}

@media only screen and (min-width: 560px) and (max-width: 1023px) {
    aside.counties nav,
    section.places nav {
      grid-template-columns: 1fr 1fr 1fr;
    }

    aside.counties nav a.tertiary,
    section.places nav a.tertiary {
      display: block;
      height: 2.7rem;
      line-height: 2.7rem;
      border-width: 1px;
    }

    aside.counties nav a.show,
    aside.counties nav a.hide,
    section.places nav a.show,
    section.places nav a.hide {
      grid-column: 1 / span 3;
    }
}
}

@media only screen and (min-width: 1024px) {
  aside.counties,
  section.places {
    margin: 0;
    padding: 24px 30px 0 30px;
    border: 1px solid #ccc;
  }

  aside.counties h2,
  section.places h2 {
    font-size: 1.65rem;
  }

  aside.counties a.show,
  aside.counties a.hide,
  section.places a.show,
  section.places a.hide {
    height: 3.51rem !important;
    line-height: 3.51rem !important;
  }
}

.label,
label[data-type="category"],
label[data-type="tag"],
label[data-type="artist"] {
  display: inline-block;
  font-style: normal;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 1px 0px 3px rgba(0, 0, 0, 0.15);
  background: #b1b1b1;
  color: #fff !important;
  padding: 0 0.9rem 0 0;
  height: 1.8rem;
  line-height: 1.8rem;
  border-radius: 1.8rem;
  font-size: 0.81rem;
}

.label[data-type="category"]:before,
.label[data-type="tag"]:before,
.label[data-type="artist"]:before,
.label.category:before,
.label.tag:before,
.label.artist:before,
.label.position:before,
label[data-type="category"][data-type="category"]:before,
label[data-type="category"][data-type="tag"]:before,
label[data-type="category"][data-type="artist"]:before,
label[data-type="category"].category:before,
label[data-type="category"].tag:before,
label[data-type="category"].artist:before,
label[data-type="category"].position:before,
label[data-type="tag"][data-type="category"]:before,
label[data-type="tag"][data-type="tag"]:before,
label[data-type="tag"][data-type="artist"]:before,
label[data-type="tag"].category:before,
label[data-type="tag"].tag:before,
label[data-type="tag"].artist:before,
label[data-type="tag"].position:before,
label[data-type="artist"][data-type="category"]:before,
label[data-type="artist"][data-type="tag"]:before,
label[data-type="artist"][data-type="artist"]:before,
label[data-type="artist"].category:before,
label[data-type="artist"].tag:before,
label[data-type="artist"].artist:before,
label[data-type="artist"].position:before {
  content: "";
  background-position: 0.852rem center;
  background-size: 0.72rem 0.72rem;
  background-repeat: no-repeat;
  padding-left: 2.16rem;
}

.label.category:before,
.label[data-type="category"]:before,
label[data-type="category"].category:before,
label[data-type="category"][data-type="category"]:before,
label[data-type="tag"].category:before,
label[data-type="tag"][data-type="category"]:before,
label[data-type="artist"].category:before,
label[data-type="artist"][data-type="category"]:before {
  background-image: url(/img/icons/tag_w.png);
}

.label.tag:before,
.label[data-type="tag"]:before,
label[data-type="category"].tag:before,
label[data-type="category"][data-type="tag"]:before,
label[data-type="tag"].tag:before,
label[data-type="tag"][data-type="tag"]:before,
label[data-type="artist"].tag:before,
label[data-type="artist"][data-type="tag"]:before {
  background-image: url(/img/icons/tag_w.png);
}

.label.artist:before,
.label[data-type="artist"]:before,
label[data-type="category"].artist:before,
label[data-type="category"][data-type="artist"]:before,
label[data-type="tag"].artist:before,
label[data-type="tag"][data-type="artist"]:before,
label[data-type="artist"].artist:before,
label[data-type="artist"][data-type="artist"]:before {
  background-image: url(/img/icons/artist_w.png);
}

.label.position:before,
label[data-type="category"].position:before,
label[data-type="tag"].position:before,
label[data-type="artist"].position:before {
  background-image: url(/img/icons/position_w.png);
}

.label.inline,
label[data-type="category"].inline,
label[data-type="tag"].inline,
label[data-type="artist"].inline {
  height: 1.5rem;
  line-height: 1.5rem;
  padding: 0 0.585rem;
  background: #f43875;
  font-weight: normal;
}

.label.inline.category:before,
.label.inline.tag:before,
.label.inline.artist:before,
.label.inline.position:before,
label[data-type="category"].inline.category:before,
label[data-type="category"].inline.tag:before,
label[data-type="category"].inline.artist:before,
label[data-type="category"].inline.position:before,
label[data-type="tag"].inline.category:before,
label[data-type="tag"].inline.tag:before,
label[data-type="tag"].inline.artist:before,
label[data-type="tag"].inline.position:before,
label[data-type="artist"].inline.category:before,
label[data-type="artist"].inline.tag:before,
label[data-type="artist"].inline.artist:before,
label[data-type="artist"].inline.position:before {
  background-position: 0 center;
  background-size: 0.576rem 0.576rem;
  padding-left: 1.17rem;
}

.label.inline.inverted,
label[data-type="category"].inline.inverted,
label[data-type="tag"].inline.inverted,
label[data-type="artist"].inline.inverted {
  color: #f43875 !important;
  background: #fff;
  border: 1px solid rgba(244, 56, 117, 0.4);
  text-shadow: none;
}

.label.inline.large,
label[data-type="category"].inline.large,
label[data-type="tag"].inline.large,
label[data-type="artist"].inline.large {
  height: 1.65rem;
  line-height: 1.65rem;
  font-size: 0.9rem;
  font-weight: bold;
}

.label.inline.larger,
label[data-type="category"].inline.larger,
label[data-type="tag"].inline.larger,
label[data-type="artist"].inline.larger {
  height: 1.8rem;
  line-height: 1.8rem;
  font-size: 0.99rem;
  font-weight: bold;
}

.label.gray,
label[data-type="category"].gray,
label[data-type="tag"].gray,
label[data-type="artist"].gray {
  background: #eee;
  color: #666 !important;
  text-shadow: none;
}

a.tag:hover {
  text-decoration: underline;
}

.box-container > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  background: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #333;
  text-decoration: none;
  position: relative;
  -webkit-transition: all .1s ease-in;
  transition: all .1s ease-in;
  margin-bottom: 1rem;
}

.box-container > a:hover {
  top: -2px;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
}

.box-container > a > div.image {
  padding-bottom: 60%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.box-container > a > div.content {
  padding: 15px 15px 0.9rem 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.box-container > a > div.content h2 {
  margin: 0 0 0.5rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  font-weight: 600;
}

.box-container > a > div.content > strong {
  font-weight: normal;
  line-height: 1.2rem;
  margin-bottom: 0.75rem;
}

.box-container > a > div.content p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0;
}

.box-container > a > div.content p > span.location {
  opacity: 0.8;
  display: block;
  margin: -0.7rem 0 0.2rem 0;
  font-size: 95%;
}

.box-container > a > div.content p > strong {
  opacity: 0.8;
  text-transform: uppercase;
}

.box-container > a div.meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 85%;
  font-weight: bold;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 10px 15px 10px 15px;
  border-top: 1px solid #eee;
}

.box-container > a div.meta span {
  display: block;
}

.box-container > a div.meta span em {
  font-style: normal;
}

.box-container > a div.meta span em.sunday {
  color: #a00;
}

.box-container > a div.meta span:last-child {
  color: #f5477f !important;
}

.box-container > a:hover > div.content div span {
  color: #807f7f;
}

@supports (display: grid) {
  .box-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 30px;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
  }

  .box-container > a {
    margin-bottom: 0;
  }

@media only screen and (min-width: 560px) {
    .box-container.list > a {
      display: grid;
      grid-template-columns: 66px 1fr 200px;
      grid-template-rows: auto;
      grid-gap: 0;
      grid-template-areas: "meta content image";
    }

    .box-container.list > a div.image {
      grid-area: image;
      padding-bottom: 0;
      background-position: top right;
      background-size: contain;
    }

    .box-container.list > a div.content {
      grid-area: content;
      padding: 10px 15px 15px 15px;
    }

    .box-container.list > a div.meta {
      grid-area: meta;
      padding: 15px 0 15px 15px;
      border: none;
    }

    .box-container.list > a div.meta span {
      display: block;
      width: 100%;
    }

    .box-container.list > a div.meta span:first-child {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }

    .box-container.list > a div.meta span:first-child em {
      display: block;
      text-align: center;
      border-left: 1px solid #ddd;
      border-right: 1px solid #ddd;
      font-size: 1.62rem;
      line-height: 1.62rem;
      letter-spacing: 0.02rem;
      padding: 0.3rem 0 0.1rem 0;
      color: #333;
    }

    .box-container.list > a div.meta span:first-child em:first-child,
    .box-container.list > a div.meta span:first-child em:last-child {
      line-height: 1.08rem;
      padding: 0;
    }

    .box-container.list > a div.meta span:first-child em:first-child {
      border: none;
      font-size: 0.72rem;
      background: #2b89b8;
      border: 1px solid #2983b0;
      border-bottom: none;
      color: #fff;
      font-weight: bold;
    }

    .box-container.list > a div.meta span:first-child em:last-child {
      font-size: 0.81rem;
      border-bottom: 1px solid #ddd;
      padding-bottom: 0.09rem;
      text-transform: capitalize;
      color: #4d4c4c;
    }

    .box-container.list > a div.meta span:first-child em.sunday:first-child {
      background: #b82b45;
      border-color: #b82b45;
    }

    .box-container.list > a div.meta span:last-child {
      display: none;
    }
}

@media only screen and (min-width: 560px) and (min-width: 768px) {
    .box-container.list > a {
      grid-template-columns: 66px 1fr 200px;
    }

    .box-container.list > a div.image {
      background-size: cover;
    }
}

  .box-container.list a:first-child div.content p.description {
    display: block !important;
  }

@media only screen and (min-width: 560px) {
    .box-container.grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: -webkit-max-content;
      grid-template-rows: max-content;
    }
}

@media only screen and (min-width: 768px) {
    .box-container.grid {
      grid-template-columns: 1fr 1fr 1fr;
    }
}

  .box-container.grid.small {
    grid-template-columns: 1fr;
  }

  .box-container.grid.small a h2 {
    font-size: 110%;
  }

  .box-container.grid.small a div.content {
    padding: 15px 15px 0.45rem 15px;
  }

@media only screen and (min-width: 560px) {
    .box-container.grid.small {
      grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (min-width: 768px) {
    .box-container.grid.small {
      grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (min-width: 560px) {
    .box-container a:first-child div.content p.description {
      display: none;
    }
}
}

.toggled-content {
  max-height: 320px;
  overflow: hidden;
  position: relative;
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  padding: 15px 0 20px 0;
}

.toggled-content.text {
  white-space: pre-line;
}

.toggled-content div.toggle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 45px 0 0 0;
  background-image: url(/img/ui/gradient-w-50px.png);
  background-repeat: repeat-x;
}

.toggled-content div.toggle a {
  display: block;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  background: #fff;
  font-weight: bold;
}

.toggled-content div.toggle a:after {
  content: "...";
}

.toggled-content.toggled {
  max-height: initial;
  padding-bottom: 30px;
}

.toggled-content.toggled div.toggle {
  background: none;
  padding: 0 0 0 0;
}

.toggled-content.toggled div.toggle a {
  color: #999;
}

.toggled-content.notoggle {
  max-height: initial;
  padding-bottom: 0;
}

.toggled-content.notoggle div.toggle {
  display: none;
}

nav.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  margin: 15px;
}

@media only screen and (min-width: 560px) {
  nav.pagination {
    margin: 15px 0;
  }
}

@media only screen and (min-width: 1024px) {
  nav.pagination {
    margin-bottom: 0;
  }
}

nav.pagination a,
nav.pagination span {
  display: inline-block;
  width: 2.7rem;
  height: 2.7rem;
  line-height: 2.7rem;
  border-radius: 1.35rem;
  text-align: center;
  padding: 0;
  font-weight: bold;
  color: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 0 9px 0 0;
  background: #f43875;
}

nav.pagination a.current,
nav.pagination span.current {
  color: #fff;
  background: #222;
}

nav.pagination a:hover {
  -webkit-box-shadow: 1px 4px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 4px 4px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.08rem !important;
  margin-top: -2px;
}

nav.pagination span {
  color: #bbb;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
}

nav.pagination span.arrow {
  background: #f43875;
  opacity: 0.4;
  color: #fff;
}

nav.pagination span.long {
  width: auto;
}

nav.pagination span:hover {
  cursor: default;
}

nav.pagination > a,
nav.pagination > span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

nav.pagination > a:first-child,
nav.pagination > span:first-child {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
}

nav.pagination > a:last-child,
nav.pagination > span:last-child {
  margin-right: 0;
}

nav.pagination div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: rows;
          flex-direction: rows;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

nav.pagination div > span {
  background: none;
}

section.filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 90%;
  font-weight: bold;
  text-transform: uppercase;
  padding: 4px 20px 10px 20px;
}

section.filter > a {
  color: #666;
  padding: 6px 10px;
}

section.filter > a.active {
  color: #111;
  border-bottom: 2px solid #f43875;
}

div.popup-wrapper {
  position: fixed;
  text-align: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 90px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: padding-top 0.4s 0.1s ease-in-out, opacity 0.2s 0.3s ease-in-out;
  transition: padding-top 0.4s 0.1s ease-in-out, opacity 0.2s 0.3s ease-in-out;
}

div.popup-wrapper.hidden {
  opacity: 0;
  padding-top: 700px;
}

div.popup-wrapper.hidden div.popup {
  opacity: 0;
}

div.popup-wrapper div.popup * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

div.popup-wrapper div.popup {
  margin: 0 auto 0 auto;
  -webkit-box-shadow: 0 0 40px 4px #111118;
          box-shadow: 0 0 40px 4px #111118;
  width: 90%;
  min-width: 280px;
  max-width: 300px;
  background: #fff;
  overflow: hidden;
  -webkit-transition: opacity 0.4s 0.1s ease-in-out;
  transition: opacity 0.4s 0.1s ease-in-out;
}

@media only screen and (min-width: 560px) {
  div.popup-wrapper div.popup {
    margin-top: 0px;
  }
}

div.popup-wrapper div.popup div.header {
  background: #eee;
  padding: 15px;
  text-align: center;
}

div.popup-wrapper div.popup div.header h2 {
  font-weight: normal !important;
  font-size: 1.4rem;
  margin-bottom: 0;
}

div.popup-wrapper div.popup div.message {
  text-align: left;
  padding: 20px 25px 0 25px;
}

div.popup-wrapper div.popup div.message.center {
  text-align: center;
}

div.popup-wrapper div.popup div.message p {
  padding-bottom: 10px;
  font-size: 100%;
  color: #333;
}

div.popup-wrapper div.popup div.message p.small {
  font-size: 85%;
  font-weight: normal;
  color: #555;
}

div.popup-wrapper div.popup div.message p strong {
  color: #000;
}

div.popup-wrapper div.popup div.primary {
  padding: 0 15px 15px 15px;
}

div.popup-wrapper div.popup div.primary a {
  width: 100%;
  border: none;
  overflow: hidden;
}

div.popup-wrapper div.popup div.primary a span {
  display: block;
  line-height: 44px;
  height: 44px;
  border-radius: 3px;
  background: #f43875;
  color: #fff;
  font-size: 15px;
  font-weight: bolder;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

div.popup-wrapper div.popup div.primary a span:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  cursor: pointer;
  text-decoration: none;
}

div.popup-wrapper div.popup div.secondary {
  padding: 0px 15px 15px 15px;
}

#appmenu {
  width: 50px;
  max-width: 420px;
  position: absolute;
  z-index: 2;
  right: 0px;
  top: 0px;
  -webkit-transition: width 0.1s linear;
  transition: width 0.1s linear;
}

#appmenu a.trigger {
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 12px;
  border-top: 4px solid #404040;
  border-bottom: 4px solid #404040;
  top: 16px;
  right: 15px;
}

#appmenu a.trigger:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0px;
  width: 100%;
  border-top: 4px solid #404040;
}

#appmenu a.trigger:hover {
  border-top: 4px solid #202020;
  border-bottom: 4px solid #202020;
}

#appmenu a.trigger:hover:before {
  border-top: 4px solid #202020;
}

#appmenu ul {
  background: #303030;
  margin: 50px 0 0 0;
  border-radius: 2px;
  overflow: hidden;
}

#appmenu ul li {
  list-style: none;
}

#appmenu ul li a {
  display: block;
  color: #242424;
  text-decoration: none;
  padding: 0 20px;
  line-height: 0px;
  overflow: hidden;
  -webkit-transition: line-height 0.1s ease-in-out, color 0.1s ease-in-out;
  transition: line-height 0.1s ease-in-out, color 0.1s ease-in-out;
  font-weight: bold;
}

#appmenu ul li a:hover {
  background: #333333;
}

#appmenu.visible {
  width: 100%;
}

#appmenu.visible a.trigger {
  border-top: 4px solid #606060;
  border-bottom: 4px solid #606060;
}

#appmenu.visible a.trigger:before {
  border-top: 4px solid #606060;
}

#appmenu.visible ul {
  -webkit-box-shadow: 0 11px 33px -7px #111118;
          box-shadow: 0 11px 33px -7px #111118;
}

#appmenu.visible ul li {
  border-bottom: 1px solid #505050;
}

#appmenu.visible ul li:last-child {
  border-bottom: none;
}

#appmenu.visible ul li a {
  color: #f6f6f6;
  line-height: 48px;
}

@media only screen and (min-width: 768px) {
  #appmenu {
    top: 98px;
  }

  #appmenu a.trigger {
    border-top: 4px solid #f5f5f5;
    border-bottom: 4px solid #f5f5f5;
  }

  #appmenu a.trigger:before {
    border-top: 4px solid #f5f5f5;
  }

  #appmenu a.trigger:hover {
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
  }

  #appmenu a.trigger:hover:before {
    border-top: 4px solid #fff;
  }
}

div.main article.occasion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  background: #fff;
}

div.main article.occasion h1 {
  margin-top: 0;
  padding-top: 0;
}

div.main article.occasion section.header {
  padding: 15px 30px 0 30px;
}

div.main article.occasion section.meta {
  margin: 0 30px 1.5rem 30px;
}

div.main article.occasion p.venue,
div.main article.occasion p.time,
div.main article.occasion p.location,
div.main article.occasion p.tickets {
  background-size: 1rem 1rem;
  background-repeat: no-repeat;
  background-position: 0 0.35rem;
  padding: 0 0 0 2rem;
  font-weight: bold;
}

div.main article.occasion p.time {
  background-image: url(/img/icons/calendar_b.png);
  color: #666666;
}

div.main article.occasion p.time a {
  color: #f43875;
}

div.main article.occasion p.venue {
  background-image: url(/img/icons/location_b.png);
  color: #666666;
}

div.main article.occasion section.content {
  padding: 15px 30px 0 30px;
}

div.main article.occasion section.content div.labels {
  padding: 10px 0 0 0;
}

div.main article.occasion section.content div.labels strong.label {
  margin-bottom: 10px;
}

div.main article.occasion section.location {
  padding: 4px 30px;
  margin: 0 0 11px 0;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}

div.main article.occasion section.location h2 {
  margin: 0.7rem 0 1rem 0;
}

div.main article.occasion section.location > p {
  padding: 0.9rem;
  background-image: none;
  font-weight: normal;
}

div.main article.occasion section.location #map {
  margin: 0;
  height: 300px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

div.main article.occasion section.meta p.tickets {
  background-image: url(/img/icons/tickets_b.png);
  font-weight: normal;
  font-size: 95%;
}

div.main article.occasion section.meta p.tickets span {
  display: block;
  text-transform: capitalize;
  font-weight: 500;
}

div.main article.occasion section.meta p.tickets em {
  font-style: normal;
  font-weight: 500;
  white-space: nowrap;
}

div.main article.occasion section.meta div.ad {
  display: none;
}

@supports (display: grid) {
@media only screen and (min-width: 560px) {
    div.main article.occasion {
      display: grid;
      grid-auto-flow: row;
      grid-template-rows: auto auto auto;
      grid-template-columns: auto auto 240px;
      grid-template-areas: "hdr hdr hdr" "content content meta" "loc loc loc";
    }

    div.main article.occasion section.header {
      grid-area: hdr;
    }

    div.main article.occasion section.content {
      grid-area: content;
    }

    div.main article.occasion section.content p.time {
      display: none;
    }

    div.main article.occasion section.location {
      grid-area: loc;
    }

    div.main article.occasion section.meta {
      grid-area: meta;
      margin-left: 0;
    }

    div.main article.occasion section.external {
      grid-area: ext;
    }
}

@media only screen and (min-width: 768px) {
    div.main article.occasion {
      margin: -30px -30px 0 -30px;
      padding: 30px;
      grid-template-columns: auto auto auto 330px;
      grid-template-areas: "hdr hdr hdr hdr" "content content content meta" "loc loc loc meta";
    }

    div.main article.occasion section.header {
      padding: 15px 0 0 0;
    }

    div.main article.occasion section.meta {
      margin-right: 0;
      margin-left: 30px;
    }

    div.main article.occasion section.meta > div:first-child {
      border: 1px solid #eee;
      padding: 10px 30px 30px 30px;
    }

    div.main article.occasion section.meta div.ad {
      display: block;
      margin: 30px 0;
    }

    div.main article.occasion section.content {
      padding: 0 0 30px 0;
    }

    div.main article.occasion section.location {
      padding: 0;
    }

    div.main article.occasion section.location p {
      background: #f5f5f5;
    }
}
}

section.occasion-similar {
  background: #fff;
  padding: 30px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

@media only screen and (min-width: 768px) {
  section.occasion-similar {
    margin: 0 -30px;
    border: none;
  }

  section.occasion-similar h2 {
    border-top: 3px solid #eee;
    padding-top: 30px;
    margin: 0 0 30px 0;
  }
}

section.occasion-related {
  background: #fff;
  padding: 30px;
  z-index: 9991;
}

section.occasion-related h2 em {
  font-size: 80%;
  font-style: normal;
  opacity: 0.9;
  display: block;
}

section.occasion-related h3 {
  text-transform: uppercase;
  font-size: 90%;
  margin-top: 15px;
  border-bottom: 1px solid #ddd;
  display: table-header-group;
}

section.occasion-related h3:first-child {
  margin-top: 0;
}

section.occasion-related div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

section.occasion-related div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 10px;
  color: #222 !important;
}

section.occasion-related div a:nth-child(odd) {
  background: #fafafa;
}

section.occasion-related div a span {
  width: 40%;
  padding-left: 5px;
}

section.occasion-related div a span:last-child {
  width: 60%;
  padding-left: 0;
  padding-right: 5px;
  position: relative;
}

section.occasion-related div a span:last-child:after {
  position: absolute;
  right: 5px;
  top: 5px;
  content: "";
  width: 32px;
  height: 32px;
  opacity: 0.8;
  background: url("/img/icons/tickets_p.png") top right/32px 32px no-repeat;
  opacity: 0.7;
}

section.occasion-related div a span strong {
  font-weight: inherit;
}

section.occasion-related div a span em {
  display: block;
  text-transform: capitalize;
  font-style: normal;
  font-size: 90%;
  opacity: 0.9;
}

section.occasion-related div a:hover em,
section.occasion-related div a:hover strong {
  text-decoration: underline !important;
}

section.occasion-related div a:hover span:last-child:after {
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  section.occasion-related div a {
    padding: 15px;
    margin-bottom: 0;
  }

  section.occasion-related div a span strong:after {
    content: ",";
  }

  section.occasion-related div a span em {
    display: inline-block;
    font-size: 100%;
    opacity: 1;
  }

  section.occasion-related div a span:after {
    margin-top: -10px;
  }
}

@media only screen and (min-width: 768px) {
  section.occasion-related {
    margin: 0 -30px;
  }

  section.occasion-related h2 {
    padding-top: 30px;
    border-top: 3px solid #eee;
    margin: 0 0 30px 0;
  }
}

aside.newsitems div.description {
  padding: 0 30px 30px 30px;
  border-bottom: 2px solid #ddd;
  margin-bottom: 30px;
}

aside.newsitems div.description h2 {
  margin-top: 0;
}

aside.newsitems div.description a {
  display: inline;
}

@media only screen and (min-width: 768px) {
  aside.newsitems div.description {
    padding: 0 0 30px 0;
  }
}

aside.newsitems a {
  display: block;
  text-decoration: none;
}

aside.newsitems a img {
  width: 100%;
}

aside.newsitems a h2,
aside.newsitems a p {
  margin: 0;
  background: #fff;
}

aside.newsitems a h2 {
  padding: 10px 15px 15px 15px;
  color: #000;
  font-weight: 600;
}

aside.newsitems a p {
  padding: 0 15px 30px 15px;
}

aside.newsitems a p strong {
  text-transform: uppercase;
  color: #f43875;
}

aside.newsitems a:last-child {
  padding-bottom: 0;
}

@media only screen and (min-width: 1024px) {
  aside.newsitems a h2,
  aside.newsitems a p {
    padding-left: 0;
    padding-right: 0;
  }
}

div.main article.news {
  padding-top: 30px;
  background: #fff;
}

div.main article.news section.content a {
  display: block;
  text-decoration: none;
}

div.main article.news section.content a h2 {
  margin-top: 0.5rem;
}

div.main article.news section.content a p {
  padding-bottom: 30px;
}

div.main article.news section.content a img {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  div.main article.news {
    padding-top: 0;
  }

  div.main article.news section.content a h2,
  div.main article.news section.content a p {
    padding-left: 30px;
    padding-right: 30px;
  }
}

div.main article.newsitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

div.main article.newsitem section.content h1 {
  margin-bottom: 1.5rem;
  padding-top: 0;
  margin-top: 0;
}

div.main article.newsitem section.content h2 {
  margin-top: 1.4rem;
}

div.main article.newsitem section.content p {
  margin: 0 0 1rem 0;
}

div.main article.newsitem section.content p.dateline {
  margin: 0.2rem 0 0 0;
  padding-top: 15px;
}

@media only screen and (min-width: 768px) {
  div.main article.newsitem section.content p.dateline {
    margin: 0;
    padding-top: 0;
  }
}

div.main article.newsitem section.content p.dateline time {
  text-transform: uppercase;
  color: #f43875;
  font-weight: bold;
}

div.main article.newsitem section.content p.image img {
  max-width: 100%;
}

div.main article.newsitem section.content p.image span.title,
div.main article.newsitem section.content p.image span.credit {
  display: block;
  color: #555;
  text-align: center;
  line-height: 2.1rem;
}

div.main article.newsitem section.content p.image span.credit:before {
  content: 'Foto: ';
}

div.main article.newsitem section.content p.metadata {
  margin: 0 0 1.6rem 0;
}

div.main article.newsitem section.content p.metadata label {
  margin-right: 5px;
}

div.main article.newsitem section.content p.metadata label[data-type="author"] {
  font-weight: bold;
  opacity: 0.7;
}

div.main article.category {
  padding: 0;
}

div.main article.category > section {
  padding: 0 30px;
}

div.main article.category section.header {
  margin-bottom: 30px;
  padding-bottom: 15px;
  background: #fff;
}

@media only screen and (min-width: 768px) {
  div.main article.category section.box-container {
    padding: 0;
  }
}

@media only screen and (min-width: 1024px) {
  div.main article.category section.header {
    padding: 0;
  }
}

div.main article.area section.header {
  padding: 0 20px;
  padding-bottom: 15px;
  background: #fff;
}

div.main article.area section.header div.municipalities {
  margin: 24px 0 30px 0;
  line-height: 2.25rem;
  text-align: center;
}

@media only screen and (min-width: 1024px) {
  div.main article.area > section {
    padding: 0 !important;
    margin: 0 !important;
  }
}

div.main article.venue {
  padding: 0;
}

div.main article.venue > section {
  padding: 0 30px;
}

div.main article.venue section.header {
  padding: 15px 20 30px 20;
  background: #fff;
}

div.main article.venue section.header h1 {
  margin-bottom: 0;
}

div.main article.venue section.header h2 {
  margin: 0;
  font-size: 120%;
}

div.main article.venue section.location {
  margin-bottom: 30px;
  background: #fff;
}

div.main article.venue section.location > p {
  padding: 0.9rem 0;
}

div.main article.venue section.location #map {
  margin: 0;
  height: 300px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (min-width: 1024px) {
  div.main article.venue section.header {
    padding: 0 0 30px 0;
  }

  div.main article.venue section.location {
    padding: 0;
  }

  div.main article.venue section.location > p {
    padding: 0.9rem 0 0 0;
  }

  div.main article.venue section.box-container {
    padding: 0;
  }
}

div.main article.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

div.main article.about section.content {
  padding: 0 30px 30px 30px;
}

div.main article.about section.content > div {
  height: 200px;
  position: relative;
  margin-left: -30px;
  margin-right: -30px;
}

div.main article.about section.content > div strong {
  position: absolute;
  top: 50px;
  font-family: "Source Sans pro", sans-serif;
  font-size: 3.0rem;
  font-weight: 300;
  line-height: 4rem;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: #000 0 0 12px;
  color: #fff;
  opacity: 0.5;
}

div.main article.about section.content > div img {
  position: absolute;
  top: 0;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

div.main article.about section.content p.preamble {
  font-size: 120%;
  line-height: 150% !important;
  padding: 20px 0;
  display: block;
}

@media only screen and (min-width: 768px) {
  div.main article.about {
    padding: 0;
  }

  div.main article.about section.content {
    padding: 0 0 30px 0;
  }

  div.main article.about section.content > div {
    height: 400px;
    margin-bottom: 30px;
  }

  div.main article.about section.content > div strong {
    top: 100px;
  }

  div.main article.about section.content > div img {
    height: 400px;
  }
}

@media only screen and (min-width: 1024px) {
  div.main article.about section.content {
    padding: 0;
  }

  div.main article.about section.content > div {
    margin-left: 0;
    margin-right: 0;
  }
}

article.auth {
  background: url("/img/unsplash/bg_crowd.jpg") no-repeat center center;
  background-size: cover;
  min-height: 400px;
  text-align: center;
}

@media only screen and (min-width: 560px) {
  article.auth {
    padding: 40px !important;
  }
}

article.auth * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article.auth > form {
  margin: -95px auto 20px auto;
  -webkit-box-shadow: 0 0 40px 4px #111118;
          box-shadow: 0 0 40px 4px #111118;
  width: 90%;
  min-width: 280px;
  max-width: 300px;
  background: #fff;
  overflow: hidden;
}

@media only screen and (min-width: 560px) {
  article.auth > form {
    margin-top: 0px;
  }
}

article.auth > form > div.header {
  padding: 25px 0 20px 0;
}

article.auth > form > div.header h2 {
  font-weight: normal !important;
  font-size: 1.8rem;
}

article.auth > form > div.message {
  text-align: left;
  padding: 0 5px;
}

article.auth > form > div.message.center {
  text-align: center;
}

article.auth > form > div.message p {
  padding-bottom: 10px;
  font-size: 100%;
  font-weight: bold;
}

article.auth > form > div.body {
  padding: 20px 15px;
}

article.auth > form > div.body div.name,
article.auth > form > div.body div.email,
article.auth > form > div.body div.password {
  position: relative;
  line-height: 34px;
  height: 34px;
  margin-bottom: 18px;
}

article.auth > form > div.body div.name:before,
article.auth > form > div.body div.email:before,
article.auth > form > div.body div.password:before {
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  line-height: 38px;
  height: 38px;
  width: 38px;
  text-align: center;
  background: #eee;
  color: #666;
  font-weight: bold;
  border-radius: 2px;
  content: "@";
}

article.auth > form > div.body div.password > a {
  position: absolute;
  right: 0;
  top: 2px;
}

article.auth > form > div.body div.password > a img {
  height: 34px;
  padding: 0 14px;
  opacity: 0.5;
}

article.auth > form > div.body div.password > a:hover img {
  opacity: 0.7;
}

article.auth > form > div.body div.password:before {
  content: "\2606";
}

article.auth > form > div.body div.name:before {
  content: "\270E";
}

article.auth > form > div.body input {
  display: block;
  line-height: 40px;
  height: 40px;
  width: 100%;
  font-size: 12px;
  padding: 0 0 0 44px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid #bbb;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-radius: 3px;
}

article.auth > form > div.body input:active,
article.auth > form > div.body input:focus {
  outline: none;
  border-color: #666;
  position: relative;
}

article.auth > form > div.footer {
  padding: 0 15px 15px 15px;
}

article.auth > form > div.footer button {
  min-width: 100%;
  border: none;
  overflow: hidden;
  border-radius: 3px;
  background: #f43875;
}

article.auth > form > div.footer button span {
  display: block;
  line-height: 44px;
  height: 44px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

article.auth > form > div.footer button span:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  cursor: pointer;
}

article.auth > form > div.footer p {
  padding-top: 10px;
}

article.auth > form > div.footer p.small {
  padding: 15px 0;
  font-size: 90%;
  line-height: 140%;
  font-weight: normal;
  text-align: left;
  opacity: 0.9;
}

article.default {
  padding: 15px;
}

@media only screen and (min-width: 768px) {
  article.default {
    padding: 0;
  }
}

article.default > h2,
article.default > p {
  padding: 0;
  margin: 0 15px;
}

article.default > h2 {
  font-weight: bold;
}

article.landing {
  padding: 15px;
}

article.landing h2,
article.landing p {
  padding: 0;
  margin: 0 15px;
}

article.landing h2 {
  font-weight: bold;
}

article.landing p {
  font-size: 95%;
}

article.landing section.event-teaser img,
article.landing section.news-teaser img {
  width: 100%;
  max-height: 320px;
  min-height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

article.landing section.event-teaser > a,
article.landing section.news-teaser > a {
  text-decoration: none;
}

article.landing section.event-teaser > a:hover h2,
article.landing section.event-teaser > a:hover p,
article.landing section.news-teaser > a:hover h2,
article.landing section.news-teaser > a:hover p {
  text-decoration: underline;
}

article.landing section.intro-teaser {
  background: #fff;
  padding: 10px 15px;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #655b5e;
  text-align: center;
  font-size: 1em;
}

article.landing section.event-teaser {
  position: relative;
  margin: 0 0 15px 0;
  padding: 0;
}

article.landing section.event-teaser > a > div {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  padding: 6px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article.landing section.event-teaser > a > div h2,
article.landing section.event-teaser > a > div p {
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 15px;
}

article.landing section.event-teaser > a > div h2 {
  margin-bottom: -5px;
}

article.landing section.news-teaser {
  margin: 0 0 15px 0;
}

article.landing section.news-teaser > a > div {
  background: #fff;
  padding: 6px 0px;
}

article.landing section.news-teaser > a > div em {
  font-family: Arial, Helvetica;
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 0 15px;
  font-style: normal;
}

article.landing section.news-teaser > a > div h2 {
  margin-top: -4px;
}

article.landing section.news-teaser > a > div p {
  line-height: 1.35rem;
  padding-bottom: 10px;
}

article.landing section.places {
  padding: 15px;
  margin: 0 0 15px 0;
}

article.landing section.places h2 {
  margin-left: 0;
  margin-bottom: 10px;
}

article.landing div.ad_320 {
  padding: 0;
  background: none;
  margin: 0 0 15px 0;
  overflow: hidden;
}

article.landing div.ad_320 > div {
  width: 320px;
  margin: 0 auto;
}

article.landing div.ad_320 > div:before {
  content: 'ANNONS \25BE';
  font-family: Arial, Helvetica;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-align: left;
  display: block;
}

@media only screen and (min-width: 560px) {
  article.landing {
    padding: 30px 0 0 0;
  }

  article.landing div.group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  article.landing div.ad_320 {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  article.landing section.intro-teaser {
    display: none;
  }

  article.landing div.group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  article.landing section.event-teaser img {
    max-height: 420px;
  }

  article.landing section.places {
    width: 50%;
  }

  article.landing section.news-teaser {
    width: 50%;
    margin-right: 15px;
  }
}

@media only screen and (min-width: 1024px) {
  article.landing section.places {
    display: none;
  }
}

aside.large-only,
div.large-only {
  display: none !important;
}

@media only screen and (min-width: 1024px) {
  aside.large-only,
  div.large-only {
    display: block !important;
  }

  article.landing {
    grid-area: topad !important;
    padding-top: 0;
  }

  article.landing div.panorama {
    grid-area: none;
    padding-bottom: 30px;
  }

  article.landing section.event-teaser {
    display: block;
    float: left;
    width: 60%;
  }

  article.landing div.group {
    display: block;
    width: 40%;
    float: right;
  }

  article.landing div.group section.news-teaser {
    width: auto;
    margin-right: 0;
    margin-left: 30px;
  }
}

.lists-occasions {
  padding: 20px;
  background: #fff;
}

@media only screen and (min-width: 768px) {
  .lists-occasions {
    padding: 20px 0 0 0;
  }
}

.lists-occasions a.item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.lists-occasions a.item:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .lists-occasions a.item:last-of-type {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
  }
}

.lists-occasions a.item > div.item-date {
  padding: 0.3rem 20px 0 0;
}

.lists-occasions a.item > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 8;
      -ms-flex: 8;
          flex: 8;
  margin: 0 0 0 0;
  line-height: 1.5rem;
}

@media only screen and (min-width: 560px) {
  .lists-occasions a.item > p {
    font-size: 110%;
  }
}

.lists-occasions a.item > p > strong {
  padding-bottom: 0.4rem;
  font-family: "Source Sans Pro", arial, sans-serif;
  font-size: 115%;
}

.lists-occasions a.item > p > span.location {
  opacity: 0.8;
  font-size: 90%;
}

.lists-occasions a.item:hover p.item-content {
  text-decoration: underline;
}

.lists-occasions a.item > div.image {
  padding-top: 0.3rem;
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

.lists-occasions a.item > div.image img {
  display: block;
  width: 100%;
}

.lists-occasions div.item-date {
  width: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.lists-occasions div.item-date em {
  display: block;
  text-align: center;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 1.44rem;
  font-style: normal;
  font-weight: bold;
  line-height: 1.44rem;
  letter-spacing: 0.02rem;
  padding: 0.3rem 0 0.1rem 0;
  color: #333;
}

.lists-occasions div.item-date em:first-child,
.lists-occasions div.item-date em:last-child {
  line-height: 1.08rem;
  padding: 0;
}

.lists-occasions div.item-date em:first-child {
  border: none;
  font-size: 0.72rem;
  background: #2b89b8;
  border: 1px solid #2983b0;
  border-bottom: none;
  color: #fff;
  font-weight: bold;
  padding: 0 4px;
}

.lists-occasions div.item-date em:last-child {
  font-size: 0.81rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.09rem;
  text-transform: capitalize;
  color: #4d4c4c;
}

.lists-occasions div.item-date em.sunday:first-child {
  background: #b82b45;
  border-color: #b82b45;
}

section.block-panorama {
  text-align: center;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  section.block-panorama div.block-panorama-small {
    display: none;
  }
}

@media only screen and (min-width: 360px) {
  section.block-panorama div.block-panorama-small {
    margin: 20px 0;
  }
}

@media only screen and (min-width: 375px) {
  section.block-panorama div.block-panorama-small {
    margin: 27.5px 0;
  }
}

section.block-panorama div.block-panorama-large {
  display: none;
}

@media only screen and (min-width: 768px) {
  section.block-panorama div.block-panorama-large {
    display: block;
    margin: 30px auto;
  }
}

section.block-push-primary {
  overflow-x: auto;
  background: #fff;
  padding: 4vw 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

section.block-push-primary::-webkit-scrollbar {
  display: none;
}

section.block-push-primary div.push-primary-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section.block-push-primary div.push-primary-carousel a {
  display: block;
  position: relative;
  overflow: hidden;
  -ms-overflow-style: none;
  min-width: 88vw;
  width: 88vw;
  height: 60vw;
  margin-right: 4vw;
  -webkit-box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 2px 10px -2px rgba(0, 0, 0, 0.4);
}

section.block-push-primary div.push-primary-carousel a:first-child {
  margin-left: 4vw;
}

section.block-push-primary div.push-primary-carousel a img {
  width: 104%;
  margin-left: -2%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.block-push-primary div.push-primary-carousel a p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 5px 10px;
  text-decoration: none;
  text-align: center;
  background: #fff;
  font-size: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

section.block-push-primary div.push-primary-carousel a p strong {
  text-transform: uppercase;
  font-size: 90%;
  color: #f43875;
}

section.block-push-primary div.push-primary-carousel a:hover p {
  text-decoration: underline;
}

@media only screen and (min-width: 560px) {
  section.block-push-primary div.push-primary-carousel a {
    min-width: 44vw;
    width: 44vw;
    height: 30vw;
    margin-right: 3vw;
  }

  section.block-push-primary div.push-primary-carousel a:first-child {
    margin-left: 3vw;
  }
}

@supports (display: grid) {
@media only screen and (min-width: 768px) {
    section.block-push-primary {
      padding: 30px;
      overflow: hidden;
    }

    section.block-push-primary div.push-primary-carousel {
      display: grid;
      grid-template-columns: auto 44vw auto;
      grid-template-areas: "b a c" "d a e";
      -webkit-column-gap: 2vw;
              column-gap: 2vw;
      height: 40vw;
    }

    section.block-push-primary div.push-primary-carousel a {
      min-width: auto;
      width: inherit;
      height: inherit;
      -webkit-box-shadow: none;
              box-shadow: none;
      margin: 0 !important;
      height: auto;
    }

    section.block-push-primary div.push-primary-carousel a img {
      height: 100%;
      min-width: 104%;
    }

    section.block-push-primary div.push-primary-carousel a p {
      padding: 5px 0;
      font-size: 100%;
      font-weight: bold;
    }

    section.block-push-primary div.push-primary-carousel a:nth-child(1) {
      grid-area: a;
      width: inherit;
      height: inherit;
    }

    section.block-push-primary div.push-primary-carousel a:nth-child(2) {
      grid-area: b;
    }

    section.block-push-primary div.push-primary-carousel a:nth-child(3) {
      grid-area: c;
    }

    section.block-push-primary div.push-primary-carousel a:nth-child(4) {
      grid-area: d;
    }

    section.block-push-primary div.push-primary-carousel a:nth-child(5) {
      grid-area: e;
    }
}

@media only screen and (min-width: 1024px) {
    section.block-push-primary {
      padding: 0 30px 30px 30px;
    }
}

@media only screen and (min-width: 1240px) {
    section.block-push-primary div.push-primary-carousel {
      height: 500px !important;
    }
}
}

section.block-push-secondary div.block-push-secondary-one {
  padding-bottom: 20px;
  margin-bottom: 20px;
  background: #fff;
}

section.block-push-secondary div.block-push-secondary-one a {
  display: block;
  text-decoration: none;
}

section.block-push-secondary div.block-push-secondary-one a img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 104%;
  height: 50vw;
  margin-bottom: 10px;
}

section.block-push-secondary div.block-push-secondary-one a strong,
section.block-push-secondary div.block-push-secondary-one a h2,
section.block-push-secondary div.block-push-secondary-one a span {
  margin: 0 20px;
  color: #000;
  display: block;
}

section.block-push-secondary div.block-push-secondary-one a strong {
  font-size: 90%;
  color: #333;
  text-transform: uppercase;
  font-weight: 100;
}

section.block-push-secondary div.block-push-secondary-one a h2 {
  font-size: 1.5rem;
  margin-top: -2px;
  padding-bottom: 0;
}

section.block-push-secondary div.block-push-secondary-list {
  margin-bottom: 20px;
  background: #fff;
}

section.block-push-secondary div.block-push-secondary-list h2 {
  background: #444;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  font-size: 0.9rem;
  margin: 0;
  padding: 5px 10px;
  text-transform: uppercase;
}

section.block-push-secondary div.block-push-secondary-list div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-bottom: 1px solid #eee;
  text-decoration: none;
}

section.block-push-secondary div.block-push-secondary-list div a:last-child {
  border-bottom: none;
}

section.block-push-secondary div.block-push-secondary-list div a img {
  width: 30vw;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
}

section.block-push-secondary div.block-push-secondary-list div a span {
  display: block;
  font-weight: 100;
  font-size: 120%;
  color: #000;
  padding: 5px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (min-width: 560px) {
  section.block-push-secondary div.block-push-secondary-one {
    margin-bottom: 30px;
  }

  section.block-push-secondary div.block-push-secondary-one a {
    margin: 0 30px;
  }

  section.block-push-secondary div.block-push-secondary-one a strong,
  section.block-push-secondary div.block-push-secondary-one a h2,
  section.block-push-secondary div.block-push-secondary-one a span,
  section.block-push-secondary div.block-push-secondary-one a img {
    display: block;
    margin: 0;
    width: 100%;
  }

  section.block-push-secondary div.block-push-secondary-one a strong {
    margin-top: 15px;
  }

  section.block-push-secondary div.block-push-secondary-one a img {
    height: 40vw;
  }

  section.block-push-secondary div.block-push-secondary-list {
    padding: 0 30px 30px 30px;
    background: none;
  }

  section.block-push-secondary div.block-push-secondary-list div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  section.block-push-secondary div.block-push-secondary-list div a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 33%;
    border-bottom: none !important;
    background: #fff;
  }

  section.block-push-secondary div.block-push-secondary-list div a:nth-child(2) {
    width: 34%;
  }

  section.block-push-secondary div.block-push-secondary-list div a img {
    width: 100%;
    height: 18vw;
  }

  section.block-push-secondary div.block-push-secondary-list div a span {
    padding: 10px;
  }
}

article.blocks section.block-push-secondary div.block-push-secondary-news {
  min-height: 180px;
  background: #0ff00f;
}

article.blocks section.block-push-secondary div.block-push-secondary-events {
  min-height: 400px;
  background: #fff000;
}

@supports (display: grid) {
@media only screen and (min-width: 1024px) {
    article.blocks section.block-push-secondary {
      display: grid;
      grid-template-columns: auto 360px;
      grid-template-areas: "secondary_events secondary_news";
    }

    article.blocks section.block-push-secondary div.block-push-secondary-events {
      grid-area: secondary_events;
    }

    article.blocks section.block-push-secondary div.block-push-secondary-news {
      grid-area: secondary_news;
    }
}
}

article.blocks div.block-content section.block-content-cloud {
  min-height: 160px;
  background: #ddd;
}

article.blocks div.block-content aside.block-content-secondary {
  min-height: 600px;
  background: #44f;
}

article.blocks div.block-content section.block-content-primary {
  min-height: 1200px;
  background: #f0f;
}

@supports (display: grid) {
@media only screen and (min-width: 1024px) {
    article.blocks div.block-content {
      display: grid;
      grid-template-columns: auto 360px;
      grid-template-areas: "cloud secondary" "primary secondary";
    }

    article.blocks div.block-content section.block-content-cloud {
      grid-area: cloud;
    }

    article.blocks div.block-content aside.block-content-secondary {
      grid-area: secondary;
    }

    article.blocks div.block-content section.block-content-primary {
      grid-area: primary;
    }
}
}

#evse-ticket-main,
#evse-ticket-alt {
  position: fixed;
  z-index: 9999;
  bottom: 15px;
  left: 0;
  width: 100%;
  height: 46px;
  text-align: center;
}

#evse-ticket-main.unfixed,
#evse-ticket-alt.unfixed {
  position: inherit;
  padding-top: 10px;
  padding-bottom: 20px;
}

#evse-ticket-main.with-alternative,
#evse-ticket-alt.with-alternative {
  bottom: 61px;
}

#evse-ticket-main.with-alternative.unfixed,
#evse-ticket-alt.with-alternative.unfixed {
  padding-top: 10px;
  padding-bottom: 4px;
}

#evse-ticket-main a,
#evse-ticket-alt a {
  display: inline-block;
  margin: 0 auto;
  width: 260px;
  padding-bottom: 1px;
  background-color: #f43875;
  color: #fff;
  line-height: 45px;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  -webkit-box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.5);
  border-radius: 23px;
}

#evse-ticket-main a:hover,
#evse-ticket-alt a:hover {
  background-color: #f2165e;
  text-decoration: none;
}

#evse-ticket-main a strong,
#evse-ticket-alt a strong {
  background: url(/img/icons/tickets_w.png) no-repeat;
  background-size: 18px 18px;
  background-position: left;
  padding: 0 1rem 0 1.9rem;
}

#evse-ticket-alt {
  bottom: 2px;
}

#evse-ticket-alt p {
  display: none;
}

#evse-ticket-alt a {
  max-width: 210px;
  background-color: #00a5cc;
  font-size: 16px;
  line-height: 40px;
  padding-bottom: 0;
}

#evse-ticket-alt a:hover {
  background-color: #0095b8;
  text-decoration: none;
}

#evse-ticket-alt a strong {
  background-image: url(/img/logos/nojesresor-icon-2.png);
  background-size: 20px 20px;
}

@media only screen and (min-width: 560px) {
  #evse-ticket-main,
  #evse-ticket-alt {
    position: inherit !important;
    z-index: inherit;
    bottom: auto;
    left: auto;
    height: auto;
  }

  #evse-ticket-main.unfixed,
  #evse-ticket-alt.unfixed {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  #evse-ticket-main p,
  #evse-ticket-alt p {
    display: block;
    color: #444;
    font-size: 95%;
  }

  #evse-ticket-main p em,
  #evse-ticket-alt p em {
    display: block;
    padding: 10px 0 5px 0;
    color: #999;
    font-weight: 400;
  }

  #evse-ticket-main a,
  #evse-ticket-alt a {
    width: 100% !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding-left: 12px;
  }

  #evse-ticket-main {
    margin: 15px 0;
  }

  #evse-ticket-main.with-alternative {
    margin: 15px 0 0 0;
  }

  #evse-ticket-alt {
    margin-bottom: 30px;
  }

  #evse-ticket-alt a {
    width: auto !important;
  }
}

article.default > p.evse-search-info {
  margin: 0 0 5px 0 !important;
  font-size: 95%;
}

@media only screen and (min-width: 768px) {
  article.default > p.evse-search-info {
    font-size: inherit;
  }
}

article.default > p.evse-search-info:last-of-type {
  margin: 5px 0 15px 0 !important;
}

article.default > p.evse-search-info > span {
  display: block;
  text-align: center;
  font-size: 90%;
  opacity: 0.8;
}

