/* LANDING PAGE CSS */
/* BEGIN - Hide hero banner text */
body > main > section:nth-child(1) > div {
display: none !important;
}
/* END - Hide hero banner text */
/* BEGIN - Text padding */
/* Event info */
#content-block-26639 > div > div > p:nth-child(1) {
padding-bottom: 0px !important;
margin-bottom: 0px !important;
}

/* END - Text padding */
/* BEGIN - Font size */
#content-block-26639 > div > div > p:nth-child(1) > span {
font-size: 22px !important;
}
/* END - Font size */
/* BEGIN - Table */

#content-block-26639 > div > div > table {
  margin-bottom: 60px !important;
}
/* END - Table */

/* TICKET PAGE CSS */

/* GENERAL CSS */
a:-webkit-any-link {
/* all pages: changes all link colors to the same color */
/* color: #[HEX CODE-LINK COLOR-ALL PAGE LINKS] !important; */
/* all pages: removes underline from links on all pages */
/* text-decoration: none !important; */
}
/* BEGIN – RESPONSIVE BEHAVIOR (AUTO ADJUST FOR DIFFERENT SCREEN SIZES) */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  table, tbody, tr, td {
    display: block !important;
    width: 100% !important;
  }

  td {
    box-sizing: border-box;
  }

  /* Optional: adds spacing between stacked columns */
  td + td {
    margin-top: 20px;
  }
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  table, tbody, tr, td {
    display: block !important;
    width: 100% !important;
  }

  td {
    box-sizing: border-box;
  }

  /* Optional: adds spacing between stacked columns */
  td + td {
    margin-top: 20px;
  }
}
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
#content-block-26447 > div > div > p:nth-child(1) {
      float: left; /* Floats the image to the left, text wraps on the right */
      margin-right: 20px; /* Adds space between the image and the text */
}
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
#content-block-26447 > div > div > p:nth-child(1) {
      float: left; /* Floats the image to the left, text wraps on the right */
      margin-right: 20px; /* Adds space between the image and the text */
}
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
#content-block-26447 > div > div > p:nth-child(1) {
      float: left; /* Floats the image to the left, text wraps on the right */
      margin-right: 20px; /* Adds space between the image and the text */
}
}
/* END - RESPONSIVE BEHAVIOR (AUTO ADJUST FOR DIFFERENT SCREEN SIZES)*/