/*!
Theme Name: ESPN Events
Theme URI: https://www.espnevents.com/
Author: Tombras
Author URI: https://tombras.com/
Description:
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: espn
*/
@import url("https://fonts.googleapis.com/css?family=Archivo+Black|Archivo:400,700&display=swap");
@keyframes fadein {
  0% {
    opacity: 0; }
  25% {
    opacity: 0.25; }
  50% {
    opacity: 0.5; }
  75% {
    opacity: 0.75; }
  100% {
    opacity: 1; } }

@keyframes fadeout {
  0% {
    opacity: 1; }
  25% {
    opacity: 0.75; }
  50% {
    opacity: 0.5; }
  75% {
    opacity: 0.25; }
  100% {
    opacity: 0; } }

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

main {
  display: block; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

pre {
  font-family: monospace, monospace;
  font-size: 1em; }

a {
  background-color: transparent; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

b, strong {
  font-weight: bolder; }

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

img {
  border-style: none;
  max-width: 100%;
  height: auto; }

button, input, optgroup, select, textarea {
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button, input {
  overflow: visible; }

button, select {
  text-transform: none; }

[type="button"], [type="reset"], [type="submit"], button {
  -webkit-appearance: button; }

[type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0; }

[type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  padding: 0.35em 0.75em 0.625em; }

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

progress {
  vertical-align: baseline; }

textarea {
  overflow: auto; }

[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0; }

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

details {
  display: block; }

summary {
  display: list-item; }

template {
  display: none; }

[hidden] {
  display: none; }

*, ::after {
  box-sizing: border-box; }

html {
  font-family: "Archivo", sans-serif;
  color: #292B2C;
  line-height: 30px;
  font-size: 18px; }

body {
  background-color: #F2F2F2; }
  @media (max-width: 1060px) {
    body {
      overflow-x: hidden; } }

h1,
h2,
h3,
h4,
.large-heading,
.small-heading,
.card-copy,
.section-divider-copy {
  font-family: "Archivo Black", sans-serif;
  line-height: 1;
  color: #303031; }

h1,
.large-heading {
  font-size: 60px; }

h2,
.small-heading {
  font-size: 34px; }
  h2 img,
  .small-heading img {
    height: auto;
    max-height: 100px; }

h3,
.subhead {
  font-size: 30px; }

h4,
.card-copy {
  font-size: 24px; }

p,
.section-divider-copy {
  font-size: 18px; }

h1,
h2,
.large-heading,
.small-heading,
.section-divider-copy {
  text-transform: uppercase; }

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

.accordions {
  background-color: #FFFFFF;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.08);
  padding: 14px 54px;
  max-width: 934px;
  margin: 60px auto;
  z-index: 2;
  position: relative; }

.accordion {
  border-bottom: 1px solid #E2E2E2;
  padding: 38.5px 64px;
  padding-bottom: 28.5px;
  color: #000000;
  position: relative; }
  @media (max-width: 1060px) {
    .accordion {
      padding: 38.5px 0px; } }
  .accordion:last-of-type {
    border-bottom: none; }
  .accordion[open] .accordion__title {
    border-bottom: 3px solid #DD0000;
    border-bottom: 3px solid var(--brand-heading-color, #DD0000); }
    .accordion[open] .accordion__title::after {
      transform: rotate(90deg); }
    .accordion[open] .accordion__title ~ * {
      animation: slide-down 0.4s ease-out; }

.accordion__title {
  font-family: "Archivo";
  font-weight: bold;
  font-size: 26px;
  display: inline-block;
  padding-bottom: 10px;
  cursor: pointer; }
  .accordion__title::after {
    content: "";
    position: absolute;
    right: 0;
    background-image: url("/wp-content/themes/espn/svg/black-chevron.svg");
    width: 17px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.4s ease-out; }
  .accordion__title::-webkit-details-marker {
    display: none; }

@keyframes slide-down {
  0% {
    opacity: 0;
    margin-top: -20px; }
  100% {
    opacity: 1;
    margin-top: 0px; } }

button,
.button {
  box-shadow: none;
  cursor: pointer;
  padding: 30px 50px;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: initial;
  text-decoration: none;
  line-height: initial;
  text-align: center;
  display: inline-block;
  border: 1px solid transparent;
  color: #FFFFFF;
  background-color: #000000;
  border-radius: 1px;
  margin: 10px 0px; }
  @media (max-width: 1060px) {
    button,
    .button {
      display: block;
      margin: 30px auto !important;
      max-width: 350px; } }

.button--outline {
  color: #000000;
  background-color: #FFFFFF;
  border-color: #000000; }

input,
select {
  font-family: "Open Sans", sans-serif;
  color: #000000;
  letter-spacing: 0.61px;
  line-height: 30px;
  border: 1px solid #E2E2E2;
  border-radius: 2px;
  min-width: 180px;
  font-size: 16px;
  padding: 20px; }
  input:-ms-input-placeholder,
  select:-ms-input-placeholder {
    opacity: 1.0; }
  input::placeholder,
  select::placeholder {
    opacity: 1.0; }

.select--wrapper {
  position: relative; }
  .select--wrapper select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
    .select--wrapper select ::-ms-expand {
      display: none; }
  .select--wrapper::after {
    content: "";
    background-image: url("/wp-content/themes/espn/svg/chevron.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: 14px;
    height: 14px;
    right: 6px;
    top: 20%; }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .select--wrapper::after {
        display: none; } }
  .select--wrapper.--red-chevron::after {
    background-image: url("/wp-content/themes/espn/svg/down-red-chevron.svg"); }

.parallelogram {
  -webkit-clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  width: 209px;
  height: 46px;
  margin-left: calc(50% - 1162px/2);
  background-color: var(--brand-accent-color, #DD0000); }
  .parallelogram.--blue {
    background-color: #179ff2; }

.alpha {
  background-image: url("/wp-content/themes/espn/img/football-hero-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.8s; }
  .alpha.in-view {
    opacity: 1; }
  .alpha.basketball {
    background-image: url("/wp-content/themes/espn/img/basketball-hero-bg.jpg");
    background-image: url("/wp-content/themes/espn/img/basketball-hero-bg.jpg"), linear-gradient(transparent 90%, #000 100%); }
  .alpha.softball {
    background-image: url("/wp-content/themes/espn/img/softball-hero-bg.jpg");
    background-image: url("/wp-content/themes/espn/img/softball-hero-bg.jpg"), linear-gradient(transparent 90%, #000 100%); }
  .alpha.football {
    background-image: url("/wp-content/themes/espn/img/football-hero-bg.jpg");
    background-image: url("/wp-content/themes/espn/img/football-hero-bg.jpg"), linear-gradient(transparent 90%, #000 100%); }
  .alpha .alpha--logo {
    -ms-flex-item-align: start;
        align-self: flex-start; }

.alpha__event-filter {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: url("/wp-content/themes/espn/img/checkerboard-pattern.png");
  opacity: 0.4;
  background-size: 30px; }

.alpha__event-filter--2 {
  background: linear-gradient(0deg, transparent 23%, rgba(19, 19, 19, 0.91) 72%, #171717 100%);
  opacity: 0.8;
  height: 150px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }
  @media (max-width: 1060px) {
    .alpha__event-filter--2 {
      height: 300px; } }

.alpha__video--wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  max-width: 100%;
  height: 100%; }
  .alpha__video--wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .alpha__video--wrapper video {
        /* IE10+ CSS styles go here */
        height: auto; } }
    @media (max-width: 1060px) {
      .alpha__video--wrapper video {
        height: 300px; } }

body.tax-sports .site-header,
body.page-template-single-events-php .site-header,
body.post-template-default .site-header,
body.brackets-template-default .site-header,
body.teams-template-default .site-header,
body.archive .site-header,
body.blog .site-header,
body.page-template-page-schedule .site-header,
body.page-template-page-simple-alpha .site-header,
body.page-template-page-draft-2020 .site-header,
body.page-template-page-multiple-brackets .site-header {
  background-color: transparent;
  position: absolute;
  left: 0;
  right: 0; }

body.tax-sports .alpha,
body.page-template-single-events-php .alpha,
body.post-template-default .alpha,
body.brackets-template-default .alpha,
body.teams-template-default .alpha,
body.archive .alpha,
body.blog .alpha,
body.page-template-page-schedule .alpha,
body.page-template-page-simple-alpha .alpha,
body.page-template-page-draft-2020 .alpha,
body.page-template-page-multiple-brackets .alpha {
  position: relative;
  background-position: top;
  min-height: 490px;
  margin-bottom: 200px;
  display: -ms-flexbox;
  display: flex;
  padding-right: calc(50% - 1162px/2); }

@media (max-width: 1060px) {
  body.tax-sports .alpha,
  body.page-template-single-events-php .alpha,
  body.post-template-default .alpha,
  body.brackets-template-default .alpha,
  body.teams-template-default .alpha,
  body.archive .alpha,
  body.blog .alpha,
  body.page-template-page-schedule .alpha,
  body.page-template-page-simple-alpha .alpha,
  body.page-template-page-draft-2020 .alpha,
  body.page-template-page-multiple-brackets .alpha {
    min-height: auto;
    background-position: top;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 300px;
    padding-bottom: 0px;
    margin-bottom: -60px; }
    body.tax-sports .alpha + .event-section,
    body.tax-sports .alpha + .row.animatedParent.animateOnce.bracket.in-view,
    body.page-template-single-events-php .alpha + .event-section,
    body.page-template-single-events-php .alpha + .row.animatedParent.animateOnce.bracket.in-view,
    body.post-template-default .alpha + .event-section,
    body.post-template-default .alpha + .row.animatedParent.animateOnce.bracket.in-view,
    body.brackets-template-default .alpha + .event-section,
    body.brackets-template-default .alpha + .row.animatedParent.animateOnce.bracket.in-view,
    body.teams-template-default .alpha + .event-section,
    body.teams-template-default .alpha + .row.animatedParent.animateOnce.bracket.in-view,
    body.archive .alpha + .event-section,
    body.archive .alpha + .row.animatedParent.animateOnce.bracket.in-view,
    body.blog .alpha + .event-section,
    body.blog .alpha + .row.animatedParent.animateOnce.bracket.in-view,
    body.page-template-page-schedule .alpha + .event-section,
    body.page-template-page-schedule .alpha + .row.animatedParent.animateOnce.bracket.in-view,
    body.page-template-page-simple-alpha .alpha + .event-section,
    body.page-template-page-simple-alpha .alpha + .row.animatedParent.animateOnce.bracket.in-view,
    body.page-template-page-draft-2020 .alpha + .event-section,
    body.page-template-page-draft-2020 .alpha + .row.animatedParent.animateOnce.bracket.in-view,
    body.page-template-page-multiple-brackets .alpha + .event-section,
    body.page-template-page-multiple-brackets .alpha + .row.animatedParent.animateOnce.bracket.in-view {
      padding-top: 60px;
      background-color: #f2f2f2;
      z-index: 2;
      position: relative; } }

@media (max-width: 1060px) {
  body.events-template-default .alpha,
  body.post-template-default .alpha {
    background-size: auto; } }

@media (min-width: 1060px) {
  body.page-template-single-events-php .alpha {
    margin-bottom: 100px; } }

body.page-template-page-simple-alpha .alpha,
body.page-template-page-draft-2020 .alpha {
  margin-bottom: 100px; }

.nav-menu {
  list-style: none;
  padding-left: 0px;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between; }
  .nav-menu img {
    vertical-align: middle; }
  @media (max-width: 1060px) {
    .nav-menu {
      margin-bottom: 0;
      -ms-flex-pack: justify;
          justify-content: space-between; } }

.nav-menu__item {
  margin-right: 30px;
  border-bottom: 2px solid transparent; }
  @media (max-width: 1060px) {
    .nav-menu__item {
      opacity: 0.6; } }
  .nav-menu__item:last-of-type {
    margin-right: 0px; }
  .nav-menu__item::after {
    display: block;
    content: '';
    border-bottom: 2px solid #DD0000;
    border-bottom: 2px solid var(--brand-accent-color, #DD0000);
    transform: scaleX(0);
    transition: transform 250ms ease-in-out; }
  .nav-menu__item:hover, .nav-menu__item:focus, .nav-menu__item:active, .nav-menu__item.nav-menu__item--active {
    opacity: 1; }
    .nav-menu__item:hover::after, .nav-menu__item:focus::after, .nav-menu__item:active::after, .nav-menu__item.nav-menu__item--active::after {
      transform: scaleX(1);
      transform-origin: 0 50%; }
  .nav-menu__item a {
    color: #FFFFFF;
    text-decoration: none; }
  .nav-menu__item.event-logo {
    border-bottom: 0px;
    -ms-flex: 0 1 80px;
        flex: 0 1 80px; }
    .nav-menu__item.event-logo img {
      max-height: 70px; }
    .nav-menu__item.event-logo::after {
      display: none; }

.submenu {
  display: none;
  -ms-flex-flow: column;
      flex-flow: column;
  padding: 30px;
  background: #000000; }

.submenu__item {
  margin-bottom: 30px;
  margin-left: 0px;
  margin-right: 0px; }
  .submenu__item:last-of-type {
    margin-bottom: 0px; }

.has-submenu:hover .submenu,
.has-submenu.open .submenu {
  display: -ms-flexbox;
  display: flex;
  position: absolute; }

.modal {
  /* This way it could be display flex or grid or whatever also. */
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  /* Use this for centering if unknown width/height */
  transform: translate(-50%, -50%);
  background: white;
  animation: fadein 0.3s ease; }

.closed {
  display: none;
  animation: fadeout 0.3s ease; }

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  background: rgba(0, 0, 0, 0.6); }

.modal__content {
  margin: 0 auto;
  overflow: auto;
  padding: 1.5em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center; }
  @media (max-width: 1060px) {
    .modal__content {
      padding: 10px; } }

.modal .modal__close-button {
  position: absolute;
  background: none;
  /* don't need to go crazy with z-index here, just sits over .modal-guts */
  z-index: 20;
  top: 0;
  width: auto;
  /* needs to look OK with or without scrollbar */
  right: 0px;
  border: 0;
  padding: 0.5em;
  font-size: 1em; }

.modal__close-button svg {
  width: 20px; }

#gallery-modal {
  width: 90vw;
  height: 90vh;
  background: transparent; }
  #gallery-modal img {
    margin: 0 auto;
    max-height: 100%; }

#banner-modal .modal__content,
#active-event-modal .modal__content {
  display: block; }

#banner-modal {
  background: white; }
  #banner-modal img {
    margin: 0 auto;
    max-height: 100%; }
  @media (max-width: 1060px) {
    #banner-modal {
      width: 90vw;
      height: 90vh; } }

#active-event-modal {
  max-height: 100vh;
  max-width: 1024px;
  width: 80vw;
  background-color: #333;
  color: #FFFFFF; }
  @media (max-width: 1060px) {
    #active-event-modal {
      max-width: 100vw; } }
  #active-event-modal h2 {
    font-size: 22px;
    margin-top: 0px; }
  #active-event-modal p {
    font-size: 16px; }
  #active-event-modal .modal__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto auto;
        grid-template-rows: auto auto auto;
    padding: 0px;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: center;
        align-items: center; }
    @media (max-width: 1060px) {
      #active-event-modal .modal__content {
        display: block; } }
    #active-event-modal .modal__content > div {
      padding: 20px 10px; }
  #active-event-modal .active-event-modal__header,
  #active-event-modal .active-event-modal__next-teams {
    background-color: #FFFFFF;
    color: #1D1E1F;
    grid-column: 1/-1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-grid-column-span: 2; }
    @media (max-width: 1060px) {
      #active-event-modal .active-event-modal__header,
      #active-event-modal .active-event-modal__next-teams {
        display: block; } }
    #active-event-modal .active-event-modal__header h2,
    #active-event-modal .active-event-modal__header .event-logo,
    #active-event-modal .active-event-modal__next-teams h2,
    #active-event-modal .active-event-modal__next-teams .event-logo {
      -ms-flex: 1 0 100%;
          flex: 1 0 100%; }
  #active-event-modal .active-event-modal__header {
    -ms-grid-row: 1; }
  #active-event-modal .active-event-modal__tickets,
  #active-event-modal .active-event-modal__emails {
    -ms-grid-row: 2; }
  #active-event-modal .active-event-modal__emails {
    -ms-grid-column: 2; }
  #active-event-modal .active-event-modal__next-teams {
    -ms-grid-row: 3; }
  #active-event-modal .button {
    font-size: 18px;
    padding: 10px 20px;
    margin: 0px 20px;
    background-color: var(--brand-heading-color, #000); }
  #active-event-modal .teams {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center; }
    @media (max-width: 1060px) {
      #active-event-modal .teams {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    #active-event-modal .teams img {
      max-height: 40px;
      margin: 0px 10px; }
  #active-event-modal .active-event-modal__tickets h2 {
    color: white !important; }
  #active-event-modal .active-event-modal__emails h2 {
    color: white !important;
    margin-bottom: 0px; }
  #active-event-modal .active-event-modal__emails .gform_wrapper {
    width: auto; }
  #active-event-modal .active-event-modal__emails .gform_fields {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    margin-bottom: 0; }
    @media (max-width: 1060px) {
      #active-event-modal .active-event-modal__emails .gform_fields {
        display: block; } }
    #active-event-modal .active-event-modal__emails .gform_fields .ginput_container {
      margin: 0 5px; }
      #active-event-modal .active-event-modal__emails .gform_fields .ginput_container input,
      #active-event-modal .active-event-modal__emails .gform_fields .ginput_container select {
        height: 45px;
        padding: 10px;
        margin: 0; }
  #active-event-modal .active-event-modal__emails .gform_footer .gform_button {
    font-size: 16px;
    padding: 10px;
    margin: 0; }

