app-root {
  font-family: "Avenir Next", Montserrat, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  display: block;
  width: 100%;
  --colorGreen: #28ffbb;
  --systemFont: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
      "Segoe UI", Tahoma, Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans",
      "Open Sans", sans-serif;
}

* {
  /*This prevents users being able to select text. Stops long presses in iOS bringing up copy/paste UI for example. Note below we specifically switch user-select on for inputs for the sake of Safari. Bug here: https://bugs.webkit.org/show_bug.cgi?id=82692*/
  user-select: none;
  /*This gets -webkit specific prefix as it is a non W3C property*/
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  /*Older Androids need this instead*/
  -webkit-tap-highlight-color: transparent;
  /* Most devs find border-box easier to reason about. However by inheriting we can mix box-sizing approaches.*/
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: inherit;
}

/*IMPORTANT: This removes the focus outline for most browsers. Be aware this is a backwards accessibilty step! Mozilla (i.e. Firefox) also adds a dotted outline around a tags and buttons when they receive tab focus which I haven't found an unhacky way of removing.*/
a:focus,
button:focus {
  outline: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/*Prevent these elements having italics by default*/
em,
i {
  font-style: normal;
}

/* 
    Thanks to L. David Baron for this:
    https://twitter.com/davidbaron/status/794138427952222210 */
base,
basefont,
datalist,
head,
meta,
script,
style,
title,
noembed,
param,
template {
  display: none;
}

/* Mozilla also has its own focus inner for buttons which doesn't take into account padding by default. This sets it so padding is included */
button::-moz-focus-inner {
  padding: inherit;
}

/* The button element tends to get a lot of default styles which we largely undo here. We set text-alignment (usually set to center by UA style sheet) and the font-family to inherit from your own styles instead. */
button {
  appearance: none;
  background-color: transparent;
  border: 0;
  padding: 0;
  text-align: inherit;
  font-family: inherit;
  /* Safari adds margin */
  margin: 0;
}

button:hover {
  cursor: pointer;
}

/*SVG defaults to display: inline which I dislike. Inline-block or inline-flex will render white space on SVG elements in HTML (where you would have defs and symbols) if the container isn't a flex box or the font-size set to 0 to crush the whitespace */
svg {
  display: block;
}

img {
  /*Make images behave responsively. Here they will scale up to 100% of their natural size*/
  max-width: 100%;
  /*Make images display as a block (UA default is usually inline)*/
  display: block;
}

/*Removes the default focusring that Mozilla places on select items. From: http://stackoverflow.com/a/18853002/1147859 
    Ensure you set #000 to the colour you want your text to appear */
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.help-ScreenReaderOnly:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
/* Colours */
/* Z-Index */
/* Breakpoints */
/* Breakpoint Mixins */
*,
*::before,
*::after {
  box-sizing: border-box;
}

button {
  appearance: none;
  border: 0;
  background-color: transparent;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: sans-serif;
  overscroll-behavior: contain;
}
body.modal-open {
  overflow: hidden;
}

a {
  text-decoration: none;
}

.help-ScreenReaderOnly:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.fol-Rotate {
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  background-size: 80vh 100%;
  place-items: center;
  overscroll-behavior: none;
  overflow: hidden;
  touch-action: none;
  display: none;
}
.fol-Rotate::after {
  content: "";
  display: block;
  background: url("/static/img/rotate.svg") no-repeat center;
  height: 80vh;
  width: 80vw;
  transform: rotate(90deg);
}
@media (orientation: landscape) and (max-height: 500px) {
  .fol-Rotate {
    display: grid;
  }
}

.fold-Container {
  display: block;
}

.fold-Header {
  display: grid;
  padding: 125px 0;
  place-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px 100px;
  grid-auto-flow: row;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5333333333)), linear-gradient(to right, #099490, #0e8562);
}
@media (min-width: 1000px) {
  .fold-Header {
    grid-template-columns: 1fr auto auto 1fr;
    gap: 40px clamp(50px, 6vw, 150px);
    grid-template-rows: auto auto auto;
  }
}

.fold-ChampLogo {
  grid-column: 2;
  grid-row: 1;
  max-width: 194px;
  width: 100%;
}

.fold-Logo {
  grid-column: 2;
  grid-row: 2;
  max-width: 360px;
  width: 100%;
}
@media (min-width: 1000px) {
  .fold-Logo {
    max-width: 478px;
  }
}

