/**
 * Main LESS file
 */
/**
 * Websites footer
 */
.base-footer {
  background-color: #1e1e1e;
  padding: 30px 0px;
}
.base-footer .base-footer-inner {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1070px) {
  .base-footer .base-footer-inner {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.base-footer .base-footer-inner .base-footer-copyright small {
  font-size: 16px;
}
.base-footer .base-footer-inner .base-footer-menu {
  flex-grow: 1;
  padding: 0px 50px;
  max-width: 500px;
}
.base-footer .base-footer-inner .base-footer-menu h2 {
  display: none;
}
.base-footer .base-footer-inner .base-footer-menu ul {
  display: flex;
  justify-content: space-between;
}
.base-footer .base-footer-inner .base-footer-menu ul li a {
  font-family: "Futura Condensed", Helvetica;
  font-size: 16px;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
}
.base-footer .base-footer-inner .base-footer-menu ul li a:hover {
  text-decoration: underline;
}
.base-footer .base-footer-inner .base-footer-social ul {
  display: flex;
  justify-content: space-between;
}
.base-footer .base-footer-inner .base-footer-social ul li {
  margin-right: 25px;
}
.base-footer .base-footer-inner .base-footer-social ul li a {
  display: block;
  text-indent: -9999px;
  width: 40px;
  height: 40px;
  position: relative;
}
.base-footer .base-footer-inner .base-footer-social ul li a:before {
  transition: background-image 250ms;
}
.base-footer .base-footer-inner .base-footer-social ul li .base-footer-social-facebook:before {
  background-position: center center;
  background-image: url('/static/img/icons-png/facebook.png?5306225e1872');
  background-size: 18px 33px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 18px;
  height: 33px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.base-footer .base-footer-inner .base-footer-social ul li .base-footer-social-facebook:hover:before {
  background-image: url('/static/img/icons-png/facebook-hover.png?5306225e1872');
}
.base-footer .base-footer-inner .base-footer-social ul li .base-footer-social-twitter:before {
  background-position: center center;
  background-image: url('/static/img/icons-png/twitter.png?5306225e1872');
  background-size: 40px 33px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 40px;
  height: 33px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.base-footer .base-footer-inner .base-footer-social ul li .base-footer-social-twitter:hover:before {
  background-image: url('/static/img/icons-png/twitter-hover.png?5306225e1872');
}
.base-footer .base-footer-inner .base-footer-social ul li .base-footer-social-instagram:before {
  background-position: center center;
  background-image: url('/static/img/icons-png/instagram.png?5306225e1872');
  background-size: 34px 33px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 34px;
  height: 33px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.base-footer .base-footer-inner .base-footer-social ul li .base-footer-social-instagram:hover:before {
  background-image: url('/static/img/icons-png/instagram-hover.png?5306225e1872');
}
@media (max-width: 900px) {
  .base-footer .base-footer-inner {
    flex-wrap: wrap;
  }
  .base-footer .base-footer-inner .base-footer-social {
    order: 1;
    width: 100%;
    margin-top: 0px;
  }
  .base-footer .base-footer-inner .base-footer-social ul {
    justify-content: flex-start;
  }
  .base-footer .base-footer-inner .base-footer-menu {
    order: 2;
    width: auto;
    margin-top: 30px;
    padding: 0;
  }
  .base-footer .base-footer-inner .base-footer-menu ul {
    justify-content: flex-start;
  }
  .base-footer .base-footer-inner .base-footer-menu ul li {
    margin-right: 25px;
  }
  .base-footer .base-footer-inner .base-footer-copyright {
    order: 3;
    width: 100%;
    margin-top: 30px;
  }
}
/**
 * Websites header
 */
.base-header-absolute-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 50;
}
@media (max-width: 900px) {
  .base-header-absolute-wrapper {
    position: static;
    background-color: black;
  }
}
.base-header .base-header-menu-wrapper {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  height: 112px;
  position: relative;
  z-index: 80;
}
@media (max-width: 1070px) {
  .base-header .base-header-menu-wrapper {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.base-header .base-header-menu-wrapper .base-header-menu {
  padding: 0px 40px 0px 275px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.base-header .base-header-menu-wrapper .base-header-menu ul {
  display: flex;
  justify-content: space-between;
  margin: 0px 70px;
  width: 100%;
}
.base-header .base-header-menu-wrapper .base-header-menu ul li a {
  font-family: "Futura Condensed", Helvetica;
  font-size: 25px;
  font-weight: 700;
  color: white;
  display: block;
  padding: 10px 0px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 25px;
  font-weight: bold;
}
.base-header .base-header-menu-wrapper .base-header-menu ul li a span {
  border-bottom: 4px solid transparent;
}
.base-header .base-header-menu-wrapper .base-header-menu ul li a.current span,
.base-header .base-header-menu-wrapper .base-header-menu ul li a:hover span {
  border-color: #cd0c0a;
}
.base-header .base-header-menu-wrapper .base-header-menu ul li a.current span {
  color: #cd0c0a;
}
@media (min-width: 901px) and (max-width: 1200px) {
  .base-header .base-header-menu-wrapper .base-header-menu ul {
    margin: 0px 45px;
  }
}
.base-header .base-header-controls-wrapper {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  height: 0px;
  overflow: visible;
  position: relative;
}
@media (max-width: 1070px) {
  .base-header .base-header-controls-wrapper {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.base-header .base-header-controls-wrapper .base-header-controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 112px;
  display: flex;
  justify-content: space-between;
  height: 0px;
  overflow: visible;
  z-index: 120;
}
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-logo {
  width: 275px;
  height: 112px;
  display: flex;
  align-items: center;
}
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-logo h1 {
  display: block;
  height: 78px;
  overflow: hidden;
  text-indent: -9999px;
  width: 275px;
  background-image: url('/static/img/icons-png/tripleglogo.png?8d4fcbf3399a');
  background-position: center center;
  background-size: cover;
}
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons {
  width: 40px;
  height: 112px;
  display: flex;
  align-items: center;
}
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons .base-header-controls-search button,
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons .base-header-controls-menu button,
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons .base-header-controls-close button {
  background-color: transparent;
  background-image: url('/static/img/icons-png/search-nav.png?5306225e1872');
  background-size: 23px 22px;
  background-position: center center;
  background-repeat: no-repeat;
  border: 0;
  cursor: pointer;
  height: 40px;
  text-indent: -9999px;
  width: 40px;
  outline: none;
}
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons .base-header-controls-search button:hover,
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons .base-header-controls-menu button:hover,
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons .base-header-controls-close button:hover {
  background-image: url('/static/img/icons-png/search-nav-hover.png?5306225e1872');
}
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons .base-header-controls-menu {
  display: none;
}
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons .base-header-controls-menu button {
  background-image: url('/static/img/icons-png/menu.png?5306225e1872');
  background-size: 28px 23px;
}
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons .base-header-controls-menu button:hover {
  background-image: url('/static/img/icons-png/menu-hover.png?5306225e1872');
}
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons .base-header-controls-close {
  display: none;
}
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons .base-header-controls-close button {
  background-image: url('/static/img/icons-png/close.png?5306225e1872');
  background-size: 22px 22px;
}
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons .base-header-controls-close button:hover {
  background-image: url('/static/img/icons-png/close-hover.png?5306225e1872');
}
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons.open {
  width: 40px;
}
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons.open .base-header-controls-close {
  display: block!important;
}
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons.open .base-header-controls-menu,
.base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons.open .base-header-controls-search {
  display: none!important;
}
.base-header .base-header-search {
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  background-color: black;
  opacity: 0;
  overflow: hidden;
  transition: 300ms opacity;
  z-index: 100;
}
.base-header .base-header-search.open {
  height: 100vh;
  width: 100vw;
  padding-top: 112px;
  overflow-y: auto;
}
.base-header .base-header-search.open:before {
  content: '';
  position: fixed;
  background-color: black;
  height: 112px;
  left: 0px;
  top: 0px;
  width: 100%;
}
@media (max-width: 900px) {
  .base-header .base-header-search.open:before {
    height: 60px;
  }
}
.base-header .base-header-search.visible {
  opacity: 1;
}
.base-header .base-header-search.hide {
  height: 0px;
  width: 0px;
}
.base-header .base-header-search .base-header-search-input {
  color: white;
  font-family: Helvetica;
  font-size: 20px;
  font-weight: 300;
  display: block;
  padding: 20px 18px;
  width: 100%;
  margin-top: 50px;
  color: black;
}
.base-header .base-header-search .base-header-search-suggestions {
  border-top: 2px solid white;
  list-style: none;
  margin-top: 50px;
}
.base-header .base-header-search .base-header-search-suggestions li a {
  color: white;
  font-family: Helvetica;
  font-size: 26px;
  font-weight: 300;
  padding: 20px 10px;
  display: block;
}
.base-header .base-header-search .base-header-search-suggestions li a span {
  color: white;
  font-family: Helvetica;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: #878787;
  display: inline-block;
  width: 92px;
}
.base-header .base-header-search .base-header-search-suggestions li a:hover {
  color: #cd0c0a;
}
@media (max-width: 900px) {
  .base-header {
    background-color: black;
    height: 60px;
  }
  .base-header .base-header-menu-wrapper {
    padding-top: 60px;
    max-width: none;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    height: 0;
    margin: 0;
    background-color: black;
    opacity: 0;
    overflow: hidden;
    transition: 300ms opacity;
    z-index: 100;
  }
  .base-header .base-header-menu-wrapper.open {
    height: 100vh;
    width: 100vw;
    padding-top: 112px;
    overflow-y: auto;
  }
  .base-header .base-header-menu-wrapper.visible {
    opacity: 1;
  }
  .base-header .base-header-menu-wrapper .base-header-menu {
    max-width: 1130px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    display: block;
    width: 100%;
  }
  .base-header .base-header-menu-wrapper .base-header-menu ul {
    margin: 0;
    display: block;
  }
  .base-header .base-header-menu-wrapper .base-header-menu ul li a {
    font-size: 26px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .base-header .base-header-search.open {
    padding-top: 60px;
  }
  .base-header .base-header-controls-wrapper .base-header-controls {
    background-color: black;
  }
  .base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-logo {
    height: 60px;
    width: 141px;
  }
  .base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-logo h1 {
    height: 40px;
    width: 141px;
  }
  .base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons {
    height: 60px;
    width: 80px;
  }
  .base-header .base-header-controls-wrapper .base-header-controls .base-header-controls-buttons .base-header-controls-menu {
    display: inline-block;
  }
}
@media (max-width: 900px) and (max-width: 1070px) {
  .base-header .base-header-menu-wrapper .base-header-menu {
    margin-left: 30px;
    margin-right: 30px;
  }
}
/**
 * Anything misc to do with the base template
 */
.base-main {
  min-height: 600px;
  /* FIXME */
}
.noscroll {
  overflow: hidden;
}
.js-hidden {
  display: none !important;
}
/**
 * Standard basic styling
 */
/** - Epic content nerf - **/
* {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-size: inherit;
  color: inherit;
}
body {
  color: inherit;
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 300;
  background-color: #080808;
  background-image: url('/static/img/icons-png/triple-g-background.jpg?5306225e1872');
  color: white;
  min-height: 100vh;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: inherit;
  font-weight: 700;
}
a {
  color: #cd0c0a;
  font-family: inherit;
  font-size: inherit;
  font-weight: 300;
}
a img {
  border: 0;
}
input,
select,
textarea {
  color: black;
}
/** - Common content - **/
.section-heading {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 50px 0px 20px;
}
@media (min-width: 601px) and (max-width: 900px) {
  .section-heading {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .section-heading {
    font-size: 30px;
  }
}
.section-heading-small {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 50px 0px 20px;
}
.section-large-header {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: 4px solid white;
  text-align: center;
}
@media (max-width: 1070px) {
  .section-large-header {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.section-large-header .section-large-header-title {
  font-size: 50px;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .section-large-header {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section-large-header .section-large-header-title {
    font-size: 40px;
  }
}
.section-large-options {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 1070px) {
  .section-large-options {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.section-large-options .section-large-option {
  width: 33%;
  position: relative;
  padding-right: 36px;
}
.section-large-options .section-large-option .section-large-option-select {
  width: 100%;
  display: block;
  padding: 8px;
}
.section-large-options .section-large-option.section-large-option-location {
  display: flex;
  align-items: center;
}
.section-large-options .section-large-option.section-large-option-location span {
  font-size: 14px;
  margin-right: 20px;
}
.section-large-options .section-large-option.section-large-option-location a {
  color: #cd0c0a;
  font-family: inherit;
  font-size: 22px;
  font-weight: 300;
  text-transform: uppercase;
  transition: color 250ms;
}
.section-large-options .section-large-option.section-large-option-location a:before {
  background-position: center center;
  background-image: url('/static/img/icons-png/location-hover.png?5306225e1872');
  background-size: 17px 22px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 17px;
  height: 22px;
  margin-right: 10px;
  position: relative;
  top: 1px;
  transition: background-image 250ms;
}
.section-large-options .section-large-option.section-large-option-location a:hover {
  color: white;
}
.section-large-options .section-large-option.section-large-option-location a:hover:before {
  background-image: url('/static/img/icons-png/location.png?5306225e1872');
}
.section-large-options .section-large-option:last-child {
  padding-right: 0;
}
@media (max-width: 900px) {
  .section-large-options {
    display: block;
  }
  .section-large-options .section-large-option {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 10px;
  }
  .section-large-options .section-large-option:last-child {
    margin-bottom: 0;
  }
}
.section-footer {
  margin: 30px 0px;
  text-align: right;
}
.section-footer a {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
  color: #cd0c0a;
}
.section-pager {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
  align-items: center;
}
@media (max-width: 1070px) {
  .section-pager {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.section-pager a {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 30px;
  font-weight: 400;
  padding-left: 10px;
  padding-right: 10px;
}
.section-pager a.selected {
  color: #cd0c0a;
}
.section-pager a:hover {
  color: #cd0c0a;
}
.section-pager .section-pager-previous,
.section-pager .section-pager-next {
  display: block;
  text-indent: -9999px;
  width: 15px;
  height: 29px;
  background-image: url('/static/img/icons-png/pagination-arrow.png?5306225e1872');
  background-repeat: no-repeat;
  background-position: center;
  padding: 0px 30px;
}
.section-pager .section-pager-previous:hover,
.section-pager .section-pager-next:hover {
  background-image: url('/static/img/icons-png/pagination-arrow-hover.png?5306225e1872');
}
.section-pager .section-pager-previous {
  order: 1;
  transform: rotate(180deg);
}
.section-pager .section-pager-pages {
  order: 2;
  display: flex;
}
.section-pager .section-pager-next {
  order: 3;
}
@media (max-width: 600px) {
  .section-pager {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-pager a {
    font-size: 20px;
  }
}
.bg-wrapper-dark {
  overflow: hidden;
  background-color: #1e1e1e;
}
.layout-site {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1070px) {
  .layout-site {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.layout-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  margin-left: -0.75vw;
  margin-right: -0.75vw;
}
/** - Font mixins - **/
/**
 * Main variables file
 */
/** - Colors - **/
/** - Fonts - **/
/** - Layout - **/
/** - Breakpoints - **/
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/roboto/v48/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmUiA8.ttf) format('truetype');
}
@font-face {
  font-family: 'Futura Condensed';
  src: url("/static/fonts/Futura-Condensed-Medium.otf?a7cb55b4a3a0") format('opentype');
}
@font-face {
  font-family: 'Futura Condensed';
  font-weight: bold;
  src: url("/static/fonts/Futura-Condensed-Extra-Bold.otf?a7cb55b4a3a0") format('opentype');
}
.form-field-errors {
  margin-bottom: 3px;
}
.form-field-errors li {
  color: white;
  font-family: Helvetica;
  font-size: 14px;
  font-weight: 300;
  color: #cd0c0a;
  margin-bottom: 5px;
  list-style: circle;
  margin-left: 20px;
}
.form-field-errors li:last-child {
  margin-bottom: 0px;
}
.form-field-wrapper {
  margin-bottom: 20px;
}
.form-field-wrapper .form-field-label {
  color: white;
  font-family: Helvetica;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 3px;
  display: block;
}
.form-field-wrapper .form-field.form-field-text input {
  color: white;
  font-family: Helvetica;
  font-size: 18px;
  font-weight: 300;
  border-radius: 3px;
  padding: 8px;
  width: 100%;
  border: 0;
  color: black;
}
.form-field-wrapper .form-field.form-field-textarea textarea {
  color: white;
  font-family: Helvetica;
  font-size: 18px;
  font-weight: 300;
  border-radius: 3px;
  padding: 8px;
  min-height: 300px;
  width: 100%;
  border: 0px;
  color: black;
}
.form-field-wrapper .form-field.form-field-buttons {
  text-align: right;
}
.form-field-wrapper .form-field.form-field-buttons button {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 16px;
  font-weight: 400;
  background-color: #cd0c0a;
  color: black;
  text-transform: uppercase;
  border: 0;
  background-image: none;
  padding: 6px 8px;
  margin-left: 10px;
}
.bands-header {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}
@media (max-width: 1070px) {
  .bands-header {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.bands-header .bands-header-alpha {
  width: 100%;
  display: flex;
  align-items: center;
}
.bands-header .bands-header-alpha .bands-header-alpha-title {
  color: white;
  font-family: Helvetica;
  font-size: 18px;
  font-weight: 300;
  margin-right: 10px;
  max-width: 79px;
}
.bands-header .bands-header-alpha .bands-header-alpha-list {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
}
.bands-header .bands-header-alpha .bands-header-alpha-list li {
  flex-grow: 1;
  max-width: 40px;
  min-width: 40px;
  margin-bottom: 5px;
}
.bands-header .bands-header-alpha .bands-header-alpha-list li a {
  font-family: "Futura Condensed", Helvetica;
  font-size: 20px;
  font-weight: 400;
  display: block;
  padding: 8px;
  background-color: #1e1e1e;
  color: white;
  text-align: center;
  margin: 0px 5px;
}
.bands-header .bands-header-alpha .bands-header-alpha-list li a:hover {
  color: #cd0c0a;
}
@media (max-width: 600px) {
  .bands-header .bands-header-alpha {
    display: none;
  }
}
.bands-header .bands-header-alpha-select {
  display: none;
}
.bands-header .bands-header-alpha-select select {
  padding: 8px;
  width: 100%;
  display: block;
}
@media (max-width: 600px) {
  .bands-header .bands-header-alpha-select {
    display: block;
  }
}
.bands-header .bands-header-search {
  display: flex;
  margin-top: 30px;
  align-items: center;
}
.bands-header .bands-header-search .bands-header-search-title {
  color: white;
  font-family: Helvetica;
  font-size: 20px;
  font-weight: 300;
  margin-right: 20px;
}
.bands-header .bands-header-search .bands-header-search-inner {
  flex-grow: 1;
}
.bands-header .bands-header-search .bands-header-search-inner input {
  max-width: 350px;
  width: 100%;
  padding: 8px;
}
@media (max-width: 600px) {
  .bands-header .bands-header-search .bands-header-search-inner input {
    max-width: 100%;
  }
}
.spacer-bottom {
  margin-bottom: 40px;
}
.intro-box {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
@media (max-width: 1070px) {
  .intro-box {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.intro-box .intro-box-title {
  font-size: 50px;
  text-transform: uppercase;
}
.intro-box .intro-box-content {
  margin-top: 40px;
  font-size: 34px;
}
@media (max-width: 600px) {
  .intro-box .intro-box-title {
    font-size: 30px;
  }
  .intro-box .intro-box-content {
    font-size: 20px;
    margin-top: 30px;
  }
}
.social-carousel {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  height: 260px;
}
@media (max-width: 1070px) {
  .social-carousel {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.social-carousel .social-carousel-previous {
  order: 1;
  text-indent: -9999px;
  overflow: hidden;
  position: relative;
  width: 100px;
  display: block;
  background-image: none;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.social-carousel .social-carousel-previous:before {
  background-position: center center;
  background-image: url('/static/img/icons-png/pagination-arrow.png?5306225e1872');
  background-size: 15px 29px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 15px;
  height: 29px;
  transform: translate(-50%, -50%) rotate(180deg);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: background-image 250ms;
}
.social-carousel .social-carousel-previous:hover:before {
  background-image: url('/static/img/icons-png/pagination-arrow-hover.png?5306225e1872');
}
.social-carousel .social-carousel-next {
  order: 3;
  text-indent: -9999px;
  overflow: hidden;
  position: relative;
  width: 100px;
  display: block;
  background-image: none;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.social-carousel .social-carousel-next:before {
  background-position: center center;
  background-image: url('/static/img/icons-png/pagination-arrow.png?5306225e1872');
  background-size: 15px 29px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 15px;
  height: 29px;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: background-image 250ms;
}
.social-carousel .social-carousel-next:hover:before {
  background-image: url('/static/img/icons-png/pagination-arrow-hover.png?5306225e1872');
}
.social-carousel .social-carousel-inner {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
}
.social-carousel .social-carousel-inner .social-carousel-slide {
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 1500ms;
}
.social-carousel .social-carousel-inner .social-carousel-slide .social-carousel-slide-header {
  display: block;
}
.social-carousel .social-carousel-inner .social-carousel-slide .social-carousel-slide-header:before {
  background-position: center center;
  background-image: url('/static/img/icons-png/twitter.png?5306225e1872');
  background-size: 40px 33px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 40px;
  height: 33px;
  display: block;
  margin: 0px auto;
}
.social-carousel .social-carousel-inner .social-carousel-slide .social-carousel-slide-header span {
  display: block;
  margin-top: 5px;
  font-size: 16px;
}
.social-carousel .social-carousel-inner .social-carousel-slide .social-carousel-slide-content {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 25px auto 0px;
  max-width: 80%;
}
@media (max-width: 600px) {
  .social-carousel .social-carousel-inner .social-carousel-slide .social-carousel-slide-content {
    font-size: 20px;
  }
}
.social-carousel .social-carousel-inner .social-carousel-slide.js-slider-slide-in-next,
.social-carousel .social-carousel-inner .social-carousel-slide.js-slider-slide-in-prev {
  z-index: 10;
  opacity: 1;
}
.social-carousel .social-carousel-inner .social-carousel-slide.js-slider-slide-out-next,
.social-carousel .social-carousel-inner .social-carousel-slide.js-slider-slide-out-prev {
  opacity: 0;
}
.insta-gallery {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1070px) {
  .insta-gallery {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.insta-gallery .insta-gallery-header {
  text-align: center;
  display: block;
}
.insta-gallery .insta-gallery-header::before {
  background-position: center center;
  background-image: url('/static/img/icons-png/instagram.png?5306225e1872');
  background-size: 34px 33px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 34px;
  height: 33px;
  display: block;
  margin: 0px auto 5px;
}
.insta-gallery .insta-gallery-slides {
  display: flex;
  width: 95%;
  margin: 25px auto 0px;
}
.insta-gallery .insta-gallery-slides .insta-gallery-slide {
  width: 25%;
  background-position: center center;
  background-size: cover;
  height: 280px;
}
@media (max-width: 900px) {
  .insta-gallery .insta-gallery-slides {
    flex-wrap: wrap;
  }
  .insta-gallery .insta-gallery-slides .insta-gallery-slide {
    width: 50%;
    height: 200px;
  }
}
/** - Generic item grid - **/
.item-grid-wrapper {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1070px) {
  .item-grid-wrapper {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.item-grid-wrapper .item-grid-title {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 50px;
  font-weight: 700;
  margin: 50px 0px 20px;
  text-transform: uppercase;
}
@media (min-width: 601px) and (max-width: 900px) {
  .item-grid-wrapper .item-grid-title {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .item-grid-wrapper .item-grid-title {
    font-size: 30px;
  }
}
.item-grid-wrapper .item-grid-title-medium {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 40px;
}
.item-grid-wrapper .item-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}
.item-grid-wrapper .item-grid .item-grid-cell {
  padding: 0px 30px;
  margin-bottom: 30px;
  position: relative;
  max-width: 25%;
  width: 100%;
}
.item-grid-wrapper .item-grid .item-grid-cell.item-grid-cell-large {
  max-width: 33%;
}
.item-grid-wrapper .item-grid .item-grid-cell.item-grid-cell-large:nth-child(3n+2) {
  max-width: 34%;
}
@media (min-width: 901px) and (max-width: 1200px) {
  .item-grid-wrapper .item-grid .item-grid-cell {
    max-width: 33%;
  }
  .item-grid-wrapper .item-grid .item-grid-cell:nth-child(3n+2) {
    max-width: 34%;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .item-grid-wrapper .item-grid .item-grid-cell {
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .item-grid-wrapper .item-grid .item-grid-cell {
    max-width: 100%;
  }
}
.videos-wrapper .item-grid .item-grid-cell {
  padding: 0 15px;
}
.item-common {
  max-width: 100%;
  position: relative;
}
.item-common .item-common-thumbnail {
  position: relative;
}
.item-common .item-common-thumbnail img {
  max-width: 100%;
}
.item-common .item-common-thumbnail .item-common-thumbnail-time {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  text-align: center;
}
.item-common .item-common-thumbnail .item-common-thumbnail-time > * {
  display: block;
  position: relative;
  transition: 250ms color;
  z-index: 2;
}
.item-common .item-common-thumbnail .item-common-thumbnail-time b {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 30px;
  font-weight: 400;
}
.item-common .item-common-thumbnail .item-common-thumbnail-time span {
  color: white;
  font-family: Helvetica;
  font-size: 24px;
  font-weight: 300;
}
.item-common .item-common-thumbnail .item-common-thumbnail-time:before {
  content: '';
  background-color: black;
  height: 100%;
  left: 0;
  opacity: 0.4;
  bottom: 0;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.item-common .item-common-content {
  padding-top: 10px;
}
.item-common .item-common-content > * {
  transition: 250ms color;
  margin-bottom: 10px;
}
.item-common .item-common-content .item-common-time {
  color: white;
  font-family: Helvetica;
  font-size: 14px;
  font-weight: 300;
  color: #999999;
  display: block;
  margin-bottom: 5px;
}
.item-common .item-common-content .item-common-title {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.item-common .item-common-content .item-common-title-alt {
  color: white;
  font-family: Helvetica;
  font-size: 20px;
  font-weight: 300;
}
.item-common .item-common-content .item-common-para {
  color: white;
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 300;
}
.item-common .item-common-content .item-common-location {
  color: white;
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 300;
}
.item-common .item-common-content .item-common-location:before {
  background-position: center center;
  background-image: url('/static/img/icons-png/location.png?5306225e1872');
  background-size: 17px 21px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 17px;
  height: 21px;
  margin-right: 10px;
  position: relative;
  transition: 250ms background-image;
  top: 2px;
}
.item-common .item-common-content .video {
  width: 100%;
}
.item-common:hover .item-common-thumbnail .item-common-thumbnail-time span,
.item-common:hover .item-common-thumbnail .item-common-thumbnail-time b {
  color: #cd0c0a;
}
.item-common:hover .item-common-title,
.item-common:hover .item-common-title-alt,
.item-common:hover .item-common-para,
.item-common:hover .item-common-time,
.item-common:hover .item-common-location {
  color: #cd0c0a;
}
.item-common:hover .item-common-location::before {
  background-image: url('/static/img/icons-png/location-hover.png?5306225e1872');
}
.google-maps-stripe {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  height: 300px;
  border: 1px solid white;
  max-width: 100%;
  margin: 50px 0px;
  position: relative;
  background-color: white;
}
@media (max-width: 1070px) {
  .google-maps-stripe {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.google-maps-stripe iframe {
  position: absolute;
  border: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/** - Search - **/
.search-header {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1070px) {
  .search-header {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.search-header .search-header-input {
  padding: 50px 0px;
}
.search-header .search-header-input input {
  color: white;
  font-family: Helvetica;
  font-size: 20px;
  font-weight: 300;
  display: block;
  padding: 20px 18px;
  width: 100%;
  color: black;
}
.search-header .search-header-results {
  border-top: 4px solid white;
  padding: 8px 0px;
}
.search-header .search-header-results p {
  color: white;
  font-family: Helvetica;
  font-size: 14px;
  font-weight: 300;
}
.search-header .search-header-filters {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.search-header .search-header-filters li {
  margin-right: 10px;
}
.search-header .search-header-filters li span {
  color: white;
  font-family: Helvetica;
  font-size: 14px;
  font-weight: 300;
  padding: 5px 4px;
}
.search-header .search-header-filters li a {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-weight: 300;
  display: block;
  background-color: #1e1e1e;
  padding: 5px 8px;
}
.search-header .search-header-filters li a:hover,
.search-header .search-header-filters li a.selected {
  color: #cd0c0a;
}
/** Ugly override for injected CSS from addevent **/
body .addeventatc {
  color: white !important;
  font-family: Helvetica !important;
  font-size: 20px !important;
  font-weight: 300 !important;
  background-image: none!important;
  background-color: transparent!important;
  color: #cd0c0a !important;
  border: 0!important;
  padding: 4px 0px!important;
  transition: color 250ms;
}
body .addeventatc .addeventatc_icon {
  display: none!important;
}
body .addeventatc:hover {
  border: 0!important;
  color: white !important;
}
/**
Details-style page
**/
.details-banner {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}
@media (max-width: 1070px) {
  .details-banner {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.details-banner img {
  max-width: 100%;
}
.details-content-wrapper {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}
@media (max-width: 1070px) {
  .details-content-wrapper {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.details-content-wrapper .details-content .details-title {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 50px 0px 20px;
  margin-bottom: 40px;
  max-width: 900px;
}
@media (min-width: 601px) and (max-width: 900px) {
  .details-content-wrapper .details-content .details-title {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .details-content-wrapper .details-content .details-title {
    font-size: 30px;
  }
}
.details-content-wrapper .details-content .details-title-alt {
  color: white;
  font-family: Helvetica;
  font-size: 50px;
  font-weight: 300;
  margin: 50px 0px 20px;
  max-width: 900px;
}
@media (min-width: 601px) and (max-width: 900px) {
  .details-content-wrapper .details-content .details-title-alt {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .details-content-wrapper .details-content .details-title-alt {
    font-size: 30px;
  }
}
.details-content-wrapper .details-content .details-date {
  color: white;
  font-family: Helvetica;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  display: block;
  color: #999999;
}
.details-content-wrapper .details-content .details-description p {
  color: white;
  font-family: Helvetica;
  font-size: 18px;
  font-weight: 300;
  line-height: 150%;
  max-width: 900px;
  margin-bottom: 15px;
}
.details-content-wrapper .details-content .details-description p:last-child {
  margin-bottom: 0px;
}
.details-content-wrapper .details-content .details-link-bar {
  margin-top: 50px;
  margin-bottom: 50px;
}
.details-content-wrapper .details-content .details-link-bar h3 {
  color: white;
  font-family: Helvetica;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
}
.details-content-wrapper .details-content .details-link-bar ul {
  display: flex;
  flex-wrap: wrap;
}
.details-content-wrapper .details-content .details-link-bar ul li {
  margin-right: 20px;
}
.details-content-wrapper .details-content .details-link-bar ul li a {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: #cd0c0a;
  transition: 250ms color;
}
.details-content-wrapper .details-content .details-link-bar ul li a:after {
  background-position: center center;
  background-image: url('/static/img/icons-png/link-arrow-red.png?5306225e1872');
  background-size: 8px 8px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  transition: 250ms background-image;
  vertical-align: top;
  margin-left: 10px;
}
.details-content-wrapper .details-content .details-link-bar ul li a:hover {
  color: white;
}
.details-content-wrapper .details-content .details-link-bar ul li a:hover:after {
  background-image: url('/static/img/icons-png/link-arrow-white.png?5306225e1872');
}
.details-content-wrapper .details-gig {
  max-width: none;
  width: 100%;
}
.details-content-wrapper .details-gig .details-gig-title {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 50px 0px 20px;
  margin-bottom: 0;
  max-width: 900px;
}
@media (min-width: 601px) and (max-width: 900px) {
  .details-content-wrapper .details-gig .details-gig-title {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .details-content-wrapper .details-gig .details-gig-title {
    font-size: 30px;
  }
}
.details-content-wrapper .details-gig .details-subtitle {
  color: white;
  font-family: Helvetica;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 40px;
}
.details-content-wrapper .details-gig .details-subtitle a {
  color: white;
  font-family: Helvetica;
  font-size: inherit;
  font-weight: 300;
  transition: 250ms color;
}
.details-content-wrapper .details-gig .details-subtitle a:after {
  background-position: center center;
  background-image: url('/static/img/icons-png/link-arrow-white.png?5306225e1872');
  background-size: 8px 8px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  transition: 250ms background-image;
  vertical-align: top;
  margin-left: 10px;
}
.details-content-wrapper .details-gig .details-subtitle a:hover {
  color: #cd0c0a;
}
.details-content-wrapper .details-gig .details-subtitle a:hover:after {
  background-image: url('/static/img/icons-png/link-arrow-red.png?5306225e1872');
}
.details-content-wrapper .details-gig .details-gig-content-wrapper {
  display: flex;
  width: 100%;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content {
  flex-grow: 1;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-date,
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-time,
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-location {
  color: white;
  font-family: Helvetica;
  font-size: 20px;
  font-weight: 300;
  padding-left: 35px;
  margin-bottom: 10px;
  position: relative;
  line-height: 135%;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-date:before,
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-time:before,
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-location:before {
  content: '';
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-date:before {
  background-image: url('/static/img/icons-png/date.png?5306225e1872');
  background-size: 17px 19px;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-date .details-gig-content-date-link {
  color: #cd0c0a;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-date .details-gig-content-date-link:before {
  background-position: center center;
  background-image: url('/static/img/icons-png/calendar.png?5306225e1872');
  background-size: 21px 19px;
  background-repeat: no-repeat;
  content: '';
  width: 21px;
  height: 19px;
  display: inline-block;
  margin-right: 10px;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-date .details-gig-content-date-link:hover {
  color: white;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-time:before {
  background-image: url('/static/img/icons-png/time.png?5306225e1872');
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-location:before {
  background-image: url('/static/img/icons-png/location.png?5306225e1872');
  background-size: 17px 21px;
  height: 21px;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-location a {
  color: #cd0c0a;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-location a:hover {
  color: white;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-location .details-gig-content-location-title {
  color: white;
  font-family: Helvetica;
  font-size: inherit;
  font-weight: 300;
  transition: 250ms color;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-location .details-gig-content-location-title:after {
  background-position: center center;
  background-image: url('/static/img/icons-png/link-arrow-white.png?5306225e1872');
  background-size: 8px 8px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  transition: 250ms background-image;
  vertical-align: top;
  margin-left: 10px;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-location .details-gig-content-location-title:hover {
  color: #cd0c0a;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-location .details-gig-content-location-title:hover:after {
  background-image: url('/static/img/icons-png/link-arrow-red.png?5306225e1872');
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-content-info {
  color: white;
  font-family: Helvetica;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 20px;
  margin-top: 20px;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-tickets {
  margin-bottom: 10px;
  margin-top: 20px;
  background-color: #cd0c0a;
  color: black;
  border: 2px solid #cd0c0a;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  padding: 10px 60px 10px 10px;
  font-weight: 700;
  margin-right: 20px;
  transition: color 250ms, background-color 250ms;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-tickets:after {
  transition: background-image 250ms;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-tickets:last-child {
  margin-right: 0;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-tickets:after {
  background-position: center center;
  background-image: url('/static/img/icons-png/ticket.png?5306225e1872');
  background-size: 35px 21px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 35px;
  height: 21px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-tickets:hover {
  color: white;
  background-color: transparent;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content .details-gig-tickets:hover:hover::after {
  background-image: url('/static/img/icons-png/ticket-hover.png?5306225e1872');
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-poster {
  max-width: 360px;
  max-height: 100%;
  height: 100%;
  position: relative;
  padding-left: 20px;
}
.details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-poster img {
  max-width: 100%;
  display: block;
  margin-top: -130px;
}
@media (max-width: 900px) {
  .details-content-wrapper .details-gig .details-gig-content-wrapper {
    flex-wrap: wrap;
  }
  .details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-content {
    order: 2;
    width: 100%;
  }
  .details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-poster {
    padding-left: 0;
    max-width: 100%;
    widows: 100%;
    order: 1;
    margin-bottom: 40px;
  }
  .details-content-wrapper .details-gig .details-gig-content-wrapper .details-gig-poster img {
    margin-top: 0;
    max-width: 360px;
  }
}
.contact-section {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}
@media (max-width: 1070px) {
  .contact-section {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.contact-section .contact-description {
  max-width: 50%;
  padding-right: 50px;
  padding-top: 20px;
  width: 100%;
}
.contact-section .contact-description p {
  color: white;
  font-family: Helvetica;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 15px;
  color: #999999;
}
.contact-section .contact-form {
  padding-top: 20px;
  max-width: 50%;
  width: 100%;
  padding-left: 50px;
}
.contact-section .contact-form button.contact-form-submit {
  color: white;
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 300;
  padding-right: 75px;
  position: relative;
  cursor: pointer;
  color: black;
}
.contact-section .contact-form button.contact-form-submit:after {
  background-position: center center;
  background-image: url('/static/img/icons-png/send.png?5306225e1872');
  background-size: 60px 21px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 60px;
  height: 21px;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 8px;
}
.contact-section .contact-form button.contact-form-submit:hover {
  color: white;
}
.contact-section .contact-form button.contact-form-submit:hover:after {
  background-image: url('/static/img/icons-png/send-hover.png?5306225e1872');
}
@media (max-width: 900px) {
  .contact-section {
    display: block;
  }
  .contact-section .contact-description {
    padding-right: 0px;
    max-width: 100%;
  }
  .contact-section .contact-form {
    padding-left: 0px;
    max-width: 100%;
  }
}
.contact-thank-you {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  min-height: 600px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 1070px) {
  .contact-thank-you {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.contact-thank-you > * {
  max-width: 600px;
  text-align: center;
}
.contact-thank-you h2 {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 50px 0px 20px;
}
@media (min-width: 601px) and (max-width: 900px) {
  .contact-thank-you h2 {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .contact-thank-you h2 {
    font-size: 30px;
  }
}
.contact-thank-you p {
  color: white;
  font-family: Helvetica;
  font-size: 24px;
  font-weight: 300;
  color: #999999;
  margin: 40px 0px;
}
.contact-thank-you a {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 25px;
  font-weight: 400;
  color: #cd0c0a;
  text-transform: uppercase;
}
.contact-thank-you a:before {
  background-position: center center;
  background-image: url('/static/img/icons-png/pagination-arrow-hover.png?5306225e1872');
  background-size: 16px 29px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 16px;
  height: 29px;
  transform: rotate(180deg);
  margin-right: 8px;
  position: relative;
  top: 5px;
}
@media (max-width: 900px) {
  .contact-thank-you {
    min-height: 400px;
  }
}
.wgt-home-carousel {
  height: 680px;
  background-color: #1e1e1e;
  position: relative;
  max-width: 100%;
}
.wgt-home-carousel .wgt-home-carousel-controls {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  position: relative;
}
@media (max-width: 1070px) {
  .wgt-home-carousel .wgt-home-carousel-controls {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.wgt-home-carousel .wgt-home-carousel-controls .wgt-home-carousel-prev,
.wgt-home-carousel .wgt-home-carousel-controls .wgt-home-carousel-next {
  position: absolute;
  height: 100%;
  width: 100px;
  z-index: 30;
  border: 0;
  text-indent: -9999px;
  overflow: hidden;
  background-color: transparent;
  cursor: pointer;
}
.wgt-home-carousel .wgt-home-carousel-controls .wgt-home-carousel-prev:after,
.wgt-home-carousel .wgt-home-carousel-controls .wgt-home-carousel-next:after {
  content: '';
  background-color: black;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  transition: opacity 250ms;
}
.wgt-home-carousel .wgt-home-carousel-controls .wgt-home-carousel-prev:hover::after,
.wgt-home-carousel .wgt-home-carousel-controls .wgt-home-carousel-next:hover::after {
  opacity: 0.4;
}
.wgt-home-carousel .wgt-home-carousel-controls .wgt-home-carousel-prev {
  left: 0px;
}
.wgt-home-carousel .wgt-home-carousel-controls .wgt-home-carousel-prev:before {
  background-position: center center;
  background-image: url('/static/img/icons-png/pagination-arrow.png?5306225e1872');
  background-size: 15px 29px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 15px;
  height: 29px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  transition: background-image 250ms;
}
.wgt-home-carousel .wgt-home-carousel-controls .wgt-home-carousel-prev:hover:before {
  background-image: url('/static/img/icons-png/pagination-arrow-hover.png?5306225e1872');
}
.wgt-home-carousel .wgt-home-carousel-controls .wgt-home-carousel-next {
  right: 0px;
}
.wgt-home-carousel .wgt-home-carousel-controls .wgt-home-carousel-next:before {
  background-position: center center;
  background-image: url('/static/img/icons-png/pagination-arrow.png?5306225e1872');
  background-size: 15px 29px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 15px;
  height: 29px;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  transition: background-image 250ms;
}
.wgt-home-carousel .wgt-home-carousel-controls .wgt-home-carousel-next:hover:before {
  background-image: url('/static/img/icons-png/pagination-arrow-hover.png?5306225e1872');
}
@media (max-width: 600px) {
  .wgt-home-carousel .wgt-home-carousel-controls {
    margin-left: 0;
    margin-right: 0;
  }
}
.wgt-home-carousel .wgt-home-carousel-inner {
  position: absolute;
  height: 100%;
  top: 0px;
  width: 100%;
  overflow: hidden;
}
.wgt-home-carousel .wgt-home-carousel-inner .wgt-home-carousel-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  margin: 0px auto;
  padding-left: 100px;
  padding-right: 100px;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 2500ms;
}
.wgt-home-carousel .wgt-home-carousel-inner .wgt-home-carousel-slide h2,
.wgt-home-carousel .wgt-home-carousel-inner .wgt-home-carousel-slide h2 a {
  color: white;
  font-family: Helvetica;
  font-size: 24px;
  font-weight: 300;
  position: absolute;
  bottom: 25px;
  text-align: center;
  width: 100%;
  left: 0px;
}
.wgt-home-carousel .wgt-home-carousel-inner .wgt-home-carousel-slide a:hover {
  text-decoration: underline;
}
.wgt-home-carousel .wgt-home-carousel-inner .wgt-home-carousel-slide:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.4;
}
.wgt-home-carousel .wgt-home-carousel-inner .wgt-home-carousel-slide.js-slider-slide-in-next,
.wgt-home-carousel .wgt-home-carousel-inner .wgt-home-carousel-slide.js-slider-slide-in-prev {
  z-index: 10;
  opacity: 1;
}
.wgt-home-carousel .wgt-home-carousel-inner .wgt-home-carousel-slide.js-slider-slide-out-next,
.wgt-home-carousel .wgt-home-carousel-inner .wgt-home-carousel-slide.js-slider-slide-out-prev {
  opacity: 0;
}
@media (max-width: 900px) {
  .wgt-home-carousel {
    height: 400px;
  }
}
@media (max-width: 600px) {
  .wgt-home-carousel {
    height: 220px;
  }
}
.gig-listing {
  display: flex;
  background-color: #1e1e1e;
  margin-bottom: 30px;
  width: 100%;
}
.gig-listing .gig-listing-image {
  width: 340px;
  min-height: 230px;
  position: relative;
  background-position: center center;
  background-size: cover;
}
.gig-listing .gig-listing-image time {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 30px;
  text-align: center;
}
.gig-listing .gig-listing-image time > * {
  display: block;
  position: relative;
  z-index: 2;
}
.gig-listing .gig-listing-image time b {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 50px;
  font-weight: 400;
}
.gig-listing .gig-listing-image time span {
  color: white;
  font-family: Helvetica;
  font-size: 24px;
  font-weight: 300;
}
.gig-listing .gig-listing-image time:before {
  content: '';
  background-color: black;
  height: 100%;
  right: 0;
  opacity: 0.4;
  top: 0;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.gig-listing .gig-listing-details {
  flex-grow: 1;
  padding: 30px;
}
.gig-listing .gig-listing-details .gig-listing-title,
.gig-listing .gig-listing-details .gig-listing-title a {
  color: white;
  font-family: "Futura Condensed", Helvetica;
  font-size: 35px;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  margin: 0;
}
.gig-listing .gig-listing-details .gig-listing-title a {
  transition: 250ms color;
}
.gig-listing .gig-listing-details .gig-listing-title a:hover {
  color: #cd0c0a;
}
.gig-listing .gig-listing-details .gig-listing-subtitle {
  margin-top: 5px;
  display: block;
}
.gig-listing .gig-listing-details a.gig-listing-subtitle {
  color: white;
  transition: 250ms color;
}
.gig-listing .gig-listing-details a.gig-listing-subtitle:hover {
  color: #cd0c0a;
  font-family: inherit;
  font-size: inherit;
  font-weight: 300;
}
.gig-listing .gig-listing-details .gig-listing-location {
  display: flex;
  margin-top: 25px;
}
.gig-listing .gig-listing-details .gig-listing-location .gig-listing-location-place {
  position: relative;
  padding-left: 24px;
  margin-right: 25px;
  display: block;
  transition: color 250ms;
  color: white;
}
.gig-listing .gig-listing-details .gig-listing-location .gig-listing-location-place:before {
  background-position: center center;
  background-image: url('/static/img/icons-png/location.png?5306225e1872');
  background-size: 17px 21px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 17px;
  height: 21px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 1px;
  transition: background-image 250ms;
}
.gig-listing .gig-listing-details .gig-listing-location a.gig-listing-location-place:hover {
  color: #cd0c0a;
}
.gig-listing .gig-listing-details .gig-listing-location a.gig-listing-location-place:hover:before {
  background-image: url('/static/img/icons-png/location-hover.png?5306225e1872');
}
.gig-listing .gig-listing-details .gig-listing-location .gig-listing-location-time {
  position: relative;
  padding-left: 24px;
}
.gig-listing .gig-listing-details .gig-listing-location .gig-listing-location-time:before {
  background-position: center center;
  background-image: url('/static/img/icons-png/time.png?5306225e1872');
  background-size: 19px 19px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 19px;
  height: 19px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 1px;
}
.gig-listing .gig-listing-details .gig-listing-actions {
  margin-top: 25px;
}
.gig-listing .gig-listing-details .gig-listing-actions a {
  display: inline-block;
  text-transform: uppercase;
  padding: 10px;
  font-weight: 700;
  margin-right: 20px;
  transition: color 250ms, background-color 250ms;
}
.gig-listing .gig-listing-details .gig-listing-actions a:after {
  transition: background-image 250ms;
}
.gig-listing .gig-listing-details .gig-listing-actions a:last-child {
  margin-right: 0;
}
.gig-listing .gig-listing-details .gig-listing-actions .gig-listing-tickets-link {
  background-color: #cd0c0a;
  color: black;
  border: 2px solid #cd0c0a;
  padding-right: 60px;
  position: relative;
}
.gig-listing .gig-listing-details .gig-listing-actions .gig-listing-tickets-link:after {
  background-position: center center;
  background-image: url('/static/img/icons-png/ticket.png?5306225e1872');
  background-size: 35px 21px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 35px;
  height: 21px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
.gig-listing .gig-listing-details .gig-listing-actions .gig-listing-tickets-link:hover {
  color: white;
  background-color: transparent;
}
.gig-listing .gig-listing-details .gig-listing-actions .gig-listing-tickets-link:hover:hover::after {
  background-image: url('/static/img/icons-png/ticket-hover.png?5306225e1872');
}
.gig-listing .gig-listing-details .gig-listing-actions .gig-listing-info-link {
  background-color: transparent;
  border: 2px solid #cd0c0a;
  margin-right: 20px;
  padding-right: 80px;
  position: relative;
}
.gig-listing .gig-listing-details .gig-listing-actions .gig-listing-info-link:after {
  background-position: center center;
  background-image: url('/static/img/icons-png/info-arrow.png?5306225e1872');
  background-size: 63px 22px;
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  width: 63px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
.gig-listing .gig-listing-details .gig-listing-actions .gig-listing-info-link:hover {
  color: #1e1e1e;
  background-color: #cd0c0a;
}
.gig-listing .gig-listing-details .gig-listing-actions .gig-listing-info-link:hover:after {
  background-image: url('/static/img/icons-png/info-arrow-hover.png?5306225e1872');
}
.gig-listing:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .gig-listing {
    flex-direction: column;
  }
  .gig-listing .gig-listing-image {
    width: auto;
  }
  .gig-listing .gig-listing-image time {
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
  }
}
@media (max-width: 600px) {
  .gig-listing .gig-listing-image {
    min-height: 200px;
  }
  .gig-listing .gig-listing-details {
    padding: 20px;
  }
  .gig-listing .gig-listing-details .gig-listing-title {
    font-size: 28px;
  }
  .gig-listing .gig-listing-details .gig-listing-location {
    display: block;
  }
  .gig-listing .gig-listing-details .gig-listing-location .gig-listing-location-time {
    margin-top: 5px;
  }
}