.event-header {
  background-color: #000000;
  -webkit-clip-path: polygon(0 0, 100% 0%, 88% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 88% 100%, 0% 100%);
  padding: 30px calc(50% - 1162px/2);
  padding-right: 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  transition: margin-left 0.8s;
  width: 100%;
  margin-bottom: -400px;
  z-index: 200;
  margin-left: -100%;
  margin-top: 350px; }
  .event-header.in-view {
    margin-left: 0; }
  @supports ((display: -ms-grid) or (display: grid)) {
    .event-header {
      margin-top: 0px; } }
  @media (max-width: 1200px) {
    .event-header {
      margin-right: 0; } }
  @media (max-width: 1060px) {
    .event-header {
      background-color: #1D1E1F;
      -ms-flex-flow: column;
          flex-flow: column;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-align: center;
          align-items: center;
      -webkit-clip-path: unset;
              clip-path: unset;
      padding: 60px 0px;
      margin-bottom: 60px; } }

.event-header,
.event-header__name {
  color: #FFFFFF; }

.event-header__logo,
.event-header__info {
  opacity: 0;
  transition: opacity 0.5s ease-in; }
  .event-header__logo.in-view,
  .event-header__info.in-view {
    opacity: 1; }

.alpha + * {
  opacity: 0;
  transition: opacity 0.8s ease-in; }
  .alpha + *.in-view {
    opacity: 1; }

.event-header__name {
  font-size: 34px;
  letter-spacing: -1.06px;
  line-height: 44px;
  margin: 0;
  max-width: 90%; }
  @media (max-width: 1060px) {
    .event-header__name {
      text-align: center;
      font-size: 30px;
      line-height: 1.25;
      max-width: 100%; } }

.event-header__tagline {
  font-size: 18px;
  letter-spacing: -1.06px;
  margin: 0;
  margin-right: 40px; }
  @media (max-width: 1060px) {
    .event-header__tagline {
      margin-right: 0px; } }

.event-header__info {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto; }
  @media (max-width: 1060px) {
    .event-header__info {
      text-align: center; } }

.event-header__social-links {
  list-style: none;
  padding-left: 0px;
  display: -ms-flexbox;
  display: flex;
  margin: 0px;
  margin-left: -16px; }
  @media (max-width: 1060px) {
    .event-header__social-links {
      -ms-flex-pack: center;
          justify-content: center; } }

.event-header__info hr {
  border-top: none;
  border-bottom: 2px solid #DD0000;
  border-bottom: 2px solid var(--brand-accent-color, #DD0000);
  max-width: 760px;
  margin: 7px 0px 17px 0px; }
  @media (max-width: 1060px) {
    .event-header__info hr {
      max-width: 90%;
      margin: 7px auto 17px auto; } }

.event-header__info--inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between; }
  @media (max-width: 1060px) {
    .event-header__info--inner {
      -ms-flex-flow: column;
          flex-flow: column;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-align: center;
          align-items: center; } }

.event-header__logo {
  -ms-flex: 0 1 183px;
      flex: 0 1 183px;
  margin-right: 50px; }
  .event-header__logo img {
    max-height: 150px; }
  @media (max-width: 1060px) {
    .event-header__logo {
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
      margin: 0 auto;
      margin-top: 20px; } }

.event-header__countdown {
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin-top: 5px;
  margin-right: 18%; }
  @media (max-width: 1060px) {
    .event-header__countdown {
      margin: 0 auto;
      margin-top: 30px;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-align: center;
          align-items: center; } }

.event-header__countdown--time {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
  margin-right: 26px;
  position: relative; }
  .event-header__countdown--time:last-child {
    margin-right: 0px; }

.event-header__countdown--time span {
  font-family: "Archivo Black";
  font-size: 57px;
  letter-spacing: 1px;
  line-height: 44px;
  color: #000000;
  text-shadow: -2px -2px 0 #FFFFFF, 2px -2px 0 #FFFFFF, -2px 2px 0 #FFFFFF, 2px 2px 0 #FFFFFF; }
  @media (max-width: 1060px) {
    .event-header__countdown--time span {
      font-size: 40px;
      color: #1D1E1F; } }

.event-header__countdown--time span.days {
  letter-spacing: -1.78px;
  color: #FFFFFF;
  text-shadow: none; }

.event-header__countdown--time p {
  font-family: "Archivo Black";
  margin: 0;
  font-size: 14px;
  letter-spacing: -1.39px;
  text-transform: uppercase; }

.event-header__countdown--time::after {
  content: ':';
  position: absolute;
  right: -18px;
  top: 6px;
  font-family: "Archivo Black";
  font-size: 22px; }

.event-header__countdown--time:last-of-type::after {
  content: ''; }

.event-header__breadcrumbs {
  padding-left: 0px; }

.event-header__breadcrumbs a {
  color: #FFFFFF;
  font-size: 12px;
  text-decoration: none; }

.event-header__breadcrumbs a:last-of-type {
  font-weight: bold;
  border-bottom: 2px solid #DD0000;
  border-bottom: 2px solid var(--brand-accent-color, #DD0000); }

.event-header__breadcrumbs a::after {
  content: '/';
  margin: 0 6px 0 10px; }

.event-header__breadcrumbs a:last-of-type::after {
  content: '';
  margin: 0; }

.event-section.teams-wrapper {
  margin-bottom: 60px; }

.carousel--wrapper {
  padding: 0; }
  .carousel--wrapper > h2,
  .carousel--wrapper > form {
    padding-left: calc(50% - 1162px/2);
    padding-top: 30px; }

.carousel {
  display: -ms-flexbox;
  display: flex;
  overflow-x: hidden;
  padding-left: calc(50% - 920px/2);
  padding-bottom: 94px;
  margin-top: -25px;
  position: relative;
  transition: margin 0.2s ease; }
  @media (max-width: 1060px) {
    .carousel {
      overflow-x: scroll;
      padding-bottom: 30px; } }

.carousel__item {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  background-color: #FFFFFF;
  box-shadow: 0 19px 11px #a1a1a1;
  margin-right: 20px;
  height: auto; }
  @media (max-width: 1060px) {
    .carousel__item {
      width: 80vw;
      -ms-flex-flow: column;
          flex-flow: column; }
      .carousel__item:first-child {
        margin-left: 20px; }
      .carousel__item.only-child {
        margin: 0px auto; } }

.carousel__nav {
  text-align: center;
  padding-bottom: 70px; }
  .carousel__nav .nav--dot {
    color: transparent;
    background-color: #979797;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    z-index: 200;
    margin: 0 5px; }
    .carousel__nav .nav--dot.active-slide {
      background-color: #1D1E1F; }
    @media (max-width: 1060px) {
      .carousel__nav .nav--dot {
        display: none; } }
  .carousel__nav .nav--arrow {
    position: absolute;
    top: 50%;
    background-color: #FFFFFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    padding: 14px 18px 14px 14px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
        flex-flow: column;
    -ms-flex-pack: center;
        justify-content: center;
    box-shadow: 0 11px 27px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: top 0.3s; }
    .carousel__nav .nav--arrow:hover, .carousel__nav .nav--arrow:focus {
      top: 49%; }
    @media (max-width: 1060px) {
      .carousel__nav .nav--arrow {
        display: none; } }
  .carousel__nav .nav--arrow.left {
    left: 40px; }
  .carousel__nav .nav--arrow.right {
    right: 40px;
    transform: rotate(180deg);
    box-shadow: 0 -11px 27px 0px rgba(0, 0, 0, 0.2); }

.newsfeed--wrapper {
  padding-top: 70px !important; }
  @media (max-width: 1060px) {
    .newsfeed--wrapper {
      padding-top: 0px !important; } }

.newsfeed {
  display: -ms-flexbox;
  display: flex; }
  @supports ((display: -ms-grid) or (display: grid)) {
    .newsfeed {
      display: -ms-grid;
      display: grid;
      -ms-grid-rows: 197px 197px;
          grid-template-rows: 197px 197px;
      -ms-grid-columns: (185px)[200];
          grid-template-columns: repeat(200, 185px);
      grid-auto-flow: column;
      grid-gap: 20px; } }
  @media (max-width: 1060px) {
    .newsfeed {
      -ms-grid-rows: auto;
          grid-template-rows: auto;
      -ms-grid-columns: auto;
          grid-template-columns: auto; } }

.newsfeed__item {
  -ms-grid-column: span 3;
      grid-column: span 3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  min-height: 200px; }
  @media (min-width: 1060px) {
    .newsfeed__item.first {
      display: -ms-flexbox;
      display: flex; }
      @supports ((display: -ms-grid) or (display: grid)) {
        .newsfeed__item.first {
          grid-row: 1/-1;
          display: -ms-grid;
          display: grid;
          -ms-grid-rows: (1fr)[2];
              grid-template-rows: repeat(2, 1fr);
          -ms-grid-columns: (1fr)[3];
              grid-template-columns: repeat(3, 1fr);
          background-color: transparent;
          box-shadow: none; }
          .newsfeed__item.first .newsfeed__item--image {
            grid-row: 1/3;
            grid-column: 1/3;
            background-size: cover;
            background-position: top; }
          .newsfeed__item.first .newsfeed__item--content {
            grid-column: 2/-1;
            grid-row: 1/-1;
            padding: 50px 25px; } }
    .newsfeed__item.only-child {
      -ms-grid-column: span 4;
          grid-column: span 4;
      margin-right: 0px;
      margin-left: 0px; } }

.newsfeed__item--content {
  background-color: #ffffff;
  padding: 0px 25px;
  -ms-flex: 0 1 345px;
      flex: 0 1 345px;
  -ms-flex-item-align: center;
      align-self: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
  -ms-flex-pack: center;
      justify-content: center; }

.newsfeed__item--image {
  height: 100%;
  width: 100%;
  -ms-flex: 0 1 200px;
      flex: 0 1 200px;
  background-position: top;
  background-size: cover;
  background-image: url("/wp-content/themes/espn/img/basketball-newsfeed.jpg"); }

.newsfeed__item--title {
  font-size: 24px !important;
  color: #1D1E1F !important;
  letter-spacing: 0;
  line-height: 28px;
  text-transform: none;
  max-height: 60px;
  overflow: hidden;
  position: relative;
  padding-right: 28px; }
  @media (max-width: 1060px) {
    .newsfeed__item--title {
      max-height: 100%;
      text-align: left !important;
      padding-left: 0px !important; } }
  .newsfeed__item--title:after {
    content: "...";
    position: absolute;
    right: 0;
    top: 28px; }
    @media (max-width: 1060px) {
      .newsfeed__item--title:after {
        display: none; } }
  .newsfeed__item--title.no-ellipse:after {
    display: none; }

.newsfeed__item--date-cat {
  font-size: 14px;
  color: #737373;
  font-weight: bold; }

.newsfeed__item--category {
  color: #DD0000;
  text-decoration: none; }

.newsfeed__item--read-more {
  font-size: 12px;
  color: #000000;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start; }
  .newsfeed__item--read-more::after {
    display: block;
    content: '';
    border-bottom: 2px solid #DD0000;
    width: 37px;
    transition: width 250ms ease-in-out; }
  .newsfeed__item--read-more:hover::after, .newsfeed__item--read-more:focus::after, .newsfeed__item--read-more:active::after {
    width: 100%; }

a.newsfeed_item {
  display: block;
  text-decoration: none;
  color: unset;
  padding: 30px 0;
  border-bottom: 1px solid #1D1E1F; }
  a.newsfeed_item:last-of-type {
    border-bottom: none; }

.twitter-feed--wrapper h2 {
  color: #1D1E1F; }
  .twitter-feed--wrapper h2 img {
    vertical-align: middle;
    max-height: 53px;
    max-width: 53px; }
    @media (max-width: 1060px) {
      .twitter-feed--wrapper h2 img {
        display: block;
        margin: 0px auto;
        margin-bottom: 30px; } }

.twitter-feed .carousel__item {
  background: none;
  box-shadow: none; }

.twitter-feed .twitter-tweet {
  margin: 0px !important; }

@media (max-width: 1060px) {
  .twitter-feed + .carousel__nav {
    display: none; } }

#gallery h2 {
  margin-bottom: 0px; }

.gallery {
  padding-bottom: 60px; }
  @media (max-width: 1060px) {
    .gallery + .carousel__nav {
      display: none; } }
  .gallery .gallery__item {
    -ms-flex: 0 0 700px;
        flex: 0 0 700px;
    overflow: hidden;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    height: 400px;
    position: relative; }
    .gallery .gallery__item img {
      min-width: 100%;
      max-width: none;
      margin: 0px -100%;
      width: 100%; }
    .gallery .gallery__item video {
      height: 100%;
      width: auto;
      background: black; }
      @media (max-width: 1060px) {
        .gallery .gallery__item video {
          width: 100%;
          height: auto; } }
      @media (max-width: 375px) {
        .gallery .gallery__item video {
          width: auto;
          height: 100%; } }
    @media (max-width: 1060px) {
      .gallery .gallery__item {
        -ms-flex: 0 0 80vw;
            flex: 0 0 80vw;
        height: 178px;
        max-width: 350px; }
        .gallery .gallery__item img {
          width: 105%; } }

.gallery__filter {
  padding-top: 0px;
  padding-bottom: 40px; }
  @media (max-width: 1060px) {
    .gallery__filter {
      padding-left: 20px !important; } }

#gallery__filter--year {
  background-color: transparent;
  border: 0px;
  border-bottom: 1px solid #979797;
  padding: 10px 0px; }

.event-section.newsletter-signup {
  display: -ms-flexbox;
  display: flex;
  background-color: #FFFFFF;
  padding-top: 82px;
  padding-bottom: 82px;
  margin-bottom: 100px;
  min-height: 400px; }
  @media (max-width: 1060px) {
    .event-section.newsletter-signup {
      margin: 0;
      padding-top: 0px;
      padding-bottom: 30px;
      -ms-flex-flow: column;
          flex-flow: column; } }

.newsletter-signup__title {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  font-size: 62px;
  margin: 0 !important;
  margin-top: -80px !important;
  text-align: center;
  line-height: 70px;
  color: #000000 !important;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-transform: uppercase; }
  .newsletter-signup__title .outline-letters {
    text-shadow: -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000;
    color: #FFFFFF; }
  @media (max-width: 1060px) {
    .newsletter-signup__title {
      margin: 40px auto 20px auto !important; } }

.left.event-details__form .newsletter-signup__title {
  margin-top: 0px !important; }

.newsletter-signup__form,
.gform_wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
  width: 348px;
  margin: 0 auto;
  -ms-flex-item-align: center;
      align-self: center; }
  @media (max-width: 1060px) {
    .newsletter-signup__form,
    .gform_wrapper {
      width: 100%; } }
  .newsletter-signup__form input,
  .newsletter-signup__form select,
  .gform_wrapper input,
  .gform_wrapper select {
    margin-bottom: 6px;
    width: 100%; }
  .newsletter-signup__form .select--wrapper::after,
  .gform_wrapper .select--wrapper::after {
    right: 40px;
    top: 32px; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .newsletter-signup__form,
    .gform_wrapper {
      height: 100%; } }

.gform_fields {
  padding-left: 0px; }

.gfield_label {
  display: none; }

.gfield {
  list-style: none;
  margin-bottom: 20px;
  width: 100%; }

.gfield input, .gfield select {
  width: 100%;
  height: 72px;
  background-color: white; }

.hidden_sub_label {
  display: none; }

.event-details__form {
  background-color: white;
  max-width: 465px;
  margin: 0px 60px;
  box-shadow: 0px 11px 19px 0px rgba(0, 0, 0, 0.15);
  padding: 40px 0px; }
  @media (max-width: 1060px) {
    .event-details__form {
      max-width: 100%;
      margin-left: 0px;
      width: 100%;
      padding: 20px;
      margin-bottom: 30px; } }
  .event-details__form .newsletter-signup__title {
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 36px; }
    @media (max-width: 1060px) {
      .event-details__form .newsletter-signup__title {
        font-size: 36px; } }
  .event-details__form .button {
    margin-top: 45px; }

.event-section > h2.event-sponsors__title {
  font-size: 18px;
  color: #1D1E1F;
  text-align: center;
  margin-bottom: 100px; }
  @media (max-width: 1060px) {
    .event-section > h2.event-sponsors__title {
      margin-bottom: 20px; } }
  .event-section > h2.event-sponsors__title::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #D8D8D8;
    display: inline-block;
    max-width: 400px;
    margin-right: 35px;
    vertical-align: middle; }
    @media (max-width: 1060px) {
      .event-section > h2.event-sponsors__title::before {
        width: 0%;
        margin-right: 0px; } }
  .event-section > h2.event-sponsors__title::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #D8D8D8;
    display: inline-block;
    max-width: 400px;
    margin-left: 35px;
    vertical-align: middle; }
    @media (max-width: 1060px) {
      .event-section > h2.event-sponsors__title::after {
        width: 0%;
        margin-left: 0px; } }

.event-sponsors {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin: -20px; }
  @media (max-width: 1060px) {
    .event-sponsors {
      margin: 0px;
      -ms-flex-pack: center;
          justify-content: center; } }
  .event-sponsors .sponsor {
    -ms-flex: 0 1 200px;
        flex: 0 1 200px;
    height: 100px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
        flex-flow: column;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    margin: 20px; }
    .event-sponsors .sponsor img {
      max-height: 100%;
      max-width: 200px;
      filter: none;
      -webkit-filter: grayscale(100%);
      -moz-filter: grayscale(100%);
      -ms-filter: grayscale(100%);
      -o-filter: grayscale(100%); }
    .event-sponsors .sponsor img:not(.lazy) {
      opacity: 0.6;
      transition: opacity 0.3s, filter 0.3s; }
    .event-sponsors .sponsor:hover img, .event-sponsors .sponsor:focus img {
      filter: none;
      opacity: 1.0; }
    .event-sponsors .sponsor.title-sponsor {
      height: 300px;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto; }

.become-sponsor {
  background-color: #F2F2F2;
  padding: 120px calc(50% - 1162px/2) !important;
  margin-bottom: 0px !important; }
  @media (max-width: 1060px) {
    .become-sponsor {
      padding: 0px 20px !important;
      margin-top: 30px; } }

.become-sponsor__title-photo {
  -ms-flex: 0 0 61% !important;
      flex: 0 0 61% !important;
  position: relative; }
  .become-sponsor__title-photo .parallelogram {
    position: absolute;
    margin: 0 !important;
    left: -40px;
    top: 25%;
    z-index: 0; }
  .become-sponsor__title-photo img {
    margin-top: -80px;
    z-index: 2;
    position: relative; }

.become-sponsor__form--wrapper {
  -ms-flex: 0 0 auto !important;
      flex: 0 0 auto !important;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 70px; }
  @media (max-width: 1060px) {
    .become-sponsor__form--wrapper {
      -ms-flex-item-align: center;
          -ms-grid-row-align: center;
          align-self: center; } }

.venue-location {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center; }
  @media (max-width: 1060px) {
    .venue-location {
      -ms-flex-flow: column;
          flex-flow: column;
      -ms-flex-pack: center;
          justify-content: center;
      text-align: center; } }

.venue-location__map {
  width: 788px;
  height: 543px;
  display: block; }
  @media (max-width: 1060px) {
    .venue-location__map {
      width: 100%; } }

.venue-location__details {
  -ms-flex: 0 1 320px;
      flex: 0 1 320px; }
  .venue-location__details h3 {
    border-bottom: 3px solid var(--brand-accent-color, #000000);
    padding-bottom: 20px; }
  .venue-location__details address,
  .venue-location__details p {
    font-style: normal;
    font-size: 24px;
    color: #292B2C; }
  .venue-location__details p {
    margin-bottom: 46px; }

.team-roster {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.team-roster__logo {
  vertical-align: middle; }

.team-roster__player {
  -ms-flex: 0 1 50%;
      flex: 0 1 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  @media (max-width: 1060px) {
    .team-roster__player {
      -ms-flex: 0 1 100%;
          flex: 0 1 100%; } }

.team-roster__player--number {
  margin-right: 20px;
  font-size: 60px;
  color: #FFFFFF;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; }

.team-roster__player--info h3 {
  margin-bottom: 0px; }

.site-header {
  background-color: #000000;
  height: 84px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 28px calc(50% - 1162px/2);
  z-index: 201;
  opacity: 0;
  transition: opacity 1s; }
  .site-header.in-view {
    opacity: 1; }
  @media (max-width: 1200px) {
    .site-header {
      padding: 28px; } }
  @media (max-width: 1060px) {
    .site-header {
      -ms-flex-flow: column;
          flex-flow: column;
      height: auto;
      -ms-flex-align: start;
          align-items: flex-start;
      padding: 16px;
      padding-left: 10px; } }

.header__logo {
  -ms-flex: 0 1 252px;
      flex: 0 1 252px;
  margin-right: 34px; }
  .header__logo img {
    vertical-align: middle; }
  @media (max-width: 1060px) {
    .header__logo {
      -ms-flex: auto;
          flex: auto;
      margin-right: 0;
      margin-bottom: 14px; }
      .header__logo img {
        max-width: 233px; } }

.header__menu {
  -ms-flex: 0 1 40%;
      flex: 0 1 40%; }
  @media (max-width: 1060px) {
    .header__menu {
      width: 100%;
      max-width: none; } }

.page__menu {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  position: relative;
  margin-left: 20px;
  border-left: 1px solid #FFFFFF;
  padding-left: 20px;
  width: 100%; }
  @media (max-width: 1060px) {
    .page__menu {
      margin-right: 20px;
      position: absolute;
      bottom: -235px;
      z-index: 20;
      border-left: none;
      padding: 0px 8px;
      margin: 0 auto;
      width: 100%;
      left: 0;
      right: 0; }
      .page__menu .nav-menu {
        overflow: unset; }
        .page__menu .nav-menu .nav-menu__item {
          font-size: 14px;
          margin-right: 0px; }
          .page__menu .nav-menu .nav-menu__item.event-logo {
            display: none !important; }
        .page__menu .nav-menu #FAQs {
          display: none; } }

.mobile-menu-toggle {
  display: none;
  font-size: 16px;
  padding: 10px 30px; }
  @media (max-width: 1060px) {
    .mobile-menu-toggle {
      display: block; } }

@media (max-width: 1060px) {
  .page__menu {
    bottom: -275px; }
  .mobile-menu-toggle {
    display: block; }
    .mobile-menu-toggle + .nav-menu {
      display: none;
      -ms-flex-flow: column;
          flex-flow: column;
      position: absolute;
      top: -100%;
      background-color: black;
      width: 250px;
      height: 400px;
      padding: 20px;
      right: -100%;
      transition: right 0.4s ease; }
      .mobile-menu-toggle + .nav-menu.show {
        display: -ms-flexbox;
        display: flex; }
      .mobile-menu-toggle + .nav-menu.slide-in {
        right: 0px; }
  .submenu {
    display: -ms-flexbox !important;
    display: flex !important;
    position: relative;
    padding: 0;
    -ms-flex-align: start;
        align-items: flex-start;
    background: black; }
  .mobile-menu-toggle + .nav-menu.show {
    -ms-flex-align: start;
        align-items: flex-start;
    overflow: scroll; }
  .mobile-menu-toggle + .nav-menu {
    height: 100vh;
    top: 0px;
    position: fixed;
    width: 300px; }
  .page__menu .nav-menu .nav-menu__item {
    margin: 5px 0px;
    margin-left: 20px;
    opacity: 1; } }

.site-footer {
  width: 100%; }

.home .site-footer {
  position: absolute;
  bottom: -150vh;
  z-index: 2; }

.footer-top {
  display: -ms-flexbox;
  display: flex;
  background: #FFFFFF;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 30px calc(50% - 1238px/2);
  padding-bottom: 0px; }
  @media (max-width: 1080px) {
    .footer-top {
      -ms-flex-direction: column;
          flex-direction: column; } }

.footer-icons {
  text-align: center;
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  max-height: 107px; }
  @media (max-width: 1080px) {
    .footer-icons {
      width: 100%; } }

.footer-logo {
  width: 180px;
  vertical-align: middle; }

.footer-social-links {
  list-style: none;
  padding-left: 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center; }
  .footer-social-links li {
    height: 40px;
    width: 40px; }
    .footer-social-links li a svg {
      width: 100%;
      height: 100%;
      fill: #1D1E1F; }

.footer-menu {
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  text-align: center; }
  .footer-menu .nav-menu {
    -ms-flex-pack: center;
        justify-content: center;
    padding-left: 0px;
    padding-top: 3px; }
    @media (max-width: 480px) {
      .footer-menu .nav-menu {
        -ms-flex-direction: column;
            flex-direction: column; } }
  .footer-menu .nav-menu__item {
    margin-right: 60px; }
    .footer-menu .nav-menu__item:last-of-type {
      margin-right: 0px; }
    .footer-menu .nav-menu__item a {
      color: #1D1E1F;
      text-decoration: none;
      font-weight: bold; }
    @media (max-width: 480px) {
      .footer-menu .nav-menu__item {
        margin-right: 0px;
        margin-bottom: 20px; } }
  @media (max-width: 1080px) {
    .footer-menu {
      width: 100%; } }

.footer-form--wrapper {
  -ms-flex: 0 1 508px;
      flex: 0 1 508px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end; }
  @media (max-width: 1080px) {
    .footer-form--wrapper {
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
      width: 100%;
      padding: 0px 20px 20px 20px; } }

.footer-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-top: -5px; }
  .footer-form input,
  .footer-form select {
    border: 1px solid #979797;
    color: #1D1E1F;
    font-size: 14px;
    margin-right: 3px;
    height: 47px; }
    @media (max-width: 1080px) {
      .footer-form input,
      .footer-form select {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 20px; } }
  .footer-form input {
    padding: 14px 14px 14px 10px; }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .footer-form input {
        padding-top: 10px; } }
  .footer-form select {
    padding: 0px;
    padding-left: 10px; }
  .footer-form .select--wrapper::after {
    right: 16px;
    top: 16px; }
  .footer-form button {
    background-color: #1D1E1F;
    max-width: 120px;
    padding: 14px 10px;
    margin: 0;
    font-size: 14px;
    border-radius: 2px; }
  @media (max-width: 1080px) {
    .footer-form {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-align: start;
          align-items: flex-start;
      width: 100%; } }

.footer-colophon {
  background-color: #1D1E1F;
  color: #FFFFFF;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  height: 75px;
  padding: 0 calc(50% - 1238px/2); }
  @media (max-width: 1258px) {
    .footer-colophon {
      padding: 0px 20px; } }
  .footer-colophon p {
    font-size: 12px; }
  @media (max-width: 1080px) {
    .footer-colophon {
      -ms-flex-direction: column;
          flex-direction: column;
      height: auto;
      -ms-flex-align: start;
          align-items: flex-start;
      padding: 20px; } }

.footer-colophon--links ul {
  list-style: none;
  padding-left: 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: space-between;
      align-items: space-between; }

.footer-colophon--links li {
  margin-right: 20px; }
  .footer-colophon--links li:last-of-type {
    margin-right: 0px; }

.footer-colophon--links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 12px; }

.event-section {
  padding: 0px calc(50% - 1162px/2);
  margin-bottom: 200px;
  position: relative; }
  @media (max-width: 1165px) {
    .event-section {
      padding: 20px; } }
  @media (max-width: 1060px) {
    .event-section {
      margin-bottom: 0px; } }
  .event-section.no-padding {
    padding: 0px; }
    @media (max-width: 1060px) {
      .event-section.no-padding h2 {
        padding-left: 20px; } }
  .event-section img.right {
    float: right; }
  .event-section figure.right {
    float: right; }
  .event-section img.center {
    margin-left: auto;
    margin-right: auto; }
  .event-section figure.center {
    margin-left: auto;
    margin-right: auto; }
  .event-section h2 {
    color: #1D1E1F;
    color: var(--brand-heading-color, #1D1E1F);
    font-size: 60px;
    font-weight: normal;
    margin-top: 20px; }
    @media (max-width: 1060px) {
      .event-section h2 {
        line-height: 1;
        font-size: 44px; } }
    @media (max-width: 375px) {
      .event-section h2 {
        font-size: 38px; } }
    @media (max-width: 320px) {
      .event-section h2 {
        font-size: 33px; } }
  .event-section.two-halves {
    display: -ms-flexbox;
    display: flex; }
    .event-section.two-halves div {
      -ms-flex: 0 1 50%;
          flex: 0 1 50%; }
    @media (max-width: 1060px) {
      .event-section.two-halves {
        -ms-flex-flow: column;
            flex-flow: column; }
        .event-section.two-halves div {
          -ms-flex: 0 0 100%;
              flex: 0 0 100%; } }
  .event-section .slide {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    padding: inherit;
    box-sizing: border-box;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s; }
  .event-section .showing {
    opacity: 1;
    z-index: 2; }

#bannerslides, #bannerslides2 {
  position: relative;
  padding-bottom: 30px; }

#bannerslides2 {
  padding-bottom: 40px !important;
  padding-top: 0px !important; }

@media (max-width: 1060px) {
  #bannerslides2 {
    margin-top: 40px !important;
    padding-bottom: 70px !important; } }

@media (max-width: 757px) {
  #bannerslides2 {
    padding-top: 20px !important;
    padding-bottom: 20px !important; } }

@media (min-width: 1060px) {
  #bannerslides2 {
    margin-top: -100px !important;
    margin-bottom: 100px !important; } }

.event-section .teams {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -40px;
  margin-right: -40px;
  -ms-flex-pack: center;
      justify-content: center; }
  @media (max-width: 1060px) {
    .event-section .teams {
      margin: auto; } }

.event-section .team {
  margin: 20px 13px;
  padding: 20px;
  width: 120px;
  height: 120px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center; }
  @media (max-width: 1060px) {
    .event-section .team {
      margin: 30px 11px;
      padding: 0px;
      width: 60px;
      height: 60px; } }
  .event-section .team img {
    height: 100px;
    width: 100%; }
    @media (max-width: 1060px) {
      .event-section .team img {
        width: 60px;
        height: 60px; } }
  .event-section .team:hover {
    background-color: #E2E2E2;
    border-radius: 50%; }

.event-info {
  margin-bottom: 40px; }

h2.teams__title {
  margin-top: 114px; }
  @media (max-width: 1060px) {
    h2.teams__title {
      margin-top: 60px; } }

.event-info__name {
  margin: 0;
  font-weight: bold;
  color: #292B2C;
  font-size: 30px; }

.event-info__date {
  margin: 10px 0px;
  font-weight: bold;
  color: #54585A;
  font-size: 24px; }

.event-info__location_time {
  margin: 0;
  color: #54585A; }

.event-section__photo {
  text-align: center; }
  .event-section__photo.travel {
    position: relative;
    margin-right: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
    @media (max-width: 1060px) {
      .event-section__photo.travel {
        display: none; } }
  .event-section__photo .about-photo {
    height: 600px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 40px; }
    @media (max-width: 1060px) {
      .event-section__photo .about-photo {
        display: none; } }

.event-section--bg-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #E2E2E2;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
  max-width: 80%; }
  .event-section--bg-shape.--flip {
    transform: rotate(180deg);
    max-width: 100%;
    margin-left: 15%; }

.events__footer-callout {
  min-height: 600px;
  background-color: #1D1E1F;
  margin-top: -220px;
  position: relative;
  margin-top: -200px;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  padding: 0px calc(50% - 600px);
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding-top: 200px;
  padding-bottom: 140px; }
  @media (max-width: 1060px) {
    .events__footer-callout {
      -ms-flex-flow: column;
          flex-flow: column;
      min-height: auto;
      padding: 200px 20px 20px 20px; } }
  .events__footer-callout .left,
  .events__footer-callout .right {
    -ms-flex: 0 1 536px;
        flex: 0 1 536px; }
    @media (max-width: 1060px) {
      .events__footer-callout .left,
      .events__footer-callout .right {
        -ms-flex: 0 1 auto;
            flex: 0 1 auto; } }
    .events__footer-callout .left h2,
    .events__footer-callout .right h2 {
      font-size: 60px;
      color: #FFFFFF;
      letter-spacing: 0;
      line-height: 40px; }
    .events__footer-callout .left .callout-image,
    .events__footer-callout .right .callout-image {
      position: relative;
      margin-top: 80px; }
      .events__footer-callout .left .callout-image::before,
      .events__footer-callout .right .callout-image::before {
        content: "";
        width: 209px;
        height: 46px;
        display: block;
        -webkit-clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
                clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
        position: absolute;
        z-index: 0;
        top: -30px;
        left: -60px; }
      .events__footer-callout .left .callout-image img,
      .events__footer-callout .right .callout-image img {
        z-index: 2;
        position: relative;
        height: auto; }
  .events__footer-callout .left .callout-image::before {
    background-color: var(--brand-accent-color, #DD0000); }
  .events__footer-callout .right .callout-image::before {
    background-color: var(--brand-heading-color, #000000); }

.ticket-packages--wrapper {
  margin-top: -200px;
  padding-top: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media (max-width: 1060px) {
    .ticket-packages--wrapper {
      margin-top: 0px;
      padding-top: 0px; } }
  .ticket-packages--wrapper .ticket-package {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
        flex-flow: column;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding: 10px; }
    .ticket-packages--wrapper .ticket-package .button {
      max-width: 400px; }

.promo-video iframe {
  width: 100%;
  max-width: 100%;
  height: 600px;
  box-shadow: 0 19px 11px #a1a1a1; }
  @media (max-width: 1060px) {
    .promo-video iframe {
      height: 250px; } }

.promo-video.event-section__photo iframe {
  height: 292px;
  max-width: 100%; }

.tickets-pricing--wrapper h2 {
  text-align: center; }

.tickets__description {
  -ms-flex: 0 1 50%;
      flex: 0 1 50%; }
  .tickets__description h3 {
    margin: 0px; }
  .tickets__description p {
    margin-bottom: 0px; }
  @media (max-width: 1060px) {
    .tickets__description {
      margin-bottom: 20px; } }

.ticket-pricing {
  padding: 30px 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center; }
  @media (max-width: 1060px) {
    .ticket-pricing {
      display: block;
      padding: 30px 10px; } }
  .ticket-pricing:nth-child(2n) {
    background-color: lightgray; }
  .ticket-pricing .tickets {
    -ms-flex: 0 1 40%;
        flex: 0 1 40%; }
  .ticket-pricing .ticket {
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0;
    -ms-flex-pack: justify;
        justify-content: space-between; }
    .ticket-pricing .ticket .ticket__name {
      -ms-flex: 0 1 80%;
          flex: 0 1 80%; }
    .ticket-pricing .ticket:first-of-type {
      border-bottom: 1px solid #303031; }
    .ticket-pricing .ticket:last-of-type {
      border-bottom: none;
      padding-bottom: 0; }

.banner-image {
  margin-bottom: 120px; }
  @media (max-width: 1060px) {
    .banner-image {
      margin-bottom: 60px; } }

body.tax-sports,
body.page-template-page-multiple-brackets {
  background-color: #000; }
  body.tax-sports .site-header,
  body.page-template-page-multiple-brackets .site-header {
    background-color: transparent;
    position: absolute;
    left: 0;
    right: 0; }
  body.tax-sports .alpha,
  body.page-template-page-multiple-brackets .alpha {
    padding: 0px calc(50% - 1162px/2);
    padding-top: 250px;
    padding-bottom: 104px;
    min-height: 650px !important; }
  @media (max-width: 898px) {
    body.tax-sports .alpha,
    body.page-template-page-multiple-brackets .alpha {
      min-height: auto;
      padding-left: 40px;
      padding-right: 40px;
      padding-top: 200px;
      padding-bottom: 60px; } }

.events-listing__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 0px calc(50% - 1162px/2);
  padding-bottom: 200px;
  margin-top: -350px; }
  @media (max-width: 1060px) {
    .events-listing__wrapper {
      padding: 40px; } }

.events-listing {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%; }
  @media (max-width: 1060px) {
    .events-listing {
      -ms-flex-pack: center;
          justify-content: center; } }

.events-listing__title {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0;
  margin-left: 8px;
  border-bottom: 2px solid #DD0000;
  font-weight: normal;
  z-index: 5; }
  @media (max-width: 1060px) {
    .events-listing__title {
      margin-bottom: 42px; } }

.events-listing__event {
  height: 206px;
  -ms-flex: 0 1 275px;
      flex: 0 1 275px;
  margin: 7px;
  background-color: #000;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-order: -1;
      order: -1; }

.events-listing__event.concluded {
  -ms-flex-order: 0;
      order: 0; }

.events-listing__event__background {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.4;
  z-index: 0;
  height: 100%;
  max-width: 1000px; }

.events-listing__event__logo {
  z-index: 1;
  width: auto;
  max-width: 200px;
  max-height: 80%; }

.events-listing__event__info {
  display: none; }

.events-listing__event:hover .events-listing__event__info,
.events-listing__event:focus .events-listing__event__info {
  display: block; }

.events-listing__event__filter {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #1D1E1F;
  opacity: 0.8;
  z-index: 2; }

.events-listing__event__info,
.events-listing__event__copy {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3; }

.events-listing__event__copy {
  text-align: center;
  margin: auto; }
  .events-listing__event__copy p {
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0; }
  .events-listing__event__copy h3 {
    font-family: "Archivo";
    font-size: 21px;
    color: #FFFFFF;
    letter-spacing: 0;
    margin-bottom: 0; }
  .events-listing__event__copy hr {
    border-bottom: 2px solid #D8D8D8;
    width: 100px;
    margin-bottom: 20px; }
  .events-listing__event__copy .button {
    font-size: 12px;
    padding: 10px;
    background-color: #DD0000;
    width: 187px;
    border-radius: 27px; }

.events-listings__concluded-tag {
  font-size: 12px;
  color: #1D1E1F;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  top: 0;
  padding: 5px 10px;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  z-index: 2; }

.matchup {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
  -ms-flex-align: center;
      align-items: center;
  max-width: 950px;
  margin: auto; }

.matchup_score {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex: 0 1 50%;
      flex: 0 1 50%;
  margin-bottom: 20px; }

.matchup_score img {
  max-height: 150px; }

.matchup .vs {
  font-family: "Archivo Black";
  font-size: 40px;
  color: #000000;
  letter-spacing: -2.97px;
  text-align: center; }

.matchup .vert-border {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  width: 1px;
  background-color: #C4C4C4; }

.score {
  text-align: center;
  font-size: 80px;
  margin-top: 20px;
  font-weight: bold;
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
  color: #f2f2f2; }

.score.winning {
  text-shadow: -2px -2px 0 #10CD60, 2px -2px 0 #10CD60, -2px 2px 0 #10CD60, 2px 2px 0 #10CD60; }

.livestream_wrapper {
  width: 100%;
  margin-top: 40px;
  display: block;
  font-weight: bold; }
  @media (max-width: 1060px) {
    .livestream_wrapper {
      margin-top: 20px; } }
  .livestream_wrapper .livestream {
    display: table;
    text-align: center;
    margin: 0 auto; }
    .livestream_wrapper .livestream .livestream_button {
      background: url(/wp-content/themes/espn/img/watch.png) no-repeat;
      background-size: contain;
      height: 60px;
      display: table-cell;
      padding-left: 10px;
      width: 290px;
      color: #FFFFFF;
      font-size: 14px;
      vertical-align: middle;
      text-decoration: none; }

@media (max-width: 1060px) {
  .matchup {
    -ms-flex-flow: column;
        flex-flow: column; }
  .matchup .vert-border {
    width: 100%;
    height: 1px;
    margin: 20px auto; } }

.visually-hidden {
  /* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

.skip-link {
  position: absolute;
  top: -1000px;
  left: -1000px;
  height: 1px;
  width: 1px;
  text-align: left;
  overflow: hidden; }

a.skip-link:active,
a.skip-link:focus,
a.skip-link:hover {
  left: 100px;
  height: auto;
  overflow: visible;
  z-index: 1000000;
  top: 10px;
  width: auto;
  color: white;
  padding: 10px 30px;
  border-radius: 6px;
  background: #DD0000; }

.truncate-overflow {
  --lh: 34px;
  --max-lines: 2;
  position: relative;
  max-height: calc(var(--lh) * var(--max-lines));
  overflow: hidden;
  padding-right: 1rem; }

.truncate-overflow::before {
  position: absolute;
  content: "...";
  inset-block-end: 0;
  inset-inline-end: 0; }

.truncate-overflow::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  width: 1rem;
  height: 1rem;
  background: white; }

@media (min-width: 1060px) {
  html, body {
    height: 100vh; }
  body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    background-color: #F2F2F2; }
  main.content-area {
    -ms-flex: 1 0 auto;
        flex: 1 0 auto; }
  footer {
    -ms-flex-negative: 0;
        flex-shrink: 0; } }

.photo-shadow.left {
  box-shadow: -30px -26px 0px var(--brand-accent-color, #DD0000);
  max-width: 500px; }
  @media (max-width: 1060px) {
    .photo-shadow.left {
      max-width: 100%; } }

.photo-shadow.right {
  box-shadow: 30px 26px 0px var(--brand-accent-color, #DD0000);
  max-width: 500px; }
  @media (max-width: 1060px) {
    .photo-shadow.right {
      max-width: 100%; } }

img {
  opacity: 1;
  transition: opacity 1s; }

.lazy {
  opacity: 0; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }

.embed-responsive .embed-responsive-item,
.embed-responsive iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }
