.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;
}
.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_container__NOITB {
  margin: 40px 0 20px;
  max-width: 1100px;
}
  @media(max-width: 1024px) {.styles_container__NOITB {
    margin: 33px
}
  }
.styles_titleEventName__O31qa {
  margin-bottom: 20px;
}
@media(max-width: 1024px) {
.styles_titleEventName__O31qa {
    font-size: 28px;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold);
    line-height: 30px;
    margin-bottom: 15px
}
  }
.styles_eventText__yke7M {
  font-size: 22px;
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
  margin-bottom: 40px;
}
@media(max-width: 1024px) {
.styles_eventText__yke7M {
    font-size: 19px;
    line-height: 27px;
    margin-bottom: 20px
}
  }
.styles_title__2IRdB {
  font-size: 42px;
  font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
  font-family: var(--font-family-headline);
  margin-bottom: 20px;
}
@media(max-width: 1024px) {
.styles_title__2IRdB {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 0;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold)
}
  }
.styles_text__2geZa {
  font-size: 22px;
  font-family: 'World Athletics'
,
Arial
,
sans-serif;
  font-family: var(--font-family-regular);
}
@media(max-width: 1024px) {
.styles_text__2geZa {
    font-size: 18px;
    line-height: 1.5
}
  }
.styles_title__2RCXI {
    font-size: 42px;
    font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
    font-family: var(--font-family-headline);
    margin-bottom: 20px;
    max-width: 1100px;
    margin: 10px auto 20px;
  }
.styles_schedule__11XhO {
  display: flex;
}
.styles_category__2ZVgY {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 18px;
  font-size: 35px;
  font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
  font-family: var(--font-family-headline); 
}
.styles_category__2ZVgY:before {
    content: '';
    display: block;
    width: 45px;
    height: 0;
    border-width: 3px;
    border-style: solid;
    border-color: inherit;
    position: absolute;
    top: 0px;
  }
.styles_button__36cq3 {
  background: #262626;
  background: var(--primary-gray);
  border-radius: 17px;
  color: #ffffff;
  color: var(--primary-text-colour);
  width: 116px;
  height: 35px;
  font-size: 16px;
  margin-top: 5px;
}
.styles_sessionTitle__pA18c {
  margin-top: 30px;
  font-size: 22px;
  font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
  font-family: var(--font-family-headline);
}
.styles_period__1YhCj {
  padding-left: 15px;
  font-size: 18px;
  font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
  font-family: var(--font-family-bold);
}
.styles_container__2ozyu {
  max-width: 1400px;
  width: 100%;
  margin: auto;
}
.styles_containerCards__3zl2S {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  display: flex;
}
@media(max-width: 1024px) {
.styles_containerCards__3zl2S {
    flex-wrap: wrap;
    margin: 0 33px 43px 33px;
    width: auto
}
  }
.styles_cardsWrap__1VS7j {
  display: flex;
  padding: 45px 40px 45px  40px;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
}
@media(max-width: 1024px) {
.styles_cardsWrap__1VS7j {
    padding: 45px 30px 45px  30px
}
  }
.styles_cardsWrap__1VS7j .styles_videoLink__sDPy- {
  width:100%;
  margin-top: 15px;
}
.styles_cardsWrap__1VS7j .styles_videoLink__sDPy- img {
  width:100%;
}
.styles_cardsWrap__1VS7j:not(:last-child) {
  margin-right: 29px;
}
@media(max-width: 1024px) {
.styles_cardsWrap__1VS7j:not(:last-child) {
    margin-right: 0;
    margin-bottom: 28px
}
  }
.styles_card__2d26Q {
  border-top: 1px solid #707070;
  padding: 15px 0;
  display: flex;
  align-items: flex-start;
}
.styles_category__2ZVgY + .styles_card__2d26Q {
  border-top: none;
}
.styles_logo__3oQqp {
  padding: 0px 15px 0 0;
  max-width: 22%;
  width: 100%;
}
.styles_logo__3oQqp img {
    max-height: 38px;
    max-width: 80px;
  }
@media(max-width: 767px) {
.styles_logo__3oQqp img {
      max-width: 60px
  }
    }
.styles_cardTitle__1Tch9 {
  position: relative;
  padding-left: 15px;
}
.styles_cardTitle__1Tch9:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    height: 100%;
    border: 1px solid #69D7E1;
    width: 1px;
  }
