/* ****************************** */
/* EFFECTS */
/* ANimates underlines on links etc */
.anim-underline-c {
  position: relative; }
  .anim-underline-c:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0px;
    left: 0;
    background-color: #000;
    visibility: hidden;
    transform: scaleX(0);
    transition: all .3s ease-in-out 0s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%; }
  .anim-underline-c:hover {
    color: #000; }
    .anim-underline-c:hover:before {
      visibility: visible;
      transform: scaleX(1); }
.anim-underline-l {
  position: relative; }
  .anim-underline-l:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0px;
    left: 0;
    background-color: #000;
    visibility: hidden;
    transform: scaleX(0);
    transition: all .3s ease-in-out 0s;
    -webkit-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    transform-origin: 0% 50%; }
  .anim-underline-l:hover {
    color: #000; }
    .anim-underline-l:hover:before {
      visibility: visible;
      transform: scaleX(1); }
.anim-underline-r {
  position: relative; }
  .anim-underline-r:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0px;
    left: 0;
    background-color: #000;
    visibility: hidden;
    transform: scaleX(0);
    transition: all .3s ease-in-out 0s;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%; }
  .anim-underline-r:hover {
    color: #000; }
    .anim-underline-r:hover:before {
      visibility: visible;
      transform: scaleX(1); }
.anim-underline {
  position: relative; }
  .anim-underline:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0px;
    left: 0;
    background-color: #000;
    visibility: hidden;
    transform: scaleX(0);
    transition: all .3s ease-in-out 0s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%; }
  .anim-underline:hover {
    color: #000; }
    .anim-underline:hover:before {
      visibility: visible;
      transform: scaleX(1); }

/* Animates outline of buttons etc */
.anim-outline {
  box-shadow: inset 0 0 0 3px #000;
  border-radius: unset;
  position: relative;
  vertical-align: middle;
  /* Color outline on hover depending on category */ }
  .anim-outline::before, .anim-outline::after {
    box-sizing: inherit;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%; }
  .anim-outline::before, .anim-outline::after {
    border: 3px solid transparent;
    width: 0;
    height: 0; }
  .anim-outline::before {
    top: 0;
    left: 0; }
  .anim-outline::after {
    bottom: 0;
    right: 0; }
  .anim-outline:hover {
    box-shadow: inset 0 0 0 3px #ededed; }
    .anim-outline:hover:before, .anim-outline:hover:after {
      width: 100%;
      height: 100%; }
    .anim-outline:hover:before {
      border-top-color: #000;
      border-right-color: #000;
      transition: width 0.15s ease-out, height 0.15s ease-out 0.15s; }
    .anim-outline:hover:after {
      border-bottom-color: #000;
      border-left-color: #000;
      transition: border-color 0s ease-out 0.3s, width 0.15s ease-out 0.3s, height 0.15s ease-out 0.45s; }
  .anim-outline._color-out-0:hover {
    box-shadow: inset 0 0 0 3px #FFF265; }
  .anim-outline._color-out-1:hover {
    box-shadow: inset 0 0 0 3px #359e58; }
  .anim-outline._color-out-2:hover {
    box-shadow: inset 0 0 0 3px #3b8ec5; }
  .anim-outline._color-out-3:hover {
    box-shadow: inset 0 0 0 3px #c0006a; }
  .anim-outline._color-out-4:hover {
    box-shadow: inset 0 0 0 3px #786eba; }
  .anim-outline._color-out-5:hover {
    box-shadow: inset 0 0 0 3px #ef8513; }
  .anim-outline._color-out-6:hover {
    box-shadow: inset 0 0 0 3px #c93a1d; }
  .anim-outline._color-out-7:hover {
    box-shadow: inset 0 0 0 3px #de55b1; }
  .anim-outline._color-out-8:hover {
    box-shadow: inset 0 0 0 3px #f2c508; }
  .anim-outline:active, .anim-outline:focus {
    background: #000;
    color: #fff;
    box-shadow: inset 0 0 0 3px #000;
    transition: .1s ease-out background,  .1s ease-out color; }

/* README
*
*  Populate $spacesizes with the needed spaces
*  Populate $locations with top, bottom, left, right as needed : (t, b, l, r)
*  $size is bootstrap style (xs,sm,md,lg), used in the corresponding media queries
*  $type is either m or p, depending on margin or padding
*   
*/
/* Independent of size */
.pt-0 {
  padding-top: 0px; }

.pt-15 {
  padding-top: 15px; }

.pt-30 {
  padding-top: 30px; }

.pb-0 {
  padding-bottom: 0px; }

.pb-15 {
  padding-bottom: 15px; }

.pb-30 {
  padding-bottom: 30px; }

.mt-0 {
  margin-top: 0px; }

.mt-15 {
  margin-top: 15px; }

.mt-30 {
  margin-top: 30px; }

.mb-0 {
  margin-bottom: 0px; }

.mb-15 {
  margin-bottom: 15px; }

.mb-30 {
  margin-bottom: 30px; }

/* XS */
.pt-xs-0 {
  padding-top: 0px; }

.pt-xs-15 {
  padding-top: 15px; }

.pt-xs-30 {
  padding-top: 30px; }

.pb-xs-0 {
  padding-bottom: 0px; }

.pb-xs-15 {
  padding-bottom: 15px; }

.pb-xs-30 {
  padding-bottom: 30px; }

.mt-xs-0 {
  margin-top: 0px; }

.mt-xs-15 {
  margin-top: 15px; }

.mt-xs-30 {
  margin-top: 30px; }

.mb-xs-0 {
  margin-bottom: 0px; }

.mb-xs-15 {
  margin-bottom: 15px; }

.mb-xs-30 {
  margin-bottom: 30px; }

/* SM */
@media screen and (min-width: 768px) {
  .pt-sm-0 {
    padding-top: 0px; }

  .pt-sm-15 {
    padding-top: 15px; }

  .pt-sm-30 {
    padding-top: 30px; }

  .pb-sm-0 {
    padding-bottom: 0px; }

  .pb-sm-15 {
    padding-bottom: 15px; }

  .pb-sm-30 {
    padding-bottom: 30px; }

  .mt-sm-0 {
    margin-top: 0px; }

  .mt-sm-15 {
    margin-top: 15px; }

  .mt-sm-30 {
    margin-top: 30px; }

  .mb-sm-0 {
    margin-bottom: 0px; }

  .mb-sm-15 {
    margin-bottom: 15px; }

  .mb-sm-30 {
    margin-bottom: 30px; } }
/* MD */
@media screen and (min-width: 992px) {
  .pt-md-0 {
    padding-top: 0px; }

  .pt-md-15 {
    padding-top: 15px; }

  .pt-md-30 {
    padding-top: 30px; }

  .pb-md-0 {
    padding-bottom: 0px; }

  .pb-md-15 {
    padding-bottom: 15px; }

  .pb-md-30 {
    padding-bottom: 30px; }

  .mt-md-0 {
    margin-top: 0px; }

  .mt-md-15 {
    margin-top: 15px; }

  .mt-md-30 {
    margin-top: 30px; }

  .mb-md-0 {
    margin-bottom: 0px; }

  .mb-md-15 {
    margin-bottom: 15px; }

  .mb-md-30 {
    margin-bottom: 30px; } }
/* LG */
@media screen and (min-width: 1200px) {
  .pt-lg-0 {
    padding-top: 0px; }

  .pt-lg-15 {
    padding-top: 15px; }

  .pt-lg-30 {
    padding-top: 30px; }

  .pb-lg-0 {
    padding-bottom: 0px; }

  .pb-lg-15 {
    padding-bottom: 15px; }

  .pb-lg-30 {
    padding-bottom: 30px; }

  .mt-lg-0 {
    margin-top: 0px; }

  .mt-lg-15 {
    margin-top: 15px; }

  .mt-lg-30 {
    margin-top: 30px; }

  .mb-lg-0 {
    margin-bottom: 0px; }

  .mb-lg-15 {
    margin-bottom: 15px; }

  .mb-lg-30 {
    margin-bottom: 30px; } }
/* ****************************** */
/* TYPOGRAPHY */
body {
  font-family: 'Open Sans',"Anonymous Pro", monospace; }

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin: 0; }

h2 span {
  display: inline-block;
  font-size: 26px; }

p, a, span, ul > li {
  margin: 0;
  font-size: 16px; }

p {
  line-height: 1.6; }

a {
  color: #333;
  text-decoration: none; }
  a:hover, a:active, a:focus {
    color: #000;
    text-decoration: none; }

input {
  font-family: 'Open Sans',"Anonymous Pro", monospace; }

.main-title {
  text-align: center;
  padding-top: 20px;
  font-size: 36px;
  height: 40px;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5; }
  .main-title h1 {
    padding: 0 20px;
    display: inline-block; }

.info {
  display: inline-block; }
  .info.title {
    font-size: 18px;
    font-weight: bold; }
  .info.subtitle {
    font-size: 16px; }

.white {
  color: #fff; }

.black-back {
  background: #000;
  color: #fff; }

.text-center-xs {
  text-align: center; }

/* ****************************** */
/* GENERAL SETUP */
ul {
  margin: 0;
  padding: 0;
  list-style: none; }

*::selection {
  background-color: #000;
  color: #fff; }
*::-moz-selection {
  background-color: #000;
  color: #fff; }
*::-o-selection {
  background-color: #000;
  color: #fff; }
*::-ms-selection {
  background-color: #000;
  color: #fff; }
*::-webkit-selection {
  background-color: #000;
  color: #fff; }

.no-select {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
     supported by Chrome and Opera */ }

* {
  outline: none !important; }

.top-buffer {
  margin-top: 60px; }

.bottom-buffer {
  margin-bottom: 60px; }

.border-top {
  border-top: 3px solid #000; }

/* ****************************** */
/* ****************************** */
/* COMPONENTS */
a.logo {
  height: 160px;
  width: auto;
  display: inline-block;
  position: relative;
  top: -1px; }
  a.logo img {
    height: 100%; }

.social-icons {
  display: inline-block;
  width: 40px;
  margin-left: 12px; }
  .social-icons img {
    width: 100%; }
  .social-icons#to-top {
    margin-right: 40px; }

.rotate-on-hover:hover .glyphicon {
  transition: .5s linear transform;
  transform: rotate(90deg); }

.category-style {
  display: inline-block;
  padding: 6px 12px;
  border: 3px solid #000;
  font-weight: 700;
  color: #000; }
  .category-style._color-back-0 {
    background-color: #FFF265; }
  .category-style._color-back-1 {
    background-color: #359e58; }
  .category-style._color-back-2 {
    background-color: #3b8ec5; }
  .category-style._color-back-3 {
    background-color: #c0006a; }
  .category-style._color-back-4 {
    background-color: #786eba; }
  .category-style._color-back-5 {
    background-color: #ef8513; }
  .category-style._color-back-6 {
    background-color: #c93a1d; }
  .category-style._color-back-7 {
    background-color: #de55b1; }
  .category-style._color-back-8 {
    background-color: #f2c508; }

/* ****************************** */
/* BOOTSTRAP OVERRIDES */
.carousel-indicators li {
  border: 3px solid #000;
  border-radius: 0; }
  .carousel-indicators li.active, .carousel-indicators li {
    width: 15px;
    height: 15px;
    margin: 0; }

.btn {
  display: inline-block;
  font-weight: bold; }

/* ****************************** */
/* ****************************** */
/* HEADER & NAV */
header {
  padding: 40px;
  height: 100vh;
  /* set header height depending on page */
  /* FIXED TOP BAR FOR MENU EFFECT */
  /* MENU BUTTON */
  /* MENU LIST */
  /* FULL IMAGES */
  /* BOOTSTRAP CAROUSEL */ }
  header.height-auto {
    height: auto; }
  header .fixed-head {
    background: white;
    border-bottom: 3px solid #000;
    margin: 0 40px;
    height: 43px;
    width: calc( 100% - 80px );
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20; }
  header nav {
    position: relative; }
    header nav a.logo {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 5; }
  header #nav-icon-out {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0px auto;
    border: 3px solid #000;
    width: 80px;
    height: 75px;
    border-top: unset;
    background: #fff;
    position: fixed;
    z-index: 21;
    left: 0;
    right: 0; }
  header #nav-icon-in {
    margin: auto;
    width: 50px;
    height: 45px;
    cursor: pointer;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out; }
    header #nav-icon-in span {
      display: block;
      height: 3px;
      width: 100%;
      background: #000;
      position: absolute;
      left: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: 0.25s ease-in-out;
      -moz-transition: 0.25s ease-in-out;
      -o-transition: 0.25s ease-in-out;
      transition: 0.25s ease-in-out; }
      header #nav-icon-in span:nth-child(1) {
        top: 0px; }
      header #nav-icon-in span:nth-child(2), header #nav-icon-in span:nth-child(3) {
        top: 18px; }
      header #nav-icon-in span:nth-child(4) {
        top: 36px; }
    header #nav-icon-in.open span:nth-child(1) {
      top: 18px;
      width: 0%;
      left: 50%; }
    header #nav-icon-in.open span:nth-child(2) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg); }
    header #nav-icon-in.open span:nth-child(3) {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    header #nav-icon-in.open span:nth-child(4) {
      top: 18px;
      width: 0%;
      left: 50%; }
  header .menu-cont {
    height: 100vh;
    padding: 40px;
    position: fixed;
    top: -100vh;
    left: 0;
    right: 0;
    z-index: 18;
    transition: .5s ease-in top; }
    header .menu-cont.open {
      pointer-events: none;
      top: 0; }
    header .menu-cont #menu-ul {
      overflow: hidden;
      pointer-events: auto;
      padding-top: 190px;
      border: 3px solid #000;
      background-color: rgba(255, 255, 255, 0.9);
      text-align: center;
      height: 100%; }
      header .menu-cont #menu-ul li {
        pointer-events: none; }
        header .menu-cont #menu-ul li a {
          font-size: 48px;
          pointer-events: auto; }
    header .menu-cont #menu-canvas {
      width: 100%;
      height: 100%;
      display: none; }
      header .menu-cont #menu-canvas.open {
        display: inline-block; }
  header #top-img-cont {
    position: relative;
    overflow: hidden;
    border: 3px solid #000;
    width: 100%;
    height: 100%;
    min-height: 160px;
    /* 	Add color from categories
    	coloring to title background */ }
    header #top-img-cont._color-back-0 {
      background-color: #FFF265; }
    header #top-img-cont._color-back-1 {
      background-color: #359e58; }
    header #top-img-cont._color-back-2 {
      background-color: #3b8ec5; }
    header #top-img-cont._color-back-3 {
      background-color: #c0006a; }
    header #top-img-cont._color-back-4 {
      background-color: #786eba; }
    header #top-img-cont._color-back-5 {
      background-color: #ef8513; }
    header #top-img-cont._color-back-6 {
      background-color: #c93a1d; }
    header #top-img-cont._color-back-7 {
      background-color: #de55b1; }
    header #top-img-cont._color-back-8 {
      background-color: #f2c508; }
    header #top-img-cont img {
      max-height: 100%;
      max-width: 100%; }
  header #intro-photos-carousel {
    height: 100%; }
    header #intro-photos-carousel .carousel-inner {
      height: 100%; }
      header #intro-photos-carousel .carousel-inner .item {
        height: 100%;
        background-size: cover;
        background-position: 60% 50%;
        background-repeat: no-repeat; }

/* ****************************** */
/* FOOTER */
footer #mc_embed_signup form {
  padding: 0; }
  footer #mc_embed_signup form input {
    border-radius: 0 !important; }
footer #mc_embed_signup .clear {
  display: inline-block !important; }
footer #mc_embed_signup .email {
  width: 100%;
  max-width: 200px;
  font-family: 'Open Sans','Anonymous Pro', monospace;
  border: 3px solid #000; }
footer #mc_embed_signup .button {
  font-weight: bold;
  width: 100%;
  display: inline-block;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0 10px;
  position: relative;
  z-index: 3; }
  footer #mc_embed_signup .button:hover {
    background: transparent;
    color: #000; }
footer #footer-lower {
  padding: 10px 0;
  color: #ededed;
  background: #000; }
  footer #footer-lower ul > li {
    display: inline-block; }
  footer #footer-lower p, footer #footer-lower span, footer #footer-lower a, footer #footer-lower ul > li {
    font-size: 14px; }
  footer #footer-lower a {
    color: #ededed; }
    footer #footer-lower a:hover {
      color: #fff; }

/* ****************************** */
/* MAIN CONTENT */
/* ****************************** */
/* EVENT TILES */
.evt-grid {
  position: relative;
  background: #000; }
  .evt-grid .evt-img-cont {
    width: 100%;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat; }
  .evt-grid .evt-title-cont {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.85);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .2s linear all; }
    .evt-grid .evt-title-cont .evt-titles {
      width: 100%;
      padding: 20px;
      position: absolute;
      top: 35%;
      z-index: 1; }
      .evt-grid .evt-title-cont .evt-titles .info {
        display: block; }
    .evt-grid .evt-title-cont:hover {
      background-color: transparent; }
      .evt-grid .evt-title-cont:hover._color-out-0:hover {
        color: #FFF265; }
      .evt-grid .evt-title-cont:hover._color-out-1:hover {
        color: #359e58; }
      .evt-grid .evt-title-cont:hover._color-out-2:hover {
        color: #3b8ec5; }
      .evt-grid .evt-title-cont:hover._color-out-3:hover {
        color: #c0006a; }
      .evt-grid .evt-title-cont:hover._color-out-4:hover {
        color: #786eba; }
      .evt-grid .evt-title-cont:hover._color-out-5:hover {
        color: #ef8513; }
      .evt-grid .evt-title-cont:hover._color-out-6:hover {
        color: #c93a1d; }
      .evt-grid .evt-title-cont:hover._color-out-7:hover {
        color: #de55b1; }
      .evt-grid .evt-title-cont:hover._color-out-8:hover {
        color: #f2c508; }
      .evt-grid .evt-title-cont:hover .evt-titles {
        padding: 0 3px;
        top: unset;
        bottom: 20px; }
        .evt-grid .evt-title-cont:hover .evt-titles .info {
          background-color: #000;
          padding: 0 20px; }
          .evt-grid .evt-title-cont:hover .evt-titles .info:nth-child(1) {
            padding-top: 10px; }
          .evt-grid .evt-title-cont:hover .evt-titles .info:nth-child(2) {
            padding-bottom: 10px; }

/* ****************************** */
/* EVENT PAGE */
.evt-title {
  max-width: 600px; }

/* ****************************** */
/* PROGRAM PAGE */
.filters:not(.no-border) {
  border: 3px solid #000;
  padding: 15px 15px 0; }
.filters .filtering-list .anim-outline {
  cursor: pointer;
  padding: 6px; }
  .filters .filtering-list .anim-outline.active, .filters .filtering-list .anim-outline.black-back {
    background: #000;
    color: #fff; }
  .filters .filtering-list .anim-outline.active._color-back-0 {
    background-color: #FFF265; }
  .filters .filtering-list .anim-outline.active._color-back-1 {
    background-color: #359e58; }
  .filters .filtering-list .anim-outline.active._color-back-2 {
    background-color: #3b8ec5; }
  .filters .filtering-list .anim-outline.active._color-back-3 {
    background-color: #c0006a; }
  .filters .filtering-list .anim-outline.active._color-back-4 {
    background-color: #786eba; }
  .filters .filtering-list .anim-outline.active._color-back-5 {
    background-color: #ef8513; }
  .filters .filtering-list .anim-outline.active._color-back-6 {
    background-color: #c93a1d; }
  .filters .filtering-list .anim-outline.active._color-back-7 {
    background-color: #de55b1; }
  .filters .filtering-list .anim-outline.active._color-back-8 {
    background-color: #f2c508; }
.filters .filtering-list .multiline-separator span:first-child:after {
  content: " | "; }
.filters .collapse-title {
  display: inline-block;
  border-bottom: 3px solid #000; }

/* ****************************** */
/* MAP PAGE */
#map .gmnoprint > div {
  box-shadow: 0 0 0 3px black !important; }
  #map .gmnoprint > div img {
    left: -30px !important; }
#map .gomapMarker {
  font-weight: 700;
  font-family: 'Open Sans','Anonymous Pro'; }

/* ****************************** */
/* SPONSORS PAGE */
.sponsor-logos {
  height: 200px;
  display: inline-block; }
  .sponsor-logos img {
    width: auto;
    height: 90%; }

.sponsor-logos2 {
  height: 150px;
  display: inline-block; }
  .sponsor-logos2 img {
    width: auto;
    height: 70%; }

/* ****************************** */
/* ****************************** */
/* MEDIA QUERIES */
/* MD*/
@media (max-width: 1600px) {
  header {
    padding: 20px; }
    header .fixed-head {
      margin: 0 20px;
      width: calc( 100% - 40px );
      height: 23px; }
    header .menu-cont {
      padding: 20px; }
      header .menu-cont #menu-ul {
        font-size: 30px; }
    header #nav-icon-out {
      width: 60px;
      height: 55px; }
    header #nav-icon-in {
      width: 35px;
      height: 30px; }
      header #nav-icon-in span:nth-child(1) {
        top: 0px; }
      header #nav-icon-in span:nth-child(2), header #nav-icon-in span:nth-child(3) {
        top: 12px; }
      header #nav-icon-in span:nth-child(4) {
        top: 24px; } }
/* MD*/
@media (max-width: 1199px) {
  .container {
    padding-left: 20px;
    padding-right: 20px; } }
/* SM*/
/* XS */
@media (max-width: 767px) {
  .social-icons {
    margin-left: 0;
    margin-right: 12px; }
    .social-icons#to-top {
      margin-right: 20px; }

  .text-center-xs {
    text-align: unset; }

  footer #footer-upper .text-right {
    text-align: left; }

  h2 span {
    display: block;
    font-size: 24px; }

  .sponsor-logos {
    display: block;
    max-width: 80%;
    height: auto; }
    .sponsor-logos img {
      max-width: 100%;
      height: auto; } }
/* XXS */
@media (max-width: 479px) {
  header .menu-cont #menu-ul {
    padding-top: 60px; }
    header .menu-cont #menu-ul li a {
      font-size: 28px; }

  #filters .filtering-list:nth-child(even) {
    padding-left: 7px; }
  #filters .filtering-list:nth-child(odd):not(:last-of-type) {
    padding-right: 7px; }

  .filters .filtering-list .multiline-separator span:first-child {
    display: block; }
    .filters .filtering-list .multiline-separator span:first-child:after {
      content: "sa" !important; }

  .evt-grid .evt-title-cont .evt-titles {
    top: unset;
    bottom: 00px;
    padding: 10px; }
    .evt-grid .evt-title-cont .evt-titles .info {
      padding: 0;
      font-size: 14px; }
  .evt-grid .evt-title-cont:hover .evt-titles {
    padding: 10px 3px;
    top: unset;
    bottom: 0px; }
    .evt-grid .evt-title-cont:hover .evt-titles .info {
      background-color: #000;
      padding: 0 10px; }
      .evt-grid .evt-title-cont:hover .evt-titles .info:nth-child(1) {
        padding-top: 00px; }
      .evt-grid .evt-title-cont:hover .evt-titles .info:nth-child(2) {
        padding-bottom: 00px; }

  .evt-title {
    font-size: 18px; }

  .col-xxs-12 {
    width: 100%; }

  footer #footer-lower ul > li {
    display: block; }
    footer #footer-lower ul > li:nth-child(2) {
      display: none; } }
/* Small Wide Screens */
@media (max-height: 800px) and (orientation: landscape) {
  header .menu-cont #menu-ul {
    padding-top: 120px; }
    header .menu-cont #menu-ul li a {
      font-size: 32px; } }
/* Mobile Landscape */
@media (max-height: 800px) and (max-width: 800px) and (orientation: landscape) {
  header .menu-cont #menu-ul {
    padding-top: 80px; }
    header .menu-cont #menu-ul li a {
      font-size: 28px; } }

/*# sourceMappingURL=main.css.map */