.fold-Header_QrBlock {
  display: grid;
  grid-column: 2;
  grid-row: 3;
  place-items: center;
}

.fold-Header_QrImg {
  display: grid;
  max-width: 120px;
  width: 100%;
  height: 120px;
}

.fold-Header_QrCTA {
  font-size: 25px;
  color: #fff;
  font-weight: 900;
  font-style: italic;
  white-space: nowrap;
}

.fold-Header_HeroImg {
  grid-column: 2;
  max-width: 450px;
  width: 100%;
}
@media (min-width: 1000px) {
  .fold-Header_HeroImg {
    grid-column: 3;
    grid-row: 1/-1;
  }
}

.fold-Strap {
  min-height: 400px;
  background-color: #000;
  background-position: left center, calc(100% + 100px) bottom;
  background-size: contain;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
}

.fold-Strap_Text {
  margin: 0;
  background-color: #000;
  font-size: calc(30px + 0.3vw);
  color: #fff;
  font-style: italic;
  font-weight: 900;
  text-align: center;
  text-wrap: balance;
  text-wrap: pretty;
  max-width: 500px;
}
.fold-Strap_Text i {
  background-image: linear-gradient(to right, #2ffff8, #28ffbb);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-style: italic;
}

.fold-Strap_Mark {
  height: 22px;
  display: inline-block;
}

.fold-Showcase {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  background: url("/static/img/desktop-showcase-bg.png"), linear-gradient(to right, #241212, #142129, #24131b);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}

.fold-Showcase_Inner {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  gap: 0 95px;
  flex-wrap: wrap;
}

.fold-Showcase_Title {
  grid-row: 1;
  font-size: calc(30px + 0.3vw);
  color: #fff;
  font-style: italic;
  font-weight: 900;
  text-align: center;
  text-wrap: balance;
  text-wrap: pretty;
  grid-column: 2;
  margin-bottom: 65px;
}

.fold-Showcase_Item {
  flex: 1 1 auto;
  display: grid;
  justify-items: center;
}

.fold-Showcase_Text {
  text-align: center;
  font-size: 25px;
  line-height: 1.4;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  max-width: 350px;
}

.fold-Showcase_Phone {
  max-width: 220px;
}

.fold-Footer {
  background-image: linear-gradient(to right, #2ffff8, #28ffbb);
  min-height: 475px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-auto-flow: row;
  grid-auto-rows: min-content;
  align-content: center;
  place-items: center;
  height: min-content;
  gap: 40px 0;
}

.fold-Footer_Logo {
  grid-column: 2;
  max-width: 470px;
}

.fold-Footer_QrCodes {
  grid-column: 2;
  max-width: 120px;
}

.fold-Footer_QrCTA {
  grid-column: 2;
  margin: 0;
  font-size: 25px;
  color: #000;
  font-weight: 900;
  font-style: italic;
}

[data-bg] {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(to bottom, var(--bgGradStart), var(--bgGradEnd));
  opacity: 0;
  transition: opacity var(--transitionStandard);
}

[data-bg=Start],
[data-bg=End] {
  -webkit-mask-image: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0));
  -webkit-mask-size: 100vw 100vh;
  background-image: linear-gradient(to right, var(--bgGradStart), var(--bgGradEnd));
}
app-root[data-scores] [data-bg=Start],
app-root[data-scores] [data-bg=End] {
  background-image: linear-gradient(to bottom, #126e51, #126e51);
}

@supports (color: color(display-p3 0 1 0)) {
  [data-bg] {
    background-image: linear-gradient(to bottom, var(--bgGradStartP3), var(--bgGradEndP3));
  }
  [data-bg=Start],
  [data-bg=End] {
    background-image: linear-gradient(to right, var(--bgGradStartP3), var(--bgGradEndP3));
  }
}
app-root[data-active-section=Start] [data-bg=Start] {
  opacity: 1;
}

app-root[data-active-section=Fixtures] [data-bg=Fixtures] {
  opacity: 1;
}

app-root[data-active-section=Competitions] [data-bg=Competitions] {
  opacity: 1;
}

app-root[data-active-section=Teams] [data-bg=Teams] {
  opacity: 1;
}

app-root[data-active-section=Live] [data-bg=Live] {
  opacity: 1;
}

[data-bg=End] {
  opacity: calc(1 - var(--End, 1));
}

.fol-JumpMenu {
  position: absolute;
  z-index: 10;
  left: clamp(20px, 20px + 1vw, 40px);
  top: 50%;
  transform: translateY(calc((-50% - 100px) * 0.8));
  display: grid;
  justify-items: center;
  grid-auto-flow: row;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transitionStandard);
}
app-root[data-getapp-button] .fol-JumpMenu {
  opacity: 1;
  pointer-events: auto;
}
app-root[data-active-section=Live] .fol-JumpMenu {
  opacity: 0;
}

.fol-JumpMenuItem {
  height: 40px;
  width: 40px;
  display: grid;
  place-items: center;
}

.fol-JumpMenuItem_Inner {
  width: 10px;
  height: 10px;
  --activeColor: rgb(255 255 255 / 10%);
  border-radius: 50%;
  position: relative;
  transition: background-color var(--transitionStandard);
  background-color: var(--activeColor);
  --colorStart: #28ffbb;
  --colorFixtures: #ff8f91;
  --colorCompetitions: #8fb4ff;
  --colorTeams: #ff8eb4;
}
.fol-JumpMenuItem_Inner::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 0.5;
  display: block;
  border: 1px solid var(--activeColor);
}
.fol-JumpMenuItem_Inner::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 4px;
  width: 1px;
  height: 21px;
}
.fol-JumpMenuItem:last-of-type .fol-JumpMenuItem_Inner::before {
  display: none;
}
app-root[data-active-section=Start] [data-jump-name=Start] .fol-JumpMenuItem_Inner {
  --activeColor: var(--colorStart);
}
app-root[data-active-section=Fixtures] [data-jump-name=Fixtures] .fol-JumpMenuItem_Inner {
  --activeColor: var(--colorFixtures);
}
app-root[data-active-section=Competitions] [data-jump-name=Competitions] .fol-JumpMenuItem_Inner {
  --activeColor: var(--colorCompetitions);
}
app-root[data-active-section=Teams] [data-jump-name=Teams] .fol-JumpMenuItem_Inner {
  --activeColor: var(--colorTeams);
}