.styles_cardChannelUrl__35yTv{
  position: relative;
  text-decoration: underline;
  padding-left: 15px;
}
.styles_cardChannelUrl__35yTv:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    height: 100%;
    border: 1px solid #69D7E1;
    width: 1px;
  }
.styles_videoPlayer__2N5CZ {
 max-width: 1396px;
 height: 800px;
 margin: auto;
 width: 100%;
}
@media (max-width: 767px) {
.styles_videoPlayer__2N5CZ {
  height: 315px
}
 }
.styles_radio__2Tm7x {
  margin: 12px 0;
  border: 0;
}
.styles_orange__2ER_b {
  color: #ffffff;
  color: var(--primary-text-colour);
}
.styles_tabContent__1jiH6 {
  display: none;
}
.styles_tabContent__1jiH6.styles_activeContent__1QsI8 {
    display: block;
  }

.styles_days__3cONX {
  margin-right: 28px;
  text-align: left;
  cursor: pointer;
  border: none;
  outline: none;
}
.styles_dayTitle__1L4SV {
  font-size: 30px;
  color: #ffffff;
  color: var(--timetable-tab-day-title);
  width: max-content;
}
.styles_dayTitle__1L4SV.styles_WAS__3h_HY, .styles_dayTitle__1L4SV.styles_DL__2DHBV, .styles_dayTitle__1L4SV.styles_IT__31kg3, .styles_dayTitle__1L4SV.styles_CT__euEiX {
    font-size: 22px;
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family-regular);
  }
@media (max-width: 767px) {
.styles_dayTitle__1L4SV.styles_WAS__3h_HY, .styles_dayTitle__1L4SV.styles_DL__2DHBV, .styles_dayTitle__1L4SV.styles_IT__31kg3, .styles_dayTitle__1L4SV.styles_CT__euEiX {
      font-size: 16px
  }
    }
.styles_dayDate__2nni_ {
  font-size: 16px;
  color: #ffffff;
  color: var(--timetable-tab-day-title);
  padding: 0.3em 0;
  text-transform: uppercase;
}
.styles_dayDate__2nni_.styles_WAS__3h_HY, .styles_dayDate__2nni_.styles_DL__2DHBV, .styles_dayDate__2nni_.styles_IT__31kg3, .styles_dayDate__2nni_.styles_CT__euEiX{
    padding: 0;
    color: #9A9A9A;
  }
.styles_active__1q4xj {
  border-bottom: 2px solid #A5FA64;
}
.styles_active__1q4xj.styles_WAS__3h_HY, .styles_active__1q4xj.styles_DL__2DHBV, .styles_active__1q4xj.styles_IT__31kg3, .styles_active__1q4xj.styles_CT__euEiX {
    border-bottom: none;
  }
.styles_WAS__3h_HY.styles_active__1q4xj, .styles_DL__2DHBV.styles_active__1q4xj,.styles_IT__31kg3.styles_active__1q4xj,.styles_CT__euEiX.styles_active__1q4xj {
  border-bottom: none;
}
.styles_activeDayTitle__1TooG {
  color: #A5FA64;
}
.styles_activeDayTitle__1TooG.styles_WAS__3h_HY, .styles_activeDayTitle__1TooG.styles_DL__2DHBV, .styles_activeDayTitle__1TooG.styles_IT__31kg3, .styles_activeDayTitle__1TooG.styles_CT__euEiX {
    color: #BD94FF;
    font-size: 42px;
    font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
    font-family: var(--font-family-headline);
  }
@media (max-width: 767px) {
.styles_activeDayTitle__1TooG.styles_WAS__3h_HY, .styles_activeDayTitle__1TooG.styles_DL__2DHBV, .styles_activeDayTitle__1TooG.styles_IT__31kg3, .styles_activeDayTitle__1TooG.styles_CT__euEiX {
      font-size: 35px
  }
    }
.styles_activeDayTitle__1TooG.styles_DL__2DHBV {
    color: #01FFFF;
  }
.styles_activeDayTitle__1TooG.styles_WAS__3h_HY {
    color: #BD94FF;
  }
.styles_activeDayTitle__1TooG.styles_IT__31kg3 {
    color: #BD94FF;
  }
.styles_activeDayTitle__1TooG.styles_CT__euEiX {
    color: #FF873C;
  }
.styles_activeDayDate__1_s9r {
  color: #A5FA64;
}
.styles_activeDayDate__1_s9r.styles_WAS__3h_HY, .styles_activeDayDate__1_s9r.styles_DL__2DHBV, .styles_activeDayDate__1_s9r.styles_IT__31kg3, .styles_activeDayDate__1_s9r.styles_CT__euEiX {
    font-size: 30px;
    font-family: 'World Athletics'
,
Arial
,
sans-serif;
    font-family: var(--font-family-regular);
  }
