p {
  margin-bottom: 0;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 20px;
  font-family: Selecta, Helvetica, sans-serif;
  line-height: 1;
}

@media (max-width: 768px) {
  html {
    font-size: 18px;
  }
}

html, body {
  overflow-x: hidden;
}

a {
  color: inherit;
}


.clearfix:after {
  content: " ";
  height: 0;
  display: block;
  clear: both;
}


/*
 * .richtext is basically just useful for removing margin top on the first p,
 * since wagtail puts everything in a p.
 */

.richtext a {
  color: inherit;
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.richtext a:hover {
  opacity: 0.655;
}

.richtext *:first-child {
  margin-top: 0;
}

.richtext h1,
.richtext h2,
.richtext h3,
.richtext h4,
.richtext h5,
.richtext h6 {
  margin-bottom: 0;
}

.richtext a[href^="https://"]:not([href*="mca.com.au"]):after {
  content: "↗";
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: top;
  margin-left: 0.2em;
}

.richtext blockquote:before {
  content: '\201C';
  font-size: 5rem;
  display: block;
  position: absolute;
  pointer-events: none;
  top: -4rem;
  left: 0;
}

.richtext blockquote {
  position: relative;
  margin: 4rem 0 3rem;
  padding: 0;
  font-size: 1.5rem;
}

.richtext ul {
  list-style: none;
  padding: 0 0 0 0.5em;
}

.richtext ul li:before {
  content: "\2013";
  display: inline-block;
  margin-right: 0.5em;
}


/*
 * rem (html font-size):
 * <=768: 18px;
 * >768: 20px;
 *
 * col gap:
 * <=768: 18px (1rem)
 * >768: 40px (2rem)
 * >1260: 60px (3rem)
 * >2560: 80px (4rem)
 *
 * gutter:
 * <=768: 10px (0.555rem)
 * >768: 25px (1.25rem)
 * >1260: 35px (1.75rem)
 * >2560: 45px (2.25rem)
 */


/*
 * row margin: 0 -colgap/2;
 */
.row { margin: 0 -2rem; }
@media (max-width: 2560px) { .row { margin: 0 -1.5rem; } }
@media (max-width: 1260px) { .row { margin: 0 -1rem; } }
@media (max-width: 768px)  { .row { margin: 0 -0.5rem; } }


.row:after {
  content: " ";
  clear: both;
  height: 0;
  display: block;
}

.col_1, .col_2, .col_3, .col_4, .col_5, .col_6, .col_7, .col_8, .col_9, .col_10, .col_11, .col_12 {
  padding: 0 2rem;
  float: left;
  box-sizing: border-box;
}
@media (max-width: 2560px) {
  .col_1, .col_2, .col_3, .col_4, .col_5, .col_6, .col_7, .col_8, .col_9, .col_10, .col_11, .col_12 {
    padding: 0 1.5rem;
  }
}
@media (max-width: 1260px) {
  .col_1, .col_2, .col_3, .col_4, .col_5, .col_6, .col_7, .col_8, .col_9, .col_10, .col_11, .col_12 {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .col_1, .col_2, .col_3, .col_4, .col_5, .col_6, .col_7, .col_8, .col_9, .col_10, .col_11, .col_12 {
    padding: 0 0.5rem;
  }
}



.col_1 { width: 8.333%; }
.col_2 { width: 16.667%; }
.col_3 { width: 25%; }
.col_4 { width: 33.333%; }
.col_5 { width: 41.667%; }
.col_6 { width: 50%; }
.col_7 { width: 58.333%; }
.col_8 { width: 66.667%; }
.col_9 { width: 75%; }
.col_10 { width: 83.333%; }
.col_11 { width: 91.667%; }
.col_12 { width: 100%; }

.offset_1 { margin-left: 8.333%; }
.offset_2 { margin-left: 16.667%; }
.offset_3 { margin-left: 25%; }
.offset_4 { margin-left: 33.333%; }
.offset_5 { margin-left: 41.667%; }
.offset_6 { margin-left: 50%; }
.offset_7 { margin-left: 58.333%; }
.offset_8 { margin-left: 66.667%; }
.offset_9 { margin-left: 75%; }
.offset_10 { margin-left: 83.333%; }
.offset_11 { margin-left: 91.667%; }
.offset_12 { margin-left: 100%; }


@media (max-width: 768px) {
  .sm_col_1 { width: 8.333%; }
  .sm_col_2 { width: 16.667%; }
  .sm_col_3 { width: 25%; }
  .sm_col_4 { width: 33.333%; }
  .sm_col_5 { width: 41.667%; }
  .sm_col_6 { width: 50%; }
  .sm_col_7 { width: 58.333%; }
  .sm_col_8 { width: 66.667%; }
  .sm_col_9 { width: 75%; }
  .sm_col_10 { width: 83.333%; }
  .sm_col_11 { width: 91.667%; }
  .sm_col_12 { width: 100%; }

  .sm_offset_0 { margin-left: 0%; }
  .sm_offset_1 { margin-left: 8.333%; }
  .sm_offset_2 { margin-left: 16.667%; }
  .sm_offset_3 { margin-left: 25%; }
  .sm_offset_4 { margin-left: 33.333%; }
  .sm_offset_5 { margin-left: 41.667%; }
  .sm_offset_6 { margin-left: 50%; }
  .sm_offset_7 { margin-left: 58.333%; }
  .sm_offset_8 { margin-left: 66.667%; }
  .sm_offset_9 { margin-left: 75%; }
  .sm_offset_10 { margin-left: 83.333%; }
  .sm_offset_11 { margin-left: 91.667%; }
  .sm_offset_12 { margin-left: 100%; }
}


/*
 * mca_button
 */

.mca_button {
  display: inline-block;
  text-decoration: none;
  position: relative;
  z-index: 0;
  user-select: none;
  cursor: pointer;
}

.mca_button:hover {
  opacity: 0.655;
}

.mca_button_text {
  display: inline-block;
  padding: 0.6rem 1rem 0.6rem 0;
  white-space: nowrap;
  transition: color 200ms;
}


.mca_button_text:after {
  display: inline-block;
  width: 0.58em;
  height: 0.58em;
  content: " ";
  margin-left: 0.4rem;
  background: url('./images/navigate_right_black.svg') 50%/contain no-repeat;
}

.ticket-icon {
  display: inline-block;
}
.ticket-icon:after {
  content: '';
  display: inline-block;
  vertical-align: bottom;
  margin-left: 5px;
  width: 1.1em;
  height: 1.1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='Layer 1' viewBox='0 0 53.12 54.53'%3E%3Cpath fill='%23231f20' d='m36.83 33.31 2.12-2.12 1.06 1.06 7.78-7.78-5.41-5.41c-.73.73-1.57 1.24-2.53 1.54-.96.29-1.92.32-2.9.07s-1.88-.78-2.7-1.61-1.36-1.73-1.61-2.7c-.25-.98-.22-1.94.07-2.9.29-.96.81-1.8 1.54-2.53l-5.41-5.41-7.78 7.78 1.06 1.06L20 16.48l-1.06-1.06L5.01 29.35l5.41 5.41c.73-.73 1.57-1.24 2.53-1.54a5.29 5.29 0 0 1 2.9-.07c.98.25 1.88.78 2.7 1.61s1.36 1.73 1.61 2.7c.25.98.22 1.94-.07 2.9-.29.96-.81 1.8-1.54 2.53l5.41 5.41 13.93-13.93-1.06-1.06ZM23.79 20.27l-2.12-2.12 2.12-2.12 2.12 2.12-2.12 2.12Zm3.79 3.79-2.12-2.12 2.12-2.12 2.12 2.12-2.12 2.12Zm3.79 3.79-2.12-2.12 2.12-2.12 2.12 2.12-2.12 2.12Zm3.79 3.79-2.12-2.12 2.12-2.12 2.12 2.12-2.12 2.12Z'/%3E%3C/svg%3E%0A");
}