.ECalButton_ecal_button_container__2yB0S {
	overflow: hidden;
	padding: 2px;
	width: 224px;
    height: 54px;
}

.ECalButton_ecal_button__3hUJF {
    display: flex;
	width: 100%;
	height:100%;

    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
	position: relative;
	box-sizing: border-box ;
}

.ECalButton_ecal_button__3hUJF span:nth-child(5) {
		position: absolute;
		top: -2px;
		left: 0;
		width: 100%;
		height: 2px;
		display: none;
    }

.ECalButton_ecal_button__3hUJF span:nth-child(6) {
		position: absolute;
		top: -2px;
		right: -2px;
		width: 2px;
		height: 55px;
		display: none;
    }

.ECalButton_ecal_button__3hUJF span:nth-child(7) {
		position: absolute;
		bottom: -2px;
		left: 0;
		width: 100%;
		height: 2px;
		display: none;
    }

.ECalButton_ecal_button__3hUJF span:nth-child(8) {
		position: absolute;
		top: -2px;
		left: -2px;
		width: 2px;
		height: 55px;
		display: none;
    }

/*Competition colours*/

.ECalButton_DL__2h4wv {
    background: #00FFFF;
    background: var(--diamond-league-colour);
}

.ECalButton_IPM__wtdLU {
    background: #C8F977;
    background: var(--ipm-colour);
}

.ECalButton_XCP__3TQcp {
    background: #00A082;
    background: var(--xcp-colour);
}

.ECalButton_WCT__2MmcY {
    background: #FF873C;
    background: var(--wct-colour);
}

.ECalButton_light_border__2cQxI span:nth-child(1){ 
		background: linear-gradient(to right, #0c002b00, #f3f3f3); 
		background: linear-gradient(to right, #0c002b00, var(--grayscale-light));
	}

.ECalButton_light_border__2cQxI span:nth-child(2){
		background: linear-gradient(to bottom, #0c002b00, #f3f3f3);
		background: linear-gradient(to bottom, #0c002b00, var(--grayscale-light));
	}

.ECalButton_light_border__2cQxI span:nth-child(3){
		background: linear-gradient(to left, #0c002b00, #f3f3f3);
		background: linear-gradient(to left, #0c002b00, var(--grayscale-light));
	}

.ECalButton_light_border__2cQxI span:nth-child(4){
		background: linear-gradient(to top, #0c002b00, #f3f3f3);
		background: linear-gradient(to top, #0c002b00, var(--grayscale-light));
	}

.ECalButton_light_colour__g5z2v {
	color: #ffffff;
	color: var(--primary-text-colour);
}

.ECalButton_dark_border__1fvFi span:nth-child(1){
		background: linear-gradient(to right, #0c002b00, #1E1E1E);
		background: linear-gradient(to right, #0c002b00, var(--black));
	}

.ECalButton_dark_border__1fvFi span:nth-child(2){
		background: linear-gradient(to bottom, #0c002b00, #1E1E1E);
		background: linear-gradient(to bottom, #0c002b00, var(--black));
	}

.ECalButton_dark_border__1fvFi span:nth-child(3){
		background: linear-gradient(to left, #0c002b00, #1E1E1E);
		background: linear-gradient(to left, #0c002b00, var(--black));
	}

.ECalButton_dark_border__1fvFi span:nth-child(4){
		background: linear-gradient(to top, #0c002b00, #1E1E1E);
		background: linear-gradient(to top, #0c002b00, var(--black));
	}

.ECalButton_dark_colour__rspSa {
	color: #1E1E1E;
	color: var(--black);
}

.ECalButton_dark_colour__rspSa img {
		filter: grayscale(1) invert(1);
	}

.ECalButton_default__3SgXA {
    background: #A5FA64;
    background: var(--ecal-default-colour);
}

.ECalButton_ecal_text__3GA-6 {
    text-align: center;
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family-regular);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.ECalButton_icon__3mvp7 {
    width: 31px;
    height: 30px;
    flex-shrink: 0;
}

/* Animation part */

.ECalButton_ecal_button__3hUJF span:nth-child(1){
	position: absolute;
	top: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	animation: ECalButton_animate1__2uBs2 2s linear infinite;
}

@keyframes ECalButton_animate1__2uBs2{
	0%{
		transform: translateX(-100%);
	}

	100%{
		transform: translateX(100%);
	}
}

.ECalButton_ecal_button__3hUJF span:nth-child(2){
	position: absolute;
	top: 0;
	right: -2px;
	width: 2px;
	height: 100%;
	animation: ECalButton_animate2__39J9q 2s linear infinite;
	animation-delay: 1s;
}

@keyframes ECalButton_animate2__39J9q{
	0%{
		transform: translateY(-100%);
	}

	100%{
		transform: translateY(100%);
	}
}

.ECalButton_ecal_button__3hUJF span:nth-child(3){
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	animation: ECalButton_animate3__2oLmD 2s linear infinite;
}

@keyframes ECalButton_animate3__2oLmD{
	0%{
		transform: translateX(100%);
	}

	100%{
		transform: translateX(-100%);
	}
}

.ECalButton_ecal_button__3hUJF span:nth-child(4){
	position: absolute;
	top: 0;
	left: -2px;
	width: 2px;
	height: 100%;
	animation: ECalButton_animate4__32Vxn 2s linear infinite;
	animation-delay: 1s;
}

@keyframes ECalButton_animate4__32Vxn{
	0%{
		transform: translateY(100%);
	}

	100%{
		transform: translateY(-100%);
	}
}

/*Hoover stop*/

.ECalButton_dark_border__1fvFi:hover span:nth-child(1) {
		display: none;
		background: #1E1E1E;
		background: var(--black);
		animation-play-state: paused;
    }

.ECalButton_dark_border__1fvFi:hover span:nth-child(2) {
		display: none;
		background: #1E1E1E;
		background: var(--black);
		animation-play-state: paused;
    }

.ECalButton_dark_border__1fvFi:hover span:nth-child(3) {
		display: none;
		background: #1E1E1E;
		background: var(--black);
		animation-play-state: paused;
    }

.ECalButton_dark_border__1fvFi:hover span:nth-child(4) {
		display: none;
		background: #1E1E1E;
		background: var(--black);
		animation-play-state: paused;
    }

.ECalButton_dark_border__1fvFi:hover span:nth-child(5) {
		display: block;
		background: #1E1E1E;
		background: var(--black);
    }

.ECalButton_dark_border__1fvFi:hover span:nth-child(6) {
		display: block;
		background: #1E1E1E;
		background: var(--black);
    }

.ECalButton_dark_border__1fvFi:hover span:nth-child(7) {
		display: block;
		background: #1E1E1E;
		background: var(--black);
    }

.ECalButton_dark_border__1fvFi:hover span:nth-child(8) {
		display: block;
		background: #1E1E1E;
		background: var(--black);
    }

.ECalButton_dark_border__1fvFi:hover .ECalButton_in_banner__2NRZ7{
		border: none;
	}

.ECalButton_light_border__2cQxI:hover span:nth-child(1) {
		display: none;
		background: #f3f3f3;
		background: var(--grayscale-light);
		animation-play-state: paused;
    }

.ECalButton_light_border__2cQxI:hover span:nth-child(2) {
		display: none;
		background: #f3f3f3;
		background: var(--grayscale-light);
		animation-play-state: paused;
    }

.ECalButton_light_border__2cQxI:hover span:nth-child(3) {
		display: none;
		background: #f3f3f3;
		background: var(--grayscale-light);
		animation-play-state: paused;
    }

.ECalButton_light_border__2cQxI:hover span:nth-child(4) {
		display: none;
		background: #f3f3f3;
		background: var(--grayscale-light);
		animation-play-state: paused;
    }

.ECalButton_light_border__2cQxI:hover span:nth-child(5) {
		display: block;
		background: #f3f3f3;
		background: var(--grayscale-light);
    }

.ECalButton_light_border__2cQxI:hover span:nth-child(6) {
		display: block;
		background: #f3f3f3;
		background: var(--grayscale-light);
    }

.ECalButton_light_border__2cQxI:hover span:nth-child(7) {
		display: block;
		background: #f3f3f3;
		background: var(--grayscale-light);
    }

.ECalButton_light_border__2cQxI:hover span:nth-child(8) {
		display: block;
		background: #f3f3f3;
		background: var(--grayscale-light);
    }

.ECalButton_in_banner__2NRZ7 {
	border: 1px solid #1E1E1E;
	border: 1px solid var(--black);
  }

.ECalButton_in_banner__2NRZ7 span:nth-child(6) {
		position: absolute;
		top: -2px;
		right: -2px;
		width: 2px;
		height: 52px;
		display: none;
    }

.ECalButton_in_banner__2NRZ7 span:nth-child(8) {
		height: 52px;
    }
  
.styles_mobileNavigation__1FM6_ {
    background-color: #FFFFFF;
    background-color: var(--competition-mode-nav-background);
    border-top: 1px solid var(--border-color);
    position: relative;
    height: 75px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
}

.styles_navContainer__1kq_W {
    display: flex;
    justify-content: space-around;
    padding: 0.5rem;
    width: 100%;
}

.styles_fixed__3m6X0 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 50;
}

.styles_navContainer__1kq_W::after { display: none; }

.styles_navItem__3f4K_ {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
}

.styles_navLink__3o5Ic{
    justify-items: center;
}

.styles_navIcon__2irsw {
    padding: 3px;
    width: 30px;
    height: 30px;
}

.styles_navIcon--active__2zS7w {
    border: 1px solid #dfd0fa;
    border: 1px solid var(--quaternary-accent);
    border-radius: 8rem;
    background: #dfd0fa;
    background: var(--quaternary-accent);
}

.styles_navLabel__3ZOp2 {
    font-size: 0.75rem;
    font-weight: 500;
    color: #1E1E1E;
    color: var(--competition-mode-nav-default-color-black);
}

.styles_navLabel--active__SjGPG {
    font-size: 12px;
    font-weight: 700;
}

.HorizontalScroll_scroll__3U83v::-webkit-scrollbar {
    display: none;
}
.TimetableDayTitle_tableDay__2N0l2 {
  width: 50%;
  padding-left: 0.5em;
  border-top: 3px solid #bd94ff;
  border-top: 3px solid var(--timetable-day-title);
  margin-top: 1em;
  background-color: #262626;
  background-color: var(--primary-gray);
}

.TimetableDayTitle_tableDayTitle__11Q8z {
  font-size: 20px;
  color: #bd94ff;
  color: var(--timetable-day-title);
  padding: 0.2em 0;
}

.TimetableDayTitle_tableTitleContainer__3H6tA {
  background-color: #bd94ff;
  background-color: var(--timetable-table-header);
  padding-left: 0.5em;
}

.TimetableDayTitle_tableTitle__EnJbN {
  font-family:  'World Athletics',Arial,sans-serif, sans-serif;
  font-family:  var(--font-family), sans-serif;
  color: #262626;
  color: var(--primary-gray);
  font-size: 25px;
}

.TimetableDayTitle_tableEventTitle__1TkWp {
    font-family:  'World Athletics',Arial,sans-serif, sans-serif;
    font-family:  var(--font-family), sans-serif;
    color: #ffffff;
    color: var(--primary-text-colour);
    text-transform: capitalize;
    font-size: 30px;
}

@media not screen and (min-width: 1124px) {
  .TimetableDayTitle_tableDayTitle__11Q8z {
    font-size: 16px;
  }

  .TimetableDayTitle_tableTitle__EnJbN {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .TimetableDayTitle_tableDay__2N0l2 {
    width: 100%;
  }
}



.TimetableTabs_days__1KgUv {
  margin-right: 28px;
  text-align: left;
  cursor: pointer;
  border: none;
  outline: none;
}
.TimetableTabs_dayTitle__12VFt {
  font-size: 30px;
  color: #ffffff;
  color: var(--timetable-tab-day-title);
  width: max-content;
}
.TimetableTabs_dayDate__1aui4 {
  font-size: 16px;
  color: #ffffff;
  color: var(--timetable-tab-day-title);
  padding: 0.3em 0;
}
.TimetableTabs_active__1L-ln {
  border-bottom: 2px solid #bd94ff;
  border-bottom: 2px solid var(--timetable-tab-day-title-active);
}
.TimetableTabs_activeDayTitle__3kvxS {
  color: #bd94ff;
  color: var(--timetable-tab-day-title-active);
}
.TimetableTabs_activeDayDate__18Hu7 {
  color: #bd94ff;
  color: var(--timetable-tab-day-title-active);
}
@media not screen and (min-width: 1124px) {
  .TimetableTabs_dayTitle__12VFt {
    font-size: 22px;
  }

  .TimetableTabs_dayDate__1aui4 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .TimetableTabs_days__1KgUv {
    margin-right: 20px;
  }
  .TimetableTabs_dayTitle__12VFt {
    font-size: 18px;
  }
  .TimetableTabs_dayDate__1aui4 {
    font-size: 12px;
  }
}

.TimetableDays_daysContainer__3wBJM {
  display: flex;
  flex-direction: row;
}

@media (max-width: 767px) {
  .TimetableDays_timetableContainer__NI7pq {
    padding: 0.5em;
  }
}

.Arrow_arrow__1FLD9 {
  display: block;
  position: absolute;
  right: 3px;
  top: 50%;
  margin-top: calc(35px / -2);
  transition: transform .18s ease-in-out;
  vertical-align: -.125em;
}

  .Arrow_arrow__1FLD9.Arrow_up__Zw_X- {
    transform: rotate(180deg);
  }

  .Arrow_arrow__1FLD9.Arrow_down__3GrqQ {
    transform: rotate(0deg);
  }



.TableCollapsible_container__1qKjU {
  border: none;
}

  .TableCollapsible_container__1qKjU.TableCollapsible_hide__2wMmc {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

.TableCollapsible_tableWrap__2nsKT {
  overflow-x: auto;
  overflow-y: hidden;
}

.TableCollapsible_row__3Rxm4 {
  color: white;
  font-size: 0.9em;
  background: rgba(38, 38, 38, 0.9);
  border-bottom: 1px solid #262626;
  border-bottom: 1px solid var(--grayscale-dark);
}

.TableCollapsible_row__3Rxm4 td {
    position: relative;
  }

.TableCollapsible_cell__mKOw7 {
  box-sizing: border-box;
  padding: 0.8em 0.7em;
  text-align: left;
}

.TableCollapsible_headerCells__5eBtZ {
  color: white;
  background-color: #262626;
  background-color: var(--grayscale-dark);
  text-transform: uppercase;
}

.TableCollapsible_headerCells__5eBtZ span {
    display: inline-flex;
  }

.TableCollapsible_tablePanel__2rtPB {
  color: white;
  background-color: #253418;
  border-top: 1px solid #a5fa64;
  border-top: 1px solid var(--tertiary-colour);
  text-transform: uppercase;
  padding: .75em;
  cursor: pointer;
  position: relative;
}

.TableCollapsible_field__22Q_N.TableCollapsible_tablePanel__2rtPB {
    border-color: #69d7e1;
    border-color: var(--secondary-colour);
    background-color: #173032;
    background-color: var(--secondary-accent-dark);
  }


.ResultsLOC_wrapper__1bkKW {
  background-size: cover;
  padding: 0 1em;
  overflow: auto;
}
  .ResultsLOC_wrapper__1bkKW.ResultsLOC_defaultBackground__3GPMB {
    background-color: #fff;
  }
  .ResultsLOC_wrapper__1bkKW.ResultsLOC_afterLoadBackground__3zHOy {
    background: #262626;
    background: var(--primary-gray);
  }
.ResultsLOC_contentWrap__2eKZs {
  max-width: 1400px;
  margin: 3em auto;
}
.ResultsLOC_unitTabs__20xTk .ResultsLOC_unitTab__2LRPx {
    display: inline-block;
    color: white;
    background-color: #262626;
    background-color: var(--grayscale-dark);
    font-size: 1.125rem;
  }
.ResultsLOC_unitTabs__20xTk .ResultsLOC_unitTab__2LRPx {
    padding: .25em 1em;
    margin-right: .1em;
    box-sizing: border-box;
    text-transform: capitalize;
  }
.ResultsLOC_unitTabs__20xTk .ResultsLOC_unitTab__2LRPx:hover {
      cursor: pointer;
      border-top: 2px solid #a5fa64;
      border-top: 2px solid var(--tertiary-colour);
    }
.ResultsLOC_unitTabActive__1e8HU {
  border-top: 2px solid #a5fa64;
  border-top: 2px solid var(--tertiary-colour);
}
.ResultsLOC_unitMeta__14lsE {
  background-color: #262626;
  background-color: var(--grayscale-dark);
}
@media screen and (min-width: 1200px) {
.ResultsLOC_unitMeta__14lsE {
    display: flex
}
  }
.ResultsLOC_unitMetaWrap__2f6rm {
  display: inline-block;
  font-size: 1.125rem;
  text-transform: uppercase;
  padding: .5em .75em;
  background-color: #a5fa64;
  background-color: var(--tertiary-colour);

}
@media screen and (min-width: 1200px) {
.ResultsLOC_unitMetaWrap__2f6rm {
    width: 60%

}
  }
.ResultsLOC_qualificationRules__A_SXe {
  background-color: #262626;
  background-color: var(--grayscale-dark);
  padding: .5em 1em;
  color: #a5fa64;
  color: var(--tertiary-colour);
  border-top: 1px solid #a5fa64;
  border-top: 1px solid var(--tertiary-colour);
  text-align: right;
}
.ResultsLOC_unitName__2Wlrh {
  display: inline-block;
  margin-right: 1em;
}
.ResultsLOC_unitWind__2PRiw {
  display: inline-block;
}
.ResultsLOC_metaTime__3uzW8 {
  display: inline-block;
}
@media screen and (min-width: 768px) {
.ResultsLOC_metaTime__3uzW8 {
    float: right
}
  }
.ResultsLOC_field__58_0i .ResultsLOC_unitMetaWrap__2f6rm {
    background-color: #69d7e1;
    background-color: var(--secondary-colour);
  }
.ResultsLOC_field__58_0i .ResultsLOC_unitTabActive__1e8HU,
  .ResultsLOC_field__58_0i .ResultsLOC_unitTab__2LRPx:hover {
    border-color: #69d7e1;
    border-color: var(--secondary-colour);
  }
.ResultsLOC_field__58_0i .ResultsLOC_qualificationRules__A_SXe {
    border-color: #69d7e1;
    border-color: var(--secondary-colour);
    color: #69d7e1;
    color: var(--secondary-colour);;
  }
.ResultsLOC_windValue__qCqCo {
  color: #a5fa64;
  color: var(--tertiary-colour);
}
.ResultsLOC_trackWindValue__1MFMU {
  color: #69d7e1;
  color: var(--secondary-colour)
}
.ResultsLOC_mark__38NvV {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(255,255,255,0.1);
}
@media screen and (max-width: 1023px) {
.ResultsLOC_mark__38NvV {
    font-size: 12px
}
  }
.ResultsLOC_top3__pV8E0 {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  color: #262626;
  color: var(--primary-gray);
  background-color: #a5fa64;
  background-color: var(--tertiary-colour);
  text-align: center;
}
.ResultsLOC_centerText__1dIwe {
  text-align: center;
}
.ResultsLOC_top3Val__2Dxi- {
  position: relative;
  top: 25%;
  transform: translateY(-25%);
}
.ResultsLOC_fieldTop3__3GPaC {
  background-color: #69d7e1;
  background-color: var(--secondary-colour);
}
.ResultsLOC_intWind__DJhUM {
  margin-left: .5em;
}
.ResultsLOC_noData__3x-1T {
  color: white;
  padding: 1em;
  background-color: rgba(0,0,0,0.5);
}
.ResultsLOC_qualifiedBadge__3sxGn {
  font-size: 14px;
  background: #262626;
  display: inline-block;
  padding: .2em .5em;
}
.ResultsLOC_closeModal__3JlIn {
  float: right;
  cursor: pointer;
  margin-bottom: 1em;
}
.FollowAthlete_container__3m0IT div {
    display: inline-block;
    vertical-align: middle;
  }
    .FollowAthlete_container__3m0IT div.FollowAthlete_followMeWrap__2SMLT {
        display: flex;
        align-items: center;
        transition: all 0.25s;
      }
    .FollowAthlete_container__3m0IT div.FollowAthlete_followMeWrap__2SMLT:hover {
          color: #ff873c;
          color: var(--primary-colour);
        }
    .FollowAthlete_container__3m0IT div.FollowAthlete_followMeWrap__2SMLT:hover svg{
          fill: #ff873c;
          fill: var(--primary-colour);
        }
    .FollowAthlete_container__3m0IT div.FollowAthlete_followedWrap__1LGNq {
        display: flex;
        align-items: center;
        transition: all 0.25s;
      }
    .FollowAthlete_container__3m0IT div.FollowAthlete_followedWrap__1LGNq:hover {
          color: #ff873c;
          color: var(--primary-colour);
        }
    .FollowAthlete_container__3m0IT div.FollowAthlete_followedWrap__1LGNq:hover svg{
          fill: #ff873c;
          fill: var(--primary-colour);
        }
    .FollowAthlete_container__3m0IT div.FollowAthlete_followedWrap__1LGNq .FollowAthlete_followMe__NFlps {
          color: #ff873c;
          color: var(--primary-colour);
        }
  .FollowAthlete_container__3m0IT .FollowAthlete_label__1P_xS {
    font-size: 18px;
    padding-top: 3px;
    margin-right: .75em;
  }

.FollowAthlete_btnContainer__3-5hL {
  color: black;
  padding: 1em;
  text-transform: uppercase;
  background-color: #bd94ff;
  background-color: var(--quaternary-colour);
}

.FollowAthlete_btnContainer__3-5hL:hover {
    background-color: #9D6EE9
  }

.FollowAthlete_closeModal__o10pI {
  float: right;
  cursor: pointer;
  margin-bottom: 1em;
}

.FollowAthlete_followMe__NFlps {
  margin-right: 5px;
}

.FollowAthlete_starEmpty__1OEYq {
  fill: #000000;
  transition: all 0.25s;
}

.FollowAthlete_fullBtnBlack__2vQlc {
  background-color: #000;
  color: #fff;
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family);
  padding: 10px;
  text-align: center;
  font-size: 22px;
  margin: 10px auto;
  border-radius: 5px;
  min-width: 275px;
  display: flex;
  justify-content: center;
}

.FollowAthlete_fullBtnBlack__2vQlc .FollowAthlete_competitorName__3gpuA {
    margin-left: 10px;
  }

.FollowAthlete_fullBtnBlack__2vQlc .FollowAthlete_followedWrap__1LGNq svg {
      margin-top: 2px;
    }

.ProfileLinks_profileLinkTeam__1xXJb .ProfileLinks_main__1b_tF {
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family-regular);
    font-size: 0.9rem;
  }

.ProfileLinks_competitor__3d_ny {
  display: flex;
}

.ProfileLinks_competitor__3d_ny button {
    margin-right: 5px;
  }

.ProfileLinks_fadeOut__2H1N7 {
  opacity: 0.7;
}

.Documents_documents__1vYGd {
  color: white;
  float: right;
  padding: .2em;
  width: 100%;
}

  @media screen and (min-width: 768px) {.Documents_documents__1vYGd {
    text-align: right
}
  }

.Documents_old__7qfyc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.Documents_docsItem__3CVBR {
  display: inline-block;
  margin-left: 1.5em;
  padding-top: .5em;
}

.Documents_docsLabel__F5CJz {
  float: left;
  color: #a5fa64;
  color: var(--tertiary-colour);
  margin-right: .4em;
  padding-top: .1em;
  text-transform: capitalize;
}

.Documents_docsOptions__1ntD7 {
  float:right;
}

.Documents_docsOptions__1ntD7 .Documents_docsView__2UseH,
  .Documents_docsOptions__1ntD7 .Documents_docsDownload__2wpgr {
    display: block;
    float: left;
    padding: .25em;
  }

.Documents_docsOptions__1ntD7 .Documents_docsView__2UseH img, .Documents_docsOptions__1ntD7 .Documents_docsDownload__2wpgr img {
      height: 18px;
      width: 18px;
    }

.Documents_new__22qft {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 1024px) {

.Documents_new__22qft {
    flex-direction: column
}
  }

.Documents_new__22qft .Documents_photoFinish__27maQ {
    color: #5E318F;
    color: var(--guangzhou-purple);
    white-space: nowrap;
  }

.Documents_docsPhoto__3UQcY {
  padding-top: .3em;
}

.Documents_docsPhoto__3UQcY.Documents_docsItem__3CVBR {
    margin-left: 1em;
  }

.Documents_docsPhoto__3UQcY .Documents_doscLabel__19yxb {
    padding-top: 0;
  }

.Documents_docsPhoto__3UQcY .Documents_docsView__2UseH {
    color: #a5fa64;
    color: var(--tertiary-colour);
  }

.Documents_docsPhoto__3UQcY {
  float: left;
}

.Documents_seikoIcon__1CpsV {
  height: 18px;
  margin-top: 0.3em;
}

.Documents_field__2EXWj .Documents_docsLabel__F5CJz {
    color: #5E318F;
    color: var(--guangzhou-purple)
  }

.Documents_documents__1vYGd.Documents_new__22qft {
  padding: 0;
}

.Documents_documents__1vYGd.Documents_new__22qft .Documents_icon__3BvHo {
    color: #5E318F;
    color: var(--guangzhou-purple);
    width: 1em;
    height: 1em;
  }

.Documents_documents__1vYGd.Documents_new__22qft .Documents_docsOptions__1ntD7 {
    display: flex;
    gap: 10px;
  }

@media screen and (max-width: 767px) {

.Documents_documents__1vYGd.Documents_new__22qft .Documents_docsOptions__1ntD7 {
      width: 100px;
      justify-content: right
  }
    }

.Documents_documents__1vYGd.Documents_new__22qft .Documents_docsOptions__1ntD7 .Documents_docsView__2UseH,
    .Documents_documents__1vYGd.Documents_new__22qft .Documents_docsOptions__1ntD7 .Documents_docsDownload__2wpgr {
      padding: 0;
    }

.Documents_documents__1vYGd.Documents_new__22qft .Documents_docsOptions__1ntD7 .Documents_docsView__2UseH img, .Documents_documents__1vYGd.Documents_new__22qft .Documents_docsOptions__1ntD7 .Documents_docsDownload__2wpgr img {
        height: 18px;
        width: 18px;
      }

.Documents_documents__1vYGd.Documents_new__22qft .Documents_docsItem__3CVBR {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border-bottom: none;
    width: min-content;
    margin-left: 0;
    max-width: 300px;
    min-width: 130px;
    height: 32px;
  }

@media screen and (max-width: 1024px) {

.Documents_documents__1vYGd.Documents_new__22qft .Documents_docsItem__3CVBR {
      width: 100%;
      margin-left: 0;
      max-width: unset
  }
    }

.Documents_documents__1vYGd.Documents_new__22qft .Documents_docsItem__3CVBR div::after {
      content: none;
    }

.Documents_documents__1vYGd.Documents_new__22qft .Documents_docsView__2UseH {
    color: #1E1E1E;
  }

.Documents_documents__1vYGd.Documents_new__22qft .Documents_docsLabel__F5CJz {
    flex: 1 1;
    font-size: 14px;
    font-weight: 500;
    color: #1E1E1E;
    white-space: nowrap;
  }

@media screen and (min-width: 1025px) {

.Documents_documents__1vYGd.Documents_new__22qft .Documents_docsLabel__F5CJz {
      font-size: 12px;
      text-wrap-mode: nowrap
  }
    }

.Documents_documents__1vYGd.Documents_new__22qft .Documents_docsOptions__1ntD7 {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    padding-left: 5px;
    width: fit-content;
  }

.Documents_documents__1vYGd.Documents_new__22qft .Documents_docsOptions__1ntD7::before {
    content: "";
    width: 1px;
    height: 18px;
    background-color: #ccc;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

.Documents_documents__1vYGd.Documents_new__22qft .Documents_seikoIcon__1CpsV {
    height: 22px;
    margin-top: 0;
  }

@media screen and (min-width: 768px) {

.Documents_documents__1vYGd.Documents_new__22qft {
    text-align: left
}
  }



.ResultsFanZone_wrapper__1UrKH {
  background-size: cover;
  overflow: auto;

}

  .ResultsFanZone_wrapper__1UrKH table {
    min-width: fit-content;
  }
.ResultsFanZone_contentWrap__1Pgt3 {
  max-width: 1400px;
}
.ResultsFanZone_contentWrap__1Pgt3 th, .ResultsFanZone_contentWrap__1Pgt3 td {
    max-width: 250px;
    font-size: 12px;
  }
.ResultsFanZone_contentWrap__1Pgt3 th{
    font-size: 0.875rem;
    border-bottom: 1px solid #262626;
    border-bottom: 1px solid var(--grayscale-dark);
  }
.ResultsFanZone_contentWrap__1Pgt3 td {
    background-color: white;
    border-bottom: 1px solid #dedede;
    border-bottom: 1px solid var(--grayscale-mid-light);
  }
.ResultsFanZone_container__325kQ {
  overflow-x: auto;
  max-height: 320px;
  overflow-y: auto;
}
.ResultsFanZone_tableWrap__1XlQ- {
  overflow-x: auto;
  max-height: 320px;
  overflow-y: auto;
}
.ResultsFanZone_unitTabs__1YAPF {
  overflow: auto;
}
.ResultsFanZone_unitTabs__1YAPF .ResultsFanZone_unitTab__38lAq {
    display: inline-block;
    color: black;
    font-size: 1rem;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
  }
.ResultsFanZone_unitTabs__1YAPF .ResultsFanZone_unitTab__38lAq {
    padding: .25em .25em;
    margin-right: .1em;
    box-sizing: border-box;
    text-transform: capitalize;
  }
.ResultsFanZone_unitTabs__1YAPF .ResultsFanZone_unitTab__38lAq:hover {
      cursor: pointer;
      border-bottom: 2px solid #9D6EE9;
      border-bottom: 2px solid var(--purple-colour);
    }
@media (max-width: 767px) {
  .ResultsFanZone_unitTabs__1YAPF {
    max-width: 80vw;
  }
}
.ResultsFanZone_unitTabActive__1fNhO {
  border-bottom: 2px solid #9D6EE9;
  border-bottom: 2px solid var(--purple-colour);
}
.ResultsFanZone_unitMeta__Kf_7y {
  background-color: #262626;
  background-color: var(--grayscale-dark);
}
@media screen and (min-width: 1200px) {
.ResultsFanZone_unitMeta__Kf_7y {
    display: flex
}
  }
.ResultsFanZone_unitMetaWrap__3pUUA {
  display: inline-block;
  font-size: 1.125rem;
  text-transform: uppercase;
  padding: .5em .75em;
  background-color: #9D6EE9;
  background-color: var(--purple-colour);

}
@media screen and (min-width: 1200px) {
.ResultsFanZone_unitMetaWrap__3pUUA {
    width: 60%

}
  }
.ResultsFanZone_qualificationRules__28k4W {
  background-color: #262626;
  background-color: var(--grayscale-dark);
  padding: .5em 1em;
  color: #9D6EE9;
  color: var(--purple-colour);
  border-bottom: 1px solid #9D6EE9;
  border-bottom: 1px solid var(--purple-colour);
  text-align: right;
}
.ResultsFanZone_unitName__votRo {
  display: inline-block;
  margin-right: 1em;
}
.ResultsFanZone_unitWind__zsgFD {
  display: inline-block;
}
.ResultsFanZone_metaTime__36sGS {
  display: inline-block;
}
@media screen and (min-width: 768px) {
.ResultsFanZone_metaTime__36sGS {
    float: right
}
  }
.ResultsFanZone_field__2GrP5 .ResultsFanZone_unitMetaWrap__3pUUA {
    background-color: #69d7e1;
    background-color: var(--secondary-colour);
  }
.ResultsFanZone_field__2GrP5 .ResultsFanZone_unitTabActive__1fNhO,
  .ResultsFanZone_field__2GrP5 .ResultsFanZone_unitTab__38lAq:hover {
    border-color: #9D6EE9;
    border-color: var(--purple-colour);
  }
.ResultsFanZone_field__2GrP5 .ResultsFanZone_qualificationRules__28k4W {
    border-color: #69d7e1;
    border-color: var(--secondary-colour);
    color: #69d7e1;
    color: var(--secondary-colour);;
  }
.ResultsFanZone_windValue__3H72Q {
  color: #9D6EE9;
  color: var(--purple-colour);
}
.ResultsFanZone_trackWindValue__3XXie {
  color: #69d7e1;
  color: var(--secondary-colour)
}
.ResultsFanZone_mark__1ZaUZ {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255,255,255,0.1);
}
@media screen and (max-width: 1023px) {
.ResultsFanZone_mark__1ZaUZ {
    font-size: 12px
}
  }
.ResultsFanZone_top3__1zXff {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #262626;
  color: var(--primary-gray);
  background-color: #9D6EE9;
  background-color: var(--purple-colour);
  text-align: center;
}
.ResultsFanZone_centerText__7X4ER {
  text-align: center;
}
.ResultsFanZone_top3Val__2BGbu {
  top: 25%;
  transform: translateY(-25%);
}
.ResultsFanZone_fieldTop3__2Qo5U {
  background-color: #69d7e1;
  background-color: var(--secondary-colour);
}
.ResultsFanZone_intWind__1rkuY {
  margin-left: .5em;
}
.ResultsFanZone_noData__1feK8 {
  color: white;
  padding: 1em;
  background-color: rgba(0,0,0,0.5);
}
.ResultsFanZone_contentWrapFanZone__7VlbO{
  width: 100%;
}
.ResultsFanZone_noDataFanZone__31MV5{
  display: block;
  width: 100%;
  font-size: 0.875rem;
  color: #0E0E0E;
  color: var(--primary-dark);
  padding: 1rem;
  background-color: #dcdcdc;
}
.ResultsFanZone_qualifiedBadge__3Iolw {
  font-size: 14px;
  background: #262626;
  display: inline-block;
  padding: .2em .5em;
  color: white;
}
.ResultsFanZone_closeModal__2Lj8- {
  float: right;
  cursor: pointer;
  margin-bottom: 1em;
}
.fanZoneTimeTableContentAthletesList_timeTableSubcellContainer__2u0cV {
    display: flex;
    justify-content: space-between;
  flex-wrap: wrap;
  }

.fanZoneTimeTableContentAthletesList_timeTableSubheaderContainer__16sxE{
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.fanZoneTimeTableContentAthletesList_timeTableSubrowContainer__394Db{
    display: flex;
    padding: 16px;
    padding-left: 0px;
    gap: 24px;
}

.fanZoneTimeTableContentAthletesList_timeTableSubheaderContainer__16sxE div::after {
    display: none;
    content: none;

  }

.fanZoneTimeTableContentAthletesList_timeTableSubheader__3AznI{
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
  display: flex;
  justify-content: space-between;
}

.fanZoneTimeTableContentAthletesList_timeTableSubheader__3AznI a {
    color: #9D6EE9;
    color: var(--purple-colour);
  }

.fanZoneTimeTableContentAthletesList_timeTableSubheaderContainer__16sxE::after{
    content: unset!important;
}

.fanZoneTimeTableContentAthletesList_timeTableSubrow__2LJ8E{
    padding-bottom: 8px;
}

.fanZoneTimeTableContentAthletesList_timeTableSubrow__2LJ8E.fanZoneTimeTableContentAthletesList_selected__1dVL8{
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
    border-bottom: 1px solid #9D6EE9;
    border-bottom: 1px solid var(--purple-colour);
}

.fanZoneTimeTableContentAthletesList_timeTableSubcell__2u3CH {
    display: flex;
    gap: 16px;
    padding: 5px 0;
    text-align: left;
    flex: 0 0 max(45%, 250px);
    box-sizing: border-box;
  }

.fanZoneTimeTableContentAthletesList_timeTableDropdown__cfjcL{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
  }

.fanZoneTimeTableContentAthletesList_viewMoreAthletes__1sGnM {
    cursor: pointer;
    color: #9D6EE9;
    color: var(--purple-colour);
  }

.fanZoneTimeTableContentAthletesList_viewMoreAthletes__1sGnM:hover {
    text-decoration: underline;
  }

.fanZoneTimeTableContentAthletesList_resultsTable__3yhBs {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    text-align: left;
  }

.fanZoneTimeTableContentAthletesList_resultsTableThead__3Cnlp {
    border-bottom: 1px solid black;
    color: #333;
  }

.fanZoneTimeTableContentAthletesList_resultsTableTheadTh__2hvnC {
    padding: 8px;
    white-space: nowrap;
  }

.fanZoneTimeTableContentAthletesList_resultsTableTbodyTr__2icr3 {
    background-color: white;
  }

.fanZoneTimeTableContentAthletesList_resultsTableTbodyTd__2SmdY {
    padding-left: 8px;
    height: 42px;
    font-size: 0.875rem;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
    white-space: nowrap;
  }

.fanZoneTimeTableContentAthletesList_resultsTableTbodyTdFlag__1mjya{
    flex-wrap: wrap;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

  }

.fanZoneTimeTableContentAthletesList_resultsTableTbodyTdFlag__1mjya svg {
      filter: invert(1);
    }

.fanZoneTimeTableContentAthletesList_resultsTableTbodyTr__2icr3:nth-of-type(even) {
    background-color: white;
  }
  
  
.fanZoneTimeTableContentCollapsibleRow_timeTableSubheader__3XFsD {
    font-weight: bold;
    margin-bottom: 8px;
}
.fanZoneTimeTableContentCollapsibleRow_timeTableRow__3aLE1 {
    background: white;
}
.fanZoneTimeTableContentCollapsibleRow_timeTableRow__3aLE1,.fanZoneTimeTableContentCollapsibleRow_timeTableSubcontent__yFp-v{
    height: 42px;
}
.fanZoneTimeTableContentCollapsibleRow_timeTableRow__3aLE1 td{
    padding: 0px 12px;
}
.fanZoneTimeTableContentCollapsibleRow_timeTableSubcontentContainer__17IS7{
    padding: 16px;
    background-color: #F0F0F0;
}
.fanZoneTimeTableContentCollapsibleRow_timeTableCell__fHs9- {
    text-align: start;
}


.TimetableBody_tableRow__PlkNr {
    height: 2em;
    background-color: var(--timetable-table-item);
    color: #ffffff;
    color: var(--timetable-table-item-text);
  }

  .TimetableBody_tableRow__PlkNr:hover {
    background-color: #ff873c;
    background-color: var(--timetable-table-item-highlight);
  }

  .TimetableBody_cell__tT4sD {
    text-align: left;
    color: #ffffff;
    color: var(--primary-text-colour);
  }

  .TimetableBody_tableRow__PlkNr:hover .TimetableBody_cell__tT4sD {
      color: #ffffff;
      color: var(--timetable-table-item-text-highlight);
    }

  .TimetableBody_tableDataTime__2Pr4h {
    padding: 0.3em 0.5em;
    flex-wrap: wrap;
    width: 15%;
  }

  .TimetableBody_tableDataDay__2eMNu {
    padding: 0.3em 0.5em;
    flex-wrap: wrap;
    width: 20%;
  }

  .TimetableBody_tableDataSex__2fvUi {
    padding: 0.3em 0.5em;
    width: 10%;
  }

  .TimetableBody_tableDataEvent__F99Yg {
    padding: 0.3em 0.5em;
    width: 25%;
  }

  .TimetableBody_tableDataRound__Ki5zI {
    padding: 0.3em 0.5em;
  }

  .TimetableBody_tableDataLink__2wG_h {
    padding: 0.3 0.5em;
  }

  .TimetableBody_tableDataLink__2wG_h:hover {
    text-decoration: underline;
  }

  .TimetableBody_round__2vSG0 {
    text-transform: capitalize;
  }

  @media not screen and (min-width: 1124px) {
    .TimetableBody_tableDataTime__2Pr4h,
    .TimetableBody_tableDataSex__2fvUi,
    .TimetableBody_tableDataEvent__F99Yg,
    .TimetableBody_tableDataRound__Ki5zI,
    .TimetableBody_tableDataLink__2wG_h {
      font-size: 14px;
    }
  }

  @media (max-width: 767px) {
    .TimetableBody_tableDataTime__2Pr4h,
    .TimetableBody_tableDataSex__2fvUi,
    .TimetableBody_tableDataEvent__F99Yg,
    .TimetableBody_tableDataRound__Ki5zI,
    .TimetableBody_tableDataLink__2wG_h {
      font-size: 12px;
    }

    .TimetableBody_tableDataRound__Ki5zI {
      padding-right: 1em;
    }
    .TimetableBody_tableDataLink__2wG_h {
      padding: 0.3em 0.5em 0.3em 2em;
    }
  }


.TimetableTitles_tableHeader__2aloq {
  background-color: #262626;
  background-color: var(--timetable-table-subheader);
  text-transform: uppercase;
  font-size: 20px;
}

.TimetableTitles_tableDataTime__3gMB- {
  text-align: left;
  color: #ffffff;
  color: var(--timetable-table-subheader-text);
  padding: 0.3em 0.5em;
  flex-wrap: wrap;
  width: 15%;
}

.TimetableTitles_tableDataDay__2VDXf {
    text-align: left;
    color: #ffffff;
    color: var(--timetable-table-subheader-text);
    padding: 0.8em 0.5em;
    flex-wrap: wrap;
    width: 20%;
}

.TimetableTitles_tableDataSex__3dyoa {
  text-align: left;
  color: #ffffff;
  color: var(--timetable-table-subheader-text);
  padding: 0.3em 0.5em;
  width: 10%;
}

.TimetableTitles_tableDataEvent__2FWGX {
  text-align: left;
  color: #ffffff;
  color: var(--timetable-table-subheader-text);
  padding: 0.3em 0.5em;
  width: 25%;
}

.TimetableTitles_tableDataRound__B-twI {
  text-align: left;
  color: #ffffff;
  color: var(--timetable-table-subheader-text);
  padding: 0.3em 0.5em;
}

.TimetableTitles_tableDataLink__1PLhK {
  text-align: left;
  color: #ffffff;
  color: var(--timetable-table-subheader-text);
  padding: 0 0.5em;
}

.TimetableTitles_tableDataLink__1PLhK:hover {
  text-decoration: underline;
}

@media not screen and (min-width: 1124px) {
  .TimetableTitles_tableDataTime__3gMB-,
  .TimetableTitles_tableDataSex__3dyoa,
  .TimetableTitles_tableDataEvent__2FWGX,
  .TimetableTitles_tableDataRound__B-twI,
  .TimetableTitles_tableDataLink__1PLhK {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .TimetableTitles_tableDataTime__3gMB-,
  .TimetableTitles_tableDataSex__3dyoa,
  .TimetableTitles_tableDataEvent__2FWGX,
  .TimetableTitles_tableDataRound__B-twI,
  .TimetableTitles_tableDataLink__1PLhK {
    font-size: 12px;
  }
}



.TimetableType_typeContainer__1xTdL {
  display: flex;
  justify-content: flex-end;
}

.TimetableType_link__3iizh {
  background-color: #1e1e1e;
  background-color: var(--dark-line);
  color: #f0f0f0;
  color: var(--tertiary-gray);
  width: 286px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.TimetableType_active__JvJsB {
  background-color: #f0f0f0;
  background-color: var(--tertiary-gray);
  color: #1e1e1e;
  color: var(--dark-line);
}

.TimetableType_linkContainer__2GNR4:hover {
  cursor: pointer;
}

@media not screen and (min-width: 1124px) {
  .TimetableType_link__3iizh {
    height: 33px;
    width: 143px;
    margin-bottom: 30px;
  }
}



.TimetableSession_tableRow__1373a {
    height: 2em;
}

    .TimetableSession_tableRow__1373a:hover {
        background-color: #ff873c;
        background-color: var(--timetable-table-item-highlight);
        color: #ffffff;
        color: var(--timetable-table-item-text-highlight)
    }

    .TimetableSession_tableDataTime__-1zIU {
    text-align: left;
    color: #ffffff;
    color: var(--primary-text-colour);
    padding: 0.3em 0.5em;
    flex-wrap: wrap;
    width: 15%;
}

    .TimetableSession_tableDataDay__3nw7v {
    text-align: left;
    color: #ffffff;
    color: var(--primary-text-colour);
    padding: 0.3em 0.5em;
    flex-wrap: wrap;
    width: 20%;
}

    .TimetableSession_tableDataSex__2VGvD {
    text-align: left;
    color: #ffffff;
    color: var(--primary-text-colour);
    padding: 0.3em 0;
    width: 10%;
}

    .TimetableSession_tableDataEvent__3QRLK {
    text-align: left;
    color: #ffffff;
    color: var(--primary-text-colour);
    padding: 0.3em 0;
    width: 25%;
}

    .TimetableSession_tableDataRound__1-GNy {
    text-align: left;
    color: #ffffff;
    color: var(--primary-text-colour);
    padding: 0.3em 0;
}

    .TimetableSession_tableDataLink__1laVA {
    text-align: left;
    color: #ffffff;
    color: var(--primary-text-colour);
    padding: 0 0.5em;
}

    .TimetableSession_tableDataLink__1laVA:hover {
        text-decoration: underline;
    }

    .TimetableSession_tableTitleContainer__14V1C {
    background-color: #bd94ff;
    background-color: var(--timetable-table-header);
    padding-left: 0.5em;
}

    .TimetableSession_tableTitle__2MB8f {
    color: #262626;
    color: var(--primary-gray);
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family);
    line-height: "unset";
    font-size: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    @media not screen and (min-width: 1124px) {
    .TimetableSession_tableDataTime__-1zIU,
    .TimetableSession_tableDataSex__2VGvD,
    .TimetableSession_tableDataEvent__3QRLK,
    .TimetableSession_tableDataRound__1-GNy,
    .TimetableSession_tableDataLink__1laVA {
        font-size: 14px;
    }
}

    @media (max-width: 767px) {
    .TimetableSession_tableDataTime__-1zIU,
    .TimetableSession_tableDataSex__2VGvD,
    .TimetableSession_tableDataEvent__3QRLK,
    .TimetableSession_tableDataRound__1-GNy,
    .TimetableSession_tableDataLink__1laVA {
        font-size: 10px;
    }
}

    .TimetableSession_activeSectionHeader__lkHoS{
    color: #fff;
}

    .TimetableSession_arrowIcon__205rU {
    transition: 0.3s all ease 0s;
    transform: rotate(180deg);
    transform-origin: 50% 45%;
}

    .TimetableSession_arrowIconRotate__1LTgi {
    transform: rotate(0);
    transform-origin: 50% 45%;
}


.TimetableLOC_timetableContainer__1_1b9 {
  background: var(--timetable-bg);
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2em 5em;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  align-items: center;
  min-height: 600px;
}

.TimetableLOC_maxWidth__13r0- {
  max-width: 1400px;
  width: 100%;
}

.TimetableLOC_table__uJLX- {
  background-color: rgba(38, 38, 38, 0.9);
  background-color: var(--timetable-table-background);
  width: 100%;
}

@media not screen and (min-width: 1124px) {
  .TimetableLOC_timetableContainer__1_1b9 {
    padding: 1em;
  }
}

@media (max-width: 767px) {
  .TimetableLOC_timetableContainer__1_1b9 {
    padding: 0.5em;
  }
}

.TimetableLOC_activeSection__bEFlI{
    display: none;
}
.fanZoneScrollButton_fanZoneScrollButton__3o0ld{
    position: absolute;
}

.fanZoneScrollButton_fanZoneScrollButtonRight__2ylu9{
    right: 0;
}

.fanZoneScrollButton_fanZoneScrollButtonLeft__aL0sx{
    left: 0;
}

.fanZoneScrollButton_fanZoneScrollButtonLeft__aL0sx svg{
  transform: rotate(180deg);
}
.FanZoneTimeTableDayList_fanZoneTimeTableDayList__1alZi {
position: relative;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
gap: 24px;
padding: 0 24px;
}

.FanZoneTimeTableDayList_fanZoneTimeTableDayListTabsContainer__IXVCZ {
    width: 100%;
    display: flex;
    padding-bottom: 8px;
    gap: 24px;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.FanZoneTimeTableDayList_fanZoneTimeTableDayList__1alZi::after,.FanZoneTimeTableDayList_fanZoneTimeTableDayList__1alZi div{
    content: unset!important;
}

.FanZoneTimeTableDayList_fanZoneTimeTableDayListTabsContainer__IXVCZ::-webkit-scrollbar {
    display: none;
}

.FanZoneTimeTableDayList_dayTab__2NAlx{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
}

.FanZoneTimeTableDayList_dayTab__2NAlx.FanZoneTimeTableDayList_active__2DMr6{
    border-bottom: 2px solid #9D6EE9;
    border-bottom: 2px solid var(--purple-colour);
    padding-bottom: 8px;
}

.FanZoneTimeTableDayList_dayTabLabel__3AId9{
    text-transform: lowercase;
    font-size: 0.75rem;
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family-regular);
}

.FanZoneTimeTableDayList_dayTabDate__2OJRV{
    font-size: 1rem;
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family-regular);
}

.FanZoneTimeTableDayList_dayTabLabel__3AId9:first-letter{
    text-transform: uppercase;
}
.FanZoneTimeTableContent_timeTable__HmQhb {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

.FanZoneTimeTableContent_timeTableHeader__2vPZu {
  background-color: #333;
  color: white;
}

.FanZoneTimeTableContent_timeTableHeader__2vPZu tr th{
  text-wrap: nowrap;
}

.FanZoneTimeTableContent_timeTableHeaderItem__2OHhA {
  padding: 8px;
  text-align: start;
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  font-size: 0.75rem;
}

.FanZoneTimeTableContent_timeTableContent__1_K7w {
  width: 100%;
  padding: 0px 0.875rem;
  max-width: 1400px;
  margin: 0 auto;
}

.FanZoneTimeTableContent_timeTableRow__1d9jR {
  cursor: pointer;
}

.FanZoneTimeTableContent_timeTableCell__1GkGM {
  padding: 8px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.FanZoneTimeTableContainer_fanZoneTimeTable__3CG4w{
    width: 45%;
    height: 100%;
}
.FanZoneTimeTableContainer_fanZoneTimeTableContainer__1XT5j {
    width: 100%;
}
.FanZoneTimeTableContainer_fanZoneTimeTableContainerTitle__1fmf6{
    display: block;
    position: relative;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
    font-size: 1.125rem;
    color: white;
    margin-bottom: 16px;
}
.FanZoneTimeTableContainer_activeSection__1GpW5{
    display: none;
}
.FanZoneTimeTableContainer_horizontalScroll__2rPwi{
    width: 100%;
}
.FanZoneTimeTableContainer_fanZoneSessionTimeTableContainerContent__2aqb9{
    overflow: auto;
    max-height: 250px;
}
@media (max-width: 1024px){
    .FanZoneTimeTableContainer_fanZoneTimeTable__3CG4w{
        width: 100%;
    }
    .FanZoneTimeTableContainer_fanZoneSessionTimeTableContainerContent__2aqb9{
        max-height: 200px;
    }
}

.Banners_root__3s2gz {
  position: relative;
}
.Banners_root__3s2gz .slick-list {
  margin-left: 0;
  margin-right: 0;
}
.Banners_root__3s2gz .slick-list a {
  display: block!important;
}
.Banners_root__3s2gz .slick-list img {
  width: 100%;
}
.Banners_root__3s2gz .slick-list img {
  width: 100%;
  object-fit: cover;

}
@media(max-width: 767px) {
.Banners_root__3s2gz .slick-list img {
    height: auto

}
  }
.Banners_root__3s2gz {
  display: flex;
  flex-direction: column;
  background: #69D7E1;
  background: var(--past-events-blue);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
.Banners_root__3s2gz.Banners_withCountry__CC8H7 {
    padding: 0;
    background-color: #281e37;
    background-color: var(--quaternary-accent-dark);
  }
@media(max-width: 767px) {
.Banners_root__3s2gz.Banners_withCountry__CC8H7 {
      padding: 0;
      height: auto
  }
    }
@media(max-width: 767px) {
.Banners_root__3s2gz {
    padding: 20px 10px
}
  }
.Banners_container__2HueN {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto 40px;
  align-items: center;
}
@media(max-width: 767px) {
.Banners_container__2HueN {
    flex-wrap: wrap
}
  }
.Banners_titleContainer__XKDe2 {
  display: flex;
  width: 50%;
  flex-direction: column;
  justify-content: flex-start;
}
@media(max-width: 1024px) {
.Banners_titleContainer__XKDe2 {
    flex-wrap: wrap;
    width: 100%
}
  }
.Banners_countryWrap__23BXb {
  display: flex;
  position: absolute;
  right: 0;
  top: 30%;
  justify-content: space-evenly;
  align-items: center;
  background: #ffffff;
  background: var(--primary-text-colour);
  max-width: 543px;
  width: 100%;
  height: 106px;
}
@media(max-width: 1024px) {
.Banners_countryWrap__23BXb {
    flex-direction: row;
    margin-top: 16px;
    align-items: center;
    top: 40%
}
  }
@media(max-width: 767px) {
.Banners_countryWrap__23BXb {
    position: relative;
    display: flex;
    max-width: 100%;
    margin-top: 0;
    height: 57px;
    width: 100%;
    background: #ffffff;
    background: #ffffff;
    background: var(--primary-text-colour);
    justify-content: space-evenly;
    box-shadow: 0px 3px 6px #00000029;
    align-items: center;
    bottom: 0;
    top: auto
}
  }
.Banners_countryCodeWrap__1axdu {
  display: flex;
  position: absolute;
  left: 20%;
  top: 41%;
  justify-content: space-evenly;
  align-items: center;
}
@media(max-width: 767px) {
.Banners_countryCodeWrap__1axdu {
    position: relative;
    top: 0;
    max-width: 100%;
    margin-top: 0;
    height: 57px;
    box-shadow: 0px 3px 6px #00000029
}
  }
.Banners_labelWrap__1kcW8 {
  display: flex;
  flex-direction: column;
}
.Banners_label__2vYl3 {
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  font-size: 34px;
  color: #281e37;
  color: var(--quaternary-accent-dark);
  margin-right: 10px;
  min-width: 94px;
}
@media(max-width: 1024px) {
.Banners_label__2vYl3 {
    font-size: 27px
}
  }
.Banners_flagWrap__O_pSX {
  display: flex;
  align-items: center;
}
@media(max-width: 1024px) {
.Banners_flagWrap__O_pSX {
    margin-left: 10px;
    align-items: center
}
  }
@media (max-width: 767px) {
.Banners_flagWrap__O_pSX {
    margin-left: 0
}
  }
.Banners_countryName__FWkBr {
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  text-transform: capitalize;
  font-size: 20px;
  color: #262626;
  color: var(--primary-gray);
}
@media(max-width: 767px) {
.Banners_countryName__FWkBr {
    font-size: 16px
}
  }
.Banners_flag__199m2 {
  /* width: 77px; */
  height: 38px;
}
@media(max-width: 767px) {
.Banners_flag__199m2 {
    /* width: 48px; */
    height: 56px
}
  }
.Banners_text__p6E3w {
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
  font-size: 21px;
  line-height: 1.2;
  color: #262626;
  color: var(--primary-gray);
  max-width: 521px;
}
@media(max-width: 1024px) {
.Banners_text__p6E3w {
    font-size: 16px
}
  }
.Banners_first__5JZ24 {
  width: 45%;
}
.Banners_wrap__3EI16 {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  align-items: center;
}
@media (max-width: 767px) {
.Banners_wrap__3EI16 {
    display: block;
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    top: calc(100% - 81px)
}
  }
.Banners_straplineWrap__U9SHF {
  max-width: 628px;
  text-align: left;
  font-size: 32px;
  color: #ffffff;
  color: var(--primary-text-colour);
  background: #281e37;
  background: var(--quaternary-accent-dark);
  font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
  font-family: var(--font-family-headline);
  padding-left: 10px;
}
@media (max-width: 767px) {
.Banners_straplineWrap__U9SHF {
    display: none
}
  }
.Banners_flagWrap__O_pSX {
  margin-top: 25px;
  display: flex;
}
.Banners_bannerStrapline__25F17 {
  background: #ff873c;
  background: var(--primary-colour);
  color: #000000;
  font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
  font-family: var(--font-family-headline);
  font-size: 19px;
  padding: 0 16px;
  height: 38px;
  align-items: center;
  display: flex;
}
@media (max-width: 767px) {
.Banners_bannerStrapline__25F17 {
    width: 100%;
    height: 56px
}
  }




.styles_root__ToTAp {
  position: relative;
}
.styles_root__ToTAp .slick-list {
  margin-left: 0;
  margin-right: 0;
}
.styles_root__ToTAp .slick-list a {
  display: block!important;
}
.styles_root__ToTAp .slick-list img {
  width: 100%;
}
.styles_root__ToTAp .slick-list img {
  width: 100%;
  height: 308px;
 /* @media screen and (max-width: 767px){
    height: auto;
  } */

}
.styles_root__ToTAp {
  display: flex;
  flex-direction: column;
  background: #69D7E1;
  background: var(--past-events-blue);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 308px;
  /* @media screen and (max-width: 767px) {
    padding: 0;
    height: auto;
  } */
}
.styles_container__24DCG {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto 40px;
  align-items: center;
}
@media screen and (max-width: 767px) {
.styles_container__24DCG {
    flex-wrap: wrap
}
  }
.styles_titleContainer__ii8JT {
  display: flex;
  width: 50%;
  flex-direction: column;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
.styles_titleContainer__ii8JT {
    flex-wrap: wrap;
    width: 100%
}
  }
.styles_countryWrap__2t8v4 {
  display: flex;
  position: absolute;
  right: 0;
  top: 41%;
  justify-content: space-evenly;
  align-items: center;
  background: #ffffff;
  background: var(--primary-text-colour);
  max-width: 543px;
  width: 100%;
  height: 106px;
}
@media(max-width: 1024px) {
.styles_countryWrap__2t8v4 {
    flex-direction: row;
    margin-top: 16px;
    align-items: center
}
  }
@media screen and (max-width: 767px) {
.styles_countryWrap__2t8v4 {
    position: relative;
    display: flex;
    max-width: 100%;
    margin-top: 0;
    height: 57px;
    width: 100%;
    background: #ffffff;
    background: #ffffff;
    background: var(--primary-text-colour);
    justify-content: space-evenly;
    box-shadow: 0px 3px 6px #00000029;
    align-items: center;
    bottom: 0;
    top: auto
}
  }
.styles_countryCodeWrap__3Fzao {
  display: flex;
  position: absolute;
  left: 20%;
  top: 41%;
  justify-content: space-evenly;
  align-items: center;
}
@media screen and (max-width: 767px) {
.styles_countryCodeWrap__3Fzao {
    position: relative;
    top: 0;
    max-width: 100%;
    margin-top: 0;
    height: 57px;
    box-shadow: 0px 3px 6px #00000029
}
  }
.styles_labelWrap__2Ie9y {
  display: flex;
  flex-direction: column;
}
.styles_label__3P5cK {
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  font-size: 34px;
  color: #281e37;
  color: var(--quaternary-accent-dark);
  margin-right: 10px;
  min-width: 94px;
}
@media(max-width: 1024px) {
.styles_label__3P5cK {
    font-size: 27px
}
  }
.styles_flagWrap__-kpcO {
  display: flex;
  align-items: center;
}
@media(max-width: 1024px) {
.styles_flagWrap__-kpcO {
    margin-left: 10px;
    align-items: center
}
  }
@media screen and (max-width: 767px) {
.styles_flagWrap__-kpcO {
    margin-left: 0
}
  }
.styles_countryName__4WlEo {
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  text-transform: capitalize;
  font-size: 20px;
  color: #262626;
  color: var(--primary-gray);
}
@media(max-width: 767px) {
.styles_countryName__4WlEo {
    font-size: 16px
}
  }
.styles_flag__3ni8a {
  /* width: 77px; */
  height: 38px;
}
@media screen and (max-width: 767px) {
.styles_flag__3ni8a {
    /* width: 48px; */
    height: 56px
}
  }
.styles_text__2O5gr {
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
  font-size: 21px;
  line-height: 1.2;
  color: #262626;
  color: var(--primary-gray);
  max-width: 521px;
}
@media(max-width: 1024px) {
.styles_text__2O5gr {
    font-size: 16px
}
  }
.styles_first__1p-W- {
  width: 45%;
}
.styles_wrap__3nrLE {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  align-items: center;
}
@media screen and (max-width: 767px) {
.styles_wrap__3nrLE {
    display: block;
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    top: calc(100% - 81px)
}
  }
.styles_flagWrap__-kpcO {
  margin-top: 25px;
  display: flex;
}
.styles_bannerStrapline__3rXmK {
  background: #ff873c;
  background: var(--primary-colour);
  color: #000000;
  font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
  font-family: var(--font-family-headline);
  font-size: 19px;
  padding: 0 16px;
  height: 38px;
  align-items: center;
  display: flex;
}
@media screen and (max-width: 767px) {
.styles_bannerStrapline__3rXmK {
    width: 100%;
    height: 56px
}
  }





@keyframes HeroCarousel_image-zoom__2q202 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.03);
  }
}

.HeroCarousel_heroCarousel__3uXuq {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  padding-bottom: 40%;
  min-height: 500px;
  z-index: 10;
}

.HeroCarousel_heroCarousel__3uXuq .HeroCarousel_carouselImage__2PmFp {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: 0 0;
    left: 0;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s;
  }

.HeroCarousel_heroCarousel__3uXuq .HeroCarousel_active__25jlG .HeroCarousel_carouselImage__2PmFp {
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s;
    animation-name: HeroCarousel_image-zoom__2q202;
    animation-duration: 3.7s;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.45, 0.05, 0.5, 0.95);
    animation-fill-mode: forwards;
  }

.HeroCarousel_lineTitle__1Z9cd {
  line-height: 2rem;
  color: #818181;
  color: var(--secondary-gray);
}

.HeroCarousel_lineTitleSelected__1GngY {
  color: #ffffff;
  color: var(--primary-text-colour);
}

.HeroCarousel_profileButton__2h6wq {
  padding: 10px 30px;
  font-size: 0.9rem;
  border: 0;
  background-color: #ff873c;
  background-color: var(--primary-colour);
  display: inline-block;
  color: #ffffff;
  color: var(--primary-text-colour);
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
}

.HeroCarousel_carouselLayer__eh7wy {
  position: absolute;
  top: 0px;
  z-index: 1000;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(38, 38, 38, 0.90) 80%);
  padding: 5px 20px;
  color: #ffffff;
  color: var(--primary-text-colour);
  font-weight: bold;
  width: 87%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  max-width: 1400px;
  display: none;
}

.HeroCarousel_active__25jlG .HeroCarousel_carouselLayer__eh7wy {
    display: block;
  }

@media screen and (min-width: 768px) {

.HeroCarousel_carouselLayer__eh7wy {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, rgba(38, 38, 38, 0.80) 100%)
}
  }

.HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    min-height: 296px;
    margin: 0 auto;
  }

.HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY {
      text-align: end;
      vertical-align: middle;
      max-width: 80%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      color: white;
      position: absolute;
      bottom: 60px;
    }

@media screen and (min-width: 1025px) {

.HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY {
        max-width: 60%
    }
      }

.HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY .HeroCarousel_news__bmNwN {
        font-family: 'World Athletics'
,
Arial
,
sans-serif;
        font-family: var(--font-family-regular);
        font-size: 1rem;
        text-transform: uppercase;
        line-height: 1;
        color: #fff;
      }

.HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY .HeroCarousel_title__1sziS {
        font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
        font-family: var(--font-family-headline);
        font-size: 2.625rem;
        line-height: 1em;
        color: white;
      }

.HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY .HeroCarousel_line__2TbIZ {
        border-color: #ff873c;
        border-color: var(--link-active-colour);
        width: 50%;
        margin-right: 0;
      }

.HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY .HeroCarousel_description__M_g2s {
        font-size: 1.2rem;
        font-family: 'World Athletics',Arial,sans-serif, sans-serif;
        font-family: var(--font-family-regular), sans-serif;
        font-weight: 400;
        line-height: 1em;
        max-width: 90%;
        margin-bottom: 8%;
        min-width: 180px;
        color: white;
      }

.HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY .HeroCarousel_country__B1H4x {
        font-family: 'World Athletics'
,
Arial
,
sans-serif;
        font-family: var(--font-family-regular);
        font-size: 1rem;
        text-transform: uppercase;
        line-height: 1;
        color: #fff;
        margin-bottom: 8px;
        margin-top: 8px;
      }

.HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY .HeroCarousel_link__2y5HB {
        text-decoration: none;
        line-height: 1em;
        font-family: 'World Athletics Bold',Arial,sans-serif, sans-serif;
        font-family: var(--font-family-bold), sans-serif;
      }

.HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY .HeroCarousel_linkMore__3nUST {
        white-space: nowrap;
        display: inline-block;
      }

.HeroCarousel_carouselLayer__eh7wy .HeroCarousel_leftArticleContainer__RTpyR {
    justify-content: flex-start;
  }

.HeroCarousel_carouselLayer__eh7wy .HeroCarousel_leftArticleContainer__RTpyR .HeroCarousel_article__33oiY {
      text-align: left;
      align-items: flex-start;
    }

.HeroCarousel_carouselLayer__eh7wy .HeroCarousel_leftArticleContainer__RTpyR .HeroCarousel_article__33oiY .HeroCarousel_line__2TbIZ {
        margin-left: 0;
      }

.HeroCarousel_indicatorsContainer__3mSmX {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 65%;
  /* Should be higher than carouselLayer with 1000 and externalLink with 1001 */
  z-index: 1002;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 10%;
  cursor: pointer;
}

.HeroCarousel_indicatorsContainer__3mSmX .HeroCarousel_line__2TbIZ {
    width: 33%;
    height: 1.6rem;
    display: flex;
    justify-content: center;
  }

.HeroCarousel_indicatorsContainer__3mSmX .HeroCarousel_line__2TbIZ:focus, .HeroCarousel_indicatorsContainer__3mSmX .HeroCarousel_line__2TbIZ:active {
      border: none;
      outline: none;
    }

.HeroCarousel_indicatorsContainer__3mSmX .HeroCarousel_indicators__3Xhlz {
    width: 88%;
    height: 2px;
    background-color: #818181;
    background-color: var(--secondary-gray);
    text-align: center;
  }

.HeroCarousel_indicatorsContainer__3mSmX .HeroCarousel_indicators__3Xhlz .HeroCarousel_bar__1lmWU {
      background-color: #ff873c;
      background-color: var(--link-active-colour);
      height: 100%;
      width: 0%;
    }

.HeroCarousel_indicatorsContainer__3mSmX .HeroCarousel_active__25jlG .HeroCarousel_bar__1lmWU {
    width: 100%;
    animation: HeroCarousel_move__2CTty 7s linear infinite;
  }

.HeroCarousel_indicatorsContainer__3mSmX .HeroCarousel_paused__3iHHP .HeroCarousel_bar__1lmWU {
    animation: none;
  }

@media(max-width: 767px) {

.HeroCarousel_indicatorsContainer__3mSmX {
    bottom: 6px;
    width: 100%
}
  }

@keyframes HeroCarousel_move__2CTty {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY .HeroCarousel_title__1sziS {
    font-size: 2rem;
    line-height: 1em;
  }
  .HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 {
    margin-bottom: 0%;
  }
  .HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY .HeroCarousel_description__M_g2s {
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin-bottom: 4%;
  }
    .HeroCarousel_heroCarousel__3uXuq .HeroCarousel_carouselVideo__3eASa {
      object-fit: fill;
    }
}

@media screen and (min-width: 768px) {
  .HeroCarousel_descriptionText__1dB3r {
    font-size: 1rem;
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .HeroCarousel_heroCarousel__3uXuq {
    padding-bottom: 0;
    min-height: auto;
    padding-top: 56.25%;
    position: relative;
  }
    .HeroCarousel_heroCarousel__3uXuq .HeroCarousel_carouselImage__2PmFp {
      position: absolute;
      top: 0;
      left: 0;
    }
  .HeroCarousel_carouselLayer__eh7wy {
    width: 100%;
    max-height: 500px;
  }
    .HeroCarousel_carouselLayer__eh7wy .HeroCarousel_indicatorsContainer__3mSmX {
      width: 100%;
    }
    .HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 {
      height: 65%;
      margin-bottom: 5%;
    }
      .HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY {
        min-width: 90%;
        margin-right: 5%;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: 500px;
        max-width: 100%;
        bottom: 10px;
      }
        .HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY .HeroCarousel_news__bmNwN, .HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY .HeroCarousel_line__2TbIZ {
          display: none;
        }

        .HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY .HeroCarousel_title__1sziS {
          font-size: 24px;
          line-height: 1em;
          margin-bottom: 1.4em;
        }
        .HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY .HeroCarousel_country__B1H4x {
          margin-top: 1px;
          margin-bottom: 40px;
        }
        .HeroCarousel_carouselLayer__eh7wy .HeroCarousel_articleContainer__1V1O1 .HeroCarousel_article__33oiY .HeroCarousel_description__M_g2s {
          font-size: 1.25rem;
          min-width: 100%;
        }
}

.HeroCarousel_externalLink__1NasD {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1001;
  font-size: 0;
}

.HeroCarousel_competitions__1U2KB .HeroCarousel_news__bmNwN {
    display: flex;
    justify-content: space-between;
  }

.HeroCarousel_competitions__1U2KB .HeroCarousel_news__bmNwN span {
      margin-left: 10px;
    }

.HeroCarousel_spikes__NeR82 .HeroCarousel_link__2y5HB {
    text-transform: uppercase;
  }

.HeroCarousel_spikes__NeR82 .HeroCarousel_line__2TbIZ {
    border: none;
  }

.HeroCarousel_spikes__NeR82 .HeroCarousel_newsSubtitle__3xRiH {
    border: 1px solid white;
    padding: 5px;
  }

.HeroCarousel_spikes__NeR82 .HeroCarousel_descriptionText__1dB3r a {
      text-transform: uppercase;
      display: block;
    }

.HeroCarousel_spikesIndicator__1PjB1 .HeroCarousel_indicators__3Xhlz .HeroCarousel_bar__1lmWU {
    background-color: #ffee02;
  }


.SocialMedia_socialMediaContainer__rZSTe {
  height: 137px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

  .SocialMedia_socialMediaContainer__rZSTe .SocialMedia_textContainer__Hevbc {
    margin: 3%;
    border-right: 1px solid #000;
    padding: 2%;
  }

  .SocialMedia_socialMediaContainer__rZSTe .SocialMedia_textContainer__Hevbc .SocialMedia_followUs__2sFgM {
      text-transform: uppercase;
      font-family: 'World Athletics'
,
Arial
,
sans-serif;
      font-family: var(--font-family-regular);
    }

  .SocialMedia_socialMediaContainer__rZSTe .SocialMedia_imagesContainer__3Psns {
    display: flex;
    justify-content: space-around;
    width: 30%;
    margin-right: 10%;
  }

  .SocialMedia_socialMediaContainer__rZSTe .SocialMedia_imagesContainer__3Psns .SocialMedia_imageContainer__14X3E {
      background-color: #000;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      position: relative;
      cursor: pointer;
    }

  .SocialMedia_socialMediaContainer__rZSTe .SocialMedia_imagesContainer__3Psns .SocialMedia_imageContainer__14X3E .SocialMedia_image__2dH-h {
        height: 50%;
        width: 50%;
        position: absolute;
        left: 25%;
        top: 25%;
        object-fit: contain;
      }

.SocialMedia_socialMediaContainerCompetitionHome__31bir {
  height: 100px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.SocialMedia_socialMediaContainerCompetitionHome__31bir .SocialMedia_textContainer__Hevbc {
    margin: 3%;
    border-right: 1px solid #ffffff;
    padding: 2%;
  }

.SocialMedia_socialMediaContainerCompetitionHome__31bir .SocialMedia_textContainer__Hevbc .SocialMedia_followUs__2sFgM {
      text-transform: uppercase;
      font-family: 'World Athletics'
,
Arial
,
sans-serif;
      font-family: var(--font-family-regular);
      width: fit-content;
    }

.SocialMedia_socialMediaContainerCompetitionHome__31bir .SocialMedia_imagesContainer__3Psns {
    display: flex;
    justify-content: space-around;
    width: 40%;
    margin-right: 10%;
  }

.SocialMedia_socialMediaContainerCompetitionHome__31bir .SocialMedia_imagesContainer__3Psns .SocialMedia_imageContainer__14X3E {
      background-color: #ffffff;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      position: relative;
      cursor: pointer;
    }

.SocialMedia_socialMediaContainerCompetitionHome__31bir .SocialMedia_imagesContainer__3Psns .SocialMedia_imageContainer__14X3E .SocialMedia_image__2dH-h {
        height: 50%;
        width: 50%;
        position: absolute;
        left: 25%;
        top: 25%;
        object-fit: contain;
        filter: invert(100%);
      }

@media not screen and (min-width: 1124px) {
  .SocialMedia_socialMediaContainerCompetitionHome__31bir {
    height: 60px;
  }
    .SocialMedia_socialMediaContainerCompetitionHome__31bir .SocialMedia_textContainer__Hevbc {
      padding: 2% 6% 2% 2%;
    }
    .SocialMedia_socialMediaContainerCompetitionHome__31bir .SocialMedia_textContainer__Hevbc {
     width: fit-content;
    }

    .SocialMedia_socialMediaContainerCompetitionHome__31bir .SocialMedia_imagesContainer__3Psns {
      display: flex;
      justify-content: space-around;
      width: 38%;
    }

      .SocialMedia_socialMediaContainerCompetitionHome__31bir .SocialMedia_imagesContainer__3Psns .SocialMedia_imageContainer__14X3E {
        width: 40px;
        height: 40px;
      }
}

@media screen and (max-width: 767px) {
  .SocialMedia_socialMediaContainer__rZSTe {
    justify-content: center;
    flex-direction: column;
    align-items: unset;
    height: 100%;
  }

    .SocialMedia_socialMediaContainer__rZSTe .SocialMedia_textContainer__Hevbc {
      border-bottom: 1px solid #000;
      border-right: unset;
      width: 50%;
    }

    .SocialMedia_socialMediaContainer__rZSTe .SocialMedia_imagesContainer__3Psns {
      width: 100%;
      margin-right: unset;
      padding: 5% 0;
    }

      .SocialMedia_socialMediaContainer__rZSTe .SocialMedia_imagesContainer__3Psns .SocialMedia_imageContainer__14X3E {
        width: 58px;
        height: 58px;
      }
  .SocialMedia_socialMediaContainerCompetitionHome__31bir {
    justify-content: center;
    flex-direction: column;
    align-items: unset;
    height: 100%;
  }

    .SocialMedia_socialMediaContainerCompetitionHome__31bir .SocialMedia_textContainer__Hevbc {
      border-bottom: 1px solid #ffffff;
      border-right: unset;
      width: 26%;
      padding: 0;
    }

    .SocialMedia_socialMediaContainerCompetitionHome__31bir .SocialMedia_imagesContainer__3Psns {
      width: 100%;
      margin-right: unset;
      padding: 0% 2% 3%;
    }

      .SocialMedia_socialMediaContainerCompetitionHome__31bir .SocialMedia_imagesContainer__3Psns .SocialMedia_imageContainer__14X3E {
        width: 58px;
        height: 58px;
        margin: 0.2em;
      }
}


.ImageBox_imageBoxContainer__uYgTC {
  display: flex;
  min-height: 100%;
  height: 300px;
}
.ImageBox_imageBoxContainer__uYgTC.ImageBox_nonWAS__2BzD8 {
  height: 450px;
  margin-bottom: 40px;
}
@media(max-width: 1400px) {
.ImageBox_imageBoxContainer__uYgTC.ImageBox_nonWAS__2BzD8 {
    height: 350px
}
  }
@media(max-width: 1024px) {
.ImageBox_imageBoxContainer__uYgTC.ImageBox_nonWAS__2BzD8 {
    height: 300px
}
  }
@media(max-width: 767px) {
.ImageBox_imageBoxContainer__uYgTC.ImageBox_nonWAS__2BzD8 {
    height: 350px;
    margin-bottom: 10px
}
  }
@media(max-width: 480px) {
.ImageBox_imageBoxContainer__uYgTC.ImageBox_nonWAS__2BzD8 {
    height: 300px
}
  }
@media(max-width: 400px) {
.ImageBox_imageBoxContainer__uYgTC.ImageBox_nonWAS__2BzD8 {
    height: 245px
}
  }
.ImageBox_imageBoxContainer__uYgTC .ImageBox_box__1G3mg {
  width: 100%;
  height: 100%;
  position: relative;
}
.ImageBox_imageBoxContainer__uYgTC .ImageBox_box__1G3mg .ImageBox_image__m5mM4 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ImageBox_imageBoxContainer__uYgTC .ImageBox_box__1G3mg .ImageBox_content__f5Rqm {
  position: absolute;
  color: white;
  bottom: 0;
  padding: 3%;
  width: 100%;
  background: linear-gradient(0deg, rgba(2, 0, 36, 1) 0%, rgba(0, 0, 0, 1) 1%, rgba(255, 255, 255, 0) 100%);
}
.ImageBox_imageBoxContainer__uYgTC .ImageBox_box__1G3mg .ImageBox_content__f5Rqm .ImageBox_line__1yyFP {
  width: 30%;
  margin-left: 0;
}
.ImageBox_imageBoxContainer__uYgTC .ImageBox_box__1G3mg .ImageBox_type__3Ha-N {
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
}
.ImageBox_imageBoxContainer__uYgTC .ImageBox_box__1G3mg .ImageBox_title__CANoO {
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  font-size: 2.1rem;
  line-height: 2.5rem;
}
.ImageBox_imageBoxContainer__uYgTC .ImageBox_box__1G3mg .ImageBox_description__6RYOM {
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
}
.ImageBox_contentNonWas__3sGrY .ImageBox_date__2ZFSm {
    text-transform: uppercase;
  }

.UsefulLinksTabs_tabs__1w8M- {
  display: grid;
  grid-row-gap: 18px;
  padding: 2rem 16px 2rem 0rem;
}

.UsefulLinksTabs_nonWAS__SEbj7 {
  display: grid;
  grid-row-gap: 18px;
  padding: 0;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
}

.UsefulLinksTabs_nonWAS__SEbj7 .UsefulLinksTabs_title__39WWJ {
    padding: 18px 11px;
    background: #69d7e1;
    background: var(--quick-links-active-link-colour);
    color: var(--primary-text-colour);
    color: var(--quick-links-active-text-colour, var(--primary-text-colour));
    position: sticky;
    top: 0;
  }

.UsefulLinksTabs_nonWAS__SEbj7 .UsefulLinksTabs_table__1pnrj {
    margin: 0 20px -10px 0;
  }

.UsefulLinksTabs_tabList__3nox6 {
  display: flex;
}

.UsefulLinksTabs_tab__ZoZqX {
  color: var(--quick-links-contract-colour);
  cursor: pointer;
  grid-row: 1;
  display: grid;
  grid-row-gap: 6px;
  place-items: center;
  padding-right: 18px;
  font-size: 1.2em;
  transition: 0.2s ease-in;

}

.UsefulLinksTabs_tab__ZoZqX.UsefulLinksTabs_active__3WecA {
    color: var(--quick-links-contract-colour);
  }

.UsefulLinksTabs_tab__ZoZqX:hover {
    color: var(--quick-links-contract-colour);
  }

.UsefulLinksTabs_tabDivider__18y15 {
  height: 3px;
  min-width: 100%;
  width: 80px;
  background-color: #173032;
  background-color: var(--quick-links-background-colour);
  transition: 0.2s ease-in;
}

.UsefulLinksTabs_tabDivider__18y15.UsefulLinksTabs_active__3WecA {
    background-color: var(--quick-links-contract-colour);
  }

.UsefulLinksTabs_tab__ZoZqX:not(.UsefulLinksTabs_active__3WecA):hover .UsefulLinksTabs_tabDivider__18y15 {
    background-color: var(--quick-links-contract-colour);
  }

.UsefulLinksTabs_table__1pnrj {
  background-color: #ffffff;
  background-color: var(--primary-text-colour);
  color: #262626;
  color: var(--primary-gray);
  border: 1.2rem solid #ffffff;
  border: 1.2rem solid var(--primary-text-colour);
  max-height: 260px;
  margin: 0 0 -10px 0;
  overflow-y: scroll;
}

.UsefulLinksTabs_thead__2F1sD,
.UsefulLinksTabs_bodyRows__9WJ_I {
  display: block;
}

.UsefulLinksTabs_alignCenter__2yNUw {
  text-align: center;
}

.UsefulLinksTabs_tableRow__2ujSN {
  padding: 15px;
  display: flex;
}

.UsefulLinksTabs_tableRow__2ujSN div:nth-child(n) {
  width: 80%;
  flex-grow: 3;
}

.UsefulLinksTabs_tableRow__2ujSN div:nth-child(2) {
  width: 10%;

  justify-self: right;
}

.UsefulLinksTabs_tableRow__2ujSN div:nth-child(3) {
  width: 10%;
  justify-self: right;
}

.UsefulLinksTabs_table__1pnrj .UsefulLinksTabs_tableRow__2ujSN:nth-child(even) {
  background: #f3f3f3;
  background: var(--grayscale-light);
}

.UsefulLinksTabs_table__1pnrj .UsefulLinksTabs_tableRow__2ujSN:nth-child(odd) {
  background: #ffffff;
  background: var(--primary-text-colour);
}

.UsefulLinksTabs_rowHeader__2J-j_ {
  background-color: #69d7e1;
  background-color: var(--secondary-colour);
  font-family: 'World Athletics Bold';
  font-size: 1.1em;
  height: 3em;
  padding: 15px;
}

.UsefulLinksTabs_rowHeaderLinks__ik3D7 {
  display: none;
}

.UsefulLinksTabs_tooltip__3QulY {
  width: 100%;
  position: relative;
  display: flex;

  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.UsefulLinksTabs_tooltip__3QulY .UsefulLinksTabs_tooltiptext__1RWfB {
    background-color: #efefef;
    transition: all .5s;
    padding: 10px 15px;
    position: absolute;
    width: max-content;
    border-radius: 5px;
    max-width: 200px;
    z-index: 1000000;
    font-size: 14px;
    bottom: 130%;
    opacity: 0;
  }

.UsefulLinksTabs_tooltip__3QulY:hover .UsefulLinksTabs_tooltiptext__1RWfB {
      visibility: visible;
      opacity: 1;
    }

@media screen and (max-width: 1024px) {
  .UsefulLinksTabs_tabs__1w8M- {
    padding: 16px;
    font-size: 14px;
  }

  .UsefulLinksTabs_nonWAS__SEbj7 {
    margin-left: 0;
    max-width: 100%;
    padding: 16px;
  }

    .UsefulLinksTabs_nonWAS__SEbj7 .UsefulLinksTabs_tabList__3nox6 {
      justify-content: flex-start;
    }

    .UsefulLinksTabs_nonWAS__SEbj7 .UsefulLinksTabs_table__1pnrj {
      margin: 0;
      border: 10px solid #ffffff;
      border: 10px solid var(--primary-text-colour);
    }

  .UsefulLinksTabs_tabList__3nox6 {
    justify-content: flex-start;
  }

  .UsefulLinksTabs_table__1pnrj {
    margin: 30px 0 -10px;
  }
}

@media (max-width: 1024px) {
  .UsefulLinksTabs_nonWAS__SEbj7 {
    padding: 10px
  }
}

.UsefulLinks_usefulLinksContainer__2NfQb {
  background-color: #173032;
  background-color: var(--secondary-accent-dark);
  color: #ffffff;
  color: var(--primary-text-colour);
}

.UsefulLinks_maxWidth__11CUJ {
  max-width: 1400px;
  display: flex;
  margin: 0 auto;
  padding: 0;
}

@media (min-width: 768px) {

.UsefulLinks_maxWidth__11CUJ {
  padding: 0 20px
}
}

@media (min-width: 1400px) {

.UsefulLinks_maxWidth__11CUJ {
  padding: 0
}
}

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_maxWidth__11CUJ {
    max-width: 100%;
    display: flex;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
  }

.UsefulLinks_usefulLinksContainer__2NfQb .UsefulLinks_usefulLinksTabsContainer__1bodt {
  width: 50%;
}

@media(max-width: 767px) {

.UsefulLinks_usefulLinksContainer__2NfQb .UsefulLinks_usefulLinksTabsContainer__1bodt {
    width: 100%;
    min-height: auto
}
  }

.UsefulLinks_usefulLinksContainer__2NfQb .UsefulLinks_articleImageBoxContainer__1-_es {
  width: 50%;
}

@media(max-width: 767px) {

.UsefulLinks_usefulLinksContainer__2NfQb .UsefulLinks_articleImageBoxContainer__1-_es {
    width: 100%;
    min-height: auto
}
  }

.UsefulLinks_nonWAS__3Eyv- {
  background-color: #173032;
  background-color: var(--quick-links-background-colour);
  color: #ffffff;
  color: var(--primary-text-colour);
  display: flex;
  height: 100%;
}

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_imageBoxContainer__26eWf {
    height: 100%;
    width: 100%;
    display: flex;
    max-width: 700px;
  }

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_maxWidth__11CUJ {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_maxWidth__11CUJ .UsefulLinks_fullWidthContainer__MFuKz {
      display: flex;
      width: 50%;
      background: #69d7e1;
      background: var(--latest-images-background-colour);
    }

@media(max-width: 767px) {

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_maxWidth__11CUJ .UsefulLinks_fullWidthContainer__MFuKz {
        width: 100%;
        min-height: auto
    }
      }

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_maxWidth__11CUJ .UsefulLinks_usefulLinksTabsContainer__1bodt {
    flex-direction: column;
    justify-content: flex-start;
    display: flex;
    width: 50%;
    min-height: 400px;
    padding-left: 20px;
  }

@media(max-width: 767px) {

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_maxWidth__11CUJ .UsefulLinks_usefulLinksTabsContainer__1bodt {
      width: 100%;
      min-height: auto;
      padding-left: 0
  }
    }

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_maxWidth__11CUJ .UsefulLinks_usefulLinksTabsContainer__1bodt h3 {
      width: 100%;
      max-width: 700px;
      color: var(--quick-links-contract-colour);
      margin-bottom: 18px;
      padding: 0;
      margin-left: auto;
      margin-top: 40px;
    }

@media (max-width: 1024px) {

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_maxWidth__11CUJ .UsefulLinks_usefulLinksTabsContainer__1bodt h3 {
        margin-left: 16px;
        width: auto
    }
      }

@media (max-width: 767px) {

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_maxWidth__11CUJ .UsefulLinks_usefulLinksTabsContainer__1bodt h3 {
        margin: 20px 10px 10px 0;
        margin-left: 10px;
        margin-top: 20px;
        margin-bottom: 10px
    }
      }

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_articleImageBoxContainer__1-_es.UsefulLinks_articleImageGalleryContainer__1sqIX{
  min-height: 400px;
  width: 100%;
  padding: 0 0 0 20px;
  }

@media screen and (max-width: 767px) {

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_articleImageBoxContainer__1-_es.UsefulLinks_articleImageGalleryContainer__1sqIX{
    min-height: auto
  }
  }

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_articleImageBoxContainer__1-_es.UsefulLinks_articleImageGalleryContainer__1sqIX h3 {
      margin-bottom: 18px;
      margin-top: 40px;

    }

@media screen and (max-width: 767px) {

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_articleImageBoxContainer__1-_es.UsefulLinks_articleImageGalleryContainer__1sqIX h3 {
        margin-top: 0

    }
      }

@media(max-width: 1400px) {

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_articleImageBoxContainer__1-_es.UsefulLinks_articleImageGalleryContainer__1sqIX{
      padding: 0 20px
  }
    }

@media screen and (max-width: 767px) {

.UsefulLinks_nonWAS__3Eyv- .UsefulLinks_articleImageBoxContainer__1-_es.UsefulLinks_articleImageGalleryContainer__1sqIX{
      padding: 0 0 0 10px
  }
    }

@media screen and (max-width: 1024px) {
  .UsefulLinks_usefulLinksTabsContainer__1bodt h3 {
    padding: 0 0 0 16px;
  }
}

@media screen and (max-width: 767px) {
  .UsefulLinks_maxWidth__11CUJ {
    flex-direction: column;
  }
    .UsefulLinks_nonWAS__3Eyv- .UsefulLinks_imageBoxContainer__26eWf {
      padding: 0 10px 0 0;
      margin: 20px 0 0 0;
      max-width: 100%;
    }
    .UsefulLinks_nonWAS__3Eyv- .UsefulLinks_articleImageBoxContainer__1-_es {
      width: 100%;
    }

      .UsefulLinks_nonWAS__3Eyv- .UsefulLinks_articleImageBoxContainer__1-_es.UsefulLinks_articleImageGalleryContainer__1sqIX {
        color: #ffffff;
        color: var(--primary-text-colour);
        width: 100%;
        max-width: 100%;
      }
}

.UsefulLinks_gallery__1yYG1 {
  overflow: hidden;
  height: auto;
}

.UsefulLinks_gallery__1yYG1 .slick-list {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}

.UsefulLinks_gallery__1yYG1 .slick-slide button {
  display: block !important;
  position: relative;
}

.UsefulLinks_gallery__1yYG1 .slick-slide > div {
  height: auto;
}

.UsefulLinks_gallery__1yYG1 .slick-prev::after, .UsefulLinks_gallery__1yYG1 .slick-next::after {
  z-index: 1;
  padding: 30px;
  background: url('https://worldathletics.org/static/chev-right-bw.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .UsefulLinks_gallery__1yYG1 .slick-next {
    display: block!important;
  }
}



.signupCta_signupCta__11luE {
  background-color: #281e37;
  background-color: var(--quaternary-accent-dark);
  padding-top: 1em;
  overflow: hidden;
  background-position: center;
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
}

.signupCta_img__12750 {
  display: none;
  max-width: 300px;
  height: auto;
  padding:.3em;
  float:right;
}

.signupCta_msg__3BU8C {
  color: white;
  line-height: 1em;
  font-size: 2rem;
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
}

.signupCta_link__3-yLW {
  font-size: 2rem;
  color: #bd94ff;
  color: var(--quaternary-colour);
  font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
  font-family: var(--font-family-heavy);
}

.signupCta_inner__ocf7v {
  margin: auto;
  max-width: 1400px;
  max-width: var(--max-content-width);
  padding: 4em 1em;
}

.signupCta_content__3Wm3M {
  display: flex;
}

@media screen and (min-width: 768px) {
  .signupCta_content__3Wm3M {
    float: left;
  }
  .signupCta_signupCta__11luE {
    font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
    font-family: var(--font-family-heavy);
  }
  .signupCta_msg__3BU8C {
    font-size: 2.2rem;
    font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
    font-family: var(--font-family-heavy);
  }
  .signupCta_link__3-yLW {
    float: right;
    font-size: 2.5rem;
    line-height: 2.5;
  }
}

@media screen and (min-width: 1025px) {
  .signupCta_signupCta__11luE {
    padding: 0;
  }
  .signupCta_msg__3BU8C {
    margin-top: 1em;
    font-size: 2.5rem;
  }
  .signupCta_img__12750 {
    display: block;
  }
  .signupCta_link__3-yLW {
    margin-top: .30em;
  }
}

@media screen and (min-width: 1124px) {
  .signupCta_msg__3BU8C {
    font-size: 2.625rem;
  }
}


.FourLargeImageBoxes_root__2OE7F {
  width: 100%;
}
.FourLargeImageBoxes_boxesContainer__kfMAx {
  height: 507px;
  padding: 2.5% 0;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
.FourLargeImageBoxes_boxesContainer__kfMAx {
    height: 678px;
    padding: 0
}
  }
.FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 2.5%;
  }
@media screen and (max-width: 767px) {
.FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b {
      height: 50%
  }
    }
.FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- {
      width: 45%;
      height: 95%;
      margin: 0 0.5%;
      position: relative;
    }
.FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_image__-wz9P {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
.FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_content__hFmdp {
        position: absolute;
        color: white;
        bottom: 0;
        padding: 3%;
        width: 100%;
        background: linear-gradient(
          0deg,
          rgba(2, 0, 36, 1) 0%,
          rgba(0, 0, 0, 1) 1%,
          rgba(255, 255, 255, 0) 100%
        );
      }
.FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_content__hFmdp .FourLargeImageBoxes_type__3_vwQ {
          font-family: 'World Athletics'
,
Arial
,
sans-serif;
          font-family: var(--font-family-regular);
        }
.FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_content__hFmdp .FourLargeImageBoxes_title__3sf9C {
          font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
          font-family: var(--font-family-headline);
          font-size: 2.1rem;
          line-height: 2.5rem;
        }
@media screen and (max-width: 1024px) {
.FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_content__hFmdp .FourLargeImageBoxes_title__3sf9C {
            font-size: 1.5rem
        }
          }
.FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_content__hFmdp .FourLargeImageBoxes_description__1k1ts {
          font-family: 'World Athletics'
,
Arial
,
sans-serif;
          font-family: var(--font-family-regular);
        }
.FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_contentCompetitionHome__8bh41 {
        position: absolute;
        color: white;
        bottom: 0;
        padding: 3%;
        width: 100%;
        background: transparent linear-gradient(360deg, #000000 0%, #00000000 60%) 0% 0%
          no-repeat padding-box;
      }
.FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_contentCompetitionHome__8bh41 .FourLargeImageBoxes_type__3_vwQ {
          font-family: 'World Athletics'
,
Arial
,
sans-serif;
          font-family: var(--font-family-regular);
        }
.FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_contentCompetitionHome__8bh41 .FourLargeImageBoxes_title__3sf9C {
          font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
          font-family: var(--font-family-headline);
          font-size: 2.1rem;
          line-height: 2.5rem;
        }
.FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_contentCompetitionHome__8bh41 .FourLargeImageBoxes_description__1k1ts {
          font-family: 'World Athletics'
,
Arial
,
sans-serif;
          font-family: var(--font-family-regular);
        }
.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S {
  height: 587px;
  padding: 2.5% 0 7%;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S {
    padding: 2.5% 0 0%;
    height: 483px
}
  }
.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
  }
@media screen and (max-width: 767px) {
.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b {
      height: 50%
  }
    }
.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- {
      width: 45%;
      height: 95%;
      margin: 0 0.5%;
      position: relative;
    }
.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_image__-wz9P {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_content__hFmdp {
        position: absolute;
        color: white;
        bottom: 0;
        padding: 3%;
        width: 100%;
        background: linear-gradient(
          0deg,
          rgba(2, 0, 36, 1) 0%,
          rgba(0, 0, 0, 1) 1%,
          rgba(255, 255, 255, 0) 100%
        );
      }
.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_content__hFmdp .FourLargeImageBoxes_type__3_vwQ {
          font-family: 'World Athletics'
,
Arial
,
sans-serif;
          font-family: var(--font-family-regular);
        }
.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_content__hFmdp .FourLargeImageBoxes_title__3sf9C {
          font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
          font-family: var(--font-family-headline);
          font-size: 2.1rem;
          line-height: 2.5rem;
        }
.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_content__hFmdp .FourLargeImageBoxes_description__1k1ts {
          font-family: 'World Athletics'
,
Arial
,
sans-serif;
          font-family: var(--font-family-regular);
        }
.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_contentCompetitionHome__8bh41 {
        position: absolute;
        color: white;
        bottom: 0;
        padding: 3%;
        width: 100%;
        background: transparent linear-gradient(360deg, #000000 0%, #00000000 80%) 0% 0%
          no-repeat padding-box;
      }
.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_contentCompetitionHome__8bh41 .FourLargeImageBoxes_type__3_vwQ {
          font-family: 'World Athletics'
,
Arial
,
sans-serif;
          font-family: var(--font-family-regular);
        }
.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_contentCompetitionHome__8bh41 .FourLargeImageBoxes_title__3sf9C {
          font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
          font-family: var(--font-family-headline);
          font-size: 2.1rem;
          line-height: 2.5rem;
        }
.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_contentCompetitionHome__8bh41 .FourLargeImageBoxes_description__1k1ts {
          font-family: 'World Athletics'
,
Arial
,
sans-serif;
          font-family: var(--font-family-regular);
        }
.FourLargeImageBoxes_containerWrapper__3VCPk {
  width: 91%;
  display: block;
  margin: 0 auto;
}
.FourLargeImageBoxes_containerTitle__3X1iJ {
  margin: 0.5em 0 0.5em;
  text-transform: uppercase;
}
.FourLargeImageBoxes_containerTitleline__3DeV1 {
  width: 180px;
  margin: 5px 0 25px;
}
@media screen and (max-width: 1024px) {
  .FourLargeImageBoxes_containerTitle__3X1iJ {
    margin: 0.5em 0 0.5em 1%;
    font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
    font-family: var(--font-family-headline);
    text-transform: uppercase;
  }

  .FourLargeImageBoxes_containerTitleline__3DeV1 {
    width: 184px;
    margin: 0 0 -50px 1%;
    border: 0 solid #ff873c;
    border: 0 solid var(--primary-colour);
    border-top-width: 1px;
  }
}
@media screen and (max-width: 767px) {
  .FourLargeImageBoxes_containerTitle__3X1iJ {
    margin: 0.5em 0 0.5em 15px;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
    text-transform: uppercase;
    font-size: 19px;
  }

  .FourLargeImageBoxes_containerTitleline__3DeV1 {
    width: 184px;
    margin: 5px 0px 5px 15px;
    border: 0 solid #ff873c;
    border: 0 solid var(--primary-colour);
    border-top-width: 1px;
  }
}
@media screen and (max-width: 1024px) {
    .FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b {
      margin: 0 2.5% -13% 2.5%;
    }
      .FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- {
        height: 74%;

        /* .title {
          font-family: var(--font-family-headline);
          font-size: 1rem;
          line-height: 1.5rem;
        } */
      }
}
@media screen and (max-width: 767px) {
  .FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S,
  .FourLargeImageBoxes_boxesContainer__kfMAx {
    height: 434px;
  }
    .FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b, .FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b {
      height: 85%;
      flex-direction: column;
      margin: 0%;
    }

      .FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F-, .FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- {
        width: 95%;
        margin: 1%;
      }
          .FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_content__hFmdp .FourLargeImageBoxes_title__3sf9C, .FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_content__hFmdp .FourLargeImageBoxes_title__3sf9C {
            font-size: 1.5rem;
            line-height: 1.5rem;
          }
          .FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_contentCompetitionHome__8bh41 .FourLargeImageBoxes_title__3sf9C, .FourLargeImageBoxes_boxesContainer__kfMAx .FourLargeImageBoxes_boxRow__sQL_b .FourLargeImageBoxes_box__1r8F- .FourLargeImageBoxes_contentCompetitionHome__8bh41 .FourLargeImageBoxes_title__3sf9C {
            font-size: 1.5rem;
            line-height: 1.5rem;
          }
}
.FourLargeImageBoxes_doubleRowStyle__3fFz6 {
  height: 945px; 
}
@media screen and (max-width: 1024px) {
.FourLargeImageBoxes_doubleRowStyle__3fFz6 {
    height: 942px;
    padding-bottom: 179px 
}
  }
@media screen and (max-width: 767px) {
.FourLargeImageBoxes_doubleRowStyle__3fFz6 {
    height: 1174px;
    padding-bottom: 50px 
}
  }
.FourLargeImageBoxes_doubleRowStyle__3fFz6 .FourLargeImageBoxes_boxRow__sQL_b {
    height: 50%;  
  }
@media screen and (max-width: 1024px) {
.FourLargeImageBoxes_doubleRowStyle__3fFz6 .FourLargeImageBoxes_boxRow__sQL_b {
      height: 58%  
  }
    }
@media screen and (max-width: 767px) {
.FourLargeImageBoxes_doubleRowStyle__3fFz6 .FourLargeImageBoxes_boxRow__sQL_b {
      height: 50%  
  }
    }
@media screen and (max-width: 1024px) {
.FourLargeImageBoxes_doubleRowStyle__3fFz6.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b {
          height: 74% 
      }
        }
@media screen and (max-width: 767px) {
.FourLargeImageBoxes_doubleRowStyle__3fFz6.FourLargeImageBoxes_boxesContainerCompetitionHome__1tq4S .FourLargeImageBoxes_boxRow__sQL_b {
          height: 50% 
      }
        }
.FourLargeImageBoxes_spikes__1OrEO .FourLargeImageBoxes_containerTitleline__3DeV1 {
    display: none;
  }
.FourLargeImageBoxes_spikes__1OrEO .FourLargeImageBoxes_containerTitle__3X1iJ {
    border: 1px solid black;;
    padding: 5px;
  }
.FourLargeImageBoxes_spikes__1OrEO .FourLargeImageBoxes_title__3sf9C {
    text-transform: uppercase;
  }

.Banners_root__TGe1H {
  position: relative;
}
.Banners_root__TGe1H .slick-list {
  margin-left: 0;
  margin-right: 0;
}
.Banners_root__TGe1H .slick-list a {
  display: block!important;
}
.Banners_root__TGe1H .slick-list img {
  width: 100%;
}

.SingleNewsPanel_spikes__14aru .SingleNewsPanel_line__29_fy {
    border: none;
  }
  .SingleNewsPanel_spikes__14aru .SingleNewsPanel_feature__1jQ1g {
    border: 1px solid white;
    width: fit-content;
    padding: 5px;
  }

.SingleNewsPanel_panelContainer__ovnn6 {
  display: flex;
  position: relative;
  height: auto;
  width: 100%;
  padding-bottom: 315px;
}

@media screen and (min-width: 1025px) {

.SingleNewsPanel_panelContainer__ovnn6 {
    padding-bottom: 511px
}
  }

.SingleNewsPanel_panelContainer__ovnn6 .SingleNewsPanel_imageContainer__2TBmh {
    position: absolute;
    height: 100%;
    width: 100%;
  }

.SingleNewsPanel_panelContainer__ovnn6 .SingleNewsPanel_imageContainer__2TBmh .SingleNewsPanel_image__HWf2u {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

.SingleNewsPanel_panelContainer__ovnn6 .SingleNewsPanel_articleContainer___VZ9j {
    position: absolute;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    display: flex;
    text-align: left;
    left: 10%;
    width: 80%;
    justify-content: flex-end;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 55%,
      rgba(38, 38, 38, 0.80) 100%
    );
  }

.SingleNewsPanel_panelContainer__ovnn6 .SingleNewsPanel_articleContainer___VZ9j .SingleNewsPanel_article__1b1mc {
      color: #fff;
      padding: 0 5%;
      width: 50%;
      bottom: 10%;
      position: relative;
    }

.SingleNewsPanel_panelContainer__ovnn6 .SingleNewsPanel_articleContainer___VZ9j .SingleNewsPanel_article__1b1mc .SingleNewsPanel_feature__1jQ1g {
        font-size: 1rem;
        font-family: 'World Athletics'
,
Arial
,
sans-serif;
        font-family: var(--font-family-regular);
      }

.SingleNewsPanel_panelContainer__ovnn6 .SingleNewsPanel_articleContainer___VZ9j .SingleNewsPanel_article__1b1mc .SingleNewsPanel_line__29_fy {
        border-color: #ff873c;
        border-color: var(--primary-colour);
      }

.SingleNewsPanel_panelContainer__ovnn6 .SingleNewsPanel_articleContainer___VZ9j .SingleNewsPanel_article__1b1mc .SingleNewsPanel_title__1aKgs {
        font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
        font-family: var(--font-family-headline);
        font-size: 2.625rem;
      }

.SingleNewsPanel_panelContainer__ovnn6 .SingleNewsPanel_articleContainer___VZ9j .SingleNewsPanel_article__1b1mc .SingleNewsPanel_description__6MiWZ {
        line-height: 3rem;
        font-family: 'World Athletics'
,
Arial
,
sans-serif;
        font-family: var(--font-family-regular);
      }

@media screen and (max-width: 1024px) {
  .SingleNewsPanel_panelContainer__ovnn6 .SingleNewsPanel_articleContainer___VZ9j .SingleNewsPanel_article__1b1mc .SingleNewsPanel_title__1aKgs {
    font-size: 2rem !important;
  }
}

@media screen and (max-width: 767px) {
  .SingleNewsPanel_panelContainer__ovnn6 {
    justify-content: center;
  }

    .SingleNewsPanel_panelContainer__ovnn6 .SingleNewsPanel_articleContainer___VZ9j {
      width: 100% !important;
      left: unset;
    }

      .SingleNewsPanel_panelContainer__ovnn6 .SingleNewsPanel_articleContainer___VZ9j .SingleNewsPanel_article__1b1mc {
        height: auto !important;
        width: auto !important;
      }

        .SingleNewsPanel_panelContainer__ovnn6 .SingleNewsPanel_articleContainer___VZ9j .SingleNewsPanel_article__1b1mc .SingleNewsPanel_title__1aKgs {
          font-size: 1.6rem !important;
        }
}



.SingleFeature_singleFeatureContainer__2ySRN {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
}

  .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_singleFeatureImage__2Lvxg {
    width: 50%;
    z-index: 1;
    display: flex;
  }

  .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_singleFeatureImage__2Lvxg img {
      object-fit: contain;
      height: 100%;
      width: 100%;
    }

  .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_leftContent__2VDJH {
    text-align: left;
    align-items: flex-start;
  }

  .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_rightContent__1X_rl {
    text-align: right;
    align-items: flex-end;
  }

  .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_content__2KUwn {
    width: 43%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 43%;
  }

  .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_content__2KUwn .SingleFeature_link__1qyeh {
      font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
      font-family: var(--font-family-bold);
      font-size: 1rem;
    }

  .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_content__2KUwn .SingleFeature_fabFive__3bqgI {
      font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
      font-family: var(--font-family-bold);
      text-transform: uppercase;
    }

  .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_content__2KUwn .SingleFeature_line__3ySw5 {
      border: 1px solid  #000;
      width: 70%;
      margin-right: 0;
    }

  .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_content__2KUwn .SingleFeature_title__3zSMz {
      font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
      font-family: var(--font-family-headline);
      font-size: 3.5rem;
      line-height: 0.9em;
      margin: 2% 0;
    }

  .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_content__2KUwn .SingleFeature_title__3zSMz p:nth-child(even) {
        color: white;
      }

  .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_content__2KUwn a {
      text-decoration: none;
      color: #000;
    }

@media screen and (min-width: 768px) {
  .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_content__2KUwn .SingleFeature_title__3zSMz {
    font-size: 2rem;
    line-height: 2rem;
    margin: 2% 0;
  }
}

@media screen and (max-width: 767px) {
  .SingleFeature_singleFeatureContainer__2ySRN {
    flex-direction: column-reverse;
    height: 100%;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
  }

    .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_singleFeatureImage__2Lvxg {
      min-width: 100%;
    }

    .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_content__2KUwn {
      width: 100%;
      padding: 0 5%;
      margin-top: 5%;
    }

      .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_content__2KUwn .SingleFeature_line__3ySw5 {
        width: 50%;
        margin-right: 0;
      }

      .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_content__2KUwn .SingleFeature_title__3zSMz {
        font-size: 2rem;
        line-height: 1em;
      }

      .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_content__2KUwn .SingleFeature_fabFive__3bqgI {
        margin: 2% 0;
      }

      .SingleFeature_singleFeatureContainer__2ySRN .SingleFeature_content__2KUwn .SingleFeature_link__1qyeh {
        margin: 3% 0;
      }
}

.SingleFeature_spikes__DZEuV .SingleFeature_line__3ySw5 {
    border: none;
  }

.SingleFeature_spikes__DZEuV .SingleFeature_title__3zSMz {
    
  }


.VideoCarousel_container__BCxSn {
  position: relative;
}

.VideoCarousel_close__3I27z {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  z-index: 9999;
  cursor: pointer;
}

.VideoCarousel_close__3I27z:hover {
  opacity: 1;
}

.VideoCarousel_close__3I27z:before,
.VideoCarousel_close__3I27z:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #fff;
}

.VideoCarousel_close__3I27z:before {
  transform: rotate(45deg);
}

.VideoCarousel_close__3I27z:after {
  transform: rotate(-45deg);
}

.VideoCarousel_titleContainer__30E3q {
  height: 110px;
  background-color: #262626;
  background-color: var(--primary-gray);
  display: flex;
  align-items: center;
}

.VideoCarousel_title__3ksSp {
  text-transform: uppercase;
  font-size: 1rem;
  color: #fff;
  height: 50%;
  display: flex;
  align-items: center;
  width: 20%;
  padding: 2% 0 2% 10%;
  border-right: 1px solid #a5fa64;
  border-right: 1px solid var(--tertiary-colour);
}

.VideoCarousel_videoPlayer__26vRA {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 9999;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.VideoCarousel_videoCarouselContainer__3dIqv {
  display: flex;
  height: 400px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.VideoCarousel_videoCarouselContainer__3dIqv .VideoCarousel_videoContainer__2F0PX {
    min-width: 40%;
    height: 100%;
    left: -30%;
    position: relative;
    cursor: pointer;
  }

.VideoCarousel_videoCarouselContainer__3dIqv .VideoCarousel_videoContainer__2F0PX .VideoCarousel_video__1QuFI {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }

.VideoCarousel_videoCarouselContainer__3dIqv .VideoCarousel_videoContainer__2F0PX .VideoCarousel_playButton__1LiQs {
      position: absolute;
      z-index: 1;
      height: 15%;
      cursor: pointer;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

.VideoCarousel_videoCarouselContainer__3dIqv .VideoCarousel_videoContainer__2F0PX .VideoCarousel_captionContainer__3nkCo {
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 1;
      height: 100%;
      width: 100%;
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 55%,
        rgba(38, 38, 38, 0.80) 100%
      );
    }

.VideoCarousel_videoCarouselContainer__3dIqv .VideoCarousel_videoContainer__2F0PX .VideoCarousel_captionContainer__3nkCo .VideoCarousel_caption__1so_l {
        position: absolute;
        bottom: 0;
        left: 0;
        margin: 5% 3%;
        width: 60%;
      }

.VideoCarousel_videoCarouselContainer__3dIqv .VideoCarousel_videoContainer__2F0PX .VideoCarousel_featuredVideo__2-5WT {
      text-transform: uppercase;
      font-family: 'World Athletics'
,
Arial
,
sans-serif;
      font-family: var(--font-family-regular);
      color: #ffffff;
      color: var(--primary-text-colour);
      font-size: 1rem;
    }

.VideoCarousel_videoCarouselContainer__3dIqv .VideoCarousel_videoContainer__2F0PX .VideoCarousel_videoName__xv_s- {
      font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
      font-family: var(--font-family-headline);
      color: #ffffff;
      color: var(--primary-text-colour);
      font-size: 1rem;
      line-height: 1em;
    }

@media screen and (min-width: 1025px) {

.VideoCarousel_videoCarouselContainer__3dIqv .VideoCarousel_videoContainer__2F0PX .VideoCarousel_videoName__xv_s- {
        font-size: 1.25rem
    }
      }

.VideoCarousel_videoCarouselContainer__3dIqv .VideoCarousel_videoContainer__2F0PX .VideoCarousel_line__3wioT {
      border-color: #ff873c;
      border-color: var(--primary-colour);
      width: 100%;
      margin-right: 0;
    }

.VideoCarousel_videoCarouselContainer__3dIqv #VideoCarousel_prev__xAdBr {
    left: 50%;
    top: 30%;
  }

.VideoCarousel_videoCarouselContainer__3dIqv #VideoCarousel_next__1SKEu {
    right: 50%;
    top: 30%;
  }

.VideoCarousel_initialTransform__1f02O {
  transform: translateX(-100%);
}

.VideoCarousel_transformLeft__2aZ4L {
  transform: translateX(-200%);
  transition: all 0.7s ease-out;
}

.VideoCarousel_transformRight__3BjdV {
  transform: translateX(0%);
  transition: all 0.7s ease-out;
}

#VideoCarousel_left__3jYSd {
  left: 0;
}

#VideoCarousel_right__UiKjr {
  right: 0;
}

.VideoCarousel_arrowContainer__4SH7H {
  cursor: pointer;
  width: 10%;
  position: absolute;
  height: 100%;
}

.VideoCarousel_arrow__yv39c:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: -30%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 70px;
  width: 40px;
  background: url('https://worldathletics.org/static/chev-icon-right.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.VideoCarousel_littleArrow__192lG {
  border-width: 0px 4px 4px 0;
  padding: 0.7rem;
}

.VideoCarousel_left__3jYSd:after {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
}

@media screen and (max-width: 1024px) {
  .VideoCarousel_videoCarouselContainer__3dIqv .VideoCarousel_videoContainer__2F0PX .VideoCarousel_videoName__xv_s- {
    font-size: 1.25rem;
    line-height: 1em;
  }
}

@media screen and (max-width: 767px) {



  .VideoCarousel_title__3ksSp {
    width: 50%;
    border-bottom: 1px solid #fff;
    border-right: none;
    padding: 0%;
    margin-left: 10%;
  }
    .VideoCarousel_videoCarouselContainer__3dIqv .VideoCarousel_videoContainer__2F0PX {
      min-width: 90% !important;
      left: -112% !important;

    }

      .VideoCarousel_videoCarouselContainer__3dIqv .VideoCarousel_videoContainer__2F0PX .VideoCarousel_video__1QuFI {
        padding: 2%;
        background-color: #262626;
        background-color: var(--primary-gray);
        font-size: 2rem !important;
      }

  .VideoCarousel_initialTransform__1f02O {
    transform: translateX(-70%);
  }

  .VideoCarousel_transformLeft__2aZ4L {
    transform: translateX(-170%);
  }

  .VideoCarousel_transformRight__3BjdV {
    transform: translateX(30%);
  }

  .VideoCarousel_arrow__yv39c {
    display: none;
  }
}



.slick-slider.styles_carousel__2AZpN {
  height: 100%;
}
.styles_carousel__2AZpN .slick-track {
    height: 100%;
  }
.styles_carousel__2AZpN .slick-list {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    height: 100%;
  }
.styles_carousel__2AZpN .slick-slide button {
    display: block !important;
  }
.styles_carousel__2AZpN .slick-slide {
    height: 100%;
  }
.styles_carousel__2AZpN .slick-slide > div {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
.styles_carousel__2AZpN .slick-prev::after, .styles_carousel__2AZpN .slick-next::after {
    z-index: 1;
    padding: 30px;
    background: url('https://worldathletics.org/static/chev-right-bw.svg');
    background-size: contain;
    background-repeat: no-repeat;
  }
@media screen and (max-width: 767px) {
    .styles_carousel__2AZpN .slick-prev::after, .styles_carousel__2AZpN .slick-next::after {
      display: none !important;
    }
  }
.styles_carousel__2AZpN .slick-dots {
    position: absolute;
    bottom: 20px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.styles_carousel__2AZpN .slick-dots li, .styles_carousel__2AZpN .slick-dots li button {
    width: 20px;
    height: 20px;
    cursor: pointer;

  }
.styles_carousel__2AZpN .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
  }
.styles_carousel__2AZpN .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 5px;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
  }
.styles_carousel__2AZpN .slick-dots li.slick-active button::before {
    opacity: 1;
    background-color: #ffffff;
  }
.styles_carousel__2AZpN .slick-dots li button::before {
    font-family: slick;
    line-height: 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    content: "\25A0";
    text-align: center;
    opacity: .6;
    background-color: #707070;
    -webkit-font-smoothing: antialiased;
  }
/* IE11 object-fit fallback */
.styles_imageContainer__sHXjw {
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.styles_image__3bEQG {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* IE11 object-fit fallback */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.styles_image__3bEQG {
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    flex-shrink: 0
}
  }
.styles_imageTitle__3talL {
  flex: 0 0 auto;
  font-family: --var(--font-family-bold);
  font-size: 32px;
  color: #1E1E1E;
  margin-bottom: 20px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
.styles_imageTitle__3talL {
    font-size: 16px
}
  }
.styles_overlay__2Melg {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(38, 38, 38, 0.7);
  z-index: 20;
}
@media screen and (max-width: 767px) {
.styles_overlay__2Melg {
    display: flex;
    align-items: center;
    justify-content: center
}
  }
.styles_modal__2aEvE {
  position: absolute;
  margin: 0 auto;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  background: rgb(255, 255, 255);
  overflow: auto;
  outline: none;
  padding: 20px;
  max-height: 900px;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
.styles_modal__2aEvE {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 70%;
    flex: 1 1 auto;
    margin: 20px
}
  }
.styles_close__2Xs9F {
  border: 0;
  position: absolute;
  top: 20px;
  right: 20px;
}
.styles_close__2Xs9F span {
  display: block;
  font-size: 0px;
  width: 20px;
  height: 20px;
}
.styles_close__2Xs9F span:before,
.styles_close__2Xs9F span:after {
  position: absolute;
  left: 9px;
  content: '';
  height: 20px;
  width: 2px;
  background-color: black;
}
.styles_close__2Xs9F span:before {
  transform: rotate(45deg);
}
.styles_close__2Xs9F span:after {
  transform: rotate(-45deg);
}


.styles_root__1bwX_ {
  display: flex;
  flex-direction: column;
}

.styles_titleContainer__1jEmU {
  padding: 25px;
}

.styles_title__a28uK {
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family);
  text-align: center;
  text-transform: uppercase;
  font-size: 1rem;
  width: 20%;
  padding: 1.4% 0;
  border-right: 1px solid #a5fa64;
}

@media screen and (max-width: 767px) {

.styles_title__a28uK {
    width: 50%;
    border-bottom: 1px solid #fff;
    border-right: none;
    padding: 0%;
    margin-left: 3%;
    text-align: left;
    line-height: 1.5
}
  }

.styles_gallery__1y4_S {
  overflow: hidden;
}

.styles_gallery__1y4_S .slick-list {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }

.styles_gallery__1y4_S .slick-slide button {
    display: block !important;
    position: relative;
  }

.styles_gallery__1y4_S .slick-slide > div {
    height: auto;
  }

.styles_gallery__1y4_S .slick-prev::after, .styles_gallery__1y4_S .slick-next::after {
    z-index: 1;
    padding: 30px;
    background: url('https://worldathletics.org/static/chev-right-bw.svg');
    background-size: contain;
    background-repeat: no-repeat;
  }

@media screen and (max-width: 767px) {
    .styles_gallery__1y4_S .slick-prev::after, .styles_gallery__1y4_S .slick-next::after {
      display: none !important;
    }
  }

.styles_galleryImage__5snMx {
  display: block;
  position: relative;
}

.styles_galleryImage__5snMx:focus {
    outline: none;
  }

.styles_galleryImage__5snMx img {
    display: block;
    width: 100%;
  }

.styles_imageOverlay__2ocI3 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(180deg, #00000000 0%, #00000000 26%, #000000 100%) 0% 0% no-repeat padding-box;
  opacity: 0.6;
}


.styles_root__GoEX1 {
  padding: 20px 20px 30px;
}
  @media screen and (max-width: 767px) {

.styles_root__GoEX1 {
    padding: 15px 15px 20px
}
  }

.styles_content__2xEAX {
  max-width: 1400px;
  max-width: var(--max-content-width);
  margin: auto;
}

.styles_title__2JQ4G {
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {

.styles_title__2JQ4G {
    font-size: 30px;
    margin-bottom: 20px
}
  }

.styles_grid__2SGRH {
  display: flex;
  flex-flow: row wrap;
}

.styles_gridItem__3pgBy {
  position: relative;
  width: calc(99.9% * 1/1 - (30px - 30px * 1/1));
  max-width: calc(99.9% * 1/1 - (30px - 30px * 1/1));
  height: calc(99.9% * 1/1 - (30px - 30px * 1/1));
}

.styles_gridItem__3pgBy:nth-child(1n) {
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
  clear: none;
}

.styles_gridItem__3pgBy:last-child {
  margin-right: 0;
  margin-bottom: 0;
}

.styles_gridItem__3pgBy:nth-child(1n) {
  margin-right: 0;
}

.styles_gridItem__3pgBy:nth-child(1n + 1) {
  clear: both;
}

.styles_gridItem__3pgBy:nth-last-child(-n + 1) {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {

.styles_gridItem__3pgBy {
    width: calc(99.9% * 1/2 - (30px - 30px * 1/2));
    max-width: calc(99.9% * 1/2 - (30px - 30px * 1/2));
    height: calc(99.9% * 1/2 - (30px - 30px * 1/2))
}

.styles_gridItem__3pgBy:nth-child(1n) {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
    clear: none
}

.styles_gridItem__3pgBy:last-child {
    margin-right: 0;
    margin-bottom: 0
}

.styles_gridItem__3pgBy:nth-child(2n) {
    margin-right: 0
}

.styles_gridItem__3pgBy:nth-child(2n + 1) {
    clear: both
}

.styles_gridItem__3pgBy:nth-last-child(-n + 2) {
    margin-bottom: 0
}
  }

@media screen and (min-width: 1025px) {

.styles_gridItem__3pgBy {
    width: calc(99.9% * 1/3 - (30px - 30px * 1/3));
    max-width: calc(99.9% * 1/3 - (30px - 30px * 1/3));
    height: calc(99.9% * 1/3 - (30px - 30px * 1/3))
}

.styles_gridItem__3pgBy:nth-child(1n) {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
    clear: none
}

.styles_gridItem__3pgBy:last-child {
    margin-right: 0;
    margin-bottom: 0
}

.styles_gridItem__3pgBy:nth-child(3n) {
    margin-right: 0
}

.styles_gridItem__3pgBy:nth-child(3n + 1) {
    clear: both
}

.styles_gridItem__3pgBy:nth-last-child(-n + 3) {
    margin-bottom: 0
}
  }

.styles_gridItemImage__3OcnX {
  width: 100%;
}

.styles_gridItemImageOverlay__2VoR5 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(360deg, #000000 0%, #00000000 100%) 0% 0% no-repeat padding-box;
}

.styles_gridItemTitle__13ERU {
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  font-size: 22px;
  padding: 20px 20px 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  color: white;
}

@media screen and (max-width: 767px) {

.styles_gridItemTitle__13ERU {
    padding: 10px 10px 20px
}
  }

.styles_spikes__3xpR4 .styles_gridItemTitle__13ERU {
    text-transform: uppercase;
  }


.NextEvent_nextEventContainer__2lS6i {
  height: 405px;
  display: flex;
  justify-content: center;
  align-items: center;
}

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy {
    display: flex;
    width: 100%;
    height: 80%;
    margin: 0 10%;
    justify-content: space-between;
  }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_left__1cVlB .NextEvent_upcomingEvent__1aGND {
        font-family: 'World Athletics'
,
Arial
,
sans-serif;
        font-family: var(--font-family-regular);
        border-bottom: 1px solid #ff873c;
        border-bottom: 1px solid var(--primary-colour);
        font-size: 1rem;
      }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW {
      height: 100%;
      width: 80%;
    }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_upperContent__2HGAy {
        display: flex;
        justify-content: space-between;
      }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_upperContent__2HGAy .NextEvent_imageContainer__3SJQT {
          width: 20%;
        }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_upperContent__2HGAy .NextEvent_imageContainer__3SJQT .NextEvent_image__29LGD {
            width: 100%;
          }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_upperContent__2HGAy .NextEvent_content__1paQt {
          display: flex;
          justify-content: space-around;
          flex-direction: column;
          line-height: 2.9em;
          width: 70%;
        }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_upperContent__2HGAy .NextEvent_content__1paQt .NextEvent_mainTitle__1Djuq {
            font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
            font-family: var(--font-family-headline);
            font-size: 2.625rem;
            line-height: 3rem;
          }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_upperContent__2HGAy .NextEvent_content__1paQt .NextEvent_date__1trbT {
            font-family: 'World Athletics'
,
Arial
,
sans-serif;
            font-family: var(--font-family-regular);
            font-size: 1.2rem;
          }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_upperContent__2HGAy .NextEvent_content__1paQt .NextEvent_link__3smNL {
            font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
            font-family: var(--font-family-bold);
            color: #818181;
            color: var(--secondary-gray);
          }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_upperContent__2HGAy .NextEvent_content__1paQt #NextEvent_red__3oXg- {
            color: #f02300;
          }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_links__AabiC {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2%;
      }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_links__AabiC .NextEvent_link__3smNL {
          font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
          font-family: var(--font-family-bold);
          font-size: 1.25rem;
          color: #818181;
          color: var(--secondary-gray);
          border-top: 1px solid #818181;
          border-top: 1px solid var(--secondary-gray);
          margin-right: 5%;
          width: 100%;
          line-height: 2rem;
          min-width: 170px;
        }

@media screen and (max-width: 1024px) {

  .NextEvent_left__1cVlB {
    width: 21%;
    margin-bottom: 5%;
  }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW {
    width: 100%;
  }

  .NextEvent_nextEventContainer__2lS6i {
    height: 315px;
  }

    .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy {
      flex-direction: column;
    }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_links__AabiC .NextEvent_link__3smNL {
    font-size: 0.7rem;
    min-width: unset;
  }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_left__1cVlB .NextEvent_upcomingEvent__1aGND {
    font-size: 0.8rem;
  }

  .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy
  .NextEvent_right__1B5WW .NextEvent_upperContent__2HGAy .NextEvent_content__1paQt .NextEvent_mainTitle__1Djuq {
    font-size: 1.75rem;
    line-height: 1em;
  }
}

@media screen and (max-width: 767px) {
  .NextEvent_nextEventContainer__2lS6i {
    height: auto;
    padding: 10px;
  }

    .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy {
      margin: 0;
      height: 100%;
      padding-bottom: 1em;
    }
        .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_left__1cVlB .NextEvent_upcomingEvent__1aGND {
          display: none;
        }

      .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
      }

        .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_upperContent__2HGAy {
          justify-content: space-around;
        }

          .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_upperContent__2HGAy .NextEvent_imageContainer__3SJQT {
            width: 40%;
          }

          .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_upperContent__2HGAy .NextEvent_content__1paQt {
            width: 60%;
            padding-left: 10px;
          }

            .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_upperContent__2HGAy .NextEvent_content__1paQt .NextEvent_mainTitle__1Djuq {
              font-size: 1.5rem;
              line-height: 1.7rem;
            }
        .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_links__AabiC {
          flex-wrap: wrap;
        }

          .NextEvent_nextEventContainer__2lS6i .NextEvent_nextEventInnerContainer__1WyUy .NextEvent_right__1B5WW .NextEvent_links__AabiC .NextEvent_link__3smNL {
            line-height: 2rem;
            width: 40%;
            min-width: unset;
            font-size: 1rem;
            line-height: 1.7rem;
          }
}


.MultiNewsArticlesCarousel_articlesSection__3gSIF {
  height: 426px;
  position: relative;
  margin: 2% 0;
}
  .MultiNewsArticlesCarousel_articlesSection__3gSIF #MultiNewsArticlesCarousel_prev__20tA1, .MultiNewsArticlesCarousel_articlesSection__3gSIF #MultiNewsArticlesCarousel_next__26if5 {
    cursor: pointer;
    position: absolute;
    top: 250px;
    font-size: 14px;
  }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF #MultiNewsArticlesCarousel_prev__20tA1 {
    left: 5%;
    top: 40%;
  }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF #MultiNewsArticlesCarousel_next__26if5 {
    right: 5%;
    top: 40%;
  }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF #MultiNewsArticlesCarousel_prev__20tA1:after, .MultiNewsArticlesCarousel_articlesSection__3gSIF #MultiNewsArticlesCarousel_next__26if5:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -30%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 70px;
    width: 40px;
    background: url('https://worldathletics.org/static/chev-right-b.svg');
    background-repeat: no-repeat;
    background-size: contain;
  }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_arrow__7aCEC.MultiNewsArticlesCarousel_arrowDisabled__1g973:after {
    display: none !important;
  }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_left__2uLcW {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ {
    padding: 0% 6%;
    height: 100%;
    max-width: 1400px;
    margin: auto;
  }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_line__134Rk {
      border: 1px solid #ff873c;
      border: 1px solid var(--primary-colour);
      width: 10%;
      margin-left: 0;
    }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_boldFont__3OzYL {
      font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
      font-family: var(--font-family-bold);
      line-height: 1em;
      text-transform: uppercase;
      padding-top: 1em;
    }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_regularFont__3xk3Y {
      font-family: 'World Athletics'
,
Arial
,
sans-serif;
      font-family: var(--font-family-regular);
      font-size: 1rem;
    }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_content__37yZs {
      overflow: hidden;
      height: 80%;
    }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_content__37yZs .MultiNewsArticlesCarousel_innerContent__2noNi {
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        transition: all 1s;
      }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_content__37yZs .MultiNewsArticlesCarousel_moveRight1__3ztZd {
        transform: translateX(-50%);
      }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_content__37yZs .MultiNewsArticlesCarousel_moveRight2__3_fnb {
        transform: translateX(-100%);
      }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_newsContent__3iro9:nth-child(3n) {
      padding: 0;
    }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_newsContent__3iro9:nth-child(6n) {
      padding: 0;
    }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_newsContent__3iro9 {
      margin: 0.5% 0 0 0;
      padding-right: 0.5%;
      height: 35%;
    }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_newsContent__3iro9 .MultiNewsArticlesCarousel_dateAndType__1j1aI {
        display: flex;
        margin-bottom: 10px;
        font-family: 'World Athletics'
,
Arial
,
sans-serif;
        font-family: var(--font-family-regular);
      }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_newsContent__3iro9 .MultiNewsArticlesCarousel_date__9a6j- {
        margin-right: 2%;
      }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_newsContent__3iro9 .MultiNewsArticlesCarousel_type__2wyMU {
        margin-left: 2%;
        color: #ff873c;
        color: var(--primary-colour);
        text-transform: uppercase;
      }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_newsContent__3iro9 .MultiNewsArticlesCarousel_title__1ieuK {
        font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
        font-family: var(--font-family-bold);
        font-size: 1.3rem;
        line-height: 1.8rem;
        overflow: hidden;
      }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_newsContent__3iro9 .MultiNewsArticlesCarousel_title__1ieuK .MultiNewsArticlesCarousel_link__2QgGV {
          text-decoration: none;
          color: #818181;
          color: var(--secondary-gray);
        }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_moreNewsContainer__2Mofh {
      text-align: right;
      float: right;
      width: 10%;
      min-width: 100px;
    }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_moreNewsContainer__2Mofh .MultiNewsArticlesCarousel_moreNewsLine__1cuX4 {
        margin-right: 0px;
        border: 1px solid #ff873c;
        border: 1px solid var(--primary-colour);
      }
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_linesPages__2Dykt {
    display: none;
  }

@media screen and (max-width: 1024px) {
  .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_newsContent__3iro9 .MultiNewsArticlesCarousel_title__1ieuK {
    font-size: 1.25rem;
    line-height: 1em;
  }
}

@media screen and (max-width: 767px) {
    .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_arrow__7aCEC {
      display: none;
    }
      .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_line__134Rk {
        width: 55%;
      }
      .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_newsContent__3iro9 {
        width: 15%;
        height: 30%;
      }
        .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_newsContent__3iro9 .MultiNewsArticlesCarousel_dateAndType__1j1aI {
          margin-bottom: 0;
        }
        .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_newsContent__3iro9 .MultiNewsArticlesCarousel_titleContainer__3ZrRO {
          width: 90%;
          line-height: 1rem;
        }
          .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_newsContent__3iro9 .MultiNewsArticlesCarousel_titleContainer__3ZrRO .MultiNewsArticlesCarousel_title__1ieuK {
            font-size: 1.25rem;
            line-height: 1em;
          }
      .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_content__37yZs {
        height: 75%;
        margin: 5% 0;
      }
        .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_content__37yZs .MultiNewsArticlesCarousel_innerContent__2noNi {
          width: 800%;
        }
        .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_content__37yZs .MultiNewsArticlesCarousel_moveRight1__3ztZd {
          transform: translateX(-15%);
        }
        .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_content__37yZs .MultiNewsArticlesCarousel_moveRight2__3_fnb {
          transform: translateX(-30%);
        }
        .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_content__37yZs .MultiNewsArticlesCarousel_moveRight3__26xcD {
          transform: translateX(-45%);
        }
      .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_articlesContainer__14RYJ .MultiNewsArticlesCarousel_newsContent__3iro9 {
        margin: 0;
        height: 33%;
        margin-bottom: .5em;
      }
    .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_moreNewsContainer__2Mofh {
      display: none;
    }
    .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_linesPages__2Dykt {
      display: flex;
    }
      .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_linesPages__2Dykt>* {
        width: 20%;
      }
      .MultiNewsArticlesCarousel_articlesSection__3gSIF .MultiNewsArticlesCarousel_linesPages__2Dykt .MultiNewsArticlesCarousel_selected__1z16S {
        border-color: #ff873c;
        border-color: var(--primary-colour);
      }
}

.MultiNewsArticlesCarousel_spikes__1zWte .MultiNewsArticlesCarousel_type__2wyMU {
    color: black !important;
  }

.MultiNewsArticlesCarousel_spikes__1zWte .MultiNewsArticlesCarousel_title__1ieuK {
    text-transform: uppercase;
  }

.MultiNewsArticlesCarousel_spikes__1zWte .MultiNewsArticlesCarousel_boldFont__3OzYL, .MultiNewsArticlesCarousel_spikes__1zWte .MultiNewsArticlesCarousel_moreNewsContainer__2Mofh {
    border: 1px solid black;
    text-transform: uppercase;
    width: fit-content;
    padding: 5px !important;
  }

.MultiNewsArticlesCarousel_spikes__1zWte .MultiNewsArticlesCarousel_line__134Rk {
    display: none;
  }

.MultiNewsArticlesCarousel_spikes__1zWte .MultiNewsArticlesCarousel_moreNewsLine__1cuX4 {
    display: none;
  }

.MultiNewsArticlesCarousel_spikes__1zWte .MultiNewsArticlesCarousel_moreNewsContainer__2Mofh {
    min-width: unset !important;
    width: unset !important;
  }


.EventReport_eventReport__2f66c {
  background-color: white;
  padding: 2em 0;
}

.EventReport_inner__3Yqjb {
  padding: .5em;
  max-width: 1400px;
  max-width: var(--max-content-width);
  margin: auto;
}

.EventReport_label__1WJYq {
  text-transform: uppercase;
  border-bottom: 2px solid #ff873c;
  border-bottom: 2px solid var(--primary-colour);
  padding: 0 2em .5em 0;
  margin-bottom: .5em;
  display: inline-block;
}

.EventReport_image__1dzLQ img
        {
            margin: 20px 0;
            width: 100%;
        }

@media screen and (min-width: 480px) {

.EventReport_image__1dzLQ img
        {
                max-height: 150px;
                width: auto
        }
            }

@media screen and (min-width: 768px) {

.EventReport_image__1dzLQ img
        {
                margin: 0 20px 0 0
        }
            }

.EventReport_titles__2D1us {
    margin-bottom: 1em;
}

.EventReport_titles__2D1us h2 {
    font-size: 2rem;
    line-height: 1em;
  }

.EventReport_titles__2D1us h3 {
    color: #ff873c;
    color: var(--primary-colour);
    font-size: 1.75rem;
    line-height: 1;
    height: auto;
  }

.EventReport_titles__2D1us img{
      max-width:100%;
  }

.EventReport_highlight__2pYMU {
  color: #ff873c;
  color: var(--primary-colour)
}

.EventReport_more__dWk-e {
  color: #818181;
  color: var(--secondary-gray);
}

@media screen and (min-width: 768px) {
  .EventReport_eventReport__2f66c .EventReport_inner__3Yqjb {
    display: flex;
  }

  .EventReport_label__1WJYq {
    border: 0;
  }

  .EventReport_mainContent__1porX {
    padding-left: 1em;
  }

  .EventReport_titles__2D1us h3,
  .EventReport_titles__2D1us h2 {
    font-size: 2.625rem;
    line-height: 1em;
  }
}



.FeaturedAthleteCarousel_relative__XQdLW {
  position: relative;
  padding-bottom: 25%;
}

.FeaturedAthleteCarousel_titleContainer__31Qqu {
  height: 111px;
  background-color: #262626;
  background-color: var(--primary-gray);
  display: flex;
  align-items: center;
  color: #fff;
}

.FeaturedAthleteCarousel_title__2ByH2 {
  font-size: 1rem;
  color: #fff;
  height: 30%;
  display: flex;
  align-items: center;
  width: 20%;
  padding: 2% 0 2% 10%;
  border-right: 1px solid #a5fa64;
  border-right: 1px solid var(--tertiary-colour);
  min-width: 210px;
}

.FeaturedAthleteCarousel_carouselContainer__V6fZr {
  display: flex;
  position: absolute;
  bottom: 0;
  top: 0;
  height: 100%;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.FeaturedAthleteCarousel_carouselContainer__V6fZr #FeaturedAthleteCarousel_prev__cI36_,
.FeaturedAthleteCarousel_carouselContainer__V6fZr #FeaturedAthleteCarousel_next__3C4jT {
  cursor: pointer;
  position: absolute;
  top: 250px;
  font-size: 14pt;
}

.FeaturedAthleteCarousel_carouselContainer__V6fZr #FeaturedAthleteCarousel_prev__cI36_ {
  left: 50%;
  top: 30%;
}

.FeaturedAthleteCarousel_carouselContainer__V6fZr #FeaturedAthleteCarousel_next__3C4jT {
  right: 50%;
  top: 0%;
}

.FeaturedAthleteCarousel_contentContainer__11z7L {
  min-width: 40%;
  height: 100%;
  left: -30%;
  position: relative;
}

.FeaturedAthleteCarousel_image__1X_BU {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.FeaturedAthleteCarousel_image__1X_BU.FeaturedAthleteCarousel_trendingAthlete__36iyX {
    height: auto;
  }

.FeaturedAthleteCarousel_captionContainer__3QAyl {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 55%,
    rgba(38, 38, 38, 0.80) 100%
  );
}

.FeaturedAthleteCarousel_caption__2xh8K {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 5% 3%;
  width: 100%;
}

.FeaturedAthleteCarousel_featuredContent__2BBvL {
  text-transform: uppercase;
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
  color: #ffffff;
  color: var(--primary-text-colour);
  font-size: 1rem;
}

.FeaturedAthleteCarousel_athleteName__3PTvn {
  font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
  font-family: var(--font-family-headline);
  color: #ffffff;
  color: var(--primary-text-colour);
  font-size:1.25rem;
}

.FeaturedAthleteCarousel_line__30k2z {
  border: 1px solid #ff873c;
  border: 1px solid var(--primary-colour);
  width: 60%;
  margin-left: 0;
}

.FeaturedAthleteCarousel_initialTransform__1OaeC {
  transform: translateX(-100%);
}

.FeaturedAthleteCarousel_transformLeft__3Iwn2 {
  transform: translateX(-200%);
  transition: all 0.7s ease-out;
}

.FeaturedAthleteCarousel_transformRight__1gUww {
  transform: translateX(0%);
  transition: all 0.7s ease-out;
}

#FeaturedAthleteCarousel_left__yc5zG {
  left: 0;
}

#FeaturedAthleteCarousel_right__Qbr1A {
  right: 0;
}

.FeaturedAthleteCarousel_arrowContainer__c_3jV {
  width: 10%;
  position: absolute;
  height: 100%;
  cursor: pointer;
}

.FeaturedAthleteCarousel_arrow__12FRQ::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 70px;
    width: 40px;
    background: url('https://worldathletics.org/static/chev-icon-right.svg');
    background-repeat: no-repeat;
    background-size: contain;
  }

.FeaturedAthleteCarousel_left__yc5zG::after {
  z-index: 10;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.FeaturedAthleteCarousel_left__yc5zG {
  z-index: 10;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

@media screen and (max-width: 1024px) {

  .FeaturedAthleteCarousel_FeaturedAthleteCarouselContainer__WYkcY {
    height: 235px;
  }

  .FeaturedAthleteCarousel_FeaturedAthleteCarouselContainer__WYkcY .FeaturedAthleteCarousel_athleteContainer__2lbph .FeaturedAthleteCarousel_featuredAthlete__1DIqx {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .FeaturedAthleteCarousel_FeaturedAthleteCarouselContainer__WYkcY .FeaturedAthleteCarousel_athleteContainer__2lbph .FeaturedAthleteCarousel_athleteName__3PTvn {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {

  .FeaturedAthleteCarousel_container__3cG4h {
    min-height: 360px;
  }

  .FeaturedAthleteCarousel_title__2ByH2 {
    width: 50%;
    border-bottom: 1px solid #fff;
    border-right: none;
    padding: 0%;
    margin-left: 3%;
  }

  .FeaturedAthleteCarousel_contentContainer__11z7L {
    min-width: 90% !important;
    left: -112% !important;
  }

  .FeaturedAthleteCarousel_carouselContainer__V6fZr {
    height: 250px;
  }

  .FeaturedAthleteCarousel_initialTransform__1OaeC {
    transform: translateX(-70%);
  }

  .FeaturedAthleteCarousel_transformLeft__3Iwn2 {
    transform: translateX(-170%);
  }

  .FeaturedAthleteCarousel_transformRight__1gUww {
    transform: translateX(30%);
  }

  .FeaturedAthleteCarousel_arrow__12FRQ {
    display: none;
  }
}



.Arrow_carouselArrows__2Hnqg {
    margin: 0 1em;
}

.Arrow_carouselArrowDisabled__3fMbA {
    opacity: 10%;
}

.Arrow_left__1Tkev {
    width: 40px;
    height: 70px;
    transform: matrix(-1, 0, 0, -1, 0, 0);
    background: url('https://worldathletics.org/static/chev-right-b.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.Arrow_right__Qazm6 {
    width: 40px;
    height: 70px;
    transform: matrix(1, 0, 0, 1, 0, 0);
    background: url('https://worldathletics.org/static/chev-right-b.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (max-width: 1200px) {
    .Arrow_carouselArrows__2Hnqg {
      display: none;
    }
}


.NewsItem_newsItem__20fNn {
  margin-bottom: 30px;
  background-color: white;
  border: 1px solid #b2adad;
  border: 1px solid var(--footer-text);
}

.NewsItem_latestNewsItem__u5XgT {
  border: 1px solid #b2adad;
  border: 1px solid var(--footer-text);
}

.NewsItem_img__qF8CZ img {
    width: 100%;
  }

.NewsItem_content__1G-Ov {
  padding-top: 20px;
  padding: 20px 15px 15px 15px;
  display: inline-block;
}

.NewsItem_content__1G-Ov.NewsItem_withNewCarousel__1tztD {

    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
  }

@media screen and (max-width: 767px) {

.NewsItem_content__1G-Ov.NewsItem_withNewCarousel__1tztD {
      display: block;
      padding: 0px 5px
  }
    }

.NewsItem_content__1G-Ov.NewsItem_withNewCarousel__1tztD .NewsItem_title__1OTus {
      font-size: 14px !important;
      font-family: 'World Athletics'
,
Arial
,
sans-serif !important;
      font-family: var(--font-family) !important;
      margin-bottom: 0 !important;
    }

@media screen and (max-width: 767px) {

.NewsItem_content__1G-Ov.NewsItem_withNewCarousel__1tztD .NewsItem_title__1OTus {
        font-size: 13px !important
    }
      }

.NewsItem_content__1G-Ov.NewsItem_withNewCarousel__1tztD svg {
      color: #173032;
    }

.NewsItem_meta__3HvVH {
  width: 200px;
  font-size: 0.875rem;
  border-bottom: 1px solid #ff873c;
  border-bottom: 1px solid var(--primary-colour);
  padding-bottom: 5px;
}

.NewsItem_date__3i2r5 {
  float: right;
  text-transform: uppercase;
  color: #707070;
  color: var(--text-colour-light);
}

.NewsItem_category__3ssgz {
  text-transform: uppercase;
}

.NewsItem_latestNewsCarouselCategory__hC19K {
  text-transform: uppercase;
  font-size: 0.9em
}

.NewsItem_text__inuHz {
  color: #707070;
  color: var(--text-colour-light);
  line-height: 1.4em;
  white-space: pre-wrap;
}

.NewsItem_latestNewsCarouselText__4H5ta {
  color: #707070;
  color: var(--text-colour-light);
  line-height: 1.4em;
  white-space: pre-wrap;
}

.NewsItem_title__1OTus {
    margin: 14px 0;
    text-overflow: ellipsis;
    height: 50px;
    white-space: pre-wrap;
    font-family: 'World Athletics Heavy',Arial,sans-serif, sans-serif;
    font-family: var(--font-family-heavy), sans-serif;
    font-weight: 700;
}

.NewsItem_more__12Hc5 {
  color: #ff873c;
  float: right;
}

.NewsItem_latestNewsCarouselMore__2UXBM {
  color: #ff873c;
  float: right;
}

@media not screen and (min-width: 1124px) {
  .NewsItem_latestNewsCarouselText__4H5ta {
    display: none;
  }
  .NewsItem_latestNewsCarouselMore__2UXBM {
    display: none;
  }
}

@media (max-width: 767px) {
  .NewsItem_latestNewsCarouselText__4H5ta {
    display: none;
  }
  .NewsItem_latestNewsCarouselMore__2UXBM {
    display: none;
  }
  .NewsItem_latestNewsCarouselCategory__hC19K {
    display: none;
  }
    .NewsItem_title__1OTus {
        height: 50px;
    }
}

.NewsItem_spikes__2uDff .NewsItem_meta__3HvVH {
    border-bottom: 1px solid #707070;
  }

.NewsItem_spikes__2uDff .NewsItem_img__qF8CZ {
    filter: grayscale(100%);
  }

.NewsItem_spikes__2uDff .NewsItem_title__1OTus {
    height: unset;
    text-transform: uppercase;
  }

.NewsItem_spikes__2uDff .NewsItem_more__12Hc5 {
    color: black;
  }
.CarouselNewsContainer_newsContainer__39Jop {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.CarouselNewsContainer_news__1geDQ {
    width: 28%;
    margin: 0em 1em;
  }

@media not screen and (min-width: 1124px) {
    .CarouselNewsContainer_news__1geDQ {
      width: 31%;
      margin: 0 0.3em;
      box-shadow: 0px 3px 6px #00000029;
    }
  }

@media (max-width: 767px) {
    .CarouselNewsContainer_newsContainer__39Jop {
      overflow-x: scroll;
      justify-content: start;
    }
    .CarouselNewsContainer_newsContainer__39Jop::-webkit-scrollbar {
      display: none;
    }

    .CarouselNewsContainer_news__1geDQ {
      width: 230px;
      margin: 0 0.5em;
      box-shadow: 0px 3px 6px #00000029;
    }
  }

.CarouselNewsContainer_compModeNews__2deqE {
  width: 100%;
  box-shadow: none;
  margin: 0;
}

.LatestNewsCarousel_carouselContainer__2IEgN {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
}

  .LatestNewsCarousel_carouselContainer__2IEgN.LatestNewsCarousel_withNewCarouselContainer__1hijU {
    background: white;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
  }

  @media screen and (max-width: 767px) {

  .LatestNewsCarousel_carouselContainer__2IEgN.LatestNewsCarousel_withNewCarouselContainer__1hijU {
      padding: 6px 0px 12px 12px
  }
    }

  .LatestNewsCarousel_carouselContainer__2IEgN.LatestNewsCarousel_withNewCarouselContainer__1hijU .LatestNewsCarousel_latestNewsTitleContainer__99Kq_ {
      margin: 0 !important;
    }

.LatestNewsCarousel_carouselNewsContainer__1TgtT {
  flex: 1 1;
}

.LatestNewsCarousel_carousel__2GUsR {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 16px;
}

.LatestNewsCarousel_latestNewsTitleContainer__99Kq_ {
  align-self: flex-start;
  margin: 1em 3em 1em 0;
}

.LatestNewsCarousel_moreNewsTitleContainer__1Mikn {
  text-align: right;
  align-self: flex-end;
  margin: 1em 0em 1em 3em;
}

.LatestNewsCarousel_title__1DpF2 {
  text-transform: uppercase;
  font-size: 16px;
}

.LatestNewsCarousel_line__1VfJj {
  border: 1px solid #ff873c;
  border: 1px solid var(--primary-colour);
  width: 178px;
  margin-left: 0;
}

@media not screen and (min-width: 1124px) {
  .LatestNewsCarousel_latestNewsTitleContainer__99Kq_ {
    margin: 1em;
  }

  .LatestNewsCarousel_moreNewsTitleContainer__1Mikn {
    margin: 1em;
  }
    .LatestNewsCarousel_withNewCarouselContainer__1hijU .LatestNewsCarousel_moreNewsTitleContainer__1Mikn {
      margin: 0;
    }
}
.ScrollItem_newsItem__3VE5N {
    margin-bottom: 30px;
    background-color: white;
    border: 1px solid #b2adad;
    border: 1px solid var(--footer-text);
  }
  
  .ScrollItem_latestNewsItem__I21ym {
    border: 1px solid #b2adad;
    border: 1px solid var(--footer-text);
  }
  
  .ScrollItem_img__xEYah img {
      width: 100%;
    }
  
  .ScrollItem_content__1n6eh {
    padding-top: 20px;
    padding: 20px 15px 15px 15px;
  }
  
  .ScrollItem_meta__1kJcp {
    font-size: 0.875rem;
    border-bottom: 1px solid #ff873c;
    border-bottom: 1px solid var(--primary-colour);
    padding-bottom: 5px;
  }
  
  .ScrollItem_meta__1kJcp.ScrollItem_spikes__3shnt {
      border-bottom: 1px solid #ffee02;
    }
  
  .ScrollItem_date__2rLRu {
    float: right;
    text-transform: uppercase;
    color: #707070;
    color: var(--text-colour-light);
  }
  
  .ScrollItem_category__2oqBj {
    text-transform: uppercase;
  }
  
  .ScrollItem_latestNewsCarouselCategory__SRXIh {
    text-transform: uppercase;
    font-size: 0.9em
  }
  
  .ScrollItem_text__39wio {
    color: #707070;
    color: var(--text-colour-light);
    line-height: 1.4em;
    white-space: pre-wrap;
    flex: 1 1;
  }
  
  .ScrollItem_latestNewsCarouselText__2rtpJ {
    color: #707070;
    color: var(--text-colour-light);
    line-height: 1.4em;
    white-space: pre-wrap;
  }
  
  .ScrollItem_title__3kL7o {
      margin: 14px 0;
      text-overflow: ellipsis;
      overflow: hidden;
      height: 50px;
      white-space: pre-wrap;
      font-family: 'World Athletics Heavy',Arial,sans-serif, sans-serif;
      font-family: var(--font-family-heavy), sans-serif;
      font-weight: 700;
  }
  
  .ScrollItem_more__XeyhG {
    color: #ff873c;
    float: right;
    margin-left: auto;
  }
  
  .ScrollItem_more__XeyhG.ScrollItem_spikes__3shnt {
      color: #262626;
      color: var(--primary-gray);
    }
  
  .ScrollItem_latestNewsCarouselMore__1xK_g {
    color: #ff873c;
    float: right;
  }
  
  @media not screen and (min-width: 1124px) {
    .ScrollItem_latestNewsCarouselText__2rtpJ {
      display: none;
    }
    .ScrollItem_latestNewsCarouselMore__1xK_g {
      display: none;
    }
  }
  
  @media (max-width: 767px) {
    .ScrollItem_content__1n6eh {
      min-height: 230px;
      display: flex;
      flex-direction: column;
    }
    .ScrollItem_latestNewsCarouselText__2rtpJ {
      display: none;
    }
    .ScrollItem_latestNewsCarouselMore__1xK_g {
      display: none;
    }
    .ScrollItem_latestNewsCarouselCategory__SRXIh {
      display: none;
    }
      .ScrollItem_title__3kL7o {
          height: 50px;
      }
  }
  
.style_news__3nwZn {
  padding-right: .5em;
  max-width: 350px;
  text-align: left;
}
.style_gallery__NrYX5 {
  overflow: hidden;
  height: auto;
}
.style_gallery__NrYX5 .slick-list {
    padding: 0;
    margin-left: 3%;
    margin-right: 4%;
  }
.style_gallery__NrYX5 .slick-list {
    text-align: center;
  }
@media screen and (max-width: 1200px) {
    .style_gallery__NrYX5 .slick-list {
      padding: 0;
      margin-left: 0.3em;
      margin-right: 0;
    }
  }
.style_scrollNewsCarouselContainer__2jRG9 {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
  }
.style_carouselNewsContainer__5I4zz {
    flex: 1 1;
  }
.style_carousel__1n3Vk {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
.style_latestNewsTitleContainer__3q9nB {
    align-self: flex-start;
    margin: 1em 3em 1em 0;
  }
.style_moreNewsTitleContainer__1yBSV {
    text-align: right;
    align-self: flex-end;
    margin: 1em 0em 1em 3em;
  }
.style_title__1em84 {
    text-transform: uppercase;
    font-size: 16px;
  }
.style_line__rCbTu {
    border: 1px solid #ff873c;
    border: 1px solid var(--primary-colour);
    width: 178px;
    margin-left: 0;
  }
.style_line__rCbTu.style_spikes__3lZhF {
      border: 1px solid #ffee02;
    }
@media not screen and (min-width: 1124px) {
    .style_latestNewsTitleContainer__3q9nB {
      margin: 1em;
    }
  
    .style_moreNewsTitleContainer__1yBSV {
      margin: 1em;
    }
  }
.styles_contentWrap__37mXs {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
  width: 100%;
  padding: 40px 20px;
}
  @media(max-width: 767px) {.styles_contentWrap__37mXs {
    padding: 20px 10px
}
  }
.styles_noData__2UQnG {
  color: white;
  padding: 1em;
  background-color: rgba(0,0,0,0.5);
  margin: 0 auto;
  max-width: 1400px;
}


.NewsItemLite_newsItemLite__3lQ_a {
  background-color: white;
  margin-bottom: 1em;
}

  .NewsItemLite_newsItemLite__3lQ_a h3 {
    height: 50px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  @media(max-width: 767px){

  .NewsItemLite_newsItemLite__3lQ_a.NewsItemLite_relatedArticles__1ydrA {
      box-shadow: 1px 3px 9px 0px rgb(0 0 0 / 42%)
  }
    }
.NewsItemLite_copyright__1tcDK {
  font-size: 1rem;
  line-height: 1.6;
}
.NewsItemLite_content__2wysa {
  padding: 1em;
  border: 1px solid #b2adad;
  border: 1px solid var(--footer-text);
}
@media(max-width: 767px){
.NewsItemLite_content__2wysa {
    padding: 10px
}
  }
.NewsItemLite_img__2Ef4J {
  position: relative;
}
.NewsItemLite_image__3ps9E,
.NewsItemLite_img__2Ef4J {
  width: 100%;
}
.NewsItemLite_competitionHomeDate__29GeE {
  text-transform: uppercase;
  color: #707070;
  color: var(--text-colour-light);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 80%;
}
@media not screen and (min-width: 1124px) {
.NewsItemLite_competitionHomeDate__29GeE {
    width: 80%
}
  }
.NewsItemLite_competitionHomeDesc__1lHU5{
  margin-top: 1em;
}
@media not screen and (min-width: 1124px) {
.NewsItemLite_competitionHomeNewsType__14EDl {
    display: none
}
  }
@media not screen and (min-width: 1124px) {
.NewsItemLite_relatedArticles__1ydrA .NewsItemLite_competitionHomeNewsType__14EDl {
      display: block
  }
    }
@media not screen and (min-width: 1124px) {
.NewsItemLite_relatedArticles__1ydrA .NewsItemLite_competitionDate__wOuuc {
      display: none
  }
    }
.NewsItemLite_relatedArticles__1ydrA img {
    aspect-ratio: 6 / 4;
    width: 100%;
  }
.NewsItemLite_competitionHomeReadMore__22p1j {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  color: #ff873c;
  color: var(--primary-colour);
  font-weight: normal;
}
@media (max-width: 767px) {
.NewsItemLite_competitionHomeReadMore__22p1j.NewsItemLite_athletes__38o5a {
      display: none
  }
    }
.NewsItemLite_line__1lUzc {
  width: 80%;
  margin: 0.2em 0 0.5em 0;
  border: 0 solid #ff873c;
  border: 0 solid var(--primary-colour);
  border-top-width: 1px;
  margin-bottom: 1em;
  justify-content: left;
}
@media not screen and (min-width: 1124px) {
.NewsItemLite_line__1lUzc {
    width: 50%
}
  }
.NewsItemLite_date__3xY50 {
  padding: 0 3em 0.25em 0;
  display: inline-block;
  text-transform: uppercase;
  border-bottom: 1px solid #ff873c;
  border-bottom: 1px solid var(--link-active-colour);
  margin-bottom: 1em;
  color: #707070;
  color: var(--text-colour-light);
}
.NewsItemLite_relatedArticles__1ydrA .NewsItemLite_date__3xY50 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 0.25em 0;
}
.NewsItemLite_morerelatedArticlesNews__2ElP3 .NewsItemLite_date__3xY50 .NewsItemLite_competitionHomeNewsType__14EDl {
  flex-grow: 1;
}
.NewsItemLite_topicTitle__pdmQC {
  padding: 0 3em 0.25em 0;
  display: inline-block;
  text-transform: uppercase;
  border-bottom: 1px solid #ff873c;
  border-bottom: 1px solid var(--primary-colour);
}
.NewsItemLite_overlay__B9416 {
  position: absolute;

  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 33%,
    rgba(38, 38, 38, 0.8939950980392157) 79%
  );
  width: 100%;
  z-index: 1;
  height: 40%;
}
.NewsItemLite_relatedArticles__1ydrA .NewsItemLite_title__Ug3bQ {
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
}
@media(max-width: 767px) {
.NewsItemLite_relatedArticles__1ydrA .NewsItemLite_title__Ug3bQ {
    font-size: 16px
}
  }
.NewsItemLite_spikesNewsLite__3zzXC .NewsItemLite_date__3xY50, .NewsItemLite_spikesNewsLite__3zzXC .NewsItemLite_line__1lUzc {
    border-color: #707070;
  }
.NewsItemLite_spikesNewsLite__3zzXC .NewsItemLite_img__2Ef4J {
    filter: grayscale(1);
  }
.NewsItemLite_spikesNewsLite__3zzXC .NewsItemLite_competitionHomeReadMore__22p1j {
    color: black;
  }
.NewsItemLite_spikesNewsLite__3zzXC .NewsItemLite_competitionHomeDesc__1lHU5 {
    color: #707070;
    color: var(--text-colour-light);
    margin-top: 0;
  }
.NewsItemLite_spikesNewsLite__3zzXC .NewsItemLite_category__24GIG {
    text-transform: uppercase;
    margin-right: 20px;
    color: #000;
  }
.NewsItemLite_spikesNewsLite__3zzXC h3 {
    height: auto;
    text-transform: uppercase;
  }
.NewsItemLite_competitionHomeAthlete__2HS0m .NewsItemLite_competitionHomeReadMore__22p1j {
    color: #bd94ff !important;
    color: var(--quaternary-colour) !important;
  }
.NewsItemLite_competitionHomeAthlete__2HS0m .NewsItemLite_line__1lUzc {
    border-color: #bd94ff;
    border-color: var(--quaternary-colour);
  }
@media(max-width: 767px){
  .NewsItemLite_competitionHomeAthlete__2HS0m {
    min-width: 44vw;
  }
    .NewsItemLite_competitionHomeAthlete__2HS0m .NewsItemLite_competitionHomeDesc__1lHU5, .NewsItemLite_competitionHomeAthlete__2HS0m .NewsItemLite_competitionHomeReadMore__22p1j {
      display: none;
    }
    .NewsItemLite_competitionHomeAthlete__2HS0m h3{
      font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
      font-family: var(--font-family-bold);
      font-size: 1rem;
    }
    .NewsItemLite_competitionHomeAthlete__2HS0m .NewsItemLite_competitionHomeDate__29GeE {
      font-size: 1rem;
    }
}

.TopRecords_transformLeft__39OrO {
  transition: all 1s ease-out;
}

.TopRecords_outerCard__1yIRN {
  padding: 3%;
  height: 100%;
}

.TopRecords_inner__3NfA9 {
  max-width: 1400px;
  max-width: var(--max-content-width);
}

.TopRecords_card__2WgNb {
  background-color: white;
  position: relative;
  box-shadow: 0px 5px 8px #00000029;
  width: 100%;
}

.TopRecords_container__1BF04 {
  max-width: 1400px;
  display: flex;
  margin: auto;
  align-items: center;
}

.TopRecords_container__1BF04 .TopRecords_strapLine__3mGGb {
    color: #ffffff;
    color: var(--primary-text-colour);
    font-size: 16px;
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family-regular);
    margin-bottom: 30px;
  }

@media screen and (max-width: 1440px) {

.TopRecords_container__1BF04 .TopRecords_strapLine__3mGGb {
      margin-left: 4%
  }
    }

.TopRecords_slick-prev__UItBw,
.TopRecords_slick-next__27ctc {
  height: 0;
  text-indent: -100em;
}

.TopRecords_slick-next__27ctc::after,
.TopRecords_slick-prev__UItBw::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -5px;
  margin: auto;
  height: 65px;
  width: 40px;
  background: url('https://worldathletics.org/static/chev-right-b.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.TopRecords_slick-prev__UItBw::after {
  left: 4px;
  right: auto;
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
}

.TopRecords_slick-disabled__3bkox {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .TopRecords_slick-next__27ctc {
    display: none !important;
  }
}

@media screen and (min-width: 1400px) {
  .TopRecords_slick-prev__UItBw::after,
  .TopRecords_slick-next__27ctc::after {
    padding: 20px;
  }
}

.TopRecords_topListsContainer__3qWVK {
  background-color: #a5fa64;
  background-color: var(--tertiary-colour);
}

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    max-width: 1400px;
    max-width: var(--max-content-width);
    margin: auto;
    padding: 0 0 30px 0;
  }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa.TopRecords_myAthletics__6SorS {
     max-width: 1555px;
    }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_textContainer__1TW_7 {
      padding-left: 4%;
      width: 20%;
    }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_textContainer__1TW_7 .TopRecords_topLists__2bE8u {
        font-family: 'World Athletics'
,
Arial
,
sans-serif;
        font-family: var(--font-family-regular);
        text-transform: uppercase;
        width: 50%;
        padding-bottom: 5%;
        border-bottom: 1px solid black;
      }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_textContainer__1TW_7 .TopRecords_mainTitle__5yayh {
        font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
        font-family: var(--font-family-headline);
        font-size: 1.75rem;
        line-height: 1em;
        width: 50%;
        margin-top: 5%;
      }

@media screen and (min-width: 1025px) {

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_textContainer__1TW_7 .TopRecords_mainTitle__5yayh {
          font-size: 2.625rem
      }
        }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_textContainer__1TW_7 .TopRecords_link__2Of3U {
        font-family: 'World Athletics'
,
Arial
,
sans-serif;
        font-family: var(--font-family-regular);
        color: #000;
        line-height: 4rem;
      }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_text__1YU0N {
      margin-left: 6%;
    }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm {
      width: 76%;
      height: 100%;
      overflow: hidden;
      padding: 1.5em 0;
    }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_card__2WgNb {
        height: 100%;
        background-color: #fff;
        position: relative;
        box-shadow: 0px 5px 8px #00000029;
      }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_card__2WgNb .TopRecords_defaultImage__rhSMS {
          background-repeat: no-repeat;
          background-position: top;
          background-size: cover;
          background-repeat: no-repeat;
          max-width: 100%;
          width: 100%;
          height: 180px;
          position: relative;
        }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_card__2WgNb .TopRecords_imageContainer__1_8UK {
          position: relative;
        }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_card__2WgNb .TopRecords_imageContainer__1_8UK .TopRecords_image__1lexI {
            object-fit: cover;
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
          }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_card__2WgNb .TopRecords_imageContainer__1_8UK .TopRecords_image__1lexI::after {
            background: linear-gradient(
              0deg,
              rgba(2, 0, 36, 1) 0%,
              rgba(0, 0, 0, 1) 1%,
              rgba(255, 255, 255, 0) 100%
            );
          }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_card__2WgNb .TopRecords_imageContainer__1_8UK .TopRecords_discipline__3QIS8 {
            position: absolute;
            left: 1em;
            bottom: 1em;
            color: #fff;
            font-family: 'World Athletics'
,
Arial
,
sans-serif;
            font-family: var(--font-family-regular);
            text-transform: uppercase;
            text-shadow: 0 0 5px black;
            font-size: 0.875rem;
            line-height: 1em;
          }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_card__2WgNb .TopRecords_cardText__16E9a {
          padding: 4%;
        }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_card__2WgNb .TopRecords_cardText__16E9a .TopRecords_athleteName__3JDEQ {
            font-size: 1rem;
            line-height: 1em;
            font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
            font-family: var(--font-family-headline);
          }

@media screen and (min-width: 1025px) {

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_card__2WgNb .TopRecords_cardText__16E9a .TopRecords_athleteName__3JDEQ {
              font-size: 1.25rem
          }
            }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_card__2WgNb .TopRecords_cardText__16E9a .TopRecords_athleteNationality__2GeQR {
            color: #818181;
            color: var(--secondary-gray);
            text-transform: uppercase;
            font-size: 0.875rem;
            margin: 2% 0;
          }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_card__2WgNb .TopRecords_cardText__16E9a .TopRecords_markContent__1T5wq {
            display: flex;
            align-items: center;
            margin: 2% 0;
          }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_card__2WgNb .TopRecords_cardText__16E9a .TopRecords_markContent__1T5wq .TopRecords_markTitle__1mnb1 {
              font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
              font-family: var(--font-family-headline);
              margin: 0;
              font-size: 1rem;
              text-transform: uppercase;
            }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_card__2WgNb .TopRecords_cardText__16E9a .TopRecords_markContent__1T5wq .TopRecords_athleteMark__1KMYh {
              font-family: 'World Athletics'
,
Arial
,
sans-serif;
              font-family: var(--font-family-regular);
              color: #818181;
              color: var(--secondary-gray);
              font-size: 1rem;
              margin-left: 2%;
            }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_card__2WgNb .TopRecords_cardText__16E9a .TopRecords_line__25lr7 {
            border-color: #a5fa64;
            border-color: var(--tertiary-colour);
            width: 40%;
            margin-left: 0;
          }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm.TopRecords_relatedArticles__3_3kq {
      width: 100%;
    }

.TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_mobileLink__3z1L8 {
      display: none;
    }

.TopRecords_topListsContainer__3qWVK .TopRecords_newLeadersContainer__1WzSN {
    height: 142px;
    width: 100%;
    background-color: #253418;
    color: white;
  }

.TopRecords_topListsContainer__3qWVK .TopRecords_newLeadersContainer__1WzSN .TopRecords_secondaryInner__3AFDL {
      align-items: center;
      justify-content: space-evenly;
      max-width: 1400px;
      max-width: var(--max-content-width);
      margin: auto;
      height: 100%;
      padding: 0.5em;
    }

.TopRecords_topListsContainer__3qWVK .TopRecords_newLeadersContainer__1WzSN .TopRecords_secondaryInner__3AFDL .TopRecords_lightGreen__1mnXP {
        color: #e3f7d2;
        text-transform: uppercase;
        font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
        font-family: var(--font-family-bold);
      }

.TopRecords_topListsContainer__3qWVK .TopRecords_newLeadersContainer__1WzSN .TopRecords_secondaryInner__3AFDL .TopRecords_newLeaders__1DxX4 {
        text-transform: uppercase;
        font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
        font-family: var(--font-family-headline);
        padding-right: 1rem;
        font-size: 1.25rem;
      }

.TopRecords_topListsContainer__3qWVK .TopRecords_newLeadersContainer__1WzSN .TopRecords_secondaryInner__3AFDL .TopRecords_green__2uk-o {
        color: #a5fa64;
      }

.TopRecords_topListsContainer__3qWVK .TopRecords_newLeadersContainer__1WzSN .TopRecords_secondaryInner__3AFDL .TopRecords_white__2TO7y {
        color: #ffffff;
        line-height: 2rem;
      }

@media screen and (min-width: 480px) {

.TopRecords_topListsContainer__3qWVK .TopRecords_newLeadersContainer__1WzSN .TopRecords_secondaryInner__3AFDL {
        display: flex
    }
      }

.TopRecords_topListsContainer__3qWVK .TopRecords_fullList__109qe {
    display: none;
  }

@media screen and (max-width: 768px) {
    .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa {
      flex-direction: column;
    }

      .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_arrow__20Dmu {
        display: none;
      }

      .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_textContainer__1TW_7 {
        width: 100%;
        margin-top: 5%;
        padding-left: 2%;
      }

        .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_textContainer__1TW_7 .TopRecords_mainTitle__5yayh {
          width: 100%;
        }

        .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_textContainer__1TW_7 .TopRecords_topLists__2bE8u {
          padding-bottom: 3%;
        }

        .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_textContainer__1TW_7 .TopRecords_link__2Of3U {
          display: none;
        }

      .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm::-webkit-scrollbar {
        display: none;
      }

      .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm {
        width: 100%;
        overflow: auto;
        overflow: hidden;
        margin-bottom: 10%;
      }

        .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_innerContainer__2Jd6E {
          width: 288%;
        }

          .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_innerContainer__2Jd6E .TopRecords_card__2WgNb {
            height: 80%;
            margin: 0% 0.2%;
          }
              .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_innerContainer__2Jd6E .TopRecords_card__2WgNb .TopRecords_imageContainer__1_8UK .TopRecords_discipline__3QIS8 {
                top: 50%;
              }
              .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_innerContainer__2Jd6E .TopRecords_card__2WgNb .TopRecords_cardText__16E9a .TopRecords_line__25lr7 {
                border-color: #ff873c;
                border-color: var(--primary-colour);
              }

              .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_innerContainer__2Jd6E .TopRecords_card__2WgNb .TopRecords_cardText__16E9a .TopRecords_athleteName__3JDEQ {
                font-size: 1rem;
                margin-top: 0;
              }
}

@media screen and (max-width: 768px) and screen and (min-width: 1025px) {

              .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_athletesContainer__2wVrm .TopRecords_innerContainer__2Jd6E .TopRecords_card__2WgNb .TopRecords_cardText__16E9a .TopRecords_athleteName__3JDEQ {
                  font-size: 1.25rem
              }
                }

@media screen and (max-width: 768px) {
      .TopRecords_topListsContainer__3qWVK .TopRecords_leadingAthletes__2eoTa .TopRecords_mobileLink__3z1L8 {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        border-top: 1px solid #000;
        padding: 3%;
        width: 50%;
        text-align: right;
      }

    .TopRecords_topListsContainer__3qWVK .TopRecords_newLeadersContainer__1WzSN {
      flex-direction: column;
      align-items: unset;
      padding: 2% 1%;
      height: 100%;
    }

      .TopRecords_topListsContainer__3qWVK .TopRecords_newLeadersContainer__1WzSN .TopRecords_leaderContent__dwV1g {
        margin: 5% 0;
      }
}

/* ================================================
  WORLRD RANKINGS THEME
================================================= */

.TopRecords_topListsContainer__3qWVK.TopRecords_topRankings__20CxA {
    background-color: #69d7e1;
    background-color: var(--secondary-colour);
  }

.TopRecords_topListsContainer__3qWVK.TopRecords_topRankings__20CxA .TopRecords_leadingAthletes__2eoTa {
      height: auto;
    }

.TopRecords_topListsContainer__3qWVK.TopRecords_topRankings__20CxA .TopRecords_leadingAthletes__2eoTa .TopRecords_card__2WgNb .TopRecords_cardText__16E9a {
        height: auto;
        width: 100%;
      }

.TopRecords_topListsContainer__3qWVK.TopRecords_topRankings__20CxA .TopRecords_leadingAthletes__2eoTa .TopRecords_card__2WgNb .TopRecords_cardText__16E9a .TopRecords_line__25lr7 {
          border-color: #ff873c;
          border-color: var(--primary-colour);
        }

.TopRecords_topListsContainer__3qWVK.TopRecords_topRankings__20CxA .TopRecords_fullList__109qe {
      display: block;
      text-transform: uppercase;
      color: #ff873c;
      color: var(--primary-colour);
      float: right;
      right: 20px;
    }

/* ================================================
  TOP RANKINGS THEME
================================================= */

@media screen and (max-width: 767px) {
  .TopRecords_topListsContainer__3qWVK.TopRecords_topRankings__20CxA .TopRecords_leadingAthletes__2eoTa .TopRecords_card__2WgNb .TopRecords_cardText__16E9a .TopRecords_line__25lr7 {
    margin: 0;
  }
}

/* ================================================
  LATEST RECORDS THEME
================================================ */

.TopRecords_topListsContainer__3qWVK.TopRecords_latestRecords__JJu3d {
    background-color: #ff873c;
    background-color: var(--primary-colour);
  }

.TopRecords_topListsContainer__3qWVK.TopRecords_latestRecords__JJu3d .TopRecords_card__2WgNb {
      padding: 20px;
    }

.TopRecords_topListsContainer__3qWVK.TopRecords_latestRecords__JJu3d .TopRecords_athleteName__3JDEQ {
      width: 80%;
      display: inline-block;
      font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
      font-family: var(--font-family-bold);
      font-size: 1.25rem;
      line-height: 1em;
      border-top: 2px solid #ff873c;
      border-top: 2px solid var(--primary-colour);
      border-bottom: 2px solid #ff873c;
      border-bottom: 2px solid var(--primary-colour);
      padding: 10px 0;
      margin: 10px 0;
      display: flex;
      flex-wrap: wrap;
    }

.TopRecords_topListsContainer__3qWVK.TopRecords_latestRecords__JJu3d .TopRecords_athleteName__3JDEQ span:first-child {
        margin-right: 5px;
      }

.TopRecords_topListsContainer__3qWVK.TopRecords_latestRecords__JJu3d .TopRecords_country__B7KDZ {
      font-size: 1rem;
      text-transform: uppercase;
      font-family: 'World Athletics'
,
Arial
,
sans-serif;
      font-family: var(--font-family-regular);
      color: #818181;
      color: var(--secondary-gray);
      margin-top: 5px;
      flex: 1 1 100%;
    }

.TopRecords_topListsContainer__3qWVK.TopRecords_latestRecords__JJu3d .TopRecords_recordValue__1S3Dj {
      font-size: 2.8rem;
      line-height: 1em;
      margin: 0.5em 0 0.25em 0;
      font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
      font-family: var(--font-family-bold);
      color: #ff873c;
      color: var(--primary-colour);
    }

.TopRecords_topListsContainer__3qWVK.TopRecords_latestRecords__JJu3d .TopRecords_discipline__3QIS8 {
      text-transform: uppercase;
    }

.TopRecords_topListsContainer__3qWVK.TopRecords_latestRecords__JJu3d .TopRecords_recordType__1uUMQ {
      text-transform: none;
    }

.TopRecords_topListsContainer__3qWVK .TopRecords_when__31WEo,
  .TopRecords_topListsContainer__3qWVK .TopRecords_where__2bOuT {
    font-size: 1rem;
  }

.TopRecords_topListsContainer__3qWVK .TopRecords_wLabel__1_Wr2 {
    font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
    font-family: var(--font-family-headline);
  }

@media screen and (max-width: 767px) {
    .TopRecords_topListsContainer__3qWVK .slick-list {
      overflow: visible;
    }
  }

.TopRecords_recordType__1uUMQ {
  color: white;
  text-transform: uppercase;
  background-color: #262626;
  margin-left: -30px;
  padding: 7px 30px 7px 30px;
  display: inline-block;
  line-height: 24px;
  position: relative;
}

.TopRecords_recordType__1uUMQ:before {
  content: '';
  left: 0;
  bottom: -10px;
  position: absolute;
  border-left: 10px solid transparent;
  border-top: 10px solid #818181;
  border-top: 10px solid var(--grayscale-mid);
}

.TopRecords_singleRecordWrap__3sUTG {
  width: 90%;
  margin: 0 1em;
}

.TopRecords_singleRecordLabel__2zVDr {
  font-size: 1.25rem;
  font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
  font-family: var(--font-family-headline);
  margin-bottom: 0.25em;
}

.TopRecords_singleRecordMark__3qrAL {
  color: #ff873c;
  color: var(--primary-colour);
  font-size: 3.125rem;
  display: inline-block;
  margin-right: 0.25em;
  font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
  font-family: var(--font-family-headline);
}

.TopRecords_singleRecordName__Ho6JJ {
  display: inline-block;
}

@media screen and (min-width: 1025px) {
  .TopRecords_singleRecordWrap__3sUTG {
    margin: auto;
  }
  .TopRecords_singleRecordLabel__2zVDr,
  .TopRecords_singleRecordMark__3qrAL {
    display: inline-block;
    font-size: 3.125rem;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
  }

  .TopRecords_singleRecordMark__3qrAL {
    color: #ff873c;
    color: var(--primary-colour);
    margin: 0 0.5em 0 0.5em;
  }

  .TopRecords_singleRecordName__Ho6JJ {
    display: inline-block;
  }
}

/* ================================================
  MORE NEWS THEME
================================================= */

.TopRecords_topListsContainer__3qWVK.TopRecords_relatedArticles__3_3kq .TopRecords_athletesContainer__2wVrm {
      width: 100%;
      height: 100%;
      overflow: hidden;
      padding: 1.5em 0;
      
    }

.TopRecords_topListsContainer__3qWVK.TopRecords_relatedArticles__3_3kq .TopRecords_athletesContainer__2wVrm .TopRecords_relatedArticles__3_3kq {
        display: block!important;
        width: calc(99.9% - (20px - 20px * 1/3))!important;
      }

.TopRecords_topListsContainer__3qWVK.TopRecords_relatedArticles__3_3kq .TopRecords_athletesContainer__2wVrm .TopRecords_relatedArticles__3_3kq.TopRecords_myAthletics__6SorS {
          width: calc(99.9% - (40px - 40px * 1/3))!important;
        }

@media(max-width: 767px) {

.TopRecords_topListsContainer__3qWVK.TopRecords_relatedArticles__3_3kq .TopRecords_athletesContainer__2wVrm {
        margin-bottom: 0;
        padding: 1.5em 0 0
      
    }
      }

.TopRecords_topListsContainer__3qWVK.TopRecords_relatedArticles__3_3kq.TopRecords_myAthletics__6SorS .TopRecords_athletesContainer__2wVrm {
        padding: 0 0 0 1.5em;
      }

@media(max-width: 767px) {

.TopRecords_topListsContainer__3qWVK.TopRecords_relatedArticles__3_3kq .TopRecords_mobileLink__3z1L8 {
          border-top: 1px solid #000;
          width: 50%;
          text-align: right;
          margin-left: auto;
          margin-right: 10px;
          position: static;
          padding: 10px 0 10px 
    }
        }

.TopRecords_topListsContainer__3qWVK.TopRecords_relatedArticles__3_3kq h3.TopRecords_mainTitle__5yayh {
      font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
      font-family: var(--font-family-headline);
      font-size: 24px;
      line-height: 1em;
      margin-top: 5%;
      margin-left: 5%;
      margin-bottom: 1rem;
  }

.TopRecords_topListsContainer__3qWVK.TopRecords_relatedArticles__3_3kq h3.TopRecords_mainTitle__5yayh.TopRecords_myAthletics__6SorS {
        font-size: 36px;
        color: #ffffff;
        color: var(--primary-text-colour);
        font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
        font-family: var(--font-family-bold);
        margin-left: 4%;
      }

.TopRecords_topListsContainer__3qWVK.TopRecords_relatedArticles__3_3kq h3.TopRecords_mainTitle__5yayh.TopRecords_athletes__3_Kq7 {
        text-transform: uppercase;
        font-size: 16px;
        border-bottom: 1px solid #262626;
        border-bottom: 1px solid var(--primary-gray);
        max-width: 180px;
        line-height: 2;
      margin: 0 5% 1rem;
    }

@media (max-width: 767px) {

.TopRecords_topListsContainer__3qWVK.TopRecords_relatedArticles__3_3kq h3.TopRecords_mainTitle__5yayh.TopRecords_athletes__3_Kq7 {
          border: none;
          text-transform: capitalize
    }
        }

@media(max-width: 1200px) {

.TopRecords_topListsContainer__3qWVK.TopRecords_relatedArticles__3_3kq h3.TopRecords_mainTitle__5yayh.TopRecords_athletes__3_Kq7 {
        margin: 0 2% 1rem
    }
      }

.TopRecords_topListsContainer__3qWVK.TopRecords_relatedArticles__3_3kq h3.TopRecords_mainTitle__5yayh .TopRecords_leadingAthletes__2eoTa {
      display: flex;
      justify-content: space-around;
      align-items: center;
      position: relative;
      max-width: 1550px;
      margin: auto;
    }

@media(max-width: 1200px) {
    .TopRecords_topListsContainer__3qWVK.TopRecords_relatedArticles__3_3kq .slick-list {
    padding: 0;
    margin-left: 2%;
    margin-right: 2%;
  }
  }

.TopRecords_gallery__2OpkT {
  overflow: hidden;
}

.TopRecords_gallery__2OpkT .slick-list {
    padding: 0;
  }

.TopRecords_gallery__2OpkT .slick-slide button {
    display: block !important;
    position: relative;
  }

.TopRecords_gallery__2OpkT .slick-slide > div {
    height: auto;
  }

.TopRecords_gallery__2OpkT .slick-prev::after, .TopRecords_gallery__2OpkT .slick-next::after {
    z-index: 1;
    padding: 30px;
    background: url('https://worldathletics.org/static/chev-right-bw.svg');
    background-size: contain;
    background-repeat: no-repeat;
  }

@media screen and (max-width: 1024px) {
    .TopRecords_gallery__2OpkT .slick-prev::after, .TopRecords_gallery__2OpkT .slick-next::after {
      display: none !important;
    }
  }
.ScrollGrid_scrollGrid__19HCA::-webkit-scrollbar {
  display: none;
}

.ScrollGrid_scrollGrid__19HCA {
  padding: 0 1em;
}

@media(max-width: 767px) {
  .ScrollGrid_competitionHomeAthlete__1yaxf {
    padding: 10px 0 !important;
    overflow-x: auto;
    display: flex;
    gap: 10px;
  }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
  .ScrollGrid_scrollGrid__19HCA {
    padding: 0;
    display: -ms-grid;
    display: grid;
    grid-column: 1 / -1;
    grid-gap: calc(var(--gutter) / 2);
    -ms-grid-columns: 10px;
    grid-template-columns: 10px;
    -ms-grid-rows: minmax(150px, 1fr);
    grid-template-rows: minmax(150px, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: calc(50% - var(--gutter) * 2);
    overflow-x: scroll;
    -ms-scroll-snap-type: x proximity;
    scroll-snap-type: x proximity;
    padding-bottom: calc(0.75 * var(--gutter));
    margin-bottom: calc(-0.25 * var(--gutter));
  }

    .ScrollGrid_scrollGrid__19HCA > div {
      scroll-snap-align: center;
      padding: calc(var(--gutter) / 2 * 1.5);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      background: #fff;
    }

  .ScrollGrid_scrollGrid__19HCA > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .ScrollGrid_scrollGrid__19HCA:before,
  .ScrollGrid_scrollGrid__19HCA:after {
    content: '';
    width: 10px;
  }
}

@media screen and (min-width: 768px) {
  .ScrollGrid_scrollGrid__19HCA {
    padding: 0;
  }
  .ScrollGrid_scrollGrid__19HCA > div {
    width: calc(99.9% * 1/2 - (20px - 20px * 1/2));
  }
  .ScrollGrid_scrollGrid__19HCA > div:nth-child(1n) {
    float: left;
    margin-right: 20px;
    clear: none;
  }
  .ScrollGrid_scrollGrid__19HCA > div:last-child {
    margin-right: 0;
  }
  .ScrollGrid_scrollGrid__19HCA > div:nth-child(2n) {
    margin-right: 0;
    float: right;
  }
  .ScrollGrid_scrollGrid__19HCA > div:nth-child(2n + 1) {
    clear: both;
  }
}

@media screen and (min-width: 1025px) {
  .ScrollGrid_scrollGrid__19HCA > div {
    width: calc(99.9% * 1/3 - (20px - 20px * 1/3));
    margin-right: 1em;
  }
  .ScrollGrid_scrollGrid__19HCA > div:nth-child(1n) {
    float: left;
    margin-right: 20px;
    clear: none;
  }
  .ScrollGrid_scrollGrid__19HCA > div:last-child {
    margin-right: 0;
  }
  .ScrollGrid_scrollGrid__19HCA > div:nth-child(3n) {
    margin-right: 0;
    float: right;
  }
  .ScrollGrid_scrollGrid__19HCA > div:nth-child(3n + 1) {
    clear: both;
  }
}

@media screen and (min-width: 1124px) {
  .ScrollGrid_scrollGrid__19HCA > div {
    width: calc(99.9% * 1/4 - (20px - 20px * 1/4));
  }
  .ScrollGrid_scrollGrid__19HCA > div:nth-child(1n) {
    float: left;
    margin-right: 20px;
    clear: none;
  }
  .ScrollGrid_scrollGrid__19HCA > div:last-child {
    margin-right: 0;
  }
  .ScrollGrid_scrollGrid__19HCA > div:nth-child(4n) {
    margin-right: 0;
    float: right;
  }
  .ScrollGrid_scrollGrid__19HCA > div:nth-child(4n + 1) {
    clear: both;
  }

  .ScrollGrid_scrollGrid__19HCA.ScrollGrid_max-3__UJJZR > div {
    width: calc(99.9% * 1/3 - (20px - 20px * 1/3));
  }

  .ScrollGrid_scrollGrid__19HCA.ScrollGrid_max-3__UJJZR > div:nth-child(1n) {
    float: left;
    margin-right: 20px;
    clear: none;
  }

  .ScrollGrid_scrollGrid__19HCA.ScrollGrid_max-3__UJJZR > div:last-child {
    margin-right: 0;
  }

  .ScrollGrid_scrollGrid__19HCA.ScrollGrid_max-3__UJJZR > div:nth-child(3n) {
    margin-right: 0;
    float: right;
  }

  .ScrollGrid_scrollGrid__19HCA.ScrollGrid_max-3__UJJZR > div:nth-child(3n + 1) {
    clear: both;
  }
}


.LatestNews_latestNewsCompetition__2CHdU {
  background-color: #a5fa64;
  background-color: var(--tertiary-colour);
  padding: 2em;
}

.LatestNews_competitionHomeAthlete__1HPVG {
  background-image: url(https://worldathletics.org/static/throw-orange-negative.svg) !important;
  background-color: #bd94ff !important;
  background-color: var(--quaternary-colour) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-blend-mode: soft-light;
  background-size: cover !important;
}

.LatestNews_competitionHomeAthlete__1HPVG .LatestNews_line__1e4b1 {
    border-color: black !important;
  }

.LatestNews_competitionHomeAthlete__1HPVG .LatestNews_competitionHomeMore__zVF8e {
    border-color: black;
    padding-top: 0.5em;
    width: 100px;
  }

.LatestNews_competitionHomeAthlete__1HPVG .LatestNews_competitionHomeTitle__lbW_2 {
    text-transform: uppercase;
  }

@media (max-width: 767px) {
  .LatestNews_competitionHomeAthlete__1HPVG {
    padding: 2em 0 !important;
  }
    .LatestNews_competitionHomeAthlete__1HPVG .LatestNews_competitionHomeMore__zVF8e, .LatestNews_competitionHomeAthlete__1HPVG .LatestNews_competitionHomeTitle__lbW_2 {
      font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
      font-family: var(--font-family-bold);
    }
    .LatestNews_competitionHomeAthlete__1HPVG .LatestNews_competitionHomeMore__zVF8e {
      margin-right: 1rem;
    }
    .LatestNews_competitionHomeAthlete__1HPVG .LatestNews_competitionHomeInner__3yJbh {
      padding: 0 0 0 1rem;
    }
}

.LatestNews_latestNewsCompetitionHome__25jOF {
  background-color: #ffffff;
  background-color: var(--primary-text-colour);
  padding: 2em;
}

.LatestNews_latestNewsCompetitionHome__25jOF .LatestNews_competitionHomeTitle__lbW_2 {
    margin: 0 0 0.5em 0;
    font-weight: bold;
    font-size: 16px;
  }

.LatestNews_line__1e4b1 {
  width: 184px;
  margin-left: 0px;
  border: 0 solid #ff873c;
  border: 0 solid var(--primary-colour);
  border-top-width: 1px;
}

.LatestNews_competitionHomeInner__3yJbh {
  max-width: 1400px;
  max-width: var(--max-content-width);
  padding: 0 4em;
  margin: auto;
}

@media not screen and (min-width: 1124px) {

.LatestNews_competitionHomeInner__3yJbh {
    padding: 0 1em
}
  }

.LatestNews_latestNewsLocArticleTemplate2__WZ4IC, .LatestNews_latestNewsLocArticle__1KPpy {
  padding: 2em;
  background-color: #bd94ff;
  background-color: var(--quaternary-colour);
  background-image: url('https://worldathletics.org/static/throw-orange-negative.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 767px) {

.LatestNews_latestNewsLocArticleTemplate2__WZ4IC, .LatestNews_latestNewsLocArticle__1KPpy {
    background-image: none
}
  }

.LatestNews_locArticleTemplate2Title__1sBiT {
  text-transform: uppercase;
}

.LatestNews_locArticleTemplate2Line__2UFzO {
  width: 184px;
  margin-left: 0px;
  border: 0 solid black;
  border-top-width: 1px;
}

.LatestNews_latestNewsArticle__26wjU {
  padding: 2em 0;
  background-color: #a5fa64;
  background-color: var(--tertiary-colour);
}

@media (max-width: 767px) {

.LatestNews_latestNewsArticle__26wjU {
    background-image: none
}
  }

.LatestNews_title__3J_pB {
  margin: 0 0 0.5em 0.5em;
}

.LatestNews_line__1e4b1 {
  width: 184px;
  margin-left: 0px;
  border: 0 solid white;
  border-top-width: 1px;
}

@media(max-width: 767px) {

.LatestNews_line__1e4b1 {
    margin-left: 0.5em
}
  }

.LatestNews_inner__3tBLX {
  max-width: 1400px;
  max-width: var(--max-content-width);
  margin: auto;
  padding: 20px 0;
}

@media (min-width: 768px) {

.LatestNews_inner__3tBLX {
    padding: 40px 20px
}
  }

@media (min-width: 1400px) {

.LatestNews_inner__3tBLX {
    padding: 40px 0
}
  }

.LatestNews_more__uZbFn {
  text-align: right;
  padding-top: 1em;
  display: inline-block;
  width: 180px;
  border-top: 1px solid #ff873c;
  float: right;
  font-size: 1rem;
}

@media(max-width: 767px) {

.LatestNews_more__uZbFn {
    margin-right: 0.5em
}
  }

.LatestNews_competitionHomeMore__zVF8e {
  text-align: right;
  padding-top: 1em;
  display: inline-block;
  width: 180px;
  border-top: 1px solid #ff873c;
  border-top: 1px solid var(--primary-colour);
  float: right;
  font-size: 1rem;
}

@media not screen and (--desktop-min-secondaryn) {
  .LatestNews_latestNews__1GIsu {
    padding: 2em 1em;
  }
  .LatestNews_title__3J_pB {
    margin: 0 0 0.5em 0;
  }
  .LatestNews_more__uZbFn {
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
    text-transform: uppercase;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .LatestNews_title__3J_pB {
    margin: 0 0 0.5em 0.5em;
  }
}

.LatestNews_spikes__2V15V .LatestNews_inner__3tBLX .LatestNews_title__3J_pB {
      font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
      font-family: var(--font-family-bold);
      border: 1px solid #707070;
      text-transform: uppercase;
      padding: 5px;
      margin: 0;
    }

.LatestNews_spikes__2V15V .LatestNews_line__1e4b1 {
    border: none;
    margin: 40px;
  }

.LatestNews_spikes__2V15V .LatestNews_spikesMoreContainer__G7rIP {
    justify-content: center;
    align-items: center;
    display: flex;
  }

.LatestNews_spikes__2V15V .LatestNews_more__uZbFn {
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
    border: 1px solid #707070;
    text-transform: uppercase;
    padding: 0.4em 0.6em;
    text-align: center;
    font-size: 1.2em;
    float: unset;
    width: unset;
  }

@media (max-width: 767px) {
      .LatestNews_spikes__2V15V .LatestNews_inner__3tBLX .LatestNews_title__3J_pB {
        margin-left: 1em;
      }
}

.styles_root__3xw5i {
  display: flex;
}

.styles_dropMedia__A242q {}

.styles_dropMedia__A242q>div {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 530px;
}

@media (max-width: 767px) {

.styles_dropMedia__A242q>div {
    height: 230px;
    background-size: contain
}
  }

.styles_quoteTitle__2pj_m {
  font-size: 30px;
}

@media (max-width: 767px) {

.styles_quoteTitle__2pj_m {
    font-size: 24px
}
  }

.styles_body__25okG {
  max-width: 1400px;
  margin: 2em auto;
  color: #707070;
  color: var(--text-colour-light);
  width: 87%;
}

.styles_body__25okG a {
    text-decoration: underline;
    color: var(--primary-color);
  }

.styles_body__25okG ol {
    list-style: decimal;
  }

.styles_body__25okG ul {
    list-style: disc ;
  }

@media not screen and (min-width: 1124px) {

.styles_body__25okG {
    margin: 1em 4em 0 4em
}
  }

@media (max-width: 767px) {

.styles_body__25okG {
    margin: 1em 2em 0 2em
}
  }

.styles_body__25okG p {
    margin-bottom: 0;
  }

.styles_body__25okG iframe {
    width: 100%;
    height: 650px;
  }

.styles_body__25okG img {
    max-width: 100%;
    height: auto;
  }


.LiveBlogPost_liveBlogContainer__vsf7a {
    display: flex;
    max-width: 700px;
    width: 100%;
    margin: 5em auto;
}

.LiveBlogPost_liveBlogContent__Z0o5o {
    width: 100%;
    padding-left: 1.5em;
    margin: 0 auto;
}

.LiveBlogPost_liveBlogTitle__1FwMf {
    margin-bottom: 20px;
}

.LiveBlogPost_liveBlogLine__3Lsd4 {
    width: 50%;
    margin: 0;
    border: 0 solid black;
    border-top-width: 1px;
}

.LiveBlogPost_liveBlogImage__11wYD {
    width: 100% !important;
    height: auto !important;
}

@media not screen and (min-width: 1124px) {
    .LiveBlogPost_liveBlogContainer__vsf7a {
        flex-direction: column;
        width: 90%;
        margin: 3em auto;
    }

    .LiveBlogPost_liveBlogContent__Z0o5o {
        padding: 0;
    }

    .LiveBlogPost_liveBlogContent__Z0o5o iframe {
        width: 100%;
    }

}

@media (max-width: 767px) {
    .LiveBlogPost_liveBlogContainer__vsf7a {
        width: 90%;
        margin: 2em auto;
    }

    .LiveBlogPost_liveBlogContent__Z0o5o iframe {
        height: auto;
    }
}

.LiveBlogPost_marginBottom__3519L {
    margin-bottom: 24px;
}
.PersonalBest_btn__2QZuE {
  padding: 1em 2em;
  background-color: #ff873c;
  color: #fff;
  outline: transparent;
  min-width: 220px;
  position: relative;
}
  .PersonalBest_btn__2QZuE div {
    position: absolute;
    right: 1.5em;
    top: 0.5em;
  }

.PersonalBest_btnContainer__jalzW {
  padding: 20px;
  text-align: right;
}

.PersonalBest_beActiveContainer__WGmTC {
  background-color: #ff873c;
  background-color: var(--primary-colour);
  height: auto;
}

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_link__1qGs7 {
    text-decoration: none;
    color: #000;
    line-height: 3rem;
    font-size: 1rem;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
  }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA {
    height: 511px;
    display: flex;
  }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn {
      height: 100%;
      width: calc(99.9% * 1/2 - (30px - 30px * 1/2));
      padding-left: 10%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn:nth-child(1n) {
      float: left;
      margin-right: 30px;
      clear: none;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn:last-child {
      margin-right: 0;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn:nth-child(2n) {
      margin-right: 0;
      float: right;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn:nth-child(2n + 1) {
      clear: both;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn .PersonalBest_firstTitle__1UDP- {
        font-size: 1rem;
        line-height: 1em;
        font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
        font-family: var(--font-family-bold);
      }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn .PersonalBest_line__3_b8k {
        border-color: #000;
        width: 50%;
        margin-left: 0;
      }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn .PersonalBest_title__18QXy {
        font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
        font-family: var(--font-family-headline);
        font-size: 2.625rem;
        line-height: 1em;
        margin: 2% 0;
      }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn .PersonalBest_description__1XTdZ {
        line-height: 2rem;
        margin-top: 5%;
        font-family: 'World Athletics'
,
Arial
,
sans-serif;
        font-family: var(--font-family-regular);
      }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_imageContainer__2bCzD {
    height: 100%;
    width: 50%;
  }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_imageContainer__2bCzD .PersonalBest_image__3gaAT {
      object-fit: cover;
      height: 100%;
      width: 100%;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ {
    display: flex;
    background-color: #000;
    color: #fff;
    height: 190px;
    padding: 3%;
  }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_sectionParagraph__StmMI {
      font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
      font-family: var(--font-family-headline);
      font-size: 1.5rem;
    }

@media screen and (min-width: 1025px) {

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_sectionParagraph__StmMI {
        font-size: 1.25rem;
        line-height: 1em
    }
      }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_firstSection__1uU74 {
      width: calc(99.9% * 1/6 - (30px - 30px * 1/6));
      text-align: right;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_firstSection__1uU74:nth-child(1n) {
      float: left;
      margin-right: 30px;
      clear: none;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_firstSection__1uU74:last-child {
      margin-right: 0;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_firstSection__1uU74:nth-child(6n) {
      margin-right: 0;
      float: right;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_firstSection__1uU74:nth-child(6n + 1) {
      clear: both;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_secondSection__1qyMH {
      width: calc(99.9% * 1/3 - (30px - 30px * 1/3));
      border-left: 1px solid #fff;
      height: 100%;
      padding: 0 1%;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_secondSection__1qyMH:nth-child(1n) {
      float: left;
      margin-right: 30px;
      clear: none;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_secondSection__1qyMH:last-child {
      margin-right: 0;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_secondSection__1qyMH:nth-child(3n) {
      margin-right: 0;
      float: right;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_secondSection__1qyMH:nth-child(3n + 1) {
      clear: both;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_secondSection__1qyMH a {
        color: #fff;
      }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_thirdSection__34p2_ {
      width: calc(99.9% * 1/3 - (30px - 30px * 1/3));
      border-left: 1px solid #fff;
      height: 100%;
      padding: 0 1%;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_thirdSection__34p2_:nth-child(1n) {
      float: left;
      margin-right: 30px;
      clear: none;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_thirdSection__34p2_:last-child {
      margin-right: 0;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_thirdSection__34p2_:nth-child(3n) {
      margin-right: 0;
      float: right;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_thirdSection__34p2_:nth-child(3n + 1) {
      clear: both;
    }

.PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_thirdSection__34p2_ a {
        color: #fff;
      }

@media screen and (max-width: 1024px) {
  .PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA {
    height: 390px;
  }
  .PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn .PersonalBest_title__18QXy {
    font-size: 2rem;
    line-height: 1.5rem;
  }
}

.PersonalBest_emptyBeActiveContainer__30SXa, .PersonalBest_emptyUpperSection__3WYnT, .PersonalBest_emptyLifeStyle__3jb-g {
  display: none;
}

@media screen and (max-width: 767px) {
  .PersonalBest_beActiveContainer__WGmTC {
    height: auto;
  }
    .PersonalBest_beActiveContainer__WGmTC .PersonalBest_link__1qGs7 {
      line-height: 4rem;
    }
    .PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA {
      height: auto;
      flex-direction: column;
    }
      .PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn {
        width: calc(99.9% * 1/2 - (30px - 30px * 1/2));
        padding: 5%;
        width: 100%;
      }
      .PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn:nth-child(1n) {
        float: left;
        margin-right: 30px;
        clear: none;
      }
      .PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn:last-child {
        margin-right: 0;
      }
      .PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn:nth-child(2n) {
        margin-right: 0;
        float: right;
      }
      .PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn:nth-child(2n + 1) {
        clear: both;
      }
        .PersonalBest_beActiveContainer__WGmTC .PersonalBest_upperSection__2S7VA .PersonalBest_content__1nsTn .PersonalBest_title__18QXy {
          font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
          font-family: var(--font-family-headline);
          font-size: 1.5rem;
          line-height: 1.5rem;
          display: flex;
        }
    .PersonalBest_beActiveContainer__WGmTC .PersonalBest_imageContainer__2bCzD {
      height: auto;
      width: 100%;
    }
      .PersonalBest_beActiveContainer__WGmTC .PersonalBest_imageContainer__2bCzD .PersonalBest_image__3gaAT {
        width: 100%;
        padding: 0%;
        height: 100%;
        display: flex;
      }
    .PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ {
      display: flex;
      flex-direction: column;
      height: auto;
    }
      .PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_sectionParagraph__StmMI {
        font-size: 1.25rem;
        line-height: 1em;
      }
      .PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_firstSection__1uU74 {
        text-align: left;
        width: 50%;
        border-bottom: 1px solid;
        padding: 5% 0;
      }
      .PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_secondSection__1qyMH {
        margin-top: 5%;
        width: 100%;
        border: 0;
      }
      .PersonalBest_beActiveContainer__WGmTC .PersonalBest_lifeStyle__2z7nZ .PersonalBest_thirdSection__34p2_ {
        margin-top: 5%;
        width: 100%;
        border: 0;
      }
}


.styles_header__2ERk4 {
    width: 100%;
    padding: 17px;
    display: flex;
    min-height: 120px;
}

    .styles_header__2ERk4 .styles_headerContainer__1wHdB {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
    }

    .styles_header__2ERk4 .styles_headerContainer__1wHdB .styles_headerTitle__3FhKh {
            padding-right: 80px;
            padding-left: 0.75rem;
            text-align: left;
            letter-spacing: 0px;
            color: #ffffff;
            color: var(--primary-text-colour);
            text-transform: uppercase;
        }

    .styles_header__2ERk4 .styles_headerContainer__1wHdB .styles_divider__1jkbf {
            width: 1px;
            height: 100%;
            background: #a5fa64;
            background: var(--tertiary-colour);
        }
#styles_map__3dErQ div[title="marker"]:focus {
      outline: none;
      border:0;
    }

.styles_loading__3H1di {
  padding:16px 16px 0 16px;
  font-size: 30px;
}


.styles_root__OXX71 {
  display: flex;
}

.styles_body__nwhm9 {
  width: 100%;
}

.styles_body__nwhm9 iframe {
    width: 100%;
    height: 100vh;
  }

@media(max-width: 1024px) {

.styles_body__nwhm9 iframe {
      height: calc(100vh - 126px)
  }
    }

@media(max-width: 767px) {

.styles_body__nwhm9 iframe {
      height: calc(100vh - 106px)
  }
    }

.style_root__7Ne8R {
  display: block;
  width: 100%;
  margin: 0 0 40px 0;
}
  @media(max-width: 767px) {.style_root__7Ne8R {
    margin: 0 0 20px 0
}
  }
.style_title__MZ8a3 {
  font-size: 40px;
  color: #ffffff;
  color: var(--primary-text-colour);
  font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
  font-family: var(--font-family-headline);
}
@media(max-width: 767px) {
.style_title__MZ8a3 {
    font-size: 24px
}
  }
.style_description__2b7Xm {
  font-size: 24px;
  color: #ffffff;
  color: var(--primary-text-colour);
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
}
@media(max-width: 767px) {
.style_description__2b7Xm {
    font-size: 16px
}
  }
.style_root__3Sa3i {
  display: flex;
  width: 100%;
  margin: 0 0 40px 0;
}
  @media(max-width: 1024px) {.style_root__3Sa3i {
    flex-wrap: wrap
}
  }

.style_ratioBoxWrapper__3Gt8H {
  flex: 0 0 60%;
}

@media(max-width: 1024px) {

.style_ratioBoxWrapper__3Gt8H {
    flex: 0 0 100%
}
  }

.style_ratioBox__1Vy_v {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}

.style_ratioBoxContainer__3tDVe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.style_image__3Z_Qr {
  height: 100%;
}

.style_image__3Z_Qr img {
    width: 100%;
  }

.style_image__3Z_Qr iframe {
    width: 100%;
    height: 100%;
  }

.style_descriptionContainer__wUPbo {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(40% - 40px);
  margin-left: 40px;
}

@media(max-width: 1024px) {

.style_descriptionContainer__wUPbo {
    flex: 0 0 100%;
    margin-left: 0;
    margin-top: 20px
}
  }

.style_title__1EnK_ {
  font-size: 30px;
  color: #ffffff;
  color: var(--primary-text-colour);
  position: relative;
  padding: 0 25px 5px 0;
}

.style_title__1EnK_:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    background: var(--primary-text-colour);
  }

@media(max-width: 767px) {

.style_title__1EnK_ {
    font-size: 24px;
    padding: 0 100px 10px 0
}
  }

.style_description__1n3Bk {
  font-size: 24px;
  margin: 25px 0 0 0;
  color: #ffffff;
  color: var(--primary-text-colour);
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
}

@media(max-width: 767px) {

.style_description__1n3Bk {
    margin: 14px 0 0 0;
    font-size: 16px
}
  }
.style_root__xWm-O {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
  @media(max-width: 1024px) {.style_root__xWm-O {
    margin: -5px
}
  }
.style_root__2fT2Y {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  padding: 40px 20px;
  background: #7814FF;
}
  @media(max-width: 767px) {.style_root__2fT2Y {
    padding: 20px 10px
}
  }
.style_root__1fCWH{
  display: flex;
  flex-direction: column;
  cursor: pointer;
  max-width: 25%;
  flex: 4 1 25%;
  padding: 10px;
}
  .style_root__1fCWH img {
    width: 100%;
    height: auto;
  }
  @media(max-width: 1024px) {.style_root__1fCWH{
    flex: 2 1 50%;
    max-width: 50%;
    padding: 5px
}
  }

.style_title__3JLsw {
  font-size: 18px;
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
  color: #ffffff;
  color: var(--primary-text-colour);
  margin: 10px 0 10px 0;
}

@media(max-width: 767px) {

.style_title__3JLsw {
    font-size: 16px;
    margin: 5px 0 5px 0
}
  }

.style_description__2OQBH {
  font-size: 14px;
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
  color: #ffffff;
  color: var(--primary-text-colour);
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
}

@media(max-width: 767px) {

.style_description__2OQBH {
    font-size: 12px
}
  }

.style_video__25sx4 iframe {
  width: 100%;
  height: auto;
}

.style_root__3xYm7 {
    background: url('https://iaafmedia.s3.eu-west-1.amazonaws.com/BackgroundTilev2.png');
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    align-items: center;
}
.styles_container__24J3c {
    max-width: 1400px;
    margin: 2em auto;
    color: #707070;
    color: #707070;
    color: var(--text-colour-light);
    padding: 0 1em;
    display: flex;
    justify-content: space-between;
}

    .styles_container__24J3c.styles_arabic__11WrA *{
        width: 100%; 
        text-align: right;
    }

.styles_selectContainer__1q38p {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: auto;
}

@media(max-width: 767px) {

.styles_selectContainer__1q38p {
        display: none
}
    }

.styles_title__3HgYf {
    font-size: 14px;
    margin-right: 26px;
}
.styles_container__1PQFc {
    max-width: 1400px;
    margin: 2em auto;
    color: #707070;
    color: #707070;
    color: var(--text-colour-light);
    padding: 0 1em;
}
    .styles_container__1PQFc.styles_arabic__187t5 *{
      width: 100%;
      text-align: right;
    }
    .styles_container__1PQFc .styles_arabic__187t5 {
      width: 100%; 
      text-align: right;
    }
.styles_container__1IpbC {
    max-width: 1400px;
    margin: 2em auto;
    color: #707070;
    color: #707070;
    color: var(--text-colour-light);
    padding: 0 1em;
}

.styles_header__1MWAD {
    margin: 20px 0 20px 0;
}
.Filters_container__2X3h1 {
  padding: 1em 0;
}

.Filters_fixedWrapper__3Sd8V {
  max-width: 1400px;
  max-width: var(--max-content-width);
  margin: auto;
  padding: 1em;
}

.Filters_title__2l8rV {
  color: #262626;
  color: var(--grayscale-dark);
  font-size: 1.75rem;
  margin-bottom: 0.3em;
}

.Filters_filter__3U5tJ {
  color: #818181;
  color: var(--secondary-gray);
  border: 1px solid #818181;
  border: 1px solid var(--secondary-gray);
  padding: 0.65em 1em;
  font-size: 1.125rem;
  margin: 0 0.5em 1em 0;
}

.Filters_filter__3U5tJ:hover,
  .Filters_filter__3U5tJ.Filters_activeFilter__OMU8Q {
    background-color: #ff873c;
    background-color: var(--primary-colour);
    color: white;
    border-color: #ff873c;
    border-color: var(--primary-colour);
  }

.Filters_subTitle__3UUK6 {
  display: inline-block;
  text-transform: uppercase;
}

@media screen and (min-width: 1124px) {

.Filters_subTitle__3UUK6 {
    padding: 1em;
    text-align: center;
    margin: 0 1.1em 0 0
}

    .Filters_subTitle__3UUK6.Filters_filterTitle__2FWK9 {
      border-right: 2px solid #ddd;
    }
    .Filters_subTitle__3UUK6.Filters_searchTitle__3FoJ3 {
      border-right: 1px solid #818181;
      border-right: 1px solid var(--grayscale-mid);
    }
  }

@media screen and (min-width: 1025px) {

.Filters_subTitle__3UUK6 {
    margin-right: 1em;
    min-width: 64px
}
  }

@media screen and (max-width: 1024px) {

.Filters_subTitle__3UUK6 {
    margin-right: 1em;
    min-width: 50px;
    font-size: 0.8em
}
  }

@media (max-width: 767px) {

.Filters_subTitle__3UUK6 {
    width: 100%;
    margin-right: 0;
    font-size: 20px;
    margin-bottom: 20px
}
  }

.Filters_filterContainer__3tIyA {
  display: flex;
  align-items: center;
  margin-right: 1em;
  width: 100%;
}

@media screen and (max-width: 1024px) {

.Filters_filterContainer__3tIyA {
    margin-right: 0
}
  }

@media (max-width: 767px) {

.Filters_filterContainer__3tIyA {
    flex-direction: column;
    justify-content: flex-start
}
  }

.Filters_filterWrap__1X8ci {
  display: flex;
  justify-content: space-between;
  height: 42px;
  width: 100%;
}

@media screen and (max-width: 1024px) {

.Filters_filterWrap__1X8ci {
    width: 100%
}
  }

@media screen and (max-width: 767px) {

.Filters_filterWrap__1X8ci {
    justify-content: flex-start;
    flex-direction: column;
    height: auto
}
  }

.Filters_select__cVSgp {
  font-size: 1rem;
  font-family: inherit;
  font-weight: 700;
  color: #444;
  padding: 0.6em 1.4em 0.5em 0.8em;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 6px 0 0;
  border: 1px solid #b2adad;
  border: 1px solid var(--footer-text);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.477' height='11.57' viewBox='0 0 20.477 11.57'%3E%3Cpath id='Path_1185' data-name='Path 1185' d='M11.57,1.326,10.244,0,1.332,8.912l-.005-.005L0,10.233l.005.005L0,10.244,1.326,11.57l.005-.005,8.912,8.912L11.57,19.15,2.658,10.238Z' transform='translate(0 11.57) rotate(-90)' fill='%23707070'/%3E%3C/svg%3E");
    
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}

.Filters_select__cVSgp:hover {
    border-color: #888;
  }

.Filters_select__cVSgp:after {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #f00;
    position: absolute;
    top: 40%;
    right: 5px;
    content: '';
    z-index: 98;
  }

.Filters_select__cVSgp:focus {
    border-color: #aaa;
    color: #222;
    outline: none;
  }

.Filters_select__cVSgp option {
    font-weight: normal;
  }

.Filters_select__cVSgp::-ms-expand {
    display: none;
  }

.Filters_select__cVSgp:last-child {
    margin-right: 0;
  }

.Filters_select__cVSgp.Filters_active__2WXay {
      background: rgb(105, 215, 225);
      background: -moz-linear-gradient(
      180deg,
      rgba(105, 215, 225, 1) 50%,
      rgba(105, 215, 225, 0.7805497198879552) 100%
    );
    background: -webkit-linear-gradient(
      180deg,
      rgba(105, 215, 225, 1) 50%,
      rgba(105, 215, 225, 0.7805497198879552) 100%
    );
    background: linear-gradient(
      180deg,
      rgba(105, 215, 225, 1) 50%,
      rgba(105, 215, 225, 0.7805497198879552) 100%
    );

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bd94ff",endColorstr="#bd94ff",GradientType=1);
  }

@media screen and (min-width: 1124px) {
  .Filters_inner__2hKQw {
    padding: 3em 1em;
  }

  .Filters_title__2l8rV {
    font-size: 3.125rem;
  }
}

.Filters_loadingCont__3WZza {
  text-align: center;
  padding: 1em;
}

.Filters_firstRow__1XZu5 {
  background-color: #281e37;
  background-color: var(--quaternary-accent-dark);
  color: #ffffff;
  color: var(--primary-text-colour);
}

@media screen and (max-width: 767px) {

.Filters_hide__2OCy2 {
    display: none
}
  }

.Filters_resetBtn__3udkL {
  padding: 0.68em 1em;
  color: #0e0e0e;
  background-color: #fff;
  background: #bd94ff;
  background: var(--quaternary-colour);
  max-width: 111px;
  margin-left: auto;
}

@media screen and (max-width: 767px) {

.Filters_resetBtn__3udkL {
    max-width: 100%;
    margin-left: 0
}
  }

.Filters_resetBtn__3udkL.Filters_mobile__10Kri {
    display: none;
    margin-left: 1em;
  }

@media screen and (max-width: 767px) {

.Filters_resetBtn__3udkL.Filters_mobile__10Kri {
      display: inline-block
  }
    }

.Filters_first__IW51f{
  width: 100%;
  max-width: 184px;
}

@media(max-width: 767px){

.Filters_first__IW51f{
    max-width: 100%;
    margin-bottom: 24px
}
  }

.Filters_filters__2cJ72 {
  width: 100%;
}

@media(max-width: 767px){

.Filters_filters__2cJ72 {
    max-width: 100%;
    margin-bottom: 15px
}
  }

.Filters_moreFilters__3aoKJ {
  display: none;
}

@media(max-width: 767px) {

.Filters_moreFilters__3aoKJ {
    display: flex;
    border-bottom: 1px solid #000;
    width: fit-content;
    margin-bottom: 30px;
    margin-left: auto;
    cursor: pointer
}
  }

.Filters_mobileNavClosed__2sL30 {
  display: flex;
  width: 100%;
}

@media(max-width: 767px){

.Filters_mobileNavClosed__2sL30 {
    flex-wrap: wrap
}
  }

.Filters_mobileNavClosed__2sL30.Filters_filters__2cJ72 {
    width: 100%;
  }

@media(max-width: 767px){

.Filters_mobileNavClosed__2sL30.Filters_filters__2cJ72 {
      max-width: 100%;
      margin-bottom: 15px;
      width: 100%
  }
    }

.Filters_mobileNavOpen__2XLno {
  display: block;
}

.Filters_selectsWrap__ydCnj {
  display: flex;
  width: 100%;
}

@media(max-width: 767px){

.Filters_selectsWrap__ydCnj .Filters_filters__2cJ72 {
      display: none
  }
    }

.Filters_selectsWrap__ydCnj.Filters_mobileNavOpen__2XLno {
    display: flex;
  }

.Filters_selectsWrap__ydCnj.Filters_mobileNavClosed__2sL30 {
    display: flex;
    width: 100%;
  }

@media(max-width: 767px){

.Filters_selectsWrap__ydCnj.Filters_mobileNavClosed__2sL30 {
      flex-wrap: wrap
  }
    }

.Filters_selectsWrap__ydCnj.Filters_mobileNavClosed__2sL30 .Filters_filters__2cJ72 {
      display: block;
    }

@media(max-width: 767px){

.Filters_selectsWrap__ydCnj.Filters_mobileNavClosed__2sL30 .Filters_filters__2cJ72 {
        max-width: 100%;
        margin-bottom: 15px;
        width: 100%
    }
      }

.Filters_innerWrap__2hYLP {
  display: flex;
  background-color: white;
  padding: 2em 1em;
  box-shadow: 0px 3px 6px #00000029;
  flex-direction: column;
}



.Assets_activityKidsAthletics__yR83d {
  background-color: #ffffff;
  background-color: var(--primary-text-colour);
  padding-top: 2em;
  overflow: hidden;
}

.Assets_inner__14McB {
  max-width: 1400px;
  margin: auto;
}

.Assets_title__2cVyT {
  font-size: 1.75em;
  color: white;
  margin: 0 0 .5em .5em;
}

.Assets_tile__q7z3H {
  margin-bottom: 2em;
}

.Assets_image__3Z9ar {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 680px;
  width: 100%;
  height: 201px;
  min-height: 201px;
}

@media(max-width: 767px){

.Assets_image__3Z9ar {
    min-height: 262px
}
  }

@media screen and (min-width: 768px) {
  .Assets_title__2cVyT {
    margin: 0 0 .5em 0;
    font-size: 2.5rem;
  }
  .Assets_inner__14McB {
    padding: 0 1em;
  }
}

div.Assets_tile__q7z3H {
  position: relative;
  max-height: 245px;
  overflow: hidden;
  margin-bottom: 1em;
  background: none;
  padding: 0;
}

div.Assets_tile__q7z3H img {
    display: block;
    width: 100%;
  }

@media(max-width: 767px) {

div.Assets_tile__q7z3H img {
      width: auto;
      height: 268px
  }
    }

.Assets_eventName__1PeVn {
  text-transform: uppercase;
}

.Assets_activityTitle__3jajt {
  color: #ffffff;
  color: var(--primary-text-colour);
  margin-right: .5em;
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  div.Assets_tile__q7z3H {
    margin-bottom: 1.5em;
  }
}

.Assets_overlay__3xCJy {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,0) 33%, rgba(38,38,38,0.8939950980392157) 79%);
  width: 100%;
}

.Assets_content__2zqC2 {
  color: white;
  position: absolute;
  bottom: 1em;
  left: 1em;
  z-index: 1;
}

.Assets_content__2zqC2 a {
    color: inherit;
  }

.Assets_content__2zqC2 a:hover .Assets_readMore__OYq12 {
      color: #ff873c;
      color: var(--primary-colour);
    }

.Assets_noFilter__3YCeS {
  font-size: 24px;
  text-transform: uppercase;
  color: var(--grimary-gray);
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.Assets_btn__2QDqr {
  padding: 1em 2em;
  background-color: #ff873c;
  background-color: var(--primary-colour);
  color: #fff;
  outline: transparent;
  min-width: 220px;
  position: relative;
  /* div {
    position: absolute;
    right: 1.5em;
    top: 0.5em;
  } */
}

.Assets_btnContainer__2YLA_ {
  padding: 40px 0 20px;
  text-align: right;
}

@media(max-width: 767px){

.Assets_btnContainer__2YLA_ {
    padding: 40px 20px
}
  }





.interviewsCards_interview__8iYpr {
  padding: 1em 0 0;
  font-size: 0.8125rem;
  border-top: 2px solid #a5fa64;
  border-top: 2px solid var(--tertiary-colour);
  margin: 35px 35px 0px;

}

  @media (max-width: 1024px) {

.interviewsCards_interview__8iYpr {
    margin: 30px 20px 0px

}
  }

  @media (max-width: 767px) {

.interviewsCards_interview__8iYpr {
    margin: 25px 20px 0px

}
  }

  .interviewsCards_interview__8iYpr:last-child {
    padding-bottom: 50px;
  }

  .interviewsCards_interview__8iYpr .interviewsCards_flashDate__24yur {
    display: none;
  }

  .interviewsCards_interview__8iYpr .interviewsCards_athleteContent__1fDJF .interviewsCards_avatar__15F8P {
      width: 42px;
      height: 42px;
      border: 2px solid #fff;
      border-radius: 500px;
    }

  .interviewsCards_interview__8iYpr .interviewsCards_athleteContent__1fDJF .interviewsCards_athlete__1BnfL {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

  .interviewsCards_interview__8iYpr .interviewsCards_athleteContent__1fDJF .interviewsCards_athlete__1BnfL .interviewsCards_detail__1eeus {
        margin-left: 15px;
      }

  .interviewsCards_interview__8iYpr .interviewsCards_athleteContent__1fDJF .interviewsCards_athlete__1BnfL .interviewsCards_detail__1eeus .interviewsCards_name__2Wq-7 {
          font-size: 1.70em;
          
        }

  @media (max-width: 1024px) {

  .interviewsCards_interview__8iYpr .interviewsCards_athleteContent__1fDJF .interviewsCards_athlete__1BnfL .interviewsCards_detail__1eeus .interviewsCards_name__2Wq-7 {
            font-size: 20px
          
        }
          }

  @media (max-width: 767px) {

  .interviewsCards_interview__8iYpr .interviewsCards_athleteContent__1fDJF .interviewsCards_athlete__1BnfL .interviewsCards_detail__1eeus .interviewsCards_name__2Wq-7 {
            font-size: 17px
          
        }
          }

  .interviewsCards_interview__8iYpr .interviewsCards_athleteContent__1fDJF .interviewsCards_athlete__1BnfL .interviewsCards_detail__1eeus .interviewsCards_title__3Iaee {
          font-size: 1.5em;
          color: #a5fa64;
          color: var(--tertiary-colour);
          margin-top: -5px;
        }

  @media (max-width: 1024px) {

  .interviewsCards_interview__8iYpr .interviewsCards_athleteContent__1fDJF .interviewsCards_athlete__1BnfL .interviewsCards_detail__1eeus .interviewsCards_title__3Iaee {
            font-size: 16px
        }
          }

  @media (max-width: 767px) {

  .interviewsCards_interview__8iYpr .interviewsCards_athleteContent__1fDJF .interviewsCards_athlete__1BnfL .interviewsCards_detail__1eeus .interviewsCards_title__3Iaee {
            font-size: 15px
        }
          }

  .interviewsCards_interview__8iYpr .interviewsCards_athleteContent__1fDJF .interviewsCards_countryDiscipline__3SHgM {
      display: flex;
      font-size: 2em;
    }

  .interviewsCards_interview__8iYpr .interviewsCards_athleteContent__1fDJF .interviewsCards_countryDiscipline__3SHgM .interviewsCards_disciplineName__1S8-f {
        width: 80%;
        font-size: 25px;
        padding: 10px 0 0px;
      }

  @media (max-width: 1024px) {

  .interviewsCards_interview__8iYpr .interviewsCards_athleteContent__1fDJF .interviewsCards_countryDiscipline__3SHgM .interviewsCards_disciplineName__1S8-f {
          font-size: 20px;
          padding: 5px 0 0px
      }
        }

  @media (max-width: 767px) {

  .interviewsCards_interview__8iYpr .interviewsCards_athleteContent__1fDJF .interviewsCards_countryDiscipline__3SHgM .interviewsCards_disciplineName__1S8-f {
          font-size: 20px;
          padding: 5px 0 0px
      }
        }

  .interviewsCards_interview__8iYpr .interviewsCards_athleteContent__1fDJF .interviewsCards_countryDiscipline__3SHgM .interviewsCards_countryFlags__306Y2 {
        width: 20%;
        text-align: right;
      }

.interviewsCards_interviewsBody__E6Yl6 {
  width: 100%;
  max-width: 1400px;
  margin: 10px auto 0;
}

.interviewsCards_interviewContent__25aGu {
  margin-top: 10px;
  font-family: 'World Athletics',Arial,sans-serif, sans-serif;
  font-family: var(--font-family), sans-serif;
  line-height: 30px;
  font-size: 1.70em;
}

@media (max-width: 1024px) {

.interviewsCards_interviewContent__25aGu {
    font-size: 18px;
    line-height: 22px
}
  }

@media (max-width: 767px) {

.interviewsCards_interviewContent__25aGu {
    font-size: 18px;
    line-height: 28px
}
  }

.interviewsCards_athleteName__3msxI {
  font-family: "World Athletics Bold";
  text-transform: uppercase;
  margin-bottom: .5em;
}

.interviewsCards_athleteName__3msxI div {
    display: inline-block;
  }

.interviewsCards_sliderCard__2FpAU {
  background-color: transparent;
  color: #fff;
  font-size: 22px;
}

.interviewsCards_sliderBlock__AvDm6 div button {
    cursor: pointer;
    width: 10%;
    position: absolute;
    height: 100%;
    top: 0;
    text-indent: -99999px;
  
  }

@media (max-width: 767px) {

.interviewsCards_sliderBlock__AvDm6 div button {
      display: none !important
  
  }
    }

.interviewsCards_sliderBlock__AvDm6 div button:first-child {
    left: -15px;
  }

.interviewsCards_sliderBlock__AvDm6 div button:first-child::after {
      background: url(https://worldathletics.org/static/chev-icon-right.svg);
      background-repeat: no-repeat;
      background-size: contain;
    }

.interviewsCards_sliderBlock__AvDm6 div button:nth-last-child(1) {
    right: 0;
  }

.interviewsCards_sliderBlock__AvDm6 div button:nth-last-child(1)::after {
      background: url(https://worldathletics.org/static/chev-icon-right.svg);
      background-repeat: no-repeat;
      background-size: contain;
    }

.interviewsCards_sliderBlock__AvDm6 .interviewsCards_interview__8iYpr {
    margin: 35px 20px 0px 20px;
    padding-top: 35px;
  }

.interviewsCards_sliderBlock__AvDm6 .interviewsCards_name__2Wq-7 {
    white-space: nowrap;
    min-height: 33px;
  }

.interviewsCards_sliderBlock__AvDm6 .interviewsCards_interviewContent__25aGu {
    font-size: 20px;
    height: 220px;
    display: flex;
    flex-direction: column;
  }

.interviewsCards_sliderBlock__AvDm6 .interviewsCards_interviewContent__25aGu div {
      word-break: break-word;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      max-height: 213px; /* fallback */
      -webkit-line-clamp: 4; /* number of lines to show */
      -webkit-box-orient: vertical;
      margin-bottom: 40px;
    }

.interviewsCards_sliderBlock__AvDm6 .interviewsCards_interviewContent__25aGu .interviewsCards_readMore__2JPag{
     font-size: 20px;
    }

@media (max-width: 1024px) {

.interviewsCards_sliderBlock__AvDm6 .interviewsCards_interviewContent__25aGu .interviewsCards_readMore__2JPag{
      margin-top: 15px
    }
     }

@media (max-width: 767px) {

.interviewsCards_sliderBlock__AvDm6 .interviewsCards_interviewContent__25aGu .interviewsCards_readMore__2JPag{
      font-size: 16px;
      margin-top: 0px;
      margin-bottom: 0px
    }
     }

.interviewsCards_sliderBlock__AvDm6 .interviewsCards_interviewContent__25aGu .interviewsCards_readMore__2JPag a {
      -webkit-appearance: none;
     }

@media (max-width: 767px) {

.interviewsCards_carousel__ciCHb {
    padding: 0 20px !important
}
  }

@media (max-width: 1024px) {

.interviewsCards_carousel__ciCHb .interviewsCards_athleteContent__1fDJF .interviewsCards_avatar__15F8P {
        width: 62px;
        height: 62px
    }
      }

@media (max-width: 767px) {

.interviewsCards_carousel__ciCHb .interviewsCards_athleteContent__1fDJF .interviewsCards_avatar__15F8P {
        width: 42px;
        height: 42px
    }
      }

@media (max-width: 1024px) {

.interviewsCards_carousel__ciCHb .interviewsCards_athleteContent__1fDJF .interviewsCards_athlete__1BnfL .interviewsCards_detail__1eeus .interviewsCards_name__2Wq-7 {
          font-size: 31px
      }
        }

@media (max-width: 767px) {

.interviewsCards_carousel__ciCHb .interviewsCards_athleteContent__1fDJF .interviewsCards_athlete__1BnfL .interviewsCards_detail__1eeus .interviewsCards_name__2Wq-7 {
          font-size: 17px
      }
        }

@media (max-width: 1024px) {

.interviewsCards_carousel__ciCHb .interviewsCards_athleteContent__1fDJF .interviewsCards_athlete__1BnfL .interviewsCards_detail__1eeus .interviewsCards_title__3Iaee {
          font-size: 26px
      }
        }

@media (max-width: 767px) {

.interviewsCards_carousel__ciCHb .interviewsCards_athleteContent__1fDJF .interviewsCards_athlete__1BnfL .interviewsCards_detail__1eeus .interviewsCards_title__3Iaee {
          font-size: 15px
      }
        }

@media (max-width: 767px) {

.interviewsCards_carousel__ciCHb .interviewsCards_interviewContent__25aGu {
      padding: 0 1em 0 0;
      height: auto
  }
    }

@media (max-width: 1024px) {

.interviewsCards_carousel__ciCHb .interviewsCards_interviewContent__25aGu div {
          font-size: 28px;
          line-height: 41px;
          margin: 0 20px
     }
        }

@media (max-width: 767px) {

.interviewsCards_carousel__ciCHb .interviewsCards_interviewContent__25aGu div {
          font-size: 18px;
          line-height: 32px;
          margin-bottom: 30px;
          margin-left: 52px
     }
        }

.interviewsCards_carousel__ciCHb .interviewsCards_countryDiscipline__3SHgM {
    justify-content: flex-end;
  }

.interviewsCards_carousel__ciCHb.interviewsCards_interview__8iYpr:last-child {
    padding-bottom: 20px;
  }

@media (max-width: 767px) {

.interviewsCards_carousel__ciCHb.interviewsCards_interview__8iYpr:last-child {
      padding: 0 8px !important;
      margin: 30px 5px 5px 0px;
      border: 1px solid grey;
      min-height: 333px
  }
    }

.interviewsCards_carousel__ciCHb .interviewsCards_countryFlagsCarousel__3cSYM {
    position: absolute;
    right: 0;
  }

.interviewsCards_carousel__ciCHb .interviewsCards_athlete__1BnfL {
    align-items: flex-start !important;
    position: relative;
  }

@media (max-width: 767px) {

.interviewsCards_carousel__ciCHb .interviewsCards_athlete__1BnfL {
      margin-top: 30px
  }
    }

.interviewsCards_carousel__ciCHb .interviewsCards_athlete__1BnfL .interviewsCards_name__2Wq-7 {
      white-space: initial;
      padding-right: 23px;
    }

@media (max-width: 767px) {

.interviewsCards_carousel__ciCHb .interviewsCards_athlete__1BnfL .interviewsCards_name__2Wq-7 {
        white-space: initial
    }
      }

.FlashInterviewsCarousel_flashInterviews__3gxSf {
  background-color: #253418;
  width: 100%;
  flex-direction: column;
  padding: 0 2em;
  overflow: hidden;
  align-items: center;
  position: relative;
  min-height: 320px;
}

  @media (max-width: 1024px) {.FlashInterviewsCarousel_flashInterviews__3gxSf {
    padding: 0 1em
}
  }

  @media (max-width: 767px) {.FlashInterviewsCarousel_flashInterviews__3gxSf {
    padding: 0
}
  }

.FlashInterviewsCarousel_bannerWrapper__34zlK {
  background-color: #253418;
  color: #A5FA64;
}

.FlashInterviewsCarousel_bannerWrapper__34zlK .FlashInterviewsCarousel_title__3w2KA  {
  padding: 35px 2em 0;
  margin-right: 5%;
  margin-left: 5%;
}

@media (max-width: 1024px) {

.FlashInterviewsCarousel_bannerWrapper__34zlK .FlashInterviewsCarousel_title__3w2KA  {
    padding: 35px 1em 0
}
  }

@media (max-width: 767px) {

.FlashInterviewsCarousel_bannerWrapper__34zlK .FlashInterviewsCarousel_title__3w2KA  {
    padding: 35px 0 0;
    margin: 0 5px
}
  }

.FlashInterviewsCarousel_bannerWrapper__34zlK .FlashInterviewsCarousel_title__3w2KA h2 {
  text-transform: uppercase;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  font-size: 16px;
  font-family: 'World Athletics Bold',Arial,sans-serif, sans-serif;
  font-family: var(--font-family-bold), sans-serif;
}

@media (max-width: 1024px) {

.FlashInterviewsCarousel_bannerWrapper__34zlK .FlashInterviewsCarousel_title__3w2KA h2 {
    font-size: 28px
}
  }

@media (max-width: 767px) {

.FlashInterviewsCarousel_bannerWrapper__34zlK .FlashInterviewsCarousel_title__3w2KA h2 {
    font-size: 16px
}
  }

.FlashInterviewsCarousel_bannerWrapper__34zlK .FlashInterviewsCarousel_title__3w2KA h2 span {
    border-bottom: 2px solid #A5FA64;
    display: inline-block;
    padding: 0 30px 10px 0px;
    margin-left: 13px;
  }

.FlashInterviewsCarousel_dayTabs__20GeS {
  margin: 35px 0 30px;
}

.FlashInterviewsCarousel_interviewUnit__2VY4k {
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  color: var(--primary-text-colour);
}

.FlashInterviewsCarousel_unitTitle__3-mNh {
  background-color: #e3f7d2;
  background-color: var(--tertiary-accent);
  color: #3b1f11;
  color: var(--primary-accent-dark);
  font-size: 1.5em;
  padding: 10px 20px;
  font-family: 'World Athletics Bold',Arial,sans-serif, sans-serif;
  font-family: var(--font-family-bold), sans-serif;
  text-transform: uppercase;
}

.FlashInterviewsCarousel_tabs__ZcPUr {
  margin-bottom: 1.5em;
}

.FlashInterviewsCarousel_tabs__ZcPUr .FlashInterviewsCarousel_tab__mTVmA {
    display: inline-block;
    font-size: 0.9375rem;
    padding: .3em .5em;
    cursor: pointer;
    border: 0;
    background: none;
  }

.FlashInterviewsCarousel_tabs__ZcPUr .FlashInterviewsCarousel_tab__mTVmA.FlashInterviewsCarousel_activeTab__2z5C8 {
      background-color: var(--field-event-colour);
    }

.FlashInterviewsCarousel_viewAll__t2ZsI {
  color: white;
  text-align: right;
  padding: 0 5em 20px 0;
}

@media (max-width: 767px) {

.FlashInterviewsCarousel_viewAll__t2ZsI {
    height: auto;
    padding: 0 1em 20px 0;
    margin-top: 30px
}
   }

.FlashInterviewsCarousel_viewAll__t2ZsI a {
    padding: 13px 0 20px 100px;
    border-top: 1px solid #a5fa64;
    border-top: 1px solid var(--tertiary-colour);
    font-size: 16px;
  }

.FlashInterviewsCarousel_tabContent__3-9Ut {
  display: none;
}

.FlashInterviewsCarousel_tabContent__3-9Ut.FlashInterviewsCarousel_activeContent__3Fpvv {
    display: block;
    margin-bottom: 100px
  }

.FlashInterviewsCarousel_notAvailable__37Yt8 {
  color: #ffffff;
  color: var(--primary-text-colour);
  font-size: 1.5em;
  font-family: 'World Athletics',Arial,sans-serif, sans-serif;
  font-family: var(--font-family), sans-serif;
}

.FlashInterviewsCarousel_unitDetails__29vC5 {
  margin-bottom: .5em;
  text-transform: uppercase;
  font-family: 'World Athletics Bold',Arial,sans-serif, sans-serif;
  font-family: var(--font-family-bold), sans-serif;
}

.FlashInterviewsCarousel_loading__YY15P {
  text-align: center;
  margin: 100px;
}

.FlashInterviewsCarousel_loading__YY15P .FlashInterviewsCarousel_ring__3Cgm9 {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }

.FlashInterviewsCarousel_loading__YY15P .FlashInterviewsCarousel_ring__3Cgm9 div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: FlashInterviewsCarousel_ring__3Cgm9 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
  }

.FlashInterviewsCarousel_loading__YY15P .FlashInterviewsCarousel_ring__3Cgm9 div:nth-child(1) {
    animation-delay: -0.45s;
  }

.FlashInterviewsCarousel_loading__YY15P .FlashInterviewsCarousel_ring__3Cgm9 div:nth-child(2) {
    animation-delay: -0.3s;
  }

.FlashInterviewsCarousel_loading__YY15P .FlashInterviewsCarousel_ring__3Cgm9 div:nth-child(3) {
    animation-delay: -0.15s;
  }

@keyframes FlashInterviewsCarousel_ring__3Cgm9 {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

.FlashInterviewsCarousel_modal__1VmQS {
  background-color: rgba(0,40,24, 0.8);
  color: white;
  padding: 50px 30px 30px;
  position: absolute;
  top: 10px;
  left: 0;
  height: 400px;
  margin: 0 100px;
  font-size: 24px;
  line-height: 38px;
  overflow-y: auto;
  z-index: 11;
  width: calc(100% - 200px);
  border: 1px solid #a5fa64;
  border: 1px solid var(--tertiary-colour);
}

@media (max-width: 1024px) {

.FlashInterviewsCarousel_modal__1VmQS {
    margin: 0 20px;
    width: calc(100% - 40px);
    height: 400px;
    font-size: 22px;
    padding: 20px
}
  }

@media (max-width: 767px) {

.FlashInterviewsCarousel_modal__1VmQS {
    font-size: 22px;
    margin: 0 20px;
    width: calc(100% - 40px);
    position: fixed;
    top: 20px;
    height: calc(100vh - 60px);
    padding: 20px 15px 20px
}
  }

.FlashInterviewsCarousel_modalOverlayClose__SbhmJ {
  position: absolute;
  top: 0;
  right: 15px;
  color: white;
  cursor: pointer;
}

.FlashInterviewsCarousel_modalOverlay__10-jD {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0, 0.1);
}




.styles_fullWidth__3FJnB {
  width: 100%;
  display: block;
  margin: auto;
  background-color: #281e37;
  background-color: var(--quaternary-accent-dark);
}
.styles_sliderContainer__31uCD {
  position: relative;
  border-bottom: 1px solid #707070;
  max-width: 1400px;
}
.styles_sliderContainer__31uCD.styles_videoCarousel__3nGuT {
    max-width: 1570px;
  }
.styles_sliderContainer__31uCD.styles_large__2_xCL, .styles_sliderContainer__31uCD.styles_medium__cI82z {
    padding-bottom: 40px;
    margin: auto;
  }
@media(max-width: 767px) {
.styles_sliderContainer__31uCD.styles_large__2_xCL, .styles_sliderContainer__31uCD.styles_medium__cI82z {
      padding-bottom: 0;
      margin-bottom: 20px;
      border-bottom: none
  }

      .styles_sliderContainer__31uCD.styles_large__2_xCL.styles_videoCarousel__3nGuT, .styles_sliderContainer__31uCD.styles_medium__cI82z.styles_videoCarousel__3nGuT {
        margin-bottom: 20px;
      }
    }
@media(max-width: 767px) {
.styles_sliderContainer__31uCD {
    margin-left: 16px
}
  }
.styles_backgroundColor__13i5t .styles_sliderContainer__31uCD {
    max-width: 1450px;
  }
.styles_viewAllLinkContainer__2sewr {
  display: flex;
  justify-content: center;
  width: calc(100% - 40px);
  padding: 20px 0 0px;
  margin-left: 20px;
}
@media(max-width: 767px) {
.styles_viewAllLinkContainer__2sewr {
    padding: 20px 0;
    margin-left: 0
}
  }
@media(max-width: 767px) {
.styles_button__2p4Xr {
    display: none
}
  }
.styles_buttonMobile__1k7dz {
  display: none;
}
@media(max-width: 767px) {
.styles_buttonMobile__1k7dz {
    display: block
}
  }
.styles_title__20anS {
  color: #ffffff;
  color: var(--primary-text-colour);
  font-size: 34px;
  flex: 1 1;
}
@media(max-width: 767px) {
.styles_title__20anS {
    font-size: 22px;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold)
}
  }
.styles_link__2wCzJ {
  font-size: 20px;
  color: #ffffff;
  color: var(--primary-text-colour);
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
}
@media(max-width: 767px) {
.styles_link__2wCzJ {
    font-size: 15px
}
    .styles_link__2wCzJ .styles_buttonWrap__HaGZs {
      padding: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
@media(max-width: 767px) {
  .styles_buttonWrap__HaGZs {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
}
.styles_arrow__2f4nr {
  color: #ff873c;
  color: var(--primary-colour);
  margin: 0 8px;
}
.styles_gallery__3e5Q0 {
  overflow: hidden;
}
.styles_gallery__3e5Q0 .slick-list {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
.styles_gallery__3e5Q0 .slick-slide > div {
    padding: 20px;
  }
@media(max-width: 767px) {
.styles_gallery__3e5Q0 .slick-slide > div {
      padding: 0
  }
      
    }
@media(max-width: 767px) {
.styles_gallery__3e5Q0.styles_medium__cI82z .slick-slide > div {
        padding: 0 10px 0 0
    }
        
      }
.styles_gallery__3e5Q0.styles_videoCarousel__3nGuT .slick-list {
      padding: 0;
      margin-left: 5%;
      margin-right: 5%;
    }
@media screen and (max-width: 1550px) {
.styles_gallery__3e5Q0.styles_videoCarousel__3nGuT .slick-list {
        margin-left: 0;
        margin-right: 0
    }
      }
.styles_gallery__3e5Q0.styles_videoCarousel__3nGuT .slick-prev::after, .styles_gallery__3e5Q0.styles_videoCarousel__3nGuT .slick-next::after  {
      background: url('https://worldathletics.org/static/arrow.svg');
      padding: 18px;
      height: 30px;
    }
.styles_gallery__3e5Q0.styles_videoCarousel__3nGuT .slick-next::after  {
      transform: rotate(180deg);
      right: 0px;
    }
@media screen and (max-width: 1550px) {
.styles_gallery__3e5Q0.styles_videoCarousel__3nGuT .slick-next::after  {
        right: 30px;
        z-index: 10
    }
      }
.styles_gallery__3e5Q0.styles_videoCarousel__3nGuT .slick-prev::after  {
      -webkit-transform:rotateY(0deg);
      transform:rotateY(0deg);
    }
@media screen and (max-width: 1550px) {
.styles_gallery__3e5Q0.styles_videoCarousel__3nGuT .slick-prev::after  {
        left: 23px;
        z-index: 10
    }
      }
.styles_title__20anS {
  max-width: 1366px;
  font-size: 34px;
  color: #FFFFFF;
  margin: 15px auto;
}
@media screen and (max-width: 1550px) {
.styles_title__20anS {
    margin: 0 16px
}
  }
@media (max-width: 767px) {
.styles_title__20anS {
    margin: 0 16px 16px 0;
    font-size: 24px
}
  }
   
.styles_newsGrid__1Wy9W {
  margin: 0 2em;
}

@media (max-width: 767px) {

.styles_newsGrid__1Wy9W {
    margin: 1em 0 0 0
}
  }

.styles_newsGrid__1Wy9W div::after {
  display: block;
  content: '';
  clear: both;
}

.styles_grid__1zGsF {
  padding: 2em 0;
}

@media(max-width: 767px) {

.styles_grid__1zGsF {
    padding: 0
}
  }

.styles_grid__1zGsF .styles_col__AZdZ4 {
  width: calc(99.9% * 1/1 - (30px - 30px * 1/1))
}

.styles_grid__1zGsF .styles_col__AZdZ4:nth-child(1n) {
  float: left;
  margin-right: 30px;
  clear: none
}

.styles_grid__1zGsF .styles_col__AZdZ4:last-child {
  margin-right: 0
}

.styles_grid__1zGsF .styles_col__AZdZ4:nth-child(1n) {
  margin-right: 0;
  float: right
}

.styles_grid__1zGsF .styles_col__AZdZ4:nth-child(1n + 1) {
  clear: both
}

.styles_topicTitle__12U9b {
  padding: 0 3em .25em 0;
  display: inline-block;
  text-transform: uppercase;
  border-bottom: 1px solid #ff873c;
  border-bottom: 1px solid var(--primary-colour);
}

.styles_titleWrapper__2n34_ {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.styles_titleWrapper__2n34_:after {
    content: none !important
  }

.styles_titleExtra__3RMrJ {
  margin-top: 15px;
  max-width: 350px;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .styles_grid__1zGsF .styles_col__AZdZ4 {
    width: calc(99.9% * 1/2 - (30px - 30px * 1/2))
  }
  .styles_grid__1zGsF .styles_col__AZdZ4:nth-child(1n) {
    float: left;
    margin-right: 30px;
    clear: none
  }
  .styles_grid__1zGsF .styles_col__AZdZ4:last-child {
    margin-right: 0
  }
  .styles_grid__1zGsF .styles_col__AZdZ4:nth-child(2n) {
    margin-right: 0;
    float: right
  }
  .styles_grid__1zGsF .styles_col__AZdZ4:nth-child(2n + 1) {
    clear: both
  }
}

@media screen and (min-width: 1025px) {
  .styles_titleWrapper__2n34_ {
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  .styles_titleExtra__3RMrJ {
    margin-top: 0;
  }
  .styles_grid__1zGsF .styles_col__AZdZ4 {
    width: calc(99.9% * 1/3 - (30px - 30px * 1/3))
  }
  .styles_grid__1zGsF .styles_col__AZdZ4:nth-child(1n) {
    float: left;
    margin-right: 30px;
    clear: none
  }
  .styles_grid__1zGsF .styles_col__AZdZ4:last-child {
    margin-right: 0
  }
  .styles_grid__1zGsF .styles_col__AZdZ4:nth-child(3n) {
    margin-right: 0;
    float: right
  }
  .styles_grid__1zGsF .styles_col__AZdZ4:nth-child(3n + 1) {
    clear: both
  }
}
.styles_heroVideo__lO9qL {
  background-color: #a5fa64;
  background-color: var(--tertiary-colour);
  border: 1px solid #a5fa64;
  border: 1px solid var(--tertiary-colour);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  width: 100%;
}
  
  @media(max-width: 767px) {.styles_heroVideo__lO9qL {
    margin-bottom: 20px;
    max-width: 100%;
    flex-direction: column;
    min-height: inherit
}

  }

.styles_lock__3TDX9 {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  width: 15px;
  height: 21px;
}

@media(max-width: 767px) {

.styles_lock__3TDX9 {
    width: 8px;
    height: 11px
}
  }

.styles_heroVideoContainer__1YtTD {
  padding-bottom: 50px;
  border-bottom: 1px solid #707070;
  border-bottom: 1px solid var(--text-colour-light);
  margin-top: 30px;
}

@media (max-width: 767px) {

.styles_heroVideoContainer__1YtTD {
    border-bottom: none;
    padding: 16px 16px 16px 5px;
    margin: 0 0 20px 0
}

    .styles_heroVideoContainer__1YtTD.styles_backgroundColor__2q3cS {
      background-color: #281e37;
      background-color: var(--quaternary-accent-dark);
    }
  }

.styles_content__1Jgsy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

@media(max-width: 767px) {

.styles_content__1Jgsy {
    padding: 20px 0 20px 0;
    display: flex;
    align-items: start;
    justify-content: start
}
  }

.styles_img__3gC3J {
  position: relative;
}

.styles_img__3gC3J .styles_play__2xfFJ {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 99px;
  }

@media (max-width: 767px) {

.styles_img__3gC3J .styles_play__2xfFJ {
      width: 65px
  }
    }

.styles_img__3gC3J .styles_play__2xfFJ img {
      width: 100%;
    }

.styles_image__3BKrr,
.styles_img__3gC3J {
  width: 100%;
  max-height: 505px;
  max-width: 786px;
}

.styles_image__3BKrr.styles_large__2KNGq, .styles_img__3gC3J.styles_large__2KNGq {
    max-height: 445px;
  }

.styles_title__3F0kq {
  font-size: 42px;
  color: #281e37;
  color: var(--quaternary-accent-dark);
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
}

@media (max-width: 767px) {

.styles_title__3F0kq {
    font-size: 28px;
    margin-bottom: 15px;
    padding-left: 20px
}
    
  }

.styles_standFirst__1DNBP {
  color: #281E37;
  font-size: 20px;
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
  margin-bottom: 13px;
}

@media(max-width: 767px) {

.styles_standFirst__1DNBP {
    display: none
}
  }

.styles_description__2R9JE {
  font-size: 20px;
  color: #281e37;
  color: var(--quaternary-accent-dark);
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
}

@media (max-width: 767px) {

.styles_description__2R9JE {
    font-size: 16px;
    margin-top: 10px
}
  }

.styles_watchNow__Gq6nh {
  font-size: 15px;
  padding: 0 15px 15px;
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  padding: 0 16px 0 16px;
  display: inline-flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;

  box-shadow: 0px 4px 5px #00000041;
  border-radius: 0px 9px 9px 0px;
  background: white;
}

@media(max-width: 767px) {

.styles_watchNow__Gq6nh {
    padding: 5px;
    font-size: 12px
}

  }

.styles_watchNow__Gq6nh.styles_large__2KNGq, .styles_watchNow__Gq6nh.styles_medium__1TjEk, .styles_watchNow__Gq6nh.styles_category__2QvmH  {
    padding: 0 0 0 16px;
    display: flex;
    max-width: 125px;
    height: 30px;
    align-items: center;
    justify-content: center;
  }

.styles_watchNow__Gq6nh.styles_empty__39hCP {
    color: transparent;
    background: transparent;
    box-shadow: none;
  }

.styles_arrow__3ANgA {
  color: #ff873c;
  color: #ff873c;
  color: var(--primary-colour);
  margin: 0 8px;
}




.GoogleAds_ad_slot_container__F_QBF {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: inherit !important;;
    padding-top: 16px;
    padding-bottom: 16px;
}

.GoogleAds_empty_slot_container__34_Md {
    display: none !important;
}

.GoogleAds_athlete-profile-container-top__1C6Lm {
    background-color: #dfd0fa !important;
    background-color: var(--laila-colour) !important;
    padding-top: 5px;
    padding-bottom: 5px;
}

.GoogleAds_competition-timetable-container-top__281TZ {
    background-color: #bd94ff !important;
    background-color: var(--timetable-table-header) !important;
    padding-top: 5px;
    padding-bottom: 5px;
}

.GoogleAds_competition-results-container-top__3gHvb {
    background-color: white !important;
    padding-top: 5px;
    padding-bottom: 5px;
}

@media (min-width: 768px) {
    .GoogleAds_ad_slot_container__F_QBF {
        background-color: inherit !important;
        padding-top: 30px;
        padding-bottom: 30px;
    }
  }



.PageContent_pageContent__pFSwB {
  max-width: 1400px;
  max-width: var(--max-content-width);
  padding: 1rem 1em 0;
  margin: auto;
}


.LocPastEventArticles_newsListContainer__1GJ-x {
  padding: 1em 0;
  max-width: 700px;
}

.LocPastEventArticles_sectionTitle__2PB7G {
  font-size: 30px;
  padding-bottom: 1em;
}

.LocPastEventArticles_moreNewsContainer__bRL2k {
  padding-top: 2em;
}

.LocPastEventArticles_relatedArticles__2nBwy {
  text-align: right;
  padding-top: 1em;
  display: inline-block;
  width: 180px;
  border-top: 1px solid #ff873c;
  float: right;
  font-size: 1rem;
}

@media not screen and (min-width: 1124px) {
  .LocPastEventArticles_newsListContainer__1GJ-x {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .LocPastEventArticles_newsListContainer__1GJ-x {
    width: 95%;
    margin: 0 auto;
  }
  .LocPastEventArticles_sectionTitle__2PB7G {
    padding-bottom: 0.5em;
  }
}


.TableResultsRow_tableCell__1tPgC {
    padding: 10px;
    font-size: 14px;
    text-align: left;
    text-transform: uppercase;
}

.TableResultsRow_tableDisciplineRow__vc0t2 {
    background-color: #173032;
    background-color: var(--secondary-accent-dark);
}

.TableResultsRow_tableDisciplineCell__2lDQG {
    font-size: 20px;
    color: #ffffff;
    color: var(--primary-text-colour)
}

.TableResultsRow_tableCellCountry__2orqG .TableResultsRow_flagsContainer__1zZzi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.TableResultsRow_mobileTableCellFlags__2xoIv {
    display: none;
    padding: 0 10px;
}

.TableResultsRow_tableBodyHeader__1uei9 {
    background-color: #1e1e1e;
    background-color: var(--dark-line);
    font-size: 16px;
    color: #ffffff;
    color: var(--primary-text-colour)
}

.TableResultsRow_tableCellResults__2ZcIm {
    font-size: 16px;
    text-align: left;
    text-transform: capitalize;
    color: #1e1e1e;
    color: var(--dark-line)
}

.TableResultsRow_firstName__3iiXM {
    text-transform: capitalize;
    color: #1e1e1e;
    color: var(--dark-line)
}

.TableResultsRow_lastName__X68NB {
    color: #1e1e1e;
    color: var(--dark-line)
}

.TableResultsRow_tableCellNat__10c4B {
    text-transform: capitalize;
    color: #1e1e1e;
    color: var(--dark-line)
}

.TableResultsRow_tableCellDiscipline__t5rGV {
    display: none;
    text-transform: capitalize;
}

.TableResultsRow_mobileTableCell__1dZ0f {
    padding: 10px;
    text-align: left;
    display: none;
}

.TableResultsRow_Men__2cRZx {
    background-color: #ffffff;
    background-color: var(--primary-text-colour);
}

.TableResultsRow_Women__2uccO {
    background-color: #f0f0f0;
    background-color: var(--tertiary-gray);
}

.TableResultsRow_tableCell__1tPgC a {
    padding: 10px;
    font-size: 14px;
    text-align: left;
    text-transform: capitalize;
    color: #262626;
    color: var(--primary-gray);
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
    .TableResultsRow_tableMobileRow__37iqB:nth-child(odd){
        background-color: #ffffff;
        background-color: var(--primary-text-colour);
    }
    .TableResultsRow_tableMobileRow__37iqB:nth-child(even){
        background-color: #f0f0f0;
        background-color: var(--tertiary-gray);
    }
    .TableResultsRow_mobileTableCellFlags__2xoIv {
      display: block;
    }
    .TableResultsRow_mobileTableCellFlags__2xoIv span span{
        display: none;
    }

    .TableResultsRow_desktopHeaderRow__1e_t8 {
        display: none;
    }
    .TableResultsRow_tableDisciplineRow__vc0t2 {
        display: none;
    }

    .TableResultsRow_tableCellNat__10c4B {
        display: none;
    }
    .TableResultsRow_tableCell__1tPgC {
        color: #707070;
        color: var(--text-colour-light);
        font-size: 12px;
    }
    .TableResultsRow_tableCell__1tPgC a{
        color: #707070;
        color: var(--text-colour-light);
        font-size: 12px;
    }
    .TableResultsRow_tableCellCountry__2orqG {
        display: none;
    }

    .TableResultsRow_firstName__3iiXM {
        color: #707070;
        color: var(--text-colour-light);
    }

    .TableResultsRow_lastName__X68NB {
        color: #707070;
        color: var(--text-colour-light);
    }

    .TableResultsRow_tableCellDiscipline__t5rGV {
        display: block;
        font-weight: bold;
        color: #1e1e1e;
        color: var(--dark-line);
    }

    .TableResultsRow_tableCellSexName__1dcrt {
        display: none;
    }
}



.TableResults_table__pGeQS {
    width: 100%;
    background:#ffffff;
    background:var(--primary-text-colour);
    padding: 20px;
}

.TableResults_countryResults__BAKcj {
    padding: 0 0 0 20px;
}

.TableResults_tableCell__3i9u2 {
    padding: 10px;
    font-size: 14px;
    text-align: left;
    text-transform: uppercase;
}

.TableResults_tableBodyHeader__2RwR4 {
    background-color: #1e1e1e;
    background-color: var(--dark-line);
    font-size: 16px;
    color: #ffffff;
    color: var(--primary-text-colour)
}

.TableResults_mobileHeader__13w57 {
    display: none;
}

.TableResults_mobileHeaderTitle__38NUp {
    padding: 10px;
    background-color: #173032;
    background-color: var(--secondary-accent-dark);
    font-size: 12px;
    text-align: left;
    text-transform: uppercase;
    color: #ffffff;
    color: var(--primary-text-colour);
}

@media only screen and (max-width: 767px) {
    .TableResults_mobileHeader__13w57 {
      display: table-row;
    }
    .TableResults_table__pGeQS {
        padding: 10px;
    }
    .TableResults_desktopHeaderRow__1OQhJ {
        display: none;
    }
}


.LocPastEventResults_resultsContainer__1S8uj {
    padding: 1em 0;
    max-width: 700px;

}
.LocPastEventResults_countryResults__405Km {
    width: 50%;
}
.LocPastEventResults_sectionTitle__2NPJE {
    font-size: 30px;
    padding-bottom: 1em;
}
.LocPastEventResults_countryResults__405Km .LocPastEventResults_sectionTitle__2NPJE {
    padding-left: 20px;
}
@media not screen and (min-width: 1124px) {
    .LocPastEventResults_resultsContainer__1S8uj {
        width: 90%;
        margin: 0 auto;
    }
  }
@media (max-width: 767px) {
    .LocPastEventResults_resultsContainer__1S8uj {
        width: 95%;
        margin: 0 auto;
        overflow-x: scroll;
    }

    .LocPastEventResults_sectionTitle__2NPJE {
        padding-bottom: 0.5em;
    }
}

.teamStandings_tableWrap__M-mp0 {
  max-height: 340px;
  overflow: auto;
}

.teamStandings_highlightTitle__1GUU4 {
  font-size: 30px;
  color: white;
  padding-bottom: 1em;
  padding-top: 0.5em;
}

@media (max-width: 767px) {
  .teamStandings_tableWrap__M-mp0 {
    max-height: 100%;
    overflow: hidden;
  }
}

.LocTeamStandings_title__3-Kr- {
  padding: 0.5em 0.8em;
  background: #bd94ff;
  font-family: 'World Athletics Heavy';
  font-size: 25px;
  color: #262626;
}

.LocTeamStandings_table__1boIP {
  background-color: transparent !important;
  min-width: 300px;
}

.LocTeamStandings_table__1boIP .LocTeamStandings_cell__2i79I div {
  display: inline-block;
  margin-right: 15px;
}

.LocTeamStandings_headerCell__2pZS1 {
  padding: 0.7em 1em !important;
}

.LocTeamStandings_headerRow__29MwY {
  background-color: #262626 !important;
  font-size: 20px !important;
  color: white
}

.LocTeamStandings_cell__2i79I {
  padding: 0.7em 1em !important;
  background-color: #262626 !important;
  opacity: 0.9;
  color: #ffffff !important;
  font-size: 18px !important;
}

.LocTeamStandings_row__2W8D3 {
  background-color: transparent !important;
  border-color: #1e1e1e !important;
}

/* FIXME: that's ugly, but need to increase specificity in order to override tables a style */

/* can't use !important otherwise it will override hover color */

a.LocTeamStandings_link__1P40R.LocTeamStandings_link__1P40R, a:visited.LocTeamStandings_link__1P40R.LocTeamStandings_link__1P40R {
  color: white;
}

.LocTeamStandings_tableContainer__2BKV2 {
  width: 45%;
}

@media (max-width: 767px) {
  .LocTeamStandings_tableContainer__2BKV2 {
    margin: 0 auto;
    width: 95%;
  }
}


.LocMedalTable_title__OEzEt {
  padding: 0.5em 0.8em;
  background: #bd94ff;
  font-family: 'World Athletics Heavy';
  font-size: 25px;
  color: #262626;
  overflow: auto;
}

.LocMedalTable_table__1n6dN {
  background-color: transparent !important;
}

.LocMedalTable_headerRow__6kmPR {
  background-color: #262626 !important;
  font-size: 20px !important;
}

.LocMedalTable_headerCell__pr1pk {
  padding: 0.7em 1em !important;
}

.LocMedalTable_cell__33gS7 {
  padding: 0.7em 1em;
  background-color: #262626 !important;
  opacity: 0.9;
  color: #ffffff !important;
  font-size: 18px !important;
}

.LocMedalTable_row__1sRf6 {
  background-color: transparent !important;
  border-color: #1e1e1e !important;
}

.LocMedalTable_cell__33gS7.LocMedalTable_mobile__1aEox {
    display: block;
  }

@media screen and all (max-width : 500px) {
    .LocMedalTable_cell__33gS7.LocMedalTable_mobile__1aEox {
      display: block;
    }
}

.LocMedalTable_eye__2WjVp {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #000000;
}

.LocMedalTable_eye__2WjVp img {
    min-width: 0;
    min-height: 0;
    margin-right: 5px;
  }

.LocMedalTable_headerTitle__MSt4t {
  display: flex;
  justify-content: space-between;
}

.LocMedalTable_headerTitle__MSt4t a {
    margin-left: auto;
  }



.LocPastEventsMedalTable_title__mLtN1 {
  padding: 0.5em 0.8em;
  background: #bd94ff;
  font-family: 'World Athletics Heavy';
  font-size: 18px;
  color: #262626;
}

.LocPastEventsMedalTable_table__205SU {
  background-color: transparent !important;
}

.LocPastEventsMedalTable_headerRow__2CTai {
  background-color: #262626 !important;
  font-size: 16px !important;
}

.LocPastEventsMedalTable_headerCell__1xRq1 {
  padding: 0.7em 1em !important;
}

.LocPastEventsMedalTable_cellFontSize__1g5DJ {
font-size: 14px !important;
}

.LocPastEventsMedalTable_textCenter__2ZLQW {
text-align: center !important;
}

.LocPastEventsMedalTable_cell__4NYNB {
padding: 0.72em 1em;
background-color: #262626 !important;
opacity: 0.9;
color: #ffffff !important;
font-size: 14px !important;
}

.LocPastEventsMedalTable_row__2XUqh {
background-color: transparent !important;
border-color: #1e1e1e !important;
}

.LocPastEventsMedalTable_gold__2imiU {
background-color: #FDC441 !important;
}

.LocPastEventsMedalTable_silver__7TU1L {
background-color: #D2D2D2 !important;
}

.LocPastEventsMedalTable_bronze__14NTB {
background-color: #D88B53 !important;
}

.LocPastEventsMedalTable_medalTableContainer__3FKJl {
  width: 50%;
  padding: 1em 0;
  max-width: 700px;
}

.LocPastEventsMedalTable_medalTableContainer__3FKJl section {
    overflow-x: scroll !important;
  }

.LocPastEventsMedalTable_highlightTitle__1ZF6m {
  font-size: 30px;
  color: white;
  padding-bottom: 1em;
}

@media not screen and (min-width: 1124px) {
  .LocPastEventsMedalTable_medalTableContainer__3FKJl {
      width: 90%;
      margin: 0 auto;
  }

  .LocPastEventsMedalTable_title__mLtN1 {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .LocPastEventsMedalTable_medalTableContainer__3FKJl {
      width: 95%;
      margin: 0 auto;
  }

  .LocPastEventsMedalTable_title__mLtN1 {
    font-size: 14px;
  }

  .LocPastEventsMedalTable_textCenter__2ZLQW,
  .LocPastEventsMedalTable_gold__2imiU,
  .LocPastEventsMedalTable_silver__7TU1L,
  .LocPastEventsMedalTable_bronze__14NTB,
  .LocPastEventsMedalTable_cell__4NYNB {
    font-size: 12px;
    padding: 0.5em 0.5em !important;
  }

  .LocPastEventsMedalTable_headerCell__1xRq1 {
    padding: 0.35em 0.5em !important;
  }

  .LocPastEventsMedalTable_highlightTitle__1ZF6m {
    padding-bottom: 0.5em;
  }

}

.LocPastEventsMedalTable_competitions__2gRBU {
  width: 100%;
  max-width: 100%;
}

.LocPastEventsMedalTable_title__mLtN1 {
  background: #69d7e1;
}

.LocPastEventsHighlightBox_highlightBoxContainer__YbBPP {
  width: 50%;
  padding: 1em 0.5em;
  max-width: 700px;
}

.LocPastEventsHighlightBox_highlightTitle__1mU8V {
  font-size: 30px;
  color: white;
  padding-bottom: 1em;
}

@media not screen and (min-width: 1124px) {
  .LocPastEventsHighlightBox_highlightBoxContainer__YbBPP {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .LocPastEventsHighlightBox_highlightBoxContainer__YbBPP {
    width: 95%;
    margin: 0 auto;
  }
  .LocPastEventsHighlightBox_highlightTitle__1mU8V {
    padding-bottom: 0.5em;
  }
}


.LocPastEventsHighlights_highlightsContainer__2OebV {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  background-color: orange;
  padding: 1em 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.LocPastEventsHighlights_youtubeWrapper__1VwBc {
  flex: 1 1;
  display: flex;
  align-items: flex-end;
  padding: 1em 0.5em;
  max-width: 700px;
}

@media not screen and (min-width: 1124px) {

.LocPastEventsHighlights_youtubeWrapper__1VwBc {
    width: 95%
}
  }

.LocPastEventsHighlights_youtube__mZcXf {
  min-height: 400px;
}

@media not screen and (min-width: 1124px) {

.LocPastEventsHighlights_youtube__mZcXf {
    min-height: 0
}
  }

@media not screen and (min-width: 1124px) {
  .LocPastEventsHighlights_highlightsContainer__2OebV {
    flex-direction: column;
    align-items: center;
  }
}


.LocPastEvents_pastEventsContainer___9yN6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.LocPastEvents_pastEventsContainerSection__2mfOw {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

.LocPastEvents_pastEventsContainerSectionResults__1iAPc {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  max-width: 1400px;
}

.LocPastEvents_componentSection__1ynDX {
  width: 50%;
  max-width: 680px;
}

.LocPastEvents_componentBackground__h_ThV {
  background-color: #69D7E1;
  background-color: var(--past-events-blue);
  width: 100%;
  display: flex;
  justify-content: center;
}

@media not screen and (min-width: 1124px) {
  .LocPastEvents_pastEventsContainerSection__2mfOw {
    flex-direction: column;
  }
  .LocPastEvents_pastEventsContainerSectionResults__1iAPc {
    flex-direction: column;
  }

  .LocPastEvents_componentSection__1ynDX {
    width: 100%;
    max-width: none;
  }
}


.PhaseNavigation_container__3Zks8 {
  padding: .8em 0;
  background-color: white;
}

.PhaseNavigation_inner__MTDu3 {
  max-width: 1400px;
  margin: auto;
}

.PhaseNavigation_phaseList__cdphk {
  padding-left: 1em;
}

.PhaseNavigation_phaseList__cdphk li {
    display: inline-block;
    padding-right: 2.5em;
  }

@media screen and (min-width: 768px) {

.PhaseNavigation_phaseList__cdphk li {
      padding-right: 3em
  }
    }

.PhaseNavigation_phaseList__cdphk li:last-child {
      padding-right: 0;
    }

.PhaseNavigation_navLabel__2rrqC {
  text-transform: uppercase;
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  float: left;
  margin: 0 2em 0 1em;
}

.PhaseNavigation_selectPhaseWrap__1zPvY {
  max-width: 300px;
}

.PhaseNavigation_phaseLink__3UsQ6 {
  position: relative;
}

.PhaseNavigation_activeTab__2HpKy:after {
    content: '';
    position: absolute;
    bottom: -16px;
    width: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 8px 7px;
    border-color: transparent transparent #A5FA64 transparent;
  }

.PhaseNavigation_trackEvent__1ndVk .PhaseNavigation_activeTab__2HpKy:after {
  border-color: transparent transparent #69d7e1 transparent;
  border-color: transparent transparent var(--secondary-colour) transparent;
}

.PhaseNavigation_combinedEventContainer__2Prhu.PhaseNavigation_container__3Zks8 {
    padding: .5em 0;
  }

.PhaseNavigation_combinedEventContainer__2Prhu .PhaseNavigation_navLabel__2rrqC {
    margin-top: .4em;
  }
.DaySelector_dateNav__3pEx3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    width: 100%;
}

.DaySelector_navButton__2ppzv {
    padding: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s;
}

.DaySelector_navButton__2ppzv:hover {
    color: #111827;
}

.DaySelector_dateGroup__2zqyp {
    display: flex;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    flex-grow: 1;
}

@media screen and (max-width: 767px) {

.DaySelector_dateGroup__2zqyp {
        gap: 0.25rem
}
    }

.DaySelector_dateButton__16umi {
    text-align: center;
    transition: all 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    min-width: 40px;
    padding: 0.25rem;
    border-bottom: 2px solid transparent;
}

.DaySelector_dateButton__16umi:hover:not(.DaySelector_selected__29Y0n) {
    color: #111827;
}

.DaySelector_dateButton__16umi.DaySelector_selected__29Y0n {
    color: #1E1E1E;
    color: var(--black);
    border-bottom: 2px solid #5E318F;
    border-bottom: 2px solid var(--guangzhou-purple);
}

.DaySelector_dateButton__16umi .DaySelector_day__2MJ7c {
    font-size: 0.9rem;
    color: #6b7280;
}

@media screen and (max-width: 767px) {

.DaySelector_dateButton__16umi .DaySelector_day__2MJ7c {
        font-size: 0.625rem
}
    }

.DaySelector_dateButton__16umi .DaySelector_date__1UgXp {
    font-size: 0.875rem;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .DaySelector_navButton__2ppzv {
        padding: 0;
    }
}
.DisciplineSelector_disciplineNav__1corM {
    display: flex;
    overflow-x: auto;
    padding: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.DisciplineSelector_disciplineButton__3W5kx {
    padding: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    border-radius: 5px;
    margin-right: 0.5rem;
    transition: all 0.2s;
    background: none;
    border: none;
    cursor: pointer;
}

.DisciplineSelector_disciplineButton__3W5kx.DisciplineSelector_selected__3kbY2 {
        background-color: #5E318F;
        background-color: var(--guangzhou-purple);
        color: white !important;
    }

.styles_customAccordionRoot__3EG_Y {
    background: #e5e9ec;
    padding: 0 !important;
}

    .styles_customAccordionRoot__3EG_Y svg {
        color: #173032;
        color: var(--secondary-accent-dark);
    }

    .styles_customAccordionRoot__3EG_Y > div:first-child {
        min-height: unset !important;
    }

.styles_customAccordionDetailsRoot__1TMKw {
    padding: 0 !important;
}

.styles_customAccordionSummaryRoot__36GYk{
    padding: 0 !important;
}

.styles_customAccordionSummaryContent__1nP3R {
    margin: 0 !important;
}

.styles_scrollableContent__2orw5 {
    overflow: auto;
    width: 100%;
}

@media(min-width: 1025px) {
    .styles_scrollableContent__2orw5::-webkit-scrollbar {
        width: 8px;
    }

    .styles_scrollableContent__2orw5::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 4px;
    }
}
.MeetThemOnTheTrackImage_image__2YXog{
    right: 0;
    left: 0;
    top: 0;
    margin: auto;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    min-height: 100%;
}

@media (--desktop) {

    .MeetThemOnTheTrackImage_image__2YXog {
        height: 100% !important;
        width: 100% !important;
      }

}
/* MeetThemOnTheTrackCard.module.css */

.MeetThemOnTheTrackCard_card__34yy5 {
  width: 100%;
  border-radius: 8px;
  background-color: white;
  overflow: hidden;
}

.MeetThemOnTheTrackCard_cardContent__1C4MO {
  display: flex;
  flex-direction: column;
}

.MeetThemOnTheTrackCard_imageContainer__1hkRj {
  position: relative;
  width: 100%;
  height: 222px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  z-index: 5;
}

.MeetThemOnTheTrackCard_watchTime__1qgKd {
  background-color: white;
  border-radius: 16px;
  padding: 5px 8px;
  font-size: 14px;
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
  font-weight: 400;
  z-index: 10;
}

.MeetThemOnTheTrackCard_bottomContainer__3Vymb {
  height: 172px;
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 6px;
}

.MeetThemOnTheTrackCard_bottomContent__SKVVS {
  position: absolute;
  bottom: 0%;
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  width: 94%;
}

.MeetThemOnTheTrackCard_athleteInfoContainer__1IcWh {
  min-height: 98px;
  background-color: white;
  border-radius: 16px;
  padding: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.MeetThemOnTheTrackCard_athleteGeneralInfoContainer__MtwSk {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.MeetThemOnTheTrackCard_athleteName__6FkWZ {
  text-decoration: underline;
  color: #173032;
  font-size: 20px;
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
}

.MeetThemOnTheTrackCard_athleteCountryCode__39T54 {
  color: #173032;
  font-size: 14px;
  text-transform: uppercase;
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);

}

.MeetThemOnTheTrackCard_blackBanner__27Z4g {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #173032;
  padding: 2px 8px;
  width: 100%;
}

.MeetThemOnTheTrackCard_blackBannerText__StJWs {
  font-size: 14px;
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  color: white;
}

.MeetThemOnTheTrackCard_countryContainer___DFzW {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.MeetThemOnTheTrackCard_syncButton__15ax2 {
  width: 173px;
  padding: 8px;
  background-color: #173032;
  color: white;
  border: none;
  border-radius: 2px;
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  cursor: pointer;
  align-self: center;
}

.MeetThemOnTheTrackCard_bestContainer__Ogy3v {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.MeetThemOnTheTrackCard_holderContainer__3Gmlb {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
}

.MeetThemOnTheTrackCard_bestValue__2Sq7Z {
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  font-size: 14px;
  font-weight: 700;
  color: #000000
}

.MeetThemOnTheTrackCard_recordCard__yS2zC {
  display: flex;
  padding: 2px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  height: 14px;
}

.MeetThemOnTheTrackCard_recordContainer__3wdXw {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1px;
}

.MeetThemOnTheTrackCard_bestYear__3s48R {
  font-size: 12px;
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
}

.MeetThemOnTheTrackCard_tabletCard__2WkOn .MeetThemOnTheTrackCard_athleteInfoContainer__1IcWh{
    min-height: 139px;
  }

.MeetThemOnTheTrackCard_tabletCard__2WkOn .MeetThemOnTheTrackCard_bottomContainer__3Vymb{
    height: 172px !important;
    flex-direction: column-reverse !important;
  }

.MeetThemOnTheTrackCard_tabletCard__2WkOn .MeetThemOnTheTrackCard_imageContainer__1hkRj {
    height: 245px !important;
  }

.MeetThemOnTheTrackCard_tabletCard__2WkOn .MeetThemOnTheTrackCard_imageContainer__1hkRj img {
      min-height: 245px;
      object-fit: cover;
    }

.MeetThemOnTheTrackCard_tabletCard__2WkOn .MeetThemOnTheTrackCard_athleteGeneralInfoContainer__MtwSk {
    flex-direction: column !important;
    align-items: baseline;
  }

.MeetThemOnTheTrackCard_tabletCard__2WkOn .MeetThemOnTheTrackCard_athleteName__6FkWZ{
    font-size: 16px !important;
  }

.MeetThemOnTheTrackCard_tabletCard__2WkOn .MeetThemOnTheTrackCard_athleteInfoContainer__1IcWh {
    z-index: 10;
  }

.MeetThemOnTheTrackCard_tabletCard__2WkOn .MeetThemOnTheTrackCard_bestContainer__Ogy3v{
    flex-direction: column !important;
    align-items: baseline !important;
  }

.MeetThemOnTheTrackCard_tabletCard__2WkOn .MeetThemOnTheTrackCard_watchTime__1qgKd {
    z-index: 10;
  }

.MeetThemOnTheTrackCard_tabletCard__2WkOn .MeetThemOnTheTrackCard_syncButton__15ax2 {
    width: 100%;
    padding: 8px;
    background-color: #173032;
    color: white;
    border: none;
    border-radius: 2px;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
    cursor: pointer;
  }
.MeetThemOnTheTrack_dontMissBannerContainer__3LuaH {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #EEF1F4;
}

    .MeetThemOnTheTrack_dontMissBannerContainer__3LuaH.MeetThemOnTheTrack_transparentBackground__2jR_9 {
        background-color: unset !important;
    }

.MeetThemOnTheTrack_darkBackground__PTK6x {
    color: white !important;
    padding: 0.5rem !important;
}

.MeetThemOnTheTrack_navButtons__17REm.MeetThemOnTheTrack_darkBackground__PTK6x {
        background-color: #E94653;
        background-color: var(--guangzhou-red);
        padding: 0;
    }

.MeetThemOnTheTrack_dontMissBannerContainerTimeTable__1Ajxj{
    margin: 0 auto;
}

.MeetThemOnTheTrack_dontMissBannerTitle__1IQuz {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: #1E1E1E;
    color: var(--competition-mode-nav-default-color-black);
    padding: 1rem 0;
  }

.MeetThemOnTheTrack_dontMissBannerTitle__1IQuz.MeetThemOnTheTrack_darkBackground__PTK6x {
        font-family: 'World Athletics',Arial,sans-serif, sans-serif;
        font-family: var(--font-family), sans-serif;
    }

.MeetThemOnTheTrack_sideItemCarousel__3RyhN{
    flex: 0 0 auto;
    box-shadow: none;
}

.MeetThemOnTheTrack_dontMissDesktopGridContainer__37Whc{
    display: flex;
    align-items: center;
    justify-content: center;
}

.MeetThemOnTheTrack_dontMissDesktopContainer__10fB7{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 8px;
}

.MeetThemOnTheTrack_mobileContainer__2nr0A .MeetThemOnTheTrack_dontMissBannerContainer__3LuaH {
        padding: 1rem 0px 12px 12px;
        gap: 4px;
        background-color: #EEF1F4;
        width: 100%;
        align-items: flex-start;
    }
.EventList_eventList__38dpr {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: max-content 1;
}

    .EventList_eventList__38dpr > div {
        background: transparent;
        box-shadow: none;
    }

    .EventList_eventList__38dpr .EventList_MuiAccordionDetails-root__3s0hl {
        padding: 0;
    }

    .EventList_eventList__38dpr .EventList_MuiAccordionSummary-content__1zc-c.EventList_Mui-expanded__2VPDJ {
        margin: 0 !important;
    }

    .EventList_eventList__38dpr div::after {
        content: none;
    }

.EventList_session__2ZNdX {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
}

.EventList_sessionTitle__3cbQG {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 0;
}

@media screen and (max-width: 767px) {

.EventList_sessionTitle__3cbQG {
        padding: 0 1rem
}
    }

.EventList_eventGrid__1fyaT {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-height: 450px;
}

@media screen and (max-width: 767px) {

.EventList_eventGrid__1fyaT {
        max-height: unset;
        padding: 0 1rem
}
    }

.EventList_eventGrid__1fyaT >div {
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.07);
        border-radius: 4px;
        gap: 40px;
        padding: 16px;
    }

@media screen and (max-width: 767px) {

.EventList_eventGrid__1fyaT >div {
            padding: 8px 16px
    }
        }

.EventList_eventsInUpcomingdays__R-mRR {
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

@media screen and (max-width: 767px) {

.EventList_eventsInUpcomingdays__R-mRR {
        padding: 1rem
}
    }

.EventList_upcomingTitle__1SFmN {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1E1E1E;
    color: var(--black);
}

.EventList_eventsInUpcomingdaysContent__2zRHX {
    background:
        /* Left */
            repeating-linear-gradient(
                    0deg,
                    #69D7E1 0px,
                    #69D7E1 10px,
                    transparent 10px,
                    transparent 20px
            ) left,
                /* Right */
            repeating-linear-gradient(
                    0deg,
                    #69D7E1 0px,
                    #69D7E1 10px,
                    transparent 10px,
                    transparent 20px
            ) right,
                /* Top */
            repeating-linear-gradient(
                    90deg,
                    #69D7E1 0px,
                    #69D7E1 10px,
                    transparent 10px,
                    transparent 20px
            ) top,
                /* Bottom */
            repeating-linear-gradient(
                    90deg,
                    #69D7E1 0px,
                    #69D7E1 10px,
                    transparent 10px,
                    transparent 20px
            ) bottom;

    background-size:
            2px 100%, /* Left */
            2px 100%, /* Right */
            100% 2px, /* Top */
            100% 2px; /* Bottom */

    background-repeat: no-repeat;
    border-radius: 8px;
    padding: 1rem;
    /*background: #FFFFFF99;*/
}

.EventList_upcomingGroup__x8H2R {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(#B2ADAD);
}

.EventList_upcomingHeader__dQyXi {
    font-size: 0.9rem;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 0.3rem;
    display: flex;
    border-bottom: 1px solid #69d7e1;
    border-bottom: 1px solid var(--secondary-colour);
}

.EventList_upcomingEvents__10TmG {
    border-bottom: 1px solid var(#B2ADAD);
}

.EventList_upcomingEvents__10TmG >div {
         gap: 40px;
     }
/* EventDetailsModal.module.css */
.EventDetailsModal_modalOverlay__TQKxv {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1em;
}
.EventDetailsModal_modalContent__AkBB9 {
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 1400px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.EventDetailsModal_modalHeader__3DY0z {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #262626;
    background-color: var(--grayscale-dark);
}
.EventDetailsModal_unitName__3Qvmx {
    font-size: 1.125rem;
    text-transform: uppercase;
    color: white;
}
.EventDetailsModal_closeButton__1Soec {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}
/* Unit Tabs */
.EventDetailsModal_unitTabsWrap__3fICH {
    background-color: #262626;
    background-color: var(--grayscale-dark);
}
.EventDetailsModal_unitTabs__23pUH {
    display: flex;
    flex-wrap: wrap;
    gap: 0.1em;
    padding: 0 1em;
}
.EventDetailsModal_unitTab__3UtXT {
    display: inline-block;
    color: white;
    background-color: #262626;
    background-color: var(--grayscale-dark);
    font-size: 1.125rem;
    padding: .25em 1em;
    text-transform: capitalize;
    cursor: pointer;
    border-top: 2px solid transparent;
}
.EventDetailsModal_unitTab__3UtXT:hover {
    border-top: 2px solid #a5fa64;
    border-top: 2px solid var(--tertiary-colour);
}
.EventDetailsModal_unitTabActive__1ejy1 {
    border-top: 2px solid #a5fa64;
    border-top: 2px solid var(--tertiary-colour);
}
/* Modal Body */
.EventDetailsModal_modalBody__3Bq1y {
    flex: 1 1;
    overflow: auto;
    background: #262626;
    background: var(--primary-gray);
    padding: 1em;
}
/* Unit Meta */
.EventDetailsModal_unitMeta__1NYam {
    background-color: #262626;
    background-color: var(--grayscale-dark);
    margin-bottom: 1em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.EventDetailsModal_timeAndWind__LiACo {
    font-size: 1.125rem;
    text-transform: uppercase;
    padding: .5em .75em;
    background-color: #a5fa64;
    background-color: var(--tertiary-colour);
}
@media screen and (min-width: 1200px) {
    .EventDetailsModal_timeAndWind__LiACo {
        width: 60%;
    }
}
.EventDetailsModal_metaTime__2y7Cc {
    display: inline-block;
    margin-right: 1em;
}
.EventDetailsModal_unitWind__3-oZg {
    display: inline-block;
}
/* Qualification Rules */
.EventDetailsModal_qualificationRules__3uiXA {
    background-color: #262626;
    background-color: var(--grayscale-dark);
    padding: .5em 1em;
    color: #a5fa64;
    color: var(--tertiary-colour);
    border-top: 1px solid #a5fa64;
    border-top: 1px solid var(--tertiary-colour);
    text-align: right;
    margin-bottom: 1em;
}
/* Field specific styles */
.EventDetailsModal_field__W3jcB .EventDetailsModal_timeAndWind__LiACo {
        background-color: #69d7e1;
        background-color: var(--secondary-colour);
    }
.EventDetailsModal_field__W3jcB .EventDetailsModal_unitTabActive__1ejy1,
    .EventDetailsModal_field__W3jcB .EventDetailsModal_unitTab__3UtXT:hover {
        border-color: #69d7e1;
        border-color: var(--secondary-colour);
    }
.EventDetailsModal_field__W3jcB .EventDetailsModal_qualificationRules__3uiXA {
        border-color: #69d7e1;
        border-color: var(--secondary-colour);
        color: #69d7e1;
        color: var(--secondary-colour);
    }
/* Tables Container */
.EventDetailsModal_tableContainer__1Mook {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1em;
}
.EventDetailsModal_noData__23SEB {
    color: white;
    padding: 1em;
    background-color: rgba(0,0,0,0.5);
}
@media screen and (max-width: 768px) {
    .EventDetailsModal_unitMeta__1NYam {
        flex-direction: column;
    }

    .EventDetailsModal_timeAndWind__LiACo {
        width: 100%;
    }

    .EventDetailsModal_unitTabs__23pUH {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}
.TemporaryAccessExpiredModal_modalContainer__1dMfN {
    position: relative;
    background-color: #FFF;
    background-color: var(--primary-white);
    box-shadow: 0px 2px 6px hsla(210, 50%, 10%, 0.15);
    border-radius: 4px;
    z-index: 1001;
    width: auto;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}

.TemporaryAccessExpiredModal_modalOverlay__1ypeF {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
}

.TemporaryAccessExpiredModal_modalBackdrop__2rJc7 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.TemporaryAccessExpiredModal_closeButton__1m3lP{
    width: 24px;
    position: absolute;
    z-index: 1002;
    top: 28px;
    right: 24px;
}

.TemporaryAccessExpiredModal_competitionModeLogo__2Hyig {
    margin: auto;
    margin-bottom: 24px;
    margin-top: 12px;
  }
.competitionModeLayout_mainContent__2X-yY {
    min-height: calc(100dvh - 140px);
    /*max-height: calc(100dvh - 140px);*/
    overflow: auto;
    background: #EEF1F4;
}

.competitionModeLayout_competitionModeLayout__3Q95J {

}
.SeriesList_table__EvOiW {
  min-width: 300px;
}

  .SeriesList_table__EvOiW th {
    font-size: 14px;
    text-align: left;
    font-family: 'World Athletics Bold',Arial,sans-serif, sans-serif;
    font-family: var(--font-family-bold), sans-serif;
  }

  .SeriesList_table__EvOiW tr {
    color: #262626;
    color: var(--primary-gray);
    vertical-align: middle;
    padding: 8px 10px;
    font-weight: 100;
    overflow: hidden;
    font-size: 13px;
  }

  .SeriesList_table__EvOiW tr.SeriesList_teamRecord__1FfM6:hover {
        background-color: #bd94ff;
        background-color: var(--quaternary-colour);
        cursor: pointer;
      }

  .SeriesList_table__EvOiW tr td {
      color: #262626;
      color: var(--primary-gray);
      vertical-align: middle;
      padding: 8px 10px;
      font-weight: 100;
      overflow: hidden;
      font-size: 13px;
    }

  .SeriesList_table__EvOiW tr th {
      vertical-align: middle;
      padding: 8px 10px;
      text-transform: initial;
      font-size: 14px;
    }

  .SeriesList_table__EvOiW tbody:nth-child(odd) {
      background-color: #EEF1F4;
    }

  .SeriesList_table__EvOiW thead tr {
      background-color: white !important;
    }

.SeriesList_tableWrapper__299j5 {
  width: 100%;
  overflow-x: auto;
}

.SeriesList_next__2NyE0 {
  background-color: var(--next-highlight) !important;
}

.SeriesList_last__3EF_z {
  background-color: var(--last-highlight) !important;
}

.SeriesList_mark__OMQVa {}

.SeriesList_bestAttempt__i-i2y {
  background: #f8caad;
}

.SeriesList_markContainer__3kVAF {
  padding: .2em;
}

.SeriesList_wind__gA0Pn{
  display: block;
  font-size: 0.9em;
  opacity: .7;
  margin-top: 0.5em;
}

.SeriesList_currentCol__1Yb4o {
  background-color: #ffe5ef;
}

.SeriesList_currentColOdd__1YbXD {
  background-color: #ffeaf2;
}

.SeriesList_sortButton__3DeVI{
  border-radius: 3px;
  padding: 0.2em 0.4em;
  cursor: pointer;
}

.SeriesList_sortButton__3DeVI:hover{
    background-color: #00b1bc4f;
  }

.SeriesList_sortButton__3DeVI.SeriesList_active__2kOVm {
    background-color: #00b1bc;
    color: #FFF;
    cursor: default;
  }

.SeriesList_sortingHeader__342SM{
  padding: 0.6em 0.3em;;
}

.SeriesList_competitorNameLink__358HQ {
  cursor: pointer;
}

.SeriesList_competitorNameLink__358HQ:hover {
    color: var(--link-hover-colour) !important;
  }

.SeriesList_seriesLabels__1mvgv {
  opacity: 0.7;
  margin-top: .5em;
}

.SeriesList_seriesLabels__1mvgv .SeriesList_seriesLabel__ykW79 {
    font-size: 0.9em;
    margin-bottom: .5em;
  }

.SeriesList_seriesLabels__1mvgv .SeriesList_seriesLabelMark__1rYYX {
    font-size: 1rem;
  }

.styles_container__3tIGm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  width: 37px;
}

.styles_icon__25hfo {
  display: none;
  width: 0;
  height: 0;
}

.styles_increase__wSmjg {
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #7fcdbb;
}

.styles_decrease__3CEPx {
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ed1c24;
  border-top: 6px solid var(--secondary-live-text-colour);
}

.styles_equal__36QqE {
  display: inline-block;
  width: 10px;
  height: 6px;
  position: relative;
}

.styles_equal__36QqE:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 90%;
    background-color: #A79EB7;
    background-color: var(--qualifier-colour);
  }

.styles_equal__36QqE:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 90%;
    background-color: #A79EB7;
    background-color: var(--qualifier-colour);
  }

.styles_postEventContainer__1ZZqJ {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.styles_phaseNameStyle__2XSnf{
    border-radius: 2px;
    background: #FBD1BB;
    font-weight: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-weight: var(--font-family-bold);
    padding: 0px 5px;
    font-size: 12px;
    width: min-content;
    min-width: 50px;
    text-align: center;
}

.styles_typographyClass__3lsNB {
    width: 100%;
}

.styles_postEventCollapsibleHeaderStyle__1eRsL {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

@media (max-width: 767px) {

.styles_postEventCollapsibleHeaderStyle__1eRsL {
        font-size: 14px !important
}
    }

.styles_disciplineNameStyle__2JBzY {
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif !important;
    font-family: var(--font-family-bold) !important;
    font-weight: 800 !important;
    font-size: 18px !important;
}

@media (max-width: 767px) {

.styles_disciplineNameStyle__2JBzY {
        font-size: 14px !important
}
    }

.styles_postEventHeader__3YxKK {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: white;
}

@media (max-width: 767px) {

.styles_postEventHeader__3YxKK {
        font-size: 14px !important
}
    }

.styles_fullResultsUnderLine__1zh44 {
    height: 2px;
    background: #5E318F;
    background: var(--guangzhou-purple);
}

.styles_title__3ueZ0{
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: white;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
}

@media (max-width: 767px) {
    .styles_title__3ueZ0{
        font-size: 20px;
        font-weight: 600;
        line-height: 26px;
        padding: 1rem 0;
    }
}
.TeamProfileModal_overlay__2uEl5 {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0, 0.5);
}

.TeamProfileModal_modal__5VDsB {
  position: absolute;
  transform: translate(-50%, -50%);
  max-height: 80vh;
  max-width: 450px;
  left: 50%;
  top: 50%;
  border-width: 0;
  background: rgba(255, 255, 255, 1);
  overflow: visible;
  border-radius: 4px;
  outline: none;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .TeamProfileModal_modal__5VDsB {
    width: 95vw !important;
    height: 95vh;
  }
}

.TeamProfileModal_title__301eT {
  margin: 0 0 15px;
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  font-size: 1.7em;
}

.TeamProfileModal_title__301eT > span {
    margin-right: 5px;
  }

.TeamProfileModal_container__3whOQ {
  position: relative;
  max-width: 100%;
  padding: 12px 10px;
}

.TeamProfileModal_close__3uKNo {
  border: 0;
  font-size: 16px;
  color: #4e4e4e;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;;
}

.TeamProfileModal_statsContainer__1kbqM {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.TeamProfileModal_statsList__1Oscp {
  width: 47%;
  display: flex;
  flex-direction: column;
}

.TeamProfileModal_statItem__2JZNx {
  display: flex;
  margin-bottom: 4px;
}

.TeamProfileModal_statItem__2JZNx > span:first-child {
      font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
      font-family: var(--font-family-bold);
      font-size: 0.84em;
      display: inline-block;
      width: 80px;
      color: #0e0e0e;
    }

.TeamProfileModal_statItem__2JZNx > span:last-child {
      font-size: 0.94em;
      color: var(--navbar-border-colour);
    }

.TeamProfileModal_btnBlock__1zgMW {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.TeamProfileModal_tableTitle__33oUw {
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  margin-bottom: 15px;
}

.TeamProfileModal_table__1spj3 {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--table-alternate-background-colour);
}

.TeamProfileModal_cell__2ZdrX {
  display: flex;
  align-items: center;
  padding: 15px 0;
}

.TeamProfileModal_cell__2ZdrX:nth-child(even) {
    background-color: var(--table-alternate-background-colour);
  }

.TeamProfileModal_cell__2ZdrX > span {
    width: 47%;
    padding: 0 15px;
  }


.QualificationRules_container__gZssH {
  font-size: 0.8125rem;
  line-height: 1.5em;
  padding: 8px;
  border-radius: 0 0 4px 4px;
}

  .QualificationRules_container__gZssH.QualificationRules_headRule__1yTiS {
    border-radius: 4px;
    margin: .5em 0 1em 0;
    background-color: #dfdfdf;
  }

/* Default: Modal Overlay for Mobile */
.ResultListModal_overlay__3hgK2 {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1000;
}
.ResultListModal_modal__32DD1 {
    background-color: white;
    border-radius: 0.5rem;
    width: 100%;
    max-width: 32rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-height: 700px;
    overflow: auto;
}
@media (min-width: 1025px) {
    .ResultListModal_overlay__3hgK2 {
        position: static;
        background: none;
        display: block;
        width: 50%;
        height: auto;
        padding: 0;
    }

    .ResultListModal_modal__32DD1 {
        width: 100%;
        max-width: none;
        height: 100%;
        max-height: 1100px;
        border: 2px solid #5E318F;
        border: 2px solid var(--guangzhou-purple);
        border-radius: 5px;
        overflow-y: auto;
    }

        .ResultListModal_modal__32DD1 div::after {
            content: none;
        }
}
.ResultListModal_header__3jNmU {
    padding: 20px 16px 12px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
}
.ResultListModal_title__1jx5Z {
    font-size: 1.125rem;
    font-weight: 600;
}
.ResultListModal_title__1jx5Z a {
        text-decoration: underline;
    }
.ResultListModal_content__1zh3C {
    overflow-y: auto;
    flex: 1 1;
    padding: 4px 16px;
}
.ResultListModal_content__1zh3C > div {
        box-shadow: none;
    }
@media(min-width: 1025px) {
    .ResultListModal_content__1zh3C::-webkit-scrollbar {
        width: 8px;
    }

    .ResultListModal_content__1zh3C::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 4px;
    }
}
.ResultListModal_footer__2RIVv {
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    color: #077079;
    color: var(--competition-mode-accent-color-blue);
}
.ResultListModal_backButton__1tgSF {
    padding: 0.5rem;
    color: #0E0E0E;
    color: var(--primary-dark);
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
}
.ResultListModal_backButton__1tgSF:hover {
    background-color: #f9fafb;
}
.ResultListModal_panelTitle__3eFkC {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
}
.ResultListModal_panelTitle__3eFkC a {
        text-decoration: underline;
    }
.ResultListModal_eventTime__1sLBS {
    font-size: 0.875rem;
    color: #6b7280; /* Light gray for readability */
}
.ResultListModal_statusLive__yMUOB {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}
@media screen and (max-width: 767px) {
.ResultListModal_statusLive__yMUOB {
        font-size: 14px
}
    }
.ResultListModal_liveDot__1pGms {
    height: 8px;
    width: 8px;
    background-color: #ff873c;
    background-color: var(--primary-colour);
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.styles_cardHeader__CDvRF{
    background: #FF873C;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    text-transform: uppercase;
}

.styles_card__2PhW5{
    border-radius: 15px;
}

.styles_cardContent__14WsI{
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.BrokenRecordsCarousel_carouselContainer__1taR3 {
    justify-items: center;
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding-bottom: 10px;
    padding-top: 10px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    max-width: 1400px;
    width: 100%;
    text-align: center;
}

.BrokenRecordsCarousel_container__19u-W{
    width: 100%;
    display: flex;
    justify-content: center;
}

.BrokenRecordsCarousel_banner__LuDN9 {
    background: url(https://worldathletics.org/static/tealRibbon.png);
    background-size: cover;
    padding: 16px;
    width: 100%;
    place-items: center;

}

.BrokenRecordsCarousel_banner__LuDN9 > div {
        max-width: 1400px;
    }

@media screen and (min-width: 1025px) {

.BrokenRecordsCarousel_banner__LuDN9 > div {
            justify-items: center
    }
        }

.BrokenRecordsCarousel_bannerTitle__zwSrn {
    padding: 0 20px;
}

.BrokenRecordsCarousel_bannerTitle__zwSrn h2 {
        font-weight: 600;
        margin-bottom: 8px;
        background: white;
        width: fit-content;
    }

.BrokenRecordsCarousel_bannerText__3vI6P {
    font-size: 14px;
    color: #1E1E1E;
}

.BrokenRecordsCarousel_carousel__2DAid {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.BrokenRecordsCarousel_carousel__2DAid:active {
    cursor: grabbing;
}

.BrokenRecordsCarousel_carouselTrack__1t0Ni {
    display: flex;
    transition: transform 0.3s ease-out;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}

.BrokenRecordsCarousel_carouselSlide__2V8hc {
    background-color: white;
    border-radius: 15px;
    height: auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
}

.BrokenRecordsCarousel_carouselNavContainer__3heo4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding: 0 20px;
}

.BrokenRecordsCarousel_carouselNav__1SSLw {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    border: none;
    z-index: 10;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.BrokenRecordsCarousel_carouselNav__1SSLw:hover {
    transform: translateY(-50%) scale(1.05);
}

.BrokenRecordsCarousel_carouselNav__1SSLw:active {
    transform: translateY(-50%) scale(0.95);
}

.BrokenRecordsCarousel_carouselNavPrev__qwGMb {
    left: 8px;
}

.BrokenRecordsCarousel_carouselNavNext__1vN9t {
    right: 8px;
}

.BrokenRecordsCarousel_carouselDots__2JMap {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.BrokenRecordsCarousel_carouselDot__f5H3J {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DDD;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.BrokenRecordsCarousel_carouselDot__f5H3J:hover {
    transform: scale(1.2);
}

.BrokenRecordsCarousel_carouselDotActive__1meIT {
    background: #00BCD4;
}

@media (max-width: 768px) {
    .BrokenRecordsCarousel_carouselNav__1SSLw {
        display: none;
    }

    .BrokenRecordsCarousel_carouselTrack__1t0Ni {
        padding: 0;
    }

    .BrokenRecordsCarousel_bannerTitle__zwSrn {
        padding: 0;
   }

    .BrokenRecordsCarousel_carouselNavContainer__3heo4 {
        display: inherit;
        justify-content: space-between;
        align-items: center;
        margin-top: 16px;
        padding: 0;
    }
}

.BrokenRecordsCarousel_card__hhmlv {
    background: white;
    border-radius: 8px;
    padding: 16px;
}

.BrokenRecordsCarousel_breakingCard__19XxM {
    height: 80%;
    display: flex;
    flex-direction: column;
    place-content: space-evenly;
    border-radius: 8px;
}

.BrokenRecordsCarousel_breakingCard__19XxM .BrokenRecordsCarousel_breakingRibbon__v7gzY {
        color: white;
        background-image: url('https://worldathletics.org/static/redHue.jpg');
        background-size: cover;
        height: fit-content;
        padding: 8px 10px;
        margin-top: 25px;
        display: grid;
        grid-gap: 5px;
    }

.BrokenRecordsCarousel_breakingBadge__2YyXp {
    font-weight: bold;
    font-size: 14px;
    display: block;
}

.BrokenRecordsCarousel_breakingTitle__3nYhd {
    font-weight: bold;
    font-family: 'World Athletics Heavy',Arial,sans-serif, sans-serif;
    font-family: var(--font-family-heavy), sans-serif;
    font-size: 11px;
    text-transform: uppercase;
}

.BrokenRecordsCarousel_breakingText__1yNl5 {
    font-size: 14px;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
}

.BrokenRecordsCarousel_discoverLink__3dvwR {
    font-weight: 700;
    color: #077079;
    color: var(--competition-mode-nav-active-color);
    text-decoration: underline;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    vertical-align: bottom;
    padding: 10px;
}

.BrokenRecordsCarousel_playButton__2jOEM {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}
.insideTrackBanner_insideTrackContainer__3ocgi {
    width: 100%;
    height: 240px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    object-fit: fill;
}

.insideTrackBanner_promoSection__2nnKA {
    font-weight: 700;
    line-height: 120%;
}

@media screen and (max-width: 1360px) {
    .insideTrackBanner_insideTrackContainer__3ocgi{
        height: 160px;
    }
}

@media (max-width: 767px){
    .insideTrackBanner_insideTrackContainer__3ocgi{
        height: 120px;
    }
}
.styles_container__2gSZT {
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .styles_container__2gSZT div::after {
        content: none;
    }

    .styles_container__2gSZT .styles_headerContainer__yXclu {
        background: #ffffff;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        border-bottom: 1px solid #e5e7eb;
    }

    .styles_container__2gSZT .styles_header__NNsjw {
        display: grid;
        grid-template-columns: auto max-content;
        gap: 10px;
        padding: 0 16px;
        max-width: 1400px;
        margin: 0 auto;
    }

.styles_disciplineSelector__1Os2C {
    max-width: 1400px;
    margin: auto;
    width: inherit;
}

.styles_timeTableContent__2A7wI {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    width: inherit;
}

.styles_moreContent__24NZx {
    gap: 24px;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    width: inherit;

}

@media screen and (max-width: 767px) {

.styles_moreContent__24NZx {
        padding: 1rem

}
    }

.styles_noPadding__1gbbQ {
    padding: 0;
    gap: 0;
}

.styles_predictorBannerContainer__1hmZs{
    margin-bottom: 20px;
}

.styles_eventResults__2I__e {
    display: none;
}

@media (min-width: 768px) {
    .styles_timeTableContent__2A7wI {
        flex-direction: row;
        position: relative;
        padding: 1rem;
    }

    .styles_eventList__2aYP8 {
        flex: 1 1;
    }

    .styles_eventResults__2I__e {
        display: block;
        flex: calc(40% - 24px) 1;
    }
}

.seeFullResultsBtn_seeFullResultsBtn__xBI9i{
    background-color: #5E318F;
    background-color: var(--guangzhou-purple);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 3px 5px 10px;
    border:none;
    border-radius: 5px;
}
.seeFullResultsBtn_fullWidth__2pcP9{
    width:100%;
    margin-top: 1rem;
    padding: .8rem 10px;
}
.seeFullResultsBtn_seeFullResultsBtn__xBI9i:hover{
    background-color: #5E318F;
    background-color: var(--guangzhou-purple);
}
.seeFullResultsBtn_seeFullResultsBtn__xBI9i a{
    margin-right: 1rem;
}
.styles_vimeoPlayerContainer__kyxvD {
    max-width: 1400px;
    height: 70vh;
    overflow: hidden;
    background-color: white;
    margin: auto;
    position: relative;
}

.styles_vimeoPlayer__3e4Be {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.styles_buttonContainer__QPVYk {
    position: absolute;
    bottom: 40px;
    right: 7%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.styles_buttonContainer__QPVYk>*:not(:last-child) {
    margin-right: 20px;
}

.styles_videoButtonIcon__1nEl3 {
    width: 24px;
    height: 24px;
}

.styles_videoButton__3bKyS {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    box-shadow: none;
    background-color: #FFFFFF80;
}

@media only screen and (max-width: 1024px) {
    .styles_buttonContainer__QPVYk {
        position: absolute;
        right: 9%;
    }

    .styles_vimeoPlayerContainer__kyxvD {
        width: 100%;
        height: 50vh;
        overflow: hidden;
        background-color: white;
    }
}
.registerNowBanner_registerNowBanner__3FxCK {
  width: 100%;
  aspect-ratio: 393/129;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: 200px;
}

.registerNowBanner_imageContainer__1s-2I {
  width: 100%;
  aspect-ratio: 393/129;
  position: relative;
  overflow: hidden;
}

.registerNowBanner_image__2f2FV {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.registerNowBanner_content__1s0sz {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.registerNowBanner_textTop__bSESW {
  text-align: center;
  width: 100%;
  color: black;
  font-size: 16px;
  font-weight: bolder;
  line-height: 1.2;
  margin-bottom: 8px;
}

.registerNowBanner_textBottom__fBIbZ {
  text-align: center;
  width: fit-content;
  color: black;
  background-clip: content-box;
  background-color: white;
  font-size: 16px;
  font-weight: bolder;
  line-height: 1.2;
  margin-bottom: 8px;
}

.registerNowBanner_textDesktop__2Qbaf{
  font-size: 16px;
  color: white;
  margin-bottom: 8px;

}

.registerNowBanner_button__3740t {
  background-color: #f97316;
  color: black;
  padding: 8px 24px;
  text-transform: uppercase;
  font-weight: bolder;
  font-size: 14px;
}

.registerNowBanner_button__3740t:hover {
  background-color: #ea580c;
}

.registerNowBanner_buttonDesktop__26qQP{
  color: white;
  border:1px solid white;
  border-radius: 30px;
  padding: 5px 24px;
}
.styles_bannerImage__2zI5W{
    width: 100%;
    height: 240px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    object-fit: fill;
}


@media screen and (max-width: 1360px) {
    .styles_bannerImage__2zI5W{
        height: 160px;
    }
}


@media (max-width: 767px){
    .styles_bannerImage__2zI5W{
        height: 120px;
    }
}
.sessionImage_sessionImage__21dL8 {
    width: 100%;
    object-fit: cover;
    height: 150px;
}

.sessionImage_sessionImage__21dL8.sessionImage_desktop__Xa1xm {
    width: 20%;
    min-width: 120px;
    object-fit: cover;
    height: 90px;
    border-radius: 5px;
    margin-right: 1rem;
}
.sessionTypeBadge_sessionBadge__27jG2 {
    display: inline-block;
    background-color: #C2E9ED;
    padding: 0.25rem 0.75rem;
    padding: 0px 6px;
    font-size: 12px;
    font-weight: 500;
    gap: 10px;
    border-radius: 2px;
  }
.sessionTitle_sessionTitle__1_1_z {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  line-height: 18px;
  text-decoration: underline;
}

    @media screen and (max-width: 767px) {.sessionTitle_sessionTitle__1_1_z {
        font-size: 16px
}
    }
.sessionCardDesktop_sessionCardDesktop__10i9M {
    background-color: white;
    border-radius: 5px;
    width:100%;
    height: fit-content;
    overflow: hidden;
    position: relative;
    padding: 10px;
    display: flex;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 1rem;
  }
.sessionCardDesktop_sessionDescription__sygbQ {
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: 100%;
}
.sessionCardDesktop_sessionDescription__sygbQ a {
        text-decoration: underline;
    }
.sessionCardDesktop_sessionDescription__sygbQ .sessionCardDesktop_details__LtpMx {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: space-between;

    }
.sessionCardDesktop_sessionHeader__8z348 {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    overflow: hidden;
    align-items: center;
  }
.sessionCardDesktop_sessionTime__2dOJ9 {
    font-size: 12px;
    color: #4B5563;
    font-weight: 400;
    line-height: 21.6px;
    letter-spacing: -3%;
  }
.styles_eventContainer__2meaw {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.2rem;
    transition: background-color 0.2s;
    width: 100%;
    background: white;
}

    .styles_eventContainer__2meaw div::after {
        content: none;
    }

.styles_eventContainer__2meaw:hover:not(.styles_selectedEvent__2fybY):not(.styles_eventDisabled__1NY41) {

}

.styles_eventDisabled__1NY41 {
    background: transparent;
}

.styles_selectedEvent__2fybY {
    background-color: #69d7e1;
    background-color: var(--secondary-colour);
}

.styles_inactive__2fx-t {
    pointer-events: none;
}

.styles_inactive__2fx-t .styles_selectedEvent__2fybY {
        background: transparent;
        color: #737272FF;
    }

.styles_selectedEvent__2fybY * {
}

.styles_eventDetails__1AUnO {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.styles_eventDetails__1AUnO.styles_inline__3lC7B {
        display: grid;
        grid-template-columns: 1fr 3fr 1fr; /* Adjust the number of columns */
        align-items: center;
        gap: 15px;
        width: 100%;
    }

.styles_eventDetails__1AUnO.styles_inline__3lC7B > :first-child {
            justify-self: start;
        }

.styles_eventDetails__1AUnO.styles_inline__3lC7B > :nth-child(2) {
            justify-self: start;
            width: 100%;
        }

.styles_eventDetails__1AUnO.styles_inline__3lC7B > :last-child {
            justify-self: end;
        }

.styles_newEventContainer__1hTaS {
    background-color: white;
    border-radius: 5px;
    width:100%;
    height: fit-content;
    overflow: hidden;
    position: relative;
    padding: 10px;
    display: flex;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 1rem;
}

.styles_detailsRow__DwSqG {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.styles_eventNameAndPhase__2kPrK {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.styles_eventNameTitle__3go5l {
    margin-right: 20px;
}

.styles_eventName__1glF2 {
    font-weight: 600;
    font-size: 18px;
}

@media screen and (max-width: 767px) {

.styles_eventName__1glF2 {
        font-size: 16px
}
    }

.styles_eventMeta__1lHyK {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.styles_eventMeta__1lHyK.styles_inline__3lC7B {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        flex: 1 1;
    }

.styles_eventTime__2EwnV {
    white-space: nowrap;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #52575D;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif !important;
    font-family: var(--font-family-bold) !important;
}

@media screen and (max-width: 767px) {

.styles_eventTime__2EwnV {
        font-size: 14px
}
    }

.styles_selectedEvent__2fybY .styles_eventTime__2EwnV {
    }

.styles_eventStatus__3Wzhq {
    font-weight: 600;
    margin-top: 4px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #1E1E1E;
    color: var(--black);
}

@media screen and (max-width: 767px) {

.styles_eventStatus__3Wzhq {
        font-size: 14px
}
    }

.styles_link__FsES6 {
    background: none !important;
    border-bottom: 3px solid #E94653 !important;
    text-align: center;
    color: #1E1E1E;
    color: var(--black);
}

.styles_selectedEvent__2fybY .styles_eventStatus__3Wzhq {
    }

.styles_statusLive__24G5J {
    font-size: 16px;
}

@media screen and (max-width: 767px) {

.styles_statusLive__24G5J {
        font-size: 14px
}
    }

.styles_liveDot__27w1O {
    height: 8px;
    width: 8px;
    background-color: #ff873c;
    background-color: var(--primary-colour);
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}
.watchLiveOn_watchLiveOnContainer__13_A7{
    /*background: transparent linear-gradient(44deg, #BD94FF 0%, #FF873C 100%) 0% 0% no-repeat padding-box;*/
    background: #dfd0fa;
    background: var(--quaternary-accent);
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    align-items: center;
    padding: 8px 12px;
    font-weight: bold;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    cursor: pointer;
    color:#1E1E1E;
    width:100%;
}
.watchLiveOn_fullWidth__2HD4v {
    width:100%;
}
.watchLiveOn_watchLiveOnTextContainer__3CZmq{
    display: flex;
    align-items: center;
    width: 100%;
}
.watchLiveOn_watchLiveOnTextContainer__3CZmq img{
    height: 35px;
    margin-left: 1rem;
}
.NextEvents_mobileLiveSessionContainer__FcTpq {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.NextEvents_sessionCardDesktop__1ICm0 {
    background-color: white;
    border-radius: 5px;
    width:100%;
    height: fit-content;
    overflow: hidden;
    position: relative;
    padding: 10px;
    display: flex;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 1rem;
}
.NextEvents_liveSessionContainer__1jaNL{
}
.NextEvents_liveSessionContent__x5CpJ {
    height: 100%;
    padding: 1rem;
}
.NextEvents_violetPattern__2JAdM {
    background: url('https://worldathletics.org/static/competitionMode/next-events-bg.svg');
    background-color: #5E318F;
    background-color: var(--guangzhou-purple);

}
.NextEvents_content__cJW53{
    max-width: 1400px;
    margin: auto;
}
.NextEvents_timeControl__2UEnC {
    color: white;
}
.NextEvents_timeControlContainer__3hw4Q {
    background-color: #E94653 !important;
}
.NextEvents_footer__1SBrb {
    display: flex;
    width:100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}
.NextEvents_link__1F3Be {
    background: none !important;
    border-bottom: 3px solid #E94653 !important;
    text-align: center;
    color: white;
}
.NextEvents_buttonLink__2L6wW {
    padding: 5px 10px;
    background: #E94653;
    background: var(--guangzhou-red);
    align-items: center;
    color: white;
    border-radius: 4px;
    height: fit-content;
    width: fit-content;
    align-self: center;
    justify-self: center;
}
.NextEvents_doubleGrid__eqtJg{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}
.NextEvents_liveSessionContainer__1jaNL h1{
    margin-bottom: 1rem;
}
.NextEvents_title__BFdCP {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: white;
    text-transform: uppercase;
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family);
}
.NextEvents_header__3t46Y {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
@media (max-width: 767px) {
    .NextEvents_title__BFdCP{
        font-size: 20px;
        font-weight: 600;
        line-height: 26px;
        padding: 0;
    }
  }
.LiveViewHeader_liveViewHeaderContainer__3x5Wl {
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.LiveViewHeader_liveViewContainer__3m4YD {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.LiveViewHeader_mobileLiveSessionContainer__2YHQz {
    font-size: 22px;
    z-index: 1;
    width: 70%;
}

@media screen and (max-width: 767px) {

.LiveViewHeader_mobileLiveSessionContainer__2YHQz {
        font-size: 16px;
        width: 100%
}
    }

.LiveViewHeader_mobileLiveSessionContainer__2YHQz b {
        font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
        font-family: var(--font-family-bold);
    }

.LiveViewHeader_title__6vm0V {
    font-size: 2.5rem;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
}

@media screen and (max-width: 767px) {

.LiveViewHeader_title__6vm0V {
        font-size: 2rem
}
    }

.LiveViewHeader_liveViewContainer__3m4YD {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    padding: 1rem;
}

@media screen and (max-width: 767px) {

.LiveViewHeader_liveViewContainer__3m4YD {
        padding: 16px 12px
}
    }

.LiveViewHeader_svgWrapper__OLnNX {
    margin-top: -4vw;
    justify-self: end;
}

.LiveViewHeader_responsiveSvg__2Sd85 {
    width: 50%;
    height: auto;
    justify-self: end;
}

@media screen and (max-width: 767px) {

.LiveViewHeader_responsiveSvg__2Sd85 {
        width: 100%
}
    }

/* TabsViewNavigation.module.css */
.TabsViewNavigation_tabsView__1eRxR {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.TabsViewNavigation_tabsView__1eRxR.TabsViewNavigation_fullWidth__34Phs {
        max-width: 100%;
    }
/* Container for the tabs */
.TabsViewNavigation_tabNavigationContainer__AUC7C {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}
/* The scrollable container for the tabs */
.TabsViewNavigation_tabNavigation__1-6MD {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    flex: 1 1;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.TabsViewNavigation_tabNavigation__1-6MD::-webkit-scrollbar {
    display: none;
}
.TabsViewNavigation_tabButton__3UN9b {
    padding: 8px 16px;
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    text-align: left;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 0;
}
/* Active tab is white with black text */
.TabsViewNavigation_tabButton__3UN9b.TabsViewNavigation_active__1R9uH {
    background-color: white;
    color: black;
    border-radius: 2px;
    margin-top: 4px;
}
.TabsViewNavigation_tabButton__3UN9b:hover:not(.TabsViewNavigation_active__1R9uH) {
    background-color: rgba(255, 255, 255, 0.1);
}
/* Round navigation buttons - positioned at the ends of the tab bar */
.TabsViewNavigation_navButton__2kciK {
    width: 28px;
    height: 28px;
    background-color: #5E318F;
    background-color: var(--guangzhou-purple);
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
    border-radius: 50%; /* Make buttons round */
    margin: 0 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.TabsViewNavigation_navButton__2kciK:hover {
    background-color: #3e388d; /* Slightly darker on hover */
}
.TabsViewNavigation_tabContent__3KWFN {
    padding-top: 16px;
}
.TabsViewNavigation_emptyState__1cRzY {
    padding: 32px;
    text-align: center;
    color: #666;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .TabsViewNavigation_tabButton__3UN9b {
        padding: 8px 12px;
    }

    .TabsViewNavigation_navButton__2kciK {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}
.styles_postEventContainer__1Rz3g {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
}

.styles_phaseNameStyle__V0aE2{
    border-radius: 2px;
    background: #FBD1BB;
    font-weight: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-weight: var(--font-family-bold);
    padding: 0px 5px;
    font-size: 10px;
    width: min-content;
    min-width: 50px;
    text-align: center;
}

.styles_flatAccordion__1WyPF {
    box-shadow: none !important;
    border-bottom: 1px solid #EEF1F4 !important;
    border-bottom: 1px solid var(--competition-mode-nav-background-gray) !important;
    border-radius: 0 !important;
}

.styles_postEventCollapsibleHeaderStyle__20vNw {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.styles_disciplineNameStyle__1d4FC {
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif !important;
    font-family: var(--font-family-bold) !important;
    font-weight: 800 !important;
    font-size: 18px !important;
}

.styles_Heat__EIqQ6 {
    background-color: #c2e9ed;
    background-color: var(--secondary-accent);
    font-size: 14px !important;
    padding: 2px 4px;
}

.styles_final__R4Da1 {
    background-color:#fbd1bb;
    background-color:var(--primary-accent);
    font-size: 14px !important;
    padding: 2px 4px;
}

.styles_semiFinal__3o_1a {
    background-color:#fbd1bb;
    background-color:var(--primary-accent);
    font-size: 14px !important;
    padding: 2px 4px;
}

.styles_typographyClass__IXB0g {
    width: 100%;
}

.styles_postEventHeader__235QM {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.styles_fullResultsUnderLine__Z6Frt {
    height: 2px;
    background: #5E318F;
    background: var(--guangzhou-purple);
}

.styles_title__3z5am{
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: white;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
}

@media (max-width: 767px) {
    .styles_title__3z5am{
        font-size: 20px;
        font-weight: 600;
        line-height: 26px;
        padding: 1rem 0;
    }
}
.whatsNext_title__3rOf9 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
}

.whatsNext_container__4oF7x{
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    background: white;
}

.whatsNext_innerContainer__2Bnj7 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whatsNext_content__3dScd{
    font-size: 18px;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
}

.whatsNext_underLine__3gWLc{
    height: 3px;
    background-color: #5E318F;
    border-radius: 3px;
    width: 85px;
}

.whatsNext_seeMore__1BHnF{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.styles_modal__1sOyt {
  height: 100%;
  background-color: #bd94ff;
  color: #11103A;
  font-family: World Athletics;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

  .styles_modal__1sOyt.styles_hidden__3HUfk {
    display: none;
  }

@media only screen and (max-width: 767px) {
  .styles_modal__1sOyt {
    font-size: 15px;
  }
}
.liveVideo_brightCove__1Hss4 video-js,
.liveVideo_ebu__1f_jl {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid #ff873c;
  border: 1px solid var(--primary-colour);
  border-radius: 15px;
}

.liveVideo_ebuContainer__1Bf-h {
  aspect-ratio: 16/11;
}

/* Extra small devices (small phones) */

@media screen and (max-width: 375px) {
  .liveVideo_brightCove__1Hss4 video-js,
  .liveVideo_ebu__1f_jl {
    width: 100%;
    height: auto;
  }

  .liveVideo_ebuContainer__1Bf-h {
    aspect-ratio: 16/14;
  }
}

/* Small devices (phones) */

@media screen and (min-width: 376px) and (max-width: 599px) {
  .liveVideo_brightCove__1Hss4 video-js,
  .liveVideo_ebu__1f_jl {
    width: 100%;
    height: auto;
  }
  .liveVideo_ebuContainer__1Bf-h {
    aspect-ratio: 16 / 14;
  }
}

/* Small tablets and large phones */

@media screen and (min-width: 600px) {
  .liveVideo_brightCove__1Hss4 video-js,
  .liveVideo_ebu__1f_jl {
    width: 560px;
    height: calc((9/16) * 560px);
  }
  .liveVideo_ebuContainer__1Bf-h {
    height: calc((14/16) * 560px);
  }
}

/* Medium tablets */

@media screen and (min-width: 768px) {
  .liveVideo_brightCove__1Hss4 video-js,
  .liveVideo_ebu__1f_jl {
    width: 720px;
    height: calc((9/16) * 720px);
  }
  .liveVideo_ebuContainer__1Bf-h {
    height: calc((12/16) * 720px);
  }
}

/* Large tablets */

@media screen and (min-width: 900px) {
  .liveVideo_brightCove__1Hss4 video-js,
  .liveVideo_ebu__1f_jl {
    width: 840px;
    height: calc((9/16) * 840px);
  }
  .liveVideo_ebuContainer__1Bf-h {
    height: calc((12 / 16)* 840px);
  }
}

/* Small laptops and desktops */

@media screen and (min-width: 1024px) {
  .liveVideo_brightCove__1Hss4 video-js,
  .liveVideo_ebu__1f_jl {
    width: 960px;
    height: calc((9/16) * 960px);
  }
  .liveVideo_ebuContainer__1Bf-h {
    height: calc((11/16) * 960px);
  }
}

/* Medium desktops */

@media screen and (min-width: 1200px) {
  .liveVideo_brightCove__1Hss4 video-js,
  .liveVideo_ebu__1f_jl {
    width: 960px;
    height: calc((9/16) * 960px);
  }
  .liveVideo_ebuContainer__1Bf-h {
    height: calc((11/16) * 960px);
  }
}

/* Large desktops */

@media screen and (min-width: 1440px) {
  .liveVideo_brightCove__1Hss4 video-js,
  .liveVideo_brightcoveContainer__1AMpr {
    width: 960px;
    height: calc((9/16) * 960px);
  }
  .liveVideo_ebuContainer__1Bf-h {
    width: 960px;
    height: calc((11/16) * 960px);
  }
}

/* Extra large desktops */

@media screen and (min-width: 1800px) {
  .liveVideo_brightCove__1Hss4 video-js,
  .liveVideo_brightcoveContainer__1AMpr {
    width: 960px;
    height: calc((9/16) * 960px);
  }
  .liveVideo_ebuContainer__1Bf-h {
    width: 960px;
    height: calc((11/16) * 960px);
  }
}

/* Ultra wide screens */

@media screen and (min-width: 2100px) {
  .liveVideo_brightCove__1Hss4 video-js,
  .liveVideo_brightcoveContainer__1AMpr {
    width: 1200px;
    height: calc((9/16) * 1200px);
  }
  .liveVideo_ebuContainer__1Bf-h {
    width: 1200px;
    height: calc((11/16) * 1200px);
  }
}

/* Portrait orientation specific */

@media screen and (orientation: portrait) and (max-width: 768px) {
  .liveVideo_brightCove__1Hss4 video-js,
  .liveVideo_ebu__1f_jl {
    width: 100%;
    height: auto;
  }
  .liveVideo_ebuContainer__1Bf-h {
    aspect-ratio: 16 / 14;
  }
}

@media screen and (orientation: portrait) and (max-width: 500px) {
  .liveVideo_brightCove__1Hss4 video-js,
  .liveVideo_ebu__1f_jl {
    width: 100%;
    height: auto;
  }

  .liveVideo_ebuContainer__1Bf-h {
    aspect-ratio: 16 / 17;
  }
}

@media screen and (orientation: portrait) and (max-width: 370px) {
  .liveVideo_brightCove__1Hss4 video-js,
  .liveVideo_ebu__1f_jl {
    width: 100%;
    height: auto;
  }

  .liveVideo_ebuContainer__1Bf-h {
    aspect-ratio: 16 / 20;
  }
}

/* Landscape orientation on small devices */

@media screen and (orientation: landscape) and (max-height: 500px) {
  .liveVideo_brightCove__1Hss4 video-js,
  .liveVideo_ebu__1f_jl {
    width: 100%;
    max-height: 80vh;
    height: auto;
  }

  .liveVideo_ebuContainer__1Bf-h {
    aspect-ratio: 16 / 13;
  }
}

.liveVideo_ebu__1f_jl video-js {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.liveVideo_ebu__1f_jl iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.liveVideo_liveVideoContainer__239h8 {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #111;
}

.liveVideo_Video__5pu-I {
  width: 100%;
  height: 100%;
}

.liveVideo_liveIndicator__1V1vU {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.liveVideo_liveDot__t0nrT {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #ef4444;
  animation: liveVideo_pulse__DzQ5D 2s infinite;
}

.liveVideo_liveText__pUspM {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
}

.liveVideo_signInPrompt__2vWxt {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  width: 90%;
  max-width: 300px;
}

.liveVideo_signInPrompt__2vWxt p {
  margin: 0;
  line-height: 1.5;
}

.liveVideo_signInPrompt__2vWxt .liveVideo_signInLink__1H6Sh {
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
}

.liveVideo_errorPlayer1__1t2WO {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  width: 90%;
  max-width: 300px;
}

.liveVideo_errorPlayer1__1t2WO p {
  margin: 0;
  line-height: 1.5;
}

.liveVideo_errorPlayer1__1t2WO .liveVideo_errorPlayer2__3JEEd {
  font-weight: 500;
  text-decoration: underline;
}

.liveVideo_loadingIndicator__3sRiZ {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2;
}

.liveVideo_loadingDot__3MkfT {
  width: 10px;
  height: 10px;
  background-color: #cccccc;
  border-radius: 50%;
  margin-right: 5px;
  animation: liveVideo_pulse__DzQ5D 1.5s infinite;
}

.liveVideo_loadingText__2kdG3 {
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
}

.liveVideo_loadingSpinner__2zkNK {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
}

.liveVideo_spinner__1a0cn {
  animation: liveVideo_rotate__14Rwg 2s linear infinite;
  width: 100%;
  height: 100%;
}

.liveVideo_spinnerCircle__Ndbo- {
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-dasharray: 128;
  stroke-dashoffset: 82;
  animation: liveVideo_dash__1zsVm 1.5s ease-in-out infinite;
}

@keyframes liveVideo_rotate__14Rwg {
  100% { transform: rotate(360deg); }
}

@keyframes liveVideo_dash__1zsVm {
  0% { stroke-dashoffset: 128; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -128; }
}

@keyframes liveVideo_pulse__DzQ5D {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}
.sessionCard_sessionCard__3yXF1 {
    background-color: white;
    border-radius: 8px;
    height: fit-content;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
  }

.sessionCard_sessionDescription__2Vbk8 {
    padding: 10px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.sessionCard_sessionHeader__1oJlv {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    overflow: hidden;
    align-items: center;
  }

@media screen and (max-width: 767px) {

.sessionCard_sessionHeader__1oJlv {
          font-size: 14px
  }
      }

.sessionCard_sessionHeader__1oJlv a {
        text-decoration: underline;
      }

.sessionCard_sessionTime__3FBm6 {
    font-size: 12px;
    color: #4B5563;
    font-weight: 400;
    line-height: 21.6px;
    letter-spacing: -3%;
  }

.VideoLoadingSpinner_spinnerContainer__11cG5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .VideoLoadingSpinner_spinner__3KH-U {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }
  
  .VideoLoadingSpinner_dot1__NXPuS, .VideoLoadingSpinner_dot2__3i-XA, .VideoLoadingSpinner_dot3__39Wzj {
    width: 8px;
    height: 8px;
    background-color: #000000;
    border-radius: 50%;
    margin: 0 4px;
    animation: VideoLoadingSpinner_bounce__3y39C 1.4s infinite ease-in-out both;
  }
  
  .VideoLoadingSpinner_dot1__NXPuS {
    animation-delay: -0.32s;
  }
  
  .VideoLoadingSpinner_dot2__3i-XA {
    animation-delay: -0.16s;
  }
  
  .VideoLoadingSpinner_loadingText__3ZR7y {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    text-align: center;
    max-width: 300px;
  }
  
  @keyframes VideoLoadingSpinner_slideIn__2rBsT {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  @keyframes VideoLoadingSpinner_bounce__3y39C {
    0%, 80%, 100% {
      transform: scale(0);
    }
    40% {
      transform: scale(1.0);
    }
  }
.liveSessions_liveSessions__2lCmo {
    padding-top: 10px;
    width: 100%;
}

.liveSessions_noLiveStreamGrid__1Y2JV{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    gap:1rem;
    grid-auto-rows: auto;
}

.liveSessions_nextEventContainer__18y7u{
    padding:5px 10px;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 1rem;
    background: white;
}

.liveSessions_sessionCardDesktop__1IEOf {
    background-color: white;
    border-radius: 5px;
    width:100%;
    height: fit-content;
    overflow: hidden;
    position: relative;
    padding: 10px;
    display: flex;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 1rem;
}

.liveSessions_sessionsContainer__lJV0q {
    overflow: auto;
}

.liveSessions_seeTimetable__16Dbw{
    color:#173032;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-color: #173032;
}

.liveSessions_sessionHeader__EEgXU{
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .liveSessions_sessionHeader__EEgXU{
        font-size: 16px;
    }
    
  }
.liveSessionHeader_mobileLiveSessionContainer__1ToVe {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}


.liveSessionHeader_liveSessionContainer__1fw37{
    max-width: 1400px;
    margin: auto;
    padding: 1rem;
    background: #EEF1F4;
    background: var(--competition-mode-nav-background-gray);
    width: 100%;
}


@media screen and (max-width: 767px) {


.liveSessionHeader_liveSessionContainer__1fw37{
        padding: 16px 12px
}
    }


.liveSessionHeader_doubleGrid__1136x{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}


.liveSessionHeader_liveSessionContainer__1fw37 h1{
    margin-bottom: 1rem;
}


.liveSessionHeader_title__6mWlx{
    font-size: 30px;
    font-weight: 600;
}


@media (max-width: 767px) {
    .liveSessionHeader_title__6mWlx{
        font-size: 20px;
    }
  }
.liveResultCard_container__3Lnbg {
    min-width: 328px;
    min-height: 454px;
    padding: 12px 8px 20px 8px;
    background: white;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    height: 100%;
}

.liveResultCard_time__T0kOU {
    font-size: 14px;
}

.liveResultCard_header__2pqhK {
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    padding-bottom: 16px;
    min-height: 60px;
}

.liveResultCard_tableWrapper__qEpmK {
    overflow-x: auto;
    min-width: 312px;
    height: auto;
    border-radius: 4px;
    gap: 1px;
}

.liveResultCard_table__1iswm {
    width: 100%;
    border-collapse: collapse;
}

.liveResultCard_row__2oMgN {
    border-bottom: 1px solid #D9D9D9;
    background: #FFF;
}

.liveResultCard_row__2oMgN:nth-child(odd) {
    background-color: #EEF1F4;
}

.liveResultCard_cell__2aJho {
    padding: 8px 10px 8px 10px;
    text-align: left;
}

.liveResultCard_headerCell__2AT8x {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
}

.liveResultCard_name__1_3oE {
    font-weight: 700;
    font-size: 12px;
}

.liveResultCard_country__25FrQ {
    color: #1E1E1E;
    font-size: 14px;
    font-weight: 400;
}

.liveResultCard_countryContainer__1lOwG {
    display: flex;
    height: 20px;
    gap: 8px;
    flex-shrink: 0;
}

.liveResultCard_performance__1BYf1 {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}

.liveResultCard_container__3Lnbg *::after, .liveResultCard_container__3Lnbg *::after {
    content: unset;
}

.liveResultCard_position__3lj0E {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}

.liveResultCard_podium__2LWQG {
    font-weight: 700;
}
.liveView_liveViewContainer__2yfJ2 *::after,.liveView_liveViewContainer__2yfJ2::after{
    content: unset;
}

.liveView_eventBackgroundPattern__3R7cf {
    background: url('https://worldathletics.org/static/competitionMode/guangzhou25-background.svg');
    background-color: white;
    background-repeat: repeat;
}

.liveView_discoverNextSessionsTitle__qbw4v {
    color: white;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    padding: 1rem 0;
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family);
    text-transform: uppercase;
}

.liveView_nextEventsContainer__3WiQV {
    padding: 1rem;
}

.liveView_purpleButtonLink__1JkdA {
    padding: 10px;
    background: #dfd0fa;
    background: var(--quaternary-accent);
    align-items: center;
    color: #1E1E1E;
    color: var(--black);
    border-radius: 4px;
    height: 50px;
    width: 100%;
    align-self: center;
    justify-self: center;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
}

.liveView_purpleButtonLink__1JkdA:hover{
        background: #dfd0fa;
        background: var(--quaternary-accent);
    }

@media screen and (max-width: 767px) {

.liveView_noRightPadding__UCIu1 {
        padding-right: 0 !important
}
    }

.liveView_eventBackgroundPatternRed__2_KNM {
    padding: 1rem;
}

@media screen and (max-width: 767px) {

.liveView_eventBackgroundPatternRed__2_KNM {
        background: url('https://worldathletics.org/static/competitionMode/guangzhou25-background-red.svg');
        background-color: #E94653;
        background-color: var(--guangzhou-red)
}
    }

@media screen and (max-width: 767px) {

.liveView_eventBackgroundPatternRed__2_KNM.liveView_noRightPadding__UCIu1 {
            padding-right: 0
    }
        }

.liveView_paddedContainer__3Yg8s {
    max-width: 1400px;
    margin: 0 auto;
}

.liveView_container__3nOpS {
    background-image:
            linear-gradient(to right, #E94653 0%, #E94653 50%, #5E318F 50%, #5E318F 100%),
            url('https://worldathletics.org/static/competitionMode/guangzhou25-background.svg');
    background-blend-mode: multiply;
    background-repeat: repeat;
}

@media screen and (max-width: 767px) {

.liveView_container__3nOpS {
        background-image: unset
}
    }

.liveView_violetPattern__1diRv {
    background-image: url('https://worldathletics.org/static/competitionMode/guangzhou25-background.svg');
    background-color: #5E318F ;
    background-blend-mode: multiply;
    background-repeat: repeat;
}

.liveView_redPattern__3_yVN {
    background-image: url('https://worldathletics.org/static/competitionMode/guangzhou25-background.svg');
    background-color: #E94653 ;
    background-blend-mode: multiply;
    background-repeat: repeat;
}

/* quick fix for iOS blended issue - to be reviewed for tokyo */

@media screen and (max-width: 767px) {

.liveView_redPattern__3_yVN {
        background-image: url('https://worldathletics.org/static/competitionMode/guangzhou25-background-red-blended.svg');
        background-repeat: repeat;
        background-blend-mode: normal
}
    }

.liveView_latestNewsTitleContainer__2CGMP {
    width: 100%;
}

.liveView_latestNewsTitle__1VbSt {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
}

.liveView_titleContainer__F-1hK {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media screen and (max-width: 767px) {

.liveView_titleContainer__F-1hK {
        padding: 0.5rem 0;
        margin-bottom: 0.5rem;
        padding-right: 10px
}
    }

.liveView_watchLiveOnContainer__3ue0N {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    padding: 1rem;
    gap: 20px;
}

@media screen and (max-width: 767px) {

.liveView_watchLiveOnContainer__3ue0N {
        padding: 1rem
}
    }

.liveView_liveResultsAndNextEventsContainer__3mArK {
    display: grid;
    grid-template-columns: 49% 49%;
    grid-gap: 2%;

}

@media screen and (max-width: 767px) {

.liveView_liveResultsAndNextEventsContainer__3mArK {
        display: flex;
        flex-direction: column

}
    }

.liveView_titleLink__1pQPG {
    color: #1E1E1E;
    color: var(--black);
    font-family: 'World Athletics Bold',Arial,sans-serif, sans-serif;
    font-family: var(--font-family-bold), sans-serif;
    border-bottom: 2px solid #5E318F;
    border-bottom: 2px solid var(--guangzhou-purple);
}

.liveView_whiteBackground__3g33Z {
    background: white;
}

.liveView_greyBackground__3_Hpm {
    background: #EEF1F4;
    background: var(--competition-mode-nav-background-gray);
}

.liveView_noLiveUnits__3zLyB {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
}

.liveView_noEventsLive__3aFC_ {
    display: flex;
    flex-direction: column;
    border: 1px dashed #2c2c2c;
    border: 1px dashed var(--table-header-colour);
    padding: 20px;
    align-items: center;
    text-align: center;
    background-color: white;
}

.liveView_noEventsLive__3aFC_ a {
        text-decoration: underline;
    }

.liveView_noEventsLive__3aFC_ .liveView_eventOver__1deUo {
        font-size: 18px;
    }

.liveView_noEventsLive__3aFC_ .liveView_eventOverMessage__3hxjR {
        display: flex;
        flex-direction: column;
    }

.liveView_calendarBannerContainer__1N7vy{
    margin-top: 20px;
}

.liveView_liveResultsTitle__bNXQ6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: white;
    padding: 1rem 0;
    text-transform: uppercase;
}

.liveView_meetThemOnTheTrack__3aPKr {
    padding-left: 1rem;
    padding-right: 1rem;
}

.liveView_allResults__3xAo9 {
    background-color: #69D7E1;
    color: #1E1E1E;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 3px 5px 10px;
    border:none;
    border-radius: 5px;
}

.liveView_link__3Fnml {
    color: white;
    display: flex;
    border-bottom: 3px solid #5E318F;
    border-bottom: 3px solid var(--guangzhou-purple);
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.liveView_buttonLink__2J7Hd {
    padding: 5px 10px;
    background: #5E318F;
    background: var(--guangzhou-purple);
    align-items: center;
    color: white;
    border-radius: 4px;
    height: fit-content;
    width: fit-content;
    align-self: center;
    justify-self: center;
}

.liveView_header__3og1h {
    display: flex;
    justify-content: space-between;
    gap: 10px;

}

@media screen and (max-width: 767px) {

.liveView_header__3og1h {
        padding-right: 1rem

}
    }

.liveView_liveSteamContainer__1P7g9 {
    display: flex;
}

.liveView_flexContainer__1wSr9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.liveView_LiveResultsContainer__3KNIb {
max-width: 1400px;
padding: 1rem;

}

@media screen and (max-width: 767px) {

.liveView_LiveResultsContainer__3KNIb {
    padding: 6px 0px 12px 12px

}
}

@media screen and (max-width: 767px) {

.liveView_LiveResultsContainer__3KNIb.liveView_noLiveResults__2__eB {
        padding: 6px 12px 12px 12px
}
    }

.liveView_newsItemClass__3bJhQ {
border-radius: 10px;
overflow: hidden;
margin-bottom: 0;
background-color: transparent;
border: none;
}

.liveView_newsItemClass__3bJhQ img{
    width: 100%;
    padding: 10px;
    border: 1px white;
    border-radius: 20px;
    overflow: hidden;
    max-height: 250px;
    object-fit: cover;
}

@media screen and (max-width: 767px) {

.liveView_newsItemClass__3bJhQ img{
        padding: 0;
        border-radius: 0
}
    }

.liveView_newsItemClass__3bJhQ .liveView_title__11qd5 {
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family);
    font-size: 16px;
    white-space: nowrap;
    text-transform: uppercase;
}

.liveView_title__11qd5 {
    white-space: nowrap;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family);
}

.liveView_carouselNewsContainerClass__3LNyH svg {
    color : #077079;
    color : var(--competition-mode-accent-color-blue);
}

.liveView_carouselNewsContainerClass__3LNyH hr {
    display: none;
}

@media (max-width: 767px) {
.liveView_allResults__3xAo9{
    margin-right: 5px;
}
}
.CompetitionModeHomePage_mainContentClass__1e5_7 {
    max-width: 1400px;
    margin: auto;
}
.subNavigation_subNavigationContainer__2clEM {
    background-color: #FFFFFF;
    background-color: var(--competition-mode-nav-background);
    height: fit-content;
    border-radius: 0px 0px 16px 16px;
    padding: .65em 0;
}

    .subNavigation_subNavigationContainer__2clEM ul {
        display: flex;
        align-items: center;
        max-width: 1400px;
        margin: auto;
        padding: 0 1rem;
        gap: 1rem;
    }

.subNavigation_sticky__u92gh {
    position: sticky;
}

.subNavigation_navLabel__1en0a {
    font-size: 16px;
    font-size: var(--font-size);
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family-regular);
    font-weight: 500;
}

.subNavigation_navLabelActive__4MBEW {
    border-bottom: 2px solid #5E318F;
    border-bottom: 2px solid var(--guangzhou-purple);
}

.dropdown_dropdownContainer__ey0G9 {
    min-width: 150px;
    text-transform: capitalize;
    display: flex;
    flex: 1 1;
    flex-direction: column;
    gap: 4px;
}

.dropdown_MuiInputLabel-outlined__2dSRF {
    font-size: 14px;
    color: #666;
}

.dropdown_MuiOutlinedInput-root__3tv3M {
    border-radius: 8px;
    padding: 10px;
}

.dropdown_MuiMenuItem-root__3tUzd {
    font-size: 14px;
}

.dropdown_dropdownContainer__ey0G9 {
    position: relative;
    width: 100%;
    --separator-color: inherit;
}

@media screen and (max-width: 767px) {

.dropdown_dropdownContainer__ey0G9 {
        min-width: unset
}
    }

.dropdown_selectComponent__2zRI- {
    width: 100%;
}

/* Center text styles */

.dropdown_centerText__19U6R .react-select__single-value {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}

/* Center icon styles */

.dropdown_centerIcon__1DLKr .react-select__indicators {
    justify-content: center;
    width: 100%;
}

.dropdown_centerIcon__1DLKr .react-select__value-container {
    justify-content: center;
}

/* Separator styles */

.dropdown_hideSeparator__1MbvK .react-select__indicator-separator {
    display: none;
}

/* Separator color */

.dropdown_dropdownContainer__ey0G9 .react-select__indicator-separator {
    background-color: var(--separator-color);
}

/* Custom icon styles */

.dropdown_customIcon__JlMU9 {
    position: relative;
}

.dropdown_customIcon__JlMU9 .dropdown_custom-icon__10D5f {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    z-index: 1;
}

.dropdown_customIcon__JlMU9 .react-select__dropdown-indicator {
    display: none;
}

.PhaseChooser_container__1BUsT {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-self: right;
  width: 100%;
}

  .PhaseChooser_container__1BUsT div:after {
    content: none;
  }
.PhaseChooser_subMenu__1evNj {
  display: grid;
  flex-basis: auto;
  grid-template-columns: auto auto;
  border-bottom: 1px solid #ccc;
  justify-content: space-between;
  align-self: self-end;
  width: 100%;
}
@media screen and (max-width: 767px) {
.PhaseChooser_subMenu__1evNj {
    border-bottom: none;
    overflow: auto
}
  }
/* WRAPPED PHASE NAVIGATION */
.PhaseChooser_phaseTabsWrapper__3MHiD {
  display: flex;
  justify-content: center;
  border: 1px solid #077079;
  border: 1px solid var(--competition-mode-nav-active-color);
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
.PhaseChooser_unitsWrapper__y1V1s {
    align-self: flex-end
}
  }
.PhaseChooser_phaseTabsContainer__3r2mC {
  display: flex;
  flex: 1 1;
  flex-direction: column;
}
.PhaseChooser_phaseTab__3hWfZ {
  flex: 1 1;
  text-align: center;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  color: #077079;
  color: var(--competition-mode-nav-active-color);
  cursor: pointer;
  transition: 0.3s;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #077079;
  border-bottom: 1px solid var(--competition-mode-nav-active-color);
}
.PhaseChooser_phaseTab__3hWfZ:last-child {
    border-bottom: none;
  }
.PhaseChooser_phaseTab__3hWfZ:last-child {
  border-right: none;
}
.PhaseChooser_phaseTab__3hWfZ:hover {
  background-color: rgba(0, 128, 128, 0.1);
}
.PhaseChooser_activePhaseTab__3quoa {
  background-color: #077079;
  background-color: var(--competition-mode-nav-active-color);
  color: white;
}
/* UNITS NAVIGATION */
.PhaseChooser_unitsTabs__L6QGQ {
  display: flex;
  gap: 8px;
  overflow: auto;
  width: 100%;
  align-items: end;
}
.PhaseChooser_unitsTabs__L6QGQ:after {
    content: none;
  }
@media screen and (max-width: 767px) {
.PhaseChooser_unitsTabs__L6QGQ {
    padding-bottom: 10px
}
  }
.PhaseChooser_unitTab__2NhI1 {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  padding: 0 3px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
  height: 32px;
}
.PhaseChooser_unitTab__2NhI1:hover {
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
}
.PhaseChooser_activeUnitTab__2dlfd {
  font-weight: 700;
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  border-bottom: 2px solid #5E318F;
  border-bottom: 2px solid var(--guangzhou-purple);
}
@media screen and (max-width: 767px) {
.PhaseChooser_activeUnitTab__2dlfd {
    background: #5E318F;
    background: var(--guangzhou-purple);
    border: none;
    color: white;
    border-radius: 3PX;
    padding: 6px;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold)
}
  }
.PhaseChooser_listWrapper__1s0jb {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
.PhaseChooser_listWrapper__1s0jb {
    border: none
}
  }
.PhaseChooser_listContainer__2wvfL {
  display: flex;
  flex: 1 1;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 767px) {
.PhaseChooser_listContainer__2wvfL {
    flex-direction: row;
    overflow: auto
}
  }
.PhaseChooser_listItem__2tYjt {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 20px;
  border: 0 solid #077079;
  border: 0 solid var(--competition-mode-nav-active-color);
  color: #1E1E1E;
  color: var(--black);
  background-color: #DFD0FA;
  background-color: var(--guangzhou-purple-hover);
  cursor: pointer;
  transition: 0.3s;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
.PhaseChooser_listItem__2tYjt {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc((100%) / 3);
    box-sizing: border-box;
    border-radius: 0;
    border: 0 solid #077079;
    border: 0 solid var(--competition-mode-nav-active-color)
}
  }
.PhaseChooser_listItem__2tYjt:first-child {
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
  }
.PhaseChooser_listItem__2tYjt:last-child {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
  }
.PhaseChooser_listItem__2tYjt:not(.PhaseChooser_activeItem__uCeY4):hover {
  background-color: #CBB3F5;
  color: white;
}
.PhaseChooser_activeItem__uCeY4 {
  background-color: #5E318F;
  background-color: var(--guangzhou-purple);
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  color: white;
}
.SummaryTable_table__V2lGa {
  min-width: unset;
}
  .SummaryTable_table__V2lGa th {
    font-size: 14px;
    text-align: left;
    font-family: 'World Athletics Bold',Arial,sans-serif, sans-serif;
    font-family: var(--font-family-bold), sans-serif;
  }
  .SummaryTable_table__V2lGa tr {
    color: #262626;
    color: var(--primary-gray);
    vertical-align: middle;
    padding: 8px 10px;
    font-weight: 100;
    overflow: hidden;
    font-size: 13px;
  }
  .SummaryTable_table__V2lGa tr.SummaryTable_teamRecord__pTll-:hover {
        background-color: #bd94ff;
        background-color: var(--quaternary-colour);
        cursor: pointer;
      }
  .SummaryTable_table__V2lGa tr td {
      color: #262626;
      color: var(--primary-gray);
      vertical-align: middle;
      padding: 8px 10px;
      font-weight: 100;
      overflow: hidden;
      font-size: 13px;
    }
  .SummaryTable_table__V2lGa tr th {
      vertical-align: middle;
      padding: 8px 10px;
      text-transform: initial;
      font-size: 14px;
    }
  .SummaryTable_table__V2lGa tbody:nth-child(odd) {
      background-color: #EEF1F4;
    }
  .SummaryTable_table__V2lGa tbody:nth-child(even) {
      /*background-color: #EEF1F4;*/
    }
  .SummaryTable_table__V2lGa thead tr {
      background-color: white !important;
    }

.SummaryTable_tableWrapper__E2Af- {
  overflow-x: auto;
  }

@media screen and (max-width: 767px) {

.SummaryTable_tableWrapper__E2Af- {
      max-height: 900px
  }
    }

.SummaryTable_summary-table__22qAs .SummaryTable_surname__29oKn{
    text-transform: uppercase;
  }

.SummaryTable_competitorNameLink__2YfP- {
  cursor: pointer;
}

.SummaryTable_competitorNameLink__2YfP-:hover {
    color: var(--link-hover-colour) !important;
  }

.SummaryTable_resultHeader__WMpMg {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}

.SummaryTable_resultHeader__WMpMg::after {
    content: none;
  }


.AthleteSearch_container__FXZVx {
  background-color: #dfd0fa;
  background-color: var(--laila-colour);
  padding: 1em 0;
}
  .AthleteSearch_container__FXZVx.AthleteSearch_myAthletes__30i7g {
    padding: 40px 0 40px 0;
    background: #69D7E1;
    background: var(--past-events-blue);
  }

.AthleteSearch_fixedWrapper__2U_L7 {
  max-width: 1400px;
  max-width: var(--max-content-width);
  margin: auto;
  padding: 1em;
}

.AthleteSearch_fixedWrapper__2U_L7.AthleteSearch_myAthletes__30i7g {
    padding: 0;
  }

.AthleteSearch_title__3hmWQ {
  color: #262626;
  color: var(--grayscale-dark);
  font-size: 1.75rem;
  margin-bottom: 0.3em;
}

.AthleteSearch_titleAthletes__2uf33 {
  color: #262626;
  color: var(--grayscale-dark);
  font-size: 24px;
  margin-bottom: 0.3em;
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
}

@media(max-width: 767px) {

.AthleteSearch_titleAthletes__2uf33 {
    display: none
}
  }

.AthleteSearch_filter__36iST {
  color: #818181;
  color: var(--secondary-gray);
  border: 1px solid #818181;
  border: 1px solid var(--secondary-gray);
  padding: 0.65em 1em;
  font-size: 1.125rem;
  margin: 0 0.5em 1em 0;
}

.AthleteSearch_filter__36iST:hover,
  .AthleteSearch_filter__36iST.AthleteSearch_activeFilter__3Lj-k {
    background-color: #ff873c;
    background-color: var(--primary-colour);
    color: white;
    border-color: #ff873c;
    border-color: var(--primary-colour);
  }

.AthleteSearch_followAthleteCol__185tv {
  text-align: center;
}

.AthleteSearch_subTitle__1pzDb {
  display: inline-block;
  text-transform: uppercase;
}

@media screen and (min-width: 1124px) {

.AthleteSearch_subTitle__1pzDb {
    padding: 1em;
    text-align: center;
    margin: 0 1.1em 0 0
}

    .AthleteSearch_subTitle__1pzDb.AthleteSearch_filterTitle__3r7bp {
      border-right: 2px solid #ddd;
    }
    .AthleteSearch_subTitle__1pzDb.AthleteSearch_searchTitle__qe8ZS {
      border-right: 1px solid #818181;
      border-right: 1px solid var(--grayscale-mid);
    }
  }

@media screen and (min-width: 1025px) {

.AthleteSearch_subTitle__1pzDb {
    margin-right: 1em;
    min-width: 64px
}
  }

@media screen and (max-width: 1024px) {

.AthleteSearch_subTitle__1pzDb {
    margin-right: 1em;
    min-width: 50px;
    font-size: 0.8em
}
  }

@media(max-width: 1024px) {
    .AthleteSearch_subTitle__1pzDb.AthleteSearch_myAthletes__30i7g {
      display: none;
    }
  }

.AthleteSearch_searchWrap__1OmV9 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: white;
  padding: 1.5em 0;
  box-shadow: 0px 3px 6px #00000029;
}

@media screen and (min-width: 1025px) {

.AthleteSearch_searchWrap__1OmV9 {
    padding: 2em 1em
}
  }

@media screen and (max-width: 1024px) {

.AthleteSearch_searchWrap__1OmV9 {
    flex-direction: column-reverse;
    padding: 1em
}
  }

.AthleteSearch_searchContainer__1dFhu {
  display: flex;
  align-items: center;
}

@media(max-width: 1024px) {

.AthleteSearch_searchContainer__1dFhu.AthleteSearch_myAthletes__30i7g {
      flex-wrap: wrap
  }
    }

@media screen and (max-width: 1024px) {

.AthleteSearch_searchContainer__1dFhu {
    margin-bottom: 1em
}
  }

.AthleteSearch_filterContainer__Wlcye {
  display: flex;
  align-items: center;
  margin-right: 1em;
}

@media screen and (max-width: 1024px) {

.AthleteSearch_filterContainer__Wlcye {
    margin-right: 0
}
  }

.AthleteSearch_search__TZIEK {
  position: relative;
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {

.AthleteSearch_search__TZIEK {
    width: 100%
}
  }

.AthleteSearch_searchInput__37_Nk {
  width: 100%;
  min-width: 260px;
  border: 1px solid #818181;
  border: 1px solid var(--secondary-gray);
  width: 100%;
  height: 2em;
  color: #818181;
  color: var(--secondary-gray);
  font-size: 1.25rem;
  padding: 0.4em 1.8em 0.4em 0.4em;
}

.AthleteSearch_searchInput__37_Nk:active,
  .AthleteSearch_searchInput__37_Nk:focus {
    border: 1px solid #818181;
    border: 1px solid var(--secondary-gray);
  }

@media screen and (max-width: 1024px) {

.AthleteSearch_searchInput__37_Nk {
    min-width: 100%
}
  }

.AthleteSearch_followAthletes__1KUcJ {
  display: none;
  position: relative;
}

@media(max-width: 1024px) {

.AthleteSearch_followAthletes__1KUcJ {
    display: block;
    font-size: 16px;
    padding: 10px 16px 10px 0;

    margin-bottom: 10px
}
    .AthleteSearch_followAthletes__1KUcJ:after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      width: 1px;
      height: 100%;
      background: #262626;
      background: var(--primary-gray);
    }
  }

.AthleteSearch_searchBtn__2CjV_ {
  position: absolute;
  right: 8px;
  top: 8px;
}

.AthleteSearch_filterWrap__36oOi {
  display: flex;
  justify-content: space-between;
  height: auto;
}

@media screen and (max-width: 1024px) {

.AthleteSearch_filterWrap__36oOi {
    width: 100%;
    height: auto
}
  }

@media screen and (max-width: 767px) {

.AthleteSearch_filterWrap__36oOi {
    justify-content: flex-start;
    flex-direction: column;
    height: auto
}
  }

@media(max-width: 767px) {

.AthleteSearch_filterWrap__36oOi.AthleteSearch_myAthletes__30i7g {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between
  }
    }

.AthleteSearch_select__1Entu {
  font-size: 1rem;
  font-family: inherit;
  font-weight: 700;
  color: #444;
  padding: 0.6em 1.4em 0.5em 0.8em;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 6px 0 0;
  border: 1px solid #b2adad;
  border: 1px solid var(--footer-text);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='292.4' height='292.4'%3E%3Cpath fill='%23000' d='M287 69.4a17.6 17.6 0 0 0-13-5.4H18.4c-5 0-9.3 1.8-12.9 5.4A17.6 17.6 0 0 0 0 82.2c0 5 1.8 9.3 5.4 12.9l128 127.9c3.6 3.6 7.8 5.4 12.8 5.4s9.2-1.8 12.8-5.4L287 95c3.5-3.5 5.4-7.8 5.4-12.8 0-5-1.9-9.2-5.5-12.8z'/%3E%3C/svg%3E"),
    linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}

.AthleteSearch_select__1Entu.AthleteSearch_myAthletes__30i7g {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.477' height='11.57' viewBox='0 0 20.477 11.57'%3E%3Cpath id='Path_1185' data-name='Path 1185' d='M11.57,1.326,10.244,0,1.332,8.912l-.005-.005L0,10.233l.005.005L0,10.244,1.326,11.57l.005-.005,8.912,8.912L11.57,19.15,2.658,10.238Z' transform='translate(0 11.57) rotate(-90)' fill='%23707070'/%3E%3C/svg%3E");
    width: calc(50% - 10px);
  }

@media(max-width: 767px) {

.AthleteSearch_select__1Entu.AthleteSearch_myAthletes__30i7g {
      margin-left: 0;
      margin-bottom: 20px;
      width: 100%
  }
    }

.AthleteSearch_select__1Entu:hover {
    border-color: #888;
  }

.AthleteSearch_select__1Entu:after {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #f00;
    position: absolute;
    top: 40%;
    right: 5px;
    content: '';
    z-index: 98;
  }

.AthleteSearch_select__1Entu:focus {
    border-color: #aaa;
    box-shadow: 0 0 2px 2px rgba(130, 130, 130, 0.1);
    box-shadow: 0 0 0 2px -moz-mac-focusring;
    color: #222;
    outline: none;
  }

.AthleteSearch_select__1Entu option {
    font-weight: normal;
  }

.AthleteSearch_select__1Entu::-ms-expand {
    display: none;
  }

.AthleteSearch_select__1Entu:last-child {
    margin-right: 0;
  }

.AthleteSearch_select__1Entu.AthleteSearch_active__2BS_L {
    background: rgb(189, 148, 255);
    background: -moz-linear-gradient(
      180deg,
      rgba(189, 148, 255, 1) 50%,
      rgba(189, 148, 255, 0.7805497198879552) 100%
    );
    background: -webkit-linear-gradient(
      180deg,
      rgba(189, 148, 255, 1) 50%,
      rgba(189, 148, 255, 0.7805497198879552) 100%
    );
    background: linear-gradient(
      180deg,
      rgba(189, 148, 255, 1) 50%,
      rgba(189, 148, 255, 0.7805497198879552) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bd94ff",endColorstr="#bd94ff",GradientType=1);
  }

.AthleteSearch_select__1Entu.AthleteSearch_active__2BS_L.AthleteSearch_myAthletes__30i7g {
      background: rgb(105, 215, 225);
      background: -moz-linear-gradient(
      180deg,
      rgba(105, 215, 225, 1) 50%,
      rgba(105, 215, 225, 0.7805497198879552) 100%
    );
    background: -webkit-linear-gradient(
      180deg,
      rgba(105, 215, 225, 1) 50%,
      rgba(105, 215, 225, 0.7805497198879552) 100%
    );
    background: linear-gradient(
      180deg,
      rgba(105, 215, 225, 1) 50%,
      rgba(105, 215, 225, 0.7805497198879552) 100%
    );
    }

@media screen and (min-width: 1124px) {
  .AthleteSearch_inner__1Ci0O {
    padding: 3em 1em;
  }

  .AthleteSearch_title__3hmWQ {
    font-size: 3.125rem;
  }
}

.AthleteSearch_loadingCont__30L58 {
  text-align: center;
  padding: 1em;
}

.AthleteSearch_table__35t9q {
  height: 100%;
  max-width: 1400px;
  margin: 0 0;
  padding: 0 1em;
  background-color: white;
}

.AthleteSearch_table__35t9q table {
    width: 100%;
    height: 100%;
    padding-bottom: 1em;
  }

.AthleteSearch_table__35t9q table tbody {
      padding-bottom: 1em;
    }

.AthleteSearch_table__35t9q table tr:nth-child(even) {
        background-color: #f0f0f0;
        background-color: var(--tertiary-gray);
      }

.AthleteSearch_table__35t9q table tr .AthleteSearch_name__2z8I1 {
        display: flex;
        align-items: center;
        height: 100%;
      }

.AthleteSearch_table__35t9q table tr .AthleteSearch_name__2z8I1 button {
          margin-right: 10px;
          margin-left: 10px;
        }

.AthleteSearch_table__35t9q table tr.AthleteSearch_myAthletes__30i7g {
        background: #ffffff;
        background: var(--primary-text-colour);
        border-bottom: 2px solid #f3f3f3;
        border-bottom: 2px solid var(--grayscale-light);
      }

.AthleteSearch_table__35t9q table tr.AthleteSearch_myAthletes__30i7g .AthleteSearch_name__2z8I1 {
          display: flex;
          align-items: center;
          height: 100%;
        }

.AthleteSearch_table__35t9q table tr.AthleteSearch_myAthletes__30i7g .AthleteSearch_name__2z8I1 button {
            margin-right: 10px;
          }

.AthleteSearch_table__35t9q table tr th {
        padding: 1.2% 1%;
        text-align: left;
        font-size: 0.9em;
      }

@media screen and (max-width: 767px) {

.AthleteSearch_table__35t9q table tr th {
          font-size: 0.85em
      }
        }

@media screen and (max-width: 1024px) {

.AthleteSearch_table__35t9q table tr th {
          font-size: 0.85em
      }
        }

.AthleteSearch_table__35t9q table tr td {
        padding: 1%;
      }

@media screen and (max-width: 767px) {

.AthleteSearch_table__35t9q table tr td {
          font-size: 0.88em
      }
        }

.AthleteSearch_results__3W7HB.AthleteSearch_myAthletes__30i7g {
    border-collapse: collapse;
  }

.AthleteSearch_firstRow__26KLM {
  background-color: #281e37;
  background-color: var(--quaternary-accent-dark);
  color: #ffffff;
  color: var(--primary-text-colour);
}

@media screen and (max-width: 767px) {

.AthleteSearch_hide__GW_jd {
    display: none
}
  }

.AthleteSearch_resetBtn__7ho7E {
  padding: 0.68em 1em;
  color: #0e0e0e;
  background-color: #fff;
  background: #dfd0fa;
  background: var(--laila-colour);
}

.AthleteSearch_resetBtn__7ho7E.AthleteSearch_myAthletes__30i7g {
    background: #69d7e1;
    background: var(--secondary-colour);
  }

@media screen and (max-width: 767px) {

.AthleteSearch_resetBtn__7ho7E {
    display: none
}
  }

.AthleteSearch_resetBtn__7ho7E.AthleteSearch_mobile__1-oW1 {
    display: none;
    margin-left: 1em;
  }

@media screen and (max-width: 767px) {

.AthleteSearch_resetBtn__7ho7E.AthleteSearch_mobile__1-oW1 {
      display: inline-block
  }
    }

.styles_root__mFnWl {
  display: flex;
  flex-direction: column;
  background: #281E37;
}
  /* padding: 40px 20px; */
  @media(max-width: 767px) {.styles_root__mFnWl {
    padding: 20px 10px
}
  }
.styles_rootContainer__2cV9u {
  display: flex;
  position: relative;
  max-width: 1400px;
  max-width: var(--max-content-width);
  margin: auto;
}
.styles_sliderContainer__2catV {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  max-width: 1400px;
  max-width: var(--max-content-width);
  margin: 0 auto 40px;
}
.styles_titleContainer__1ddMU {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 1400px;
  margin: 0 auto 40px;
}
.styles_title__2T3rY {
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  text-transform: capitalize;
  font-size: 36px;
  color: #262626;
  color: var(--primary-gray);
  margin-bottom: 20px;
  max-width: 1400px;
  max-width: var(--max-content-width);
}
@media(max-width: 767px) {
.styles_title__2T3rY {
    font-size: 26px
}
  }
.styles_addAthlete__1NFrc {
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
  font-size: 18px;
  color: #ffffff;
  color: var(--primary-text-colour);
  margin-bottom: 20px;
  max-width: 1400px;
  max-width: var(--max-content-width);
}
.styles_text__2Ylam {
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
  font-size: 18px;
  color: #ffffff;
  color: var(--primary-text-colour);
}
.styles_gallery__3hCqU {
  overflow: hidden;
}
.styles_gallery__3hCqU .slick-list {
    margin-right: 0;
    margin-left: 0;
  }
.styles_gallery__3hCqU .slick-list:after {
      content: '';
      position: absolute;
      width: 150px;
      height: 100%;
      background: linear-gradient(to left, #69D7E1 14%, rgba(105, 215, 225, 0) 90%);
      opacity: 1;
      right: 0;
      top: 0;
      pointer-events: none;
  }
@media(max-width: 767px) {
.styles_gallery__3hCqU .slick-list:after {
        content: none
  }
      }
.styles_gallery__3hCqU .slick-slide button {
    display: block !important;
    position: relative;
  }
.styles_gallery__3hCqU .slick-slide > div {
    height: auto;
  }
.styles_gallery__3hCqU .slick-prev::after, .styles_gallery__3hCqU .slick-next::after {
    z-index: 1;
    padding: 30px;
    background: url('https://worldathletics.org/static/chev-right-bw.svg');
    background-size: contain;
    background-repeat: no-repeat;
  }
@media screen and (max-width: 1024px) {
    .styles_gallery__3hCqU .slick-prev::after, .styles_gallery__3hCqU .slick-next::after {
      display: none !important;
    }
  }
.styles_team___zWgc {
  cursor: unset
}
.styles_galleryImage__3ouf_ {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
  display: block;
  margin: 0 34px 0 0 !important;
}
.styles_galleryImage__3ouf_:focus {
    outline: none;
  }
.styles_galleryImage__3ouf_ img {
    display: block;
  }
.styles_rootImage__24Xqg {
  display: block;
  position: relative;
  margin-right: 10px;
}
.styles_suggested__6cZHk {
  background: #173032;
  padding: 6px;
  color: #ffffff;
  color: var(--primary-text-colour);
  font-size: 12px;
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}
.styles_description__gbkJi {
  background: #ffffff;
  background: var(--primary-text-colour);
  padding: 14px;
  width: 100%;
  min-height: 106px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.styles_description__gbkJi:hover img {
    fill: #ff873c;
    fill: var(--primary-colour);
  }
.styles_name__1bAd3 {
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  text-transform: capitalize;
  font-size: 18px;
  color: #262626;
  color: var(--primary-gray);
}
.styles_descriptionInner__2z3Ih {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
}
.styles_followMeWrap__3YVH- {
  display: flex;
  align-items: center;
  color: transparent;
  transition: all 0.25s;
}
.styles_followMeWrap__3YVH-:hover {
    color: #ff873c;
    color: var(--primary-colour);
  }
.styles_followMeWrap__3YVH-:hover svg{
    fill: #ff873c;
    fill: var(--primary-colour);
  }
.styles_followMe__Rz0jt {
  margin-right: 5px;
}
.styles_starEmpty__2XY7l {
  fill: #000000;
  transition: all 0.25s;
}
.styles_country__1gDAQ {
  flex: 1 1;
  color: #BDBCC0;
}
.styles_imageOverlay__t4t1y {
  background: rgba(0, 0, 0, .53);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  color: white;
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-left: 16px;
}
.styles_type__3Kw6A {
  color: #ff873c;
  color: var(--primary-colour);
  text-transform: uppercase;
  position: relative;
  margin: 0 0 0 20px;
}
.styles_type__3Kw6A:before {
    content: '';
    position: absolute;
    left: -10px;
    height: 100%;
    width: 1px;
    background: #ffffff;
    background: var(--primary-text-colour);
  }
.styles_date__1iNoX {
  text-transform: capitalize;
}
.styles_root__3tz_W {
    width: 100%;
    padding: 32px 0 0;
    background: #281E37;
}

.styles_rootLogin__2Fh0X {
    width: 100%;
    padding-top: 32px;
    padding-bottom: 6px;
}

.styles_changeProfile__18rQM {
    display: none;
    background: rgba(255, 135, 60, .2);
    position: absolute;
    color: #ffffff;
    color: var(--primary-text-colour);
}

.styles_icon__3mq1i {
  background: #BD94FF;
  display: flex;
  width: 34px;
  min-width: 34px;
  height: 38px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.styles_icon__3mq1i:hover .styles_changeProfile__18rQM {
    width: 130px;
    height: 38px;
    font-size: 9px;
    display: block;
    padding: 6px 7px;
    right: 0;
    left: 100%;
  }

@media screen and (max-width: 1600px) {

.styles_icon__3mq1i:hover .styles_changeProfile__18rQM {
        top: 100%;
        left: -200px;
        width: 234px;
        height: 23px
  }
    }

.styles_container__2-yWd {
    display: flex;
    max-width: 1400px;
    margin: auto;
    align-items: center;
    justify-content: flex-end;
}

.styles_container__2-yWd.styles_login__28vv2 {
      justify-content: flex-start;
      border-bottom: none;
    }

@media screen and (max-width: 1600px) {

.styles_container__2-yWd {
        padding: 5px 0 38px 5px
}
    }

@media screen and (max-width: 1440px) {

.styles_container__2-yWd {
        margin: 0 20px
}
    }

@media(max-width: 767px) {

.styles_container__2-yWd {
        padding: 5px 10px;
        margin: 0;
        flex-wrap: wrap;
        justify-content: flex-start
}
    }

.styles_select__3iWvp {
    max-width: 200px;
    width: 100%;
    min-width: 200px;
}

.styles_text__1pwGc {
    font-size: 16px;
    font-size: var(--font-size);
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family-regular);
    white-space: nowrap;
    margin: 0 20px 0 0;
    color: #BD94FF;
    width: 100%;
}

@media(max-width: 767px) {

.styles_text__1pwGc {
        margin: 0 0 10px 0;
        width: 100%
}
    }

.styles_selectWrap__13RnC {
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: auto;
}

@media(max-width: 767px) {

.styles_selectWrap__13RnC {
        flex-wrap: wrap
}
    }

.styles_wrap__jBwcD {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 234px;
}

.styles_label__39GZE {
    width: 100%;
    color: #ffffff;
    color: var(--primary-text-colour);
    text-align: right;
    margin-right: 10px;
}

@media(max-width: 767px) {

.styles_label__39GZE {
        text-align: left
}
    }

.styles_titleNews__uWczE {
    font-size: 36px;
    color: #ffffff;
    color: var(--primary-text-colour);
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
}

@media screen and (max-width: 1440px) {

.styles_titleNews__uWczE {
        margin-left: 20px
}
    }

@media  (max-width: 767px) {

.styles_titleNews__uWczE {
        margin-left: 0px
}
    }

.styles_registerButton__2iasr {
    border: 1px solid #ff873c;
    border: 1px solid var(--primary-colour);
    padding: 10px 25px;
    box-sizing: border-box;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    background-color: #ff873c;
    background-color: var(--primary-colour);
}

.styles_registerButton__2iasr:hover {
        color: #ff873c;
        color: var(--primary-colour);
        border: 1px solid #0E0E0E;
        border: 1px solid var(--primary-dark);
        background-color: #0E0E0E;
        background-color: var(--primary-dark);
    }

.styles_Login__30a9i h3 {
        color: #ff873c;
        color: var(--primary-colour);
        font-size: 3em;
        font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
        font-family: var(--font-family-bold);
        text-transform: uppercase;
        margin: 0 0 20px;
    }

.styles_WhiteTitle__2MJFP{
    color: white!important;
}

.styles_resultsTable__1xLPw {
  border-collapse: collapse;
  color: #707070;
  color: var(--text-colour-light);
  width: 100%;
}
  .styles_resultsTable__1xLPw thead {
    background-color: #281e37;
    background-color: var(--quaternary-accent-dark);
    color: white;
    font-size: 1.12rem;
    text-transform: uppercase;
  }
  .styles_resultsTable__1xLPw thead th {
      padding: .5em;
      text-align: left;
      min-width: 75px;
    }
  .styles_resultsTable__1xLPw td {
    padding: .5em;
  }
  .styles_resultsTable__1xLPw tr:nth-child(even) {
    background-color: #f0f0f0;
    background-color: var(--tertiary-gray);
  }
  .styles_resultsTable__1xLPw .styles_link__3k2AZ {
    color: #262626;
    color: var(--primary-gray);
    font-weight: bold;
    font-family: 'World Athletics Bold';
  }
  .styles_resultsTable__1xLPw .styles_link__3k2AZ.styles_startList__1dgx0 {
      white-space: nowrap;
    }
  .styles_resultsTable__1xLPw .styles_dateRange__2WISq {
    white-space: nowrap;
  }

.styles_sortIcon__3rDak {
  cursor: pointer;
  display: flex;
  margin: 0 0 0 5px;
}

.styles_sortIcon__3rDak img {
    max-width: 8px;
    display: inline-block;
    height: 20px;
    vertical-align: text-bottom;
    object-fit: cover;
  }

.styles_competitions__2wak0 .styles_sortIcon__3rDak {
    display: none;
  }

.styles_competitions__2wak0 td {
    padding: .5em;
    max-width: 300px;
  }

.styles_competitions__2wak0 tbody tr {
      background: var(--calendar-results-table-background-colour);
      opacity: .8;
      color: var(--calendar-results-table-text-colour);
    }

.styles_competitions__2wak0 tbody tr:nth-child(even) {
      background: var(--calendar-results-table-background-colour);
      color: var(--calendar-results-table-text-colour);
      opacity: .8;
    }

.styles_competitions__2wak0 thead tr {
      background-color: var(--calendar-results-table-header-background-colour);
      color: var(--calendar-results-table-header-text-colour);
    }

.styles_competitions__2wak0 thead th {
      cursor: pointer;
    }

.styles_competitions__2wak0 .styles_link__3k2AZ  {
    color: #ffffff;
    color: var(--primary-text-colour);
  }

.styles_headCell__2ih8Y {
  display: flex;
  align-items: center;
}

.styles_headIconWrapper__3FG48 {
  padding-left: 5px;
}

.styles_headFilterText__1BjnD {
  white-space: nowrap;
}
.styles_rootWrap__5Y9zR {
    max-width: 1400px;
    margin: 0 auto;
}


.styles_tableName__37Euo {
    width: 50%;
    padding: 16px 14px 14px 20px;
    background: #69d7e1;
    background: var(--calendar-header-background-colour);
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 1000;
}


@media(max-width: 767px) {


.styles_tableName__37Euo {
        width: 100%
}
    }


table.styles_table__189gj {
    border-spacing: 0;
    width: 100%;
}


.styles_scroll__1sNGd {
    overflow: auto;
}


th.styles_th__2EOK_,
td.styles_td__3uQOZ {
    margin: 0;
    text-align: left;
    padding: 16px 14px 14px 20px;
    /* background: #2c2c2c; */
    color: #ffffff;
    color: var(--primary-text-colour);
    font-size: 16px;
}


.styles_cell__2vl2m {
    display: flex;
    align-items: center;
    
}


.styles_thead__33Ag2 .styles_tr__29p3b:first-child .styles_th__2EOK_ {
    background: #262626;
    background: var(--calendar-subhead-background-colour);
    font-size: 20px;
    opacity: 1;
    text-transform: uppercase;
    color: #ffffff;
    color: var(--calendar-subhead-title-colour);
    position: sticky;
    z-index: 100;
    top: 0;
}


@media(max-width: 767px) {


.styles_thead__33Ag2 .styles_tr__29p3b:first-child .styles_th__2EOK_ {
        top: 18px
}
    }


.styles_table__189gj .styles_tbody__NGgEJ .styles_tr__29p3b {
    background-color:#2c2c2c;
    border-bottom: 1px solid #262626;
}


.styles_table__189gj .styles_tbody__NGgEJ .styles_tr__29p3b:nth-child(odd) {
    background-color: #383838;
}


.styles_table__189gj .styles_tbody__NGgEJ tr:nth-child(odd):hover {
    background-color: #444!important;
}


.styles_thead__33Ag2 .styles_tr__29p3b:nth-child(2) .styles_th__2EOK_{
    position: sticky;
    z-index: 100;
    top: 59px;
}


@media(max-width: 767px) {


.styles_thead__33Ag2 .styles_tr__29p3b:nth-child(2) .styles_th__2EOK_{
        top: 78px
}
    }


.styles_flagsContainer__2hglq {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}


.styles_resultsLink__3GxRD {
    text-transform: capitalize;
}


.styles_title__xPdKt {
    font-size: 36px;
    color: #ffffff;
    color: var(--primary-text-colour);
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
    margin-bottom: 20px;
  }


.styles_panel__1KTwk {
    font-size: 16px;
    background: rgba(59, 31, 17, .9);
    color: #ffffff;
    color: var(--primary-text-colour);
    max-width: 100%;
    padding: 7px 10px;
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family-regular);
}  

.styles_root__dHoxr {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
    width: 100%;
    padding: 40px 20px;
}
    @media(max-width: 767px) {.styles_root__dHoxr {
      padding: 20px 10px
}
    }

.styles_title__FumSV {
    font-size: 36px;
    color: #ffffff;
    color: var(--primary-text-colour);
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
    margin-bottom: 20px;
    margin: 0 15px 15px;
}

.styles_btn__2hu6N {
    padding: 1em 2em;
    background-color: #ff873c;
    background-color: var(--primary-colour);
    color: #fff;
    outline: transparent;
    min-width: 120px;
    position: relative;
  }

.styles_btnContainer__1H29L {
    padding: 20px;
    text-align: center;
  }
.styles_root__3ixtN {
  display: flex;
  flex-direction: column;
  background: #69D7E1;
  background: var(--past-events-blue);
  padding: 40px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 248px;
}
  @media(max-width: 767px) {.styles_root__3ixtN {
    padding: 20px 10px
}
  }

.styles_container__1HSEQ {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto 40px;
  align-items: center;
}

@media(max-width: 767px) {

.styles_container__1HSEQ {
    flex-wrap: wrap
}
  }

.styles_titleContainer__1BlHG {
  display: flex;
  width: 50%;
  flex-direction: column;
  justify-content: flex-start;
}

@media(max-width: 1024px) {

.styles_titleContainer__1BlHG {
    flex-wrap: wrap;
    width: 100%
}
  }

.styles_countryContainer__1EFIB {
  display: flex;
  width: 50%;
  justify-content: flex-end;
}

@media(max-width: 1024px) {

.styles_countryContainer__1EFIB {
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start
}
  }

.styles_countryWrap__XD11- {
  display: flex;
  justify-content: flex-start;
}

@media(max-width: 1024px) {

.styles_countryWrap__XD11- {
    flex-direction: row;
    margin-top: 16px;
    align-items: center
}
  }

.styles_labelWrap__ciN7a {
  display: flex;
  flex-direction: column;
}

.styles_label__LwG2b {
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
  font-size: 16px;
  color: #262626;
  color: var(--primary-gray);
  margin-right: 10px;
  min-width: 94px;
}

.styles_flagWrap__3Zoyh {
  display: flex;
  align-items: center;
}

@media(max-width: 1024px) {

.styles_flagWrap__3Zoyh {
    margin-left: 10px;
    align-items: center
}
  }

.styles_title__VvF7d {
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  text-transform: capitalize;
  font-size: 70px;
  color: #262626;
  color: var(--primary-gray);
  margin-bottom: 20px;
  max-width: 1400px;
  max-width: var(--max-content-width);
}

@media(max-width: 1024px) {

.styles_title__VvF7d {
    font-size: 40px
}
  }

.styles_countryName__3YBe9 {
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  text-transform: capitalize;
  font-size: 57px;
  color: #262626;
  color: var(--primary-gray);
}

@media(max-width: 1024px) {

.styles_countryName__3YBe9 {
    font-size: 20px
}
  }

.styles_flag__2IuyC {
  width: 63px;
  height: 48px;
  margin-right: 20px;
}

.styles_text__2GOyX {
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
  font-size: 21px;
  line-height: 1.2;
  color: #262626;
  color: var(--primary-gray);
  max-width: 521px;
}

@media(max-width: 1024px) {

.styles_text__2GOyX {
    font-size: 16px
}
  }


.styles_root__h9oSH {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
  width: 100%;
  padding: 40px 20px;
}
  @media(max-width: 767px) {.styles_root__h9oSH {
    padding: 20px 10px
}
  }

.styles_title__3gbjl {
  font-size: 36px;
  color: #ffffff;
  color: var(--primary-text-colour);
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
  margin-bottom: 20px;
  margin: 0 15px 15px;
}

.styles_btn__2ptjv {
  padding: 1em 2em;
  background-color: #ff873c;
  background-color: var(--primary-colour);
  color: #fff;
  outline: transparent;
  min-width: 120px;
  position: relative;
}

.styles_btnContainer__3fGsM {
  padding: 20px;
  text-align: center;
}
.styles_root__Z-T_b {
  height: 100vh;
  position: absolute;
  width: 100%;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.CombinedEventPoints_table__37JaB {
    min-width: 300px;
}

    .CombinedEventPoints_table__37JaB th {
        font-size: 14px;
        text-align: left;
        font-family: 'World Athletics Bold',Arial,sans-serif, sans-serif;
        font-family: var(--font-family-bold), sans-serif;
    }

    .CombinedEventPoints_table__37JaB tr {
        color: #262626;
        color: var(--primary-gray);
        vertical-align: middle;
        padding: 8px 10px;
        font-weight: 100;
        overflow: hidden;
        font-size: 13px;
    }

    .CombinedEventPoints_table__37JaB tr.CombinedEventPoints_teamRecord__2Y7Hp:hover {
                background-color: #bd94ff;
                background-color: var(--quaternary-colour);
                cursor: pointer;
            }

    .CombinedEventPoints_table__37JaB tr td {
            color: #262626;
            color: var(--primary-gray);
            vertical-align: middle;
            padding: 8px 10px;
            font-weight: 100;
            overflow: hidden;
            font-size: 13px;
        }

    .CombinedEventPoints_table__37JaB tr th {
            vertical-align: middle;
            padding: 8px 10px;
            text-transform: initial;
            font-size: 14px;
        }

    .CombinedEventPoints_table__37JaB tbody:nth-child(odd) {
            background-color: white;
        }

    .CombinedEventPoints_table__37JaB thead tr {
            background-color: white !important;
        }

@media screen and (max-width: 767px) {

.CombinedEventPoints_tableWrapper__1A6Io {
            max-height: 900px
  }
    }
.LiveFullResultCard_container__3tTPf {
  width: 100%;
  padding: 0 10px;
}

  @media screen and (max-width: 767px) {.LiveFullResultCard_container__3tTPf {
    padding: 8px
}
  }

  .LiveFullResultCard_container__3tTPf article {
    margin-bottom: 1px;
  }

  .LiveFullResultCard_container__3tTPf article:last-child {
      margin-bottom: 0;
    }

.LiveFullResultCard_panelClass__3m0eg {
  align-content: center;
}

.LiveFullResultCard_noDataContainer__2kmLY {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 110px;
  border: 1px dashed #2c2c2c;
  border: 1px dashed var(--table-header-colour);
  background: #fbfdfd;
  padding: 20px;
  text-align: center;
  margin-top: 10px;
  height: 250px;
}

.LiveFullResultCard_collapsibleSection__s2eVE {
  overflow: auto;
}

.LiveFullResultCard_timeToggle__u9zvX {
  padding: 0 10px;
}

@media screen and (min-width: 1025px) {

.LiveFullResultCard_liveResults__1_NKN {
    background: white
}
  }

.LiveFullResultCard_complementaryContent__NPfQq {
  display: flex;
  width: fit-content;
  overflow: auto;
  justify-content: end;
  height: fit-content;
  align-self: end;
  margin-left: auto;
}

.LiveFullResultCard_complementaryContent__NPfQq > div {
    justify-content: end;
  }

.LiveFullResultCard_qualificationRules__1RUXM {
  display: flex;
  width: 100%;
  overflow: auto;
  justify-content: end;
  flex-wrap: wrap-reverse;
  height: fit-content;
  align-self: end;
}

.LiveFullResultCard_header__2gcek {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.LiveFullResultCard_header__2gcek div {
    background: none !important;
    color: #262626 !important;
    color: var(--primary-gray) !important;
  }

.LiveFullResultCard_table__16DVG {
  min-width: unset;
  overflow: hidden;
  border-collapse: collapse;
  border-spacing: 0;
}

.LiveFullResultCard_table__16DVG th {
    font-size: 14px;
    text-align: left;
    font-family: 'World Athletics Bold',Arial,sans-serif, sans-serif;
    font-family: var(--font-family-bold), sans-serif;
  }

.LiveFullResultCard_table__16DVG tr {
    color: #262626;
    color: var(--primary-gray);
    vertical-align: middle;
    padding: 8px 10px;
    font-weight: 100;
    overflow: hidden;
    font-size: 13px;
  }

.LiveFullResultCard_table__16DVG tr.LiveFullResultCard_teamRecord__3A59_:hover {
        background-color: #bd94ff;
        background-color: var(--quaternary-colour);
        cursor: pointer;
      }

.LiveFullResultCard_table__16DVG tr td {
      color: #262626;
      color: var(--primary-gray);
      vertical-align: middle;
      padding: 8px 10px;
      font-weight: 100;
      overflow: hidden;
      font-size: 13px;
    }

.LiveFullResultCard_table__16DVG tr th {
      vertical-align: middle;
      padding: 8px 10px;
      text-transform: initial;
      font-size: 14px;
    }

.LiveFullResultCard_table__16DVG tbody tr:nth-child(odd) {
        background-color: #EEF1F4;
      }

.LiveFullResultCard_table__16DVG thead tr {
      white-space: nowrap;
      background-color: white !important;
    }

.LiveFullResultCard_footer__br_Q- {
  display: flex;
  justify-content: flex-end;
  margin: .8em 0 0;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .LiveFullResultCard_footer__br_Q- {
    display: block;
    justify-content: unset;
  }
}

.LiveFullResultCard_tableWrapper__2IMHp {
  overflow-x: auto;
}

.LiveFullResultCard_tableWrapper__2IMHp tr:nth-child(odd) {
    background-color: #EEF1F4;
  }

.LiveFullResultCard_automatedCommentaryContent__18Bnv {
  font-size: 14px;
}

.LiveFullResultCard_automatedCommentaryContent__18Bnv ul {
    margin: 1em 1.1em;
    list-style: disc;
  }

.LiveFullResultCard_automatedCommentaryContent__18Bnv ul li {
      margin-bottom: .2em;
    }

.LiveFullResultCard_automatedCommentaryContent__18Bnv strong, .LiveFullResultCard_automatedCommentaryContent__18Bnv b {
    font-family: 'World Athletics Bold' , Arial , sans-serif , sans-serif;
    font-family: var(--font-family-bold) , sans-serif;
  }

@media screen and (max-width: 1023px) {

.LiveFullResultCard_automatedCommentaryContent__18Bnv {
    left: -5px
}
  }

@media screen and (min-width: 1024px) {

.LiveFullResultCard_automatedCommentaryContent__18Bnv {
    max-width: 400px;
    max-height: 600px;
    left: 20px;
    top: -3px
}
  }

.LiveFullResultCard_resultHeader__1GGi6 {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.LiveFullResultCard_resultHeader__1GGi6::after {
    content: none;
  }

.LiveFullResultCard_new-tooltip__3aS77:hover span {
  visibility: visible;
}

.LiveFullResultCard_honoursIcon__3R-oN {
  width:20px;
  cursor: pointer;
}

.LiveFullResultCard_backButton__a2L-f {
  width: 100%;
  padding: 0.5rem;
  color:#077079;
  color:var(--competition-mode-accent-color-blue);
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
}

.LiveFullResultCard_backButton__a2L-f.LiveFullResultCard_left__1Li4g{
    text-align: left;
  }

.LiveFullResultCard_backButton__a2L-f.LiveFullResultCard_right__mbwG2{
    text-align: right;
  }
.LiveFullResults_container__18n1v {
  width: 100%;
}
  .LiveFullResults_container__18n1v article {
    margin-bottom: 1px;
  }
  .LiveFullResults_container__18n1v article:last-child {
      margin-bottom: 0;
    }

.LiveFullResults_rightComponent__1xbDb{
  display: flex;
  width: 100%;
  overflow: auto;
  padding: 0 1rem;
  justify-content: end;
  flex-wrap: wrap-reverse;
  height: fit-content;
  align-self: end;
}

.LiveFullResults_rightComponent__1xbDb > div {
    width: fit-content;
    min-width: 140px;
    overflow: auto;
    align-self: unset !important;
    height: fit-content;
  }

.LiveFullResults_collapsibleSection__32Y8T {
  overflow: auto;
}

.LiveFullResults_liveResults__QCv2S {
  background: white;

}

@media screen and (max-width: 767px) {

.LiveFullResults_liveResults__QCv2S {
    background: transparent;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
    width: 100%

}
  }

.LiveFullResults_header__3bwG_ {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.LiveFullResults_header__3bwG_ div {
    background: none !important;
    color: #262626 !important;
    color: var(--primary-gray) !important;
  }

.LiveFullResults_table__hkzNr {
  min-width: unset;
  overflow: hidden;
  border-collapse: collapse;
  border-spacing: 0;
}

.LiveFullResults_table__hkzNr th {
    font-size: 14px;
    text-align: left;
    font-family: 'World Athletics Bold',Arial,sans-serif, sans-serif;
    font-family: var(--font-family-bold), sans-serif;
  }

.LiveFullResults_table__hkzNr tr {
    color: #262626;
    color: var(--primary-gray);
    vertical-align: middle;
    padding: 8px 10px;
    font-weight: 100;
    overflow: hidden;
    font-size: 13px;
  }

.LiveFullResults_table__hkzNr tr.LiveFullResults_teamRecord__2_vnX:hover {
        background-color: #bd94ff;
        background-color: var(--quaternary-colour);
        cursor: pointer;
      }

.LiveFullResults_table__hkzNr tr td {
      color: #262626;
      color: var(--primary-gray);
      vertical-align: middle;
      padding: 8px 10px;
      font-weight: 100;
      overflow: hidden;
      font-size: 13px;
    }

.LiveFullResults_table__hkzNr tr th {
      vertical-align: middle;
      padding: 8px 10px;
      text-transform: initial;
      font-size: 14px;
    }

.LiveFullResults_table__hkzNr tbody tr:nth-child(odd) {
        background-color: #EEF1F4;
      }

.LiveFullResults_table__hkzNr thead tr {
      white-space: nowrap;
      background-color: white !important;
    }

.LiveFullResults_footer__37KmT {
  display: flex;
  justify-content: flex-end;
  margin: .8em 0 0;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .LiveFullResults_footer__37KmT {
    display: block;
    justify-content: unset;
  }
}

.LiveFullResults_tableWrapper__1rqHo {
  overflow-x: auto;
}

.LiveFullResults_tableWrapper__1rqHo tr:nth-child(odd) {
    background-color: #EEF1F4;
  }

.LiveFullResults_automatedCommentaryContent__22jgW {
  font-size: 14px;
}

.LiveFullResults_automatedCommentaryContent__22jgW ul {
    margin: 1em 1.1em;
    list-style: disc;
  }

.LiveFullResults_automatedCommentaryContent__22jgW ul li {
      margin-bottom: .2em;
    }

.LiveFullResults_automatedCommentaryContent__22jgW strong, .LiveFullResults_automatedCommentaryContent__22jgW b {
    font-family: 'World Athletics Bold' , Arial , sans-serif , sans-serif;
    font-family: var(--font-family-bold) , sans-serif;
  }

@media screen and (max-width: 1023px) {

.LiveFullResults_automatedCommentaryContent__22jgW {
    left: -5px
}
  }

@media screen and (min-width: 1024px) {

.LiveFullResults_automatedCommentaryContent__22jgW {
    max-width: 400px;
    max-height: 600px;
    left: 20px;
    top: -3px
}
  }

.LiveFullResults_new-tooltip__26AMW:hover span {
  visibility: visible;
}

.LiveFullResults_honoursIcon__3oOgt {
  width:20px;
  cursor: pointer;
}

.LiveFullResults_backButton__r9hTR {
  width: 100%;
  padding: 0.5rem;
  color:#077079;
  color:var(--competition-mode-accent-color-blue);
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
}

.LiveFullResults_backButton__r9hTR.LiveFullResults_left__3VShM{
    text-align: left;
  }

.LiveFullResults_backButton__r9hTR.LiveFullResults_right__2aypA{
    text-align: right;
  }
.styles_filtersContainer__PQFSD {
    background: white;
    padding: 16px;
    border-radius: 8px;
    max-width: 250px;
    gap: 1em;
    display: flex;
    flex-direction: column;
}

    @media screen and (max-width: 767px) {.styles_filtersContainer__PQFSD {
        max-width: unset;
        gap: 0.5em;
        padding: 10px
}
    }

    .styles_filtersContainer__PQFSD .styles_section__gPuF4 h4 {
            padding-bottom: 10px;
            font-weight: 600;
        }

    @media screen and (max-width: 767px) {

    .styles_filtersContainer__PQFSD .styles_section__gPuF4 h4 {
                display: none
        }
            }
.styles_title__1_pgT{
    font-weight: 600;
}
/* Arrow Up */
.styles_arrowUp__1c-_d {
    display: inline-block;
    position: relative;
    width: 0;
    height: 8px;
    bottom: 2px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #077079;
    border-bottom: 6px solid var(--competition-mode-nav-active-color);
    margin-right: 10px;
}
/* Arrow Down */
.styles_arrowDown__3eB6V {
    display: inline-block;
    position: relative;
    width: 0;
    height: 8px;
    top: 0px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #077079;
    border-top: 6px solid var(--competition-mode-nav-active-color);
    margin-right: 10px;
}
.styles_filters__1BYb_{
    color : #077079;
    color : var(--competition-mode-nav-active-color);
    align-self: end;
}
.styles_dropdownGroup__30Lue {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}
.styles_dropdownGroup__30Lue:after {
        content: none;
    }
.styles_dropdownGroup__30Lue div:after {
        content: none;
    }
@media screen and (max-width: 767px) {
.styles_dropdownGroup__30Lue {
        grid-template-rows: unset;
        display: flex;
        flex-wrap: wrap
}
    }
.styles_selectWrapper__HQIpX {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.styles_typeFilters__3cbHR {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.styles_filterButton__a089a {
    background: #f0f0f0;
    border: 1px solid #ccc;
    padding: 8px 16px;
    text-align: center;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}
.styles_filterButton__a089a:hover {
    background: #ddd;
}
.styles_activeFilter__2GlmY {
    background: #007bff;
    color: white;
    border: 1px solid #0056b3;
}
.styles_timeToggle__31-N3 {
    padding: 10px;
    background: white;
}
@media screen and (max-width: 767px) {
.styles_timeToggle__31-N3 {
        background: none
}
    }
.styles_noDataContainer__1veuO {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    border: 1px dashed #2c2c2c;
    border: 1px dashed var(--table-header-colour);
    background: #fbfdfd;
    padding: 20px;
    text-align: center;
}
.styles_resultsViewContainer__A7G0l {
    display: flex;
    gap: 20px;
    padding: 1rem;
    max-width: 1400px;
    margin: auto;
}
@media screen and (max-width: 767px) {
.styles_resultsViewContainer__A7G0l {
        flex-direction: column;
        padding: 1rem 0;
        gap: 1rem
}
    }
.styles_resultsViewContainer__A7G0l:after {
        content: none;
    }
.styles_resultsViewContainer__A7G0l > div {
    flex: 1 1;
}

@media screen and (max-width: 767px) {.CompetitionModeResultsPage_container__1y66n {
    padding: 0 16px
}
  }


.CompetitionModeResultsPage_predictorBannerContainer__7OpTZ{
  margin-top: 10px;
}


.CompetitionModeResultsPage_showNowContainer__2iAKu {
  margin-bottom: 30px;
}