@media (max-width: 767px) {
.styles_activeDayDate__1_s9r.styles_WAS__3h_HY, .styles_activeDayDate__1_s9r.styles_DL__2DHBV, .styles_activeDayDate__1_s9r.styles_IT__31kg3, .styles_activeDayDate__1_s9r.styles_CT__euEiX {
      font-size: 22px
  }
    }
.styles_WAS__3h_HY.styles_activeDayDate__1_s9r {
  color: #BD94FF;
}
.styles_DL__2DHBV.styles_activeDayDate__1_s9r {
  color: #01FFFF;
}
.styles_IT__31kg3.styles_activeDayDate__1_s9r {
  color: #BD94FF;
}
.styles_CT__euEiX.styles_activeDayDate__1_s9r {
  color: #FF873C;
}
@media not screen and (min-width: 1124px) {
  .styles_dayTitle__1L4SV {
    font-size: 22px;
  }

  .styles_dayDate__2nni_ {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .styles_days__3cONX {
    margin-right: 20px;
  }
  .styles_dayTitle__1L4SV {
    font-size: 18px;
  }
  .styles_dayDate__2nni_ {
    font-size: 12px;
  }
}


.HorizontalScroll_scroll__3U83v::-webkit-scrollbar {
    display: none;
}
.styles_daysContainer__3wAPw {
  display: flex;
  flex-direction: row;
}
  
  .styles_daysContainer__3wAPw.styles_WAS__2nP1O, .styles_daysContainer__3wAPw.styles_DL__17OdQ, .styles_daysContainer__3wAPw.styles_IT__1lsZU, .styles_daysContainer__3wAPw.styles_CT__2-Z5S {
    margin-bottom: 30px;
    padding: 23px 23px 23px 35px;
    width: 100%;
    min-width: 1400px;
    background: #281E37;
  }
  
  @media (max-width: 1024px) {
  
  .styles_daysContainer__3wAPw.styles_WAS__2nP1O, .styles_daysContainer__3wAPw.styles_DL__17OdQ, .styles_daysContainer__3wAPw.styles_IT__1lsZU, .styles_daysContainer__3wAPw.styles_CT__2-Z5S {
      padding: 14px 0 14px 24px
  }
    }
  
  .styles_daysContainer__3wAPw.styles_WAS__2nP1O {
    background: #281E37;
  }
  
  .styles_daysContainer__3wAPw.styles_DL__17OdQ {
    background: #262626;
  }
  
  .styles_daysContainer__3wAPw.styles_IT__1lsZU {
    background: #281E37;
  }
  
  .styles_daysContainer__3wAPw.styles_CT__2-Z5S {
    background: #262626;
  }

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

.styles_title__tq4WZ {
  font-size: 42px;
  font-family: 'World Athletics Heavy'
,
Arial
,
sans-serif;
  font-family: var(--font-family-headline);
  margin-bottom: 20px;
  max-width: 1100px;
  margin: 10px 0 20px;
}
  @media(max-width: 1024px) {.styles_title__tq4WZ {
    margin: 0 33px 17px 33px;
    font-size: 30px;
    font-family: 'World Athletics Bold'
,
Arial
,
sans-serif;
    font-family: var(--font-family-bold)
}
  }

.styles_whereToWhatchContainer__252b_ {
  max-width: 1400px;
  margin: auto;
  padding: 20px 0 0 0;
}

.styles_whereToWhatchContainer__252b_ ::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
  }

.styles_schedule__1vO8H {
  display: flex;
}

.styles_container__1dbPW {
  max-width: 1100px;
  width: 100%;
}

@media(max-width: 1024px) {

.styles_container__1dbPW {
    margin: 0 33px;
    max-width: none;
    width: auto
}
  }

.styles_daysContainer__XN1LJ {
  max-width: 1400px;
  width: 100%;
  margin: auto;
}

.styles_selectContainer__CV4QR {
  max-width: 1100px;
  width: 100%;
}

@media(max-width: 1024px) {

.styles_selectContainer__CV4QR {
    margin: 33px;
    max-width: none;
    width: auto
}
  }

.styles_tabContent__xRMRA {
  display: none;
}

.styles_tabContent__xRMRA.styles_activeContent__3mE-O {
    display: block;
    margin-bottom: 100px
  }



.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
}
  }