app-root[data-active-section=Start] .fol-JumpMenuItem_Start .fol-JumpMenuItem_Inner::before {
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.1) calc((1 - var(--Start)) * 100%), var(--sectionPrimaryColour) 0%, var(--sectionPrimaryColour) 100%);
}

app-root[data-active-section=Fixtures] .fol-JumpMenuItem_Fixtures .fol-JumpMenuItem_Inner::before {
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.1) calc((1 - var(--Fixtures)) * 100%), var(--sectionPrimaryColour) 0%, var(--sectionPrimaryColour) 100%);
}

app-root[data-active-section=Competitions] .fol-JumpMenuItem_Competitions .fol-JumpMenuItem_Inner::before {
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.1) calc((1 - var(--Competitions)) * 100%), var(--sectionPrimaryColour) 0%, var(--sectionPrimaryColour) 100%);
}

app-root[data-active-section=Teams] .fol-JumpMenuItem_Teams .fol-JumpMenuItem_Inner::before {
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.1) calc((1 - var(--Teams)) * 100%), var(--sectionPrimaryColour) 0%, var(--sectionPrimaryColour) 100%);
}

.fol-JumpMenu_UpDown {
  background-color: rgba(255, 255, 255, 0.1);
  height: 30px;
  width: 30px;
  margin: 20px 0;
  border-radius: 50%;
  background-image: url("/static/img/chevron.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.fol-JumpMenu_Up {
  transform: rotate(180deg);
}

.fol-PhoneFrame {
  position: relative;
  width: 100%;
  display: grid;
  justify-items: center;
  transition: opacity var(--transitionStandard);
}
app-root[data-phone-stuck] .fol-PhoneFrame, app-root[data-active-section=End] .fol-PhoneFrame {
  opacity: 0;
  pointer-events: none;
}

.fol-PhoneFrameImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.fol-PhoneFrameSetter {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.fol-PhoneFrameCropper {
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 540/1173;
  position: relative;
  border: 8px solid #1a1a1a;
  box-shadow: 0 0 0 2px #333, 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: #00958f;
  transition: background var(--transitionStandard);
}
app-root[data-active-section=Fixtures] .fol-PhoneFrameCropper {
  background: #b21521;
}
app-root[data-active-section=Competitions] .fol-PhoneFrameCropper {
  background: #1653a9;
}
app-root[data-active-section=Teams] .fol-PhoneFrameCropper {
  background: #b21552;
}
app-root[data-active-section=Live] .fol-PhoneFrameCropper {
  background: #007623;
}

.fol-PhoneFrame_Inner {
  overflow: hidden;
  position: relative;
  transform: scale(clamp(0.8, 1 - var(--Start), 1));
  background-repeat: no-repeat;
  background-size: 100%;
  transition: all 0.2s linear;
  transform-origin: center 100px;
  width: 100%;
}
@media (min-height: 850px) {
  .fol-PhoneFrame_Inner {
    transform-origin: center 150px;
  }
}
app-root[data-active-section=Live] .fol-PhoneFrame_Inner, app-root[data-active-section=End] .fol-PhoneFrame_Inner {
  overflow: visible;
  transform: scale(clamp(0.6, 0.7 - var(--Live), 0.7));
}

.fol-PhoneFrameItem {
  position: absolute;
  overflow: hidden;
  inset: 0;
  padding: 0;
  z-index: 1;
  border-radius: 32px;
}

[data-phone-frame] {
  transform: translateX(100%);
  transition: transform var(--transitionStandard);
}

app-root[data-active-section=Start] .fol-PhoneFrameItem[data-phone-frame=Start], app-root[data-active-section=Fixtures] .fol-PhoneFrameItem[data-phone-frame=Start] {
  transform: none;
}

app-root[data-active-section=Fixtures] .fol-PhoneFrameItem[data-phone-frame=Fixtures], app-root[data-active-section=Competitions] .fol-PhoneFrameItem[data-phone-frame=Fixtures] {
  transform: none;
}

app-root[data-active-section=Teams] .fol-PhoneFrameItem[data-phone-frame=Teams] {
  transform: none;
}

app-root[data-active-section=Competitions] .fol-PhoneFrameItem[data-phone-frame=Competitions], app-root[data-active-section=Teams] .fol-PhoneFrameItem[data-phone-frame=Competitions] {
  transform: none;
}

.fol-PhoneFrameItem[data-phone-frame=Live] {
  overflow: visible;
}
app-root[data-active-section=Live] .fol-PhoneFrameItem[data-phone-frame=Live] {
  transform: none;
}

.fol-PhoneFrame_Flyout {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.fol-PhoneFrameImgLeft,
.fol-PhoneFrameImgRight {
  display: block;
  max-width: 280px;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
  border-radius: 40px;
  border: 8px solid #1a1a1a;
  box-shadow: 0 0 0 2px #333, 0 20px 50px rgba(0, 0, 0, 0.4);
  background: #000;
}

.fol-PhoneFrameImgLeft {
  transform: none;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform-origin: center right;
}
app-root[data-active-section=Live] .fol-PhoneFrameImgLeft {
  transition: all 1s 1s ease-in-out;
  transform: translateX(-95%) scale(0.8);
  opacity: 1;
}

.fol-PhoneFrameImgRight {
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform-origin: center left;
  transform: none;
}
app-root[data-active-section=Live] .fol-PhoneFrameImgRight {
  transition: all 1s 1.3s ease-in-out;
  transform: translateX(95%) scale(0.8);
  opacity: 1;
}

.fol-Footer {
  position: relative;
  z-index: 10;
  overflow: hidden;
  height: 100vh;
}

.fol-Footer-Inner {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 15px 0;
  justify-content: center;
  align-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transitionStandard);
}
app-root[data-active-section=End] .fol-Footer-Inner {
  opacity: 1;
  pointer-events: auto;
}

.fol-Footer_Wrapup {
  display: grid;
  gap: clamp(30px, 3vh, 50px);
  grid-auto-flow: row;
  place-items: center;
}
app-root[data-form] .fol-Footer_Wrapup {
  gap: 20px;
}

.fol-Footer_Phone {
  width: clamp(200px, 35vw, 280px);
  align-self: start;
}

.fol-Footer_PhoneCropper {
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 540/1173;
  position: relative;
  border: 8px solid #1a1a1a;
  box-shadow: 0 0 0 2px #333, 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: #00958f;
}

.fol-Footer_PhoneImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.fol-Footer_FrameSetter {
  position: relative;
  border-radius: 45px;
  overflow: hidden;
}

.fol-Footer_PhoneFrameImg {
  width: 100%;
}

.fol-Footer_PhoneFrameItem {
  position: absolute;
  overflow: hidden;
  inset: 8px;
  z-index: -1;
  border-radius: 45px;
}
.fol-Footer_PhoneFrameItem img {
  margin-top: -45px;
}

.fol-Footer_MainLogo {
  width: clamp(300px, 50vw, 500px);
  display: flex;
  justify-content: center;
}

.fol-Footer_Bullet {
  white-space: nowrap;
  font-size: 25px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  width: fit-content;
  margin: 0 auto;
  display: block;
}

.fol-Footer_Copyright {
  font-size: 0.8rem;
  text-align: center;
  color: #fff;
  max-width: 80%;
  margin: 0 auto 2rem;
}

.fol-Footer_Links {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.fol-Footer_Link {
  color: #fff;
  font-size: 0.8rem;
  text-decoration: underline;
}

.fol-SwitchToggle {
  position: relative;
}
.fol-SwitchToggle_Input {
  position: absolute;
  top: -10px;
  left: -5px;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 5;
  height: 40px;
  width: 45px;
}
.fol-SwitchToggle_Label {
  display: block;
  line-height: 0;
}
.fol-SwitchToggle_Toggle {
  background-color: #9C9C9C;
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  height: 20px;
  width: 35px;
  transition: background-color 0.3s ease;
}
.fol-SwitchToggle_Toggle:before {
  background-color: #FFFFFF;
  border-radius: 10px;
  content: "";
  height: 18px;
  position: absolute;
  left: 1px;
  top: 1px;
  width: 18px;
  transition: transform 0.3s ease;
}
.fol-SwitchToggle--checked .fol-SwitchToggle_Toggle {
  background-color: #126E51;
}
.fol-SwitchToggle--checked .fol-SwitchToggle_Toggle:before {
  transform: translateX(15px);
}
.fol-SwitchToggle--disabled .fol-SwitchToggle_Toggle {
  opacity: 0.5;
  cursor: not-allowed;
}

.fol-CookieConsentPopover {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #F1F1F1;
  opacity: 0.9;
}
.fol-CookieConsentPopover_Inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}
@media (min-width: 768px) {
  .fol-CookieConsentPopover_Inner {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
  }
}
.fol-CookieConsentPopover_TextWrapper {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 10px;
}
.fol-CookieConsentPopover_Header {
  font-size: 13px;
  font-weight: 700;
  color: #444444;
  margin: 0;
  line-height: 17px;
}
@media (min-width: 768px) {
  .fol-CookieConsentPopover_Header {
    font-size: 14px;
    padding-right: 20px;
  }
}
.fol-CookieConsentPopover_Text {
  color: #444444;
  margin: 0;
  line-height: 17px;
  font-size: 12px;
  padding-top: 5px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .fol-CookieConsentPopover_Text {
    padding: 5px 10px 0 0;
  }
}
.fol-CookieConsentPopover_ButtonWrapper {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}
.fol-CookieConsentPopover_Button {
  width: 100%;
  min-height: 40px;
  border-radius: 2px;
  cursor: pointer;
  background-color: transparent;
  color: #126E51;
  border: 1px solid #126E51;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fol-CookieConsentPopover_Button:hover {
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .fol-CookieConsentPopover_Button {
    min-width: 145px;
    max-width: 200px;
    margin-right: 10px;
    margin-top: 0;
  }
}
.fol-CookieConsentPopover_Button--alt {
  border: 1px solid #126E51;
  color: #fff;
  background-color: #126E51;
  font-weight: 700;
}
@media (min-width: 768px) {
  .fol-CookieConsentPopover_Button--alt {
    margin-right: 0;
  }
}
.fol-CookieConsentPopover_Button--alt:hover {
  color: #F0F0F0;
  background-color: #126E51;
}
.fol-CookieConsentPopover_Link {
  color: #126E51;
}
.fol-CookieConsentPopover_Link:hover {
  text-decoration: underline;
}

.fol-CookieConsentModal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.fol-CookieConsentModal_Overlay {
  position: absolute;
  z-index: 5;
  inset: 0;
  background-color: #000000;
  opacity: 0.4;
}
.fol-CookieConsentModal_Container {
  position: relative;
  z-index: 20;
  max-width: 355px;
  border-radius: 2px;
  padding: 20px 10px 10px;
  margin: 0 10px;
  background-color: #E4E4E4;
  max-height: calc(100vh - 20px);
  overflow: hidden;
}
@media (min-width: 950px) {
  .fol-CookieConsentModal_Container {
    max-width: 375px;
  }
}
.fol-CookieConsentModal_Inner {
  max-height: 524px;
  overflow-y: auto;
  scroll-margin: 50px 8px 5px 8px;
  scrollbar-width: thin;
}
.fol-CookieConsentModal_Header {
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  padding: 0 10px;
  margin-bottom: 20px;
}
.fol-CookieConsentModal_ItemHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  color: #282828;
}
.fol-CookieConsentModal_ItemHeaderText {
  font-size: 12px;
  color: #282828;
  font-weight: bold;
  line-height: 20px;
  margin: 0;
}
.fol-CookieConsentModal_ItemHeaderInfo {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 19px;
  word-break: break-word;
  color: #444444;
  margin: 0;
}
.fol-CookieConsentModal_ItemParagraph {
  font-size: 13px;
  color: #333333;
  line-height: 19px;
  font-weight: 500;
  padding: 10px 10px 20px 10px;
}
.fol-CookieConsentModal_ButtonContainer {
  display: flex;
  flex-direction: column;
  padding: 15px 10px 0px;
}
.fol-CookieConsentModal_Button {
  background-color: #126E51;
  border-radius: 2px;
  height: 45px;
  width: 100%;
  color: #F0F0F0;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
}
.fol-CookieConsentModal_Button:hover {
  background-color: #168361;
}
.fol-CookieConsentModal_Button--secondary {
  background-color: transparent;
  color: #126E51;
}
.fol-CookieConsentModal_Button--secondary:hover {
  background-color: transparent;
  text-decoration: underline;
}
.fol-CookieConsentModal_Link {
  color: #126E51;
}

app-root {
  display: grid;
  width: 100%;
  position: relative;
  pointer-events: auto;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  background-color: #1f1f1f;
  --gradLeft: #099490;
  --gradRight: #0e8562;
  --transitionStandard: 1s;
  font-family: "Avenir Next", Montserrat, "Segoe UI", Arial, sans-serif;
}
app-rootapp-root[data-landscape] {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
@media (orientation: landscape) and (max-height: 500px) {
  app-root {
    display: none;
  }
}

.fol-LayoutContainer {
  display: grid;
  grid-template-rows: minmax(100px, min-content) 5fr 1fr;
  gap: 10px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  height: 100vh;
  height: 100dvh;
}

.fol-Section {
  position: relative;
  height: 75vh;
}

.fol-Header {
  display: grid;
  padding: clamp(20px, 20px + 2vh, 85px);
  padding-bottom: 0;
  grid-auto-flow: row;
  gap: 15px 0;
  justify-items: center;
  min-height: 70px;
  width: 100vw;
  z-index: 10;
}

.fol-Header_PartnerLogo {
  min-height: 106px;
  min-width: 152px;
}

.fol-MainLogo {
  display: grid;
  margin-top: 30px;
  place-items: center;
  height: 30px;
}
.fol-MainLogo svg {
  height: 30px;
}

.fol-Header_Logo {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fol-FormIntroText {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin-top: 35px;
}
@media (min-width: 600px) and (min-height: 600px) {
  .fol-FormIntroText {
    font-size: 16px;
  }
}
.fol-Footer_Wrapup .fol-FormIntroText {
  margin-top: 10px;
}

.fol-FormInput {
  height: 40px;
  border-radius: 4px;
  width: 240px;
  appearance: none;
  border: 0;
  padding: 0;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 700;
}
.fol-FormInput:focus-visible {
  outline: 0;
}

.fol-Header_Bullet {
  white-space: nowrap;
  font-size: 25px;
  font-weight: 900;
  font-style: italic;
  color: var(--colorGreen);
  width: fit-content;
  margin: 0 auto;
  display: block;
}

.fol-DownloadBtn {
  font-family: var(--systemFont);
  display: grid;
  width: fit-content;
  min-width: 200px;
  font-weight: 600;
  font-size: 15px;
  color: #282828;
  margin: 15px auto 0;
  padding: 0 35px;
  place-content: center;
  border-radius: 35px;
  height: 45px;
  background-color: var(--colorGreen);
}
.fol-Footer .fol-DownloadBtn {
  margin: 0;
  align-self: start;
}
.fol-FormInput + .fol-DownloadBtn {
  margin: 0;
}

.fol-CtaWrapper {
  display: grid;
  justify-items: center;
  gap: clamp(20px, 15px + 3vh, 50px) 0;
  margin: 0 auto;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  z-index: 10;
  margin-top: 20px;
}

.fol-Straps {
  display: grid;
  place-items: center;
}

.fol-Strap {
  width: clamp(320px, 90vw, 800px);
  margin: 0;
  font-size: var(--strapSize);
  line-height: calc(1.4 * var(--strapSize));
  font-weight: 900;
  font-style: italic;
  text-align: center;
  text-wrap: balance;
  color: #fff;
  opacity: 0;
  position: absolute;
  transition: opacity var(--transitionStandard);
}
.fol-Strap[data-longest] {
  position: static;
}
.fol-Strap svg {
  opacity: inherit;
  display: inline;
  margin-right: -5px;
  height: calc(0.7 * var(--strapSize));
}

app-root[data-bet365scores] .fol-Strap_Mark {
  display: none;
}

app-root[data-start-strap] .fol-Strap[data-section=Start] {
  opacity: 1;
}

app-root[data-active-section=Fixtures] .fol-Strap[data-section=Fixtures] {
  opacity: 1;
}

app-root[data-active-section=Teams] .fol-Strap[data-section=Teams] {
  opacity: 1;
}

app-root[data-active-section=Competitions] .fol-Strap[data-section=Competitions] {
  opacity: 1;
}

app-root[data-active-section=Live] .fol-Strap[data-section=Live] {
  opacity: 1;
}

.fol-GetTheApp {
  height: fit-content;
  position: relative;
  place-self: start center;
  width: fit-content;
  display: grid;
  font-family: var(--systemFont);
  font-weight: 700;
  min-height: 35px;
  border: 1px solid var(--sectionPrimaryColour);
  padding: 0 20px;
  border-radius: 23px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transitionStandard);
}
app-root[data-getapp-button] .fol-GetTheApp {
  opacity: 1;
  pointer-events: auto;
}

.fol-GetTheApp_Text {
  display: grid;
  place-items: center;
  color: var(--sectionPrimary);
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transitionStandard);
}
.fol-GetTheApp_Text:first-child {
  position: static;
}

@supports (color: color(display-p3 0 1 0)) {
  .fol-GetTheApp {
    border: 1px solid var(--sectionPrimaryColourP3);
  }
  .fol-GetTheApp_Text {
    color: var(--sectionPrimaryP3);
  }
}
app-root[data-start-strap] [data-text-for-section=Start] {
  opacity: 1;
}

app-root[data-active-section=Start] [data-text-for-section=Start] {
  opacity: 1;
}

app-root[data-active-section=Fixtures] [data-text-for-section=Fixtures] {
  opacity: 1;
}

app-root[data-active-section=Competitions] [data-text-for-section=Competitions] {
  opacity: 1;
}

app-root[data-active-section=Teams] [data-text-for-section=Teams] {
  opacity: 1;
}

app-root[data-active-section=Live] [data-text-for-section=Live] {
  opacity: 1;
}

app-root[data-active-section=End] [data-text-for-section=End] {
  opacity: 1;
}

.fol-DownloadBadge {
  height: 40px;
}

.fol-QrHolder {
  height: 125px;
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
  gap: 10px 20px;
  margin-top: 10px;
  place-items: center;
}

.fol-Qr {
  height: 100px;
}

.fol-QrTitle {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.fol-DesktopOnly {
  display: none;
}

.site-not-found {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
  color: #fff;
  background: linear-gradient(to right, #099490, #0e8562);
  font-family: Montserrat, sans-serif;
}
.site-not-found h1,
.site-not-found p {
  margin: 0;
}
.site-not-found a {
  color: #fff;
  text-decoration: underline;
}

@media (min-width: 600px) {
  .fol-MobileOnly {
    display: none;
  }
  .fol-DesktopOnly {
    display: grid;
  }
}
