/*# sourceMappingURL=footy-tailor-demo-0.1.0.css.map */
:root,
:host {
  --footy-font-family: "Roboto", sans-serif;
  --footy-root-font-size: 100%;
  --footy-spacing: 1rem;
  --footy-block-spacing-vertical: 1rem;
  --footy-block-spacing-horizontal: 1rem;
}
@media (min-width: 576px) {
  :root,
  :host {
    --footy-root-font-size: 106.25%;
  }
}
@media (min-width: 768px) {
  :root,
  :host {
    --footy-root-font-size: 112.5%;
  }
}
@media (min-width: 1024px) {
  :root,
  :host {
    --footy-root-font-size: 118.75%;
  }
}
@media (min-width: 1280px) {
  :root,
  :host {
    --footy-root-font-size: 125%;
  }
}
@media (min-width: 1536px) {
  :root,
  :host {
    --footy-root-font-size: 131.25%;
  }
}

[data-theme=light],
:root:not([data-theme=dark]),
:host(:not([data-theme=dark])) {
  color-scheme: light;
  --footy-body-background-color: #fff;
  --footy-body-text-color: oklch(27.4% 0.006 286.033deg);
  --footy-body-text-secondary-color: oklch(55.2% 0.016 285.938deg);
  --footy-border-color: oklch(92.9% 0.013 255.508deg);
}

@media only screen and (prefers-color-scheme: dark) {
  :root:not([data-theme]),
  :host(:not([data-theme])) {
    color-scheme: dark;
    --footy-background-color: #000;
  }
}
[data-theme=dark] {
  color-scheme: dark;
  --footy-background-color: #000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

:where(:root),
:where(:host) {
  background-color: var(--footy-body-background-color);
  color: var(--footy-body-text-color);
  font-size: var(--footy-root-font-size);
  font-family: var(--footy-font-family);
  overflow-wrap: break-word;
  tab-size: 4;
  height: 100%; /* Ensure html and body take full viewport height */
  margin: 0;
}
:where(:root) .page,
:where(:host) .page {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Make sure container fills at least the viewport height */
}
:where(:root) .page main,
:where(:host) .page main {
  flex-grow: 1;
}

.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
}

@media (min-width: 576px) {
  .container {
    max-width: 510px;
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 700px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 950px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1450px;
  }
}

hr {
  height: 0;
  margin: 1rem 0;
  border: 0;
  border-top: 1px solid var(--footy-border-color);
  color: inherit;
}

select:invalid {
  color: gray;
}

option {
  color: black;
}

header {
  position: sticky;
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--footy-border-color);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  display: flex;
  align-items: center;
}
header .logo img {
  height: 2rem;
}
header .logo span {
  color: var(--footy-body-text-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 1rem;
}
header .logo span b {
  color: var(--footy-body-text-secondary-color);
}

header .navigation {
  display: flex;
  align-items: center;
}
header .navigation a {
  color: #000;
  font-size: 1rem;
  margin-left: 2.5rem;
}
header .navigation a.button {
  font-size: 1.1rem;
}
header .navigation > span {
  font-size: 2rem;
}

header .menu-toggle {
  flex-direction: column;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  float: left;
}
header .menu-toggle div {
  width: 24px;
  height: 1px;
  background: #FFFFFF;
  margin: 3px 0;
}

main {
  min-height: calc(100vh - 120px);
}

article {
  margin-top: var(--footy-block-spacing-vertical);
}

footer {
  width: 100%;
  height: 60px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #000;
  text-align: center !important;
  border-top: 1px solid var(--footy-border-color);
}

section {
  background: #FFF;
  border: 1px solid var(--footy-border-color);
  margin-top: var(--footy-block-spacing-vertical);
  margin-bottom: var(--footy-block-spacing-vertical);
  padding: var(--footy-block-spacing-vertical) var(--footy-block-spacing-horizontal);
}
@media (min-width: 576px) {
  section {
    --footy-block-spacing-vertical: calc(var(--footy-spacing) * 1.25);
    --footy-block-spacing-horizontal: calc(var(--footy-spacing) * 1.25);
  }
}
@media (min-width: 768px) {
  section {
    --footy-block-spacing-vertical: calc(var(--footy-spacing) * 1.5);
    --footy-block-spacing-horizontal: calc(var(--footy-spacing) * 1.5);
  }
}
@media (min-width: 1024px) {
  section {
    --footy-block-spacing-vertical: calc(var(--footy-spacing) * 1.75);
    --footy-block-spacing-horizontal: calc(var(--footy-spacing) * 1.75);
  }
}
@media (min-width: 1280px) {
  section {
    --footy-block-spacing-vertical: calc(var(--footy-spacing) * 2);
    --footy-block-spacing-horizontal: calc(var(--footy-spacing) * 2);
  }
}
@media (min-width: 1536px) {
  section {
    --footy-block-spacing-vertical: calc(var(--footy-spacing) * 2.25);
    --footy-block-spacing-horizontal: calc(var(--footy-spacing) * 2.25);
  }
}

.row {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
.row .reverse {
  flex-direction: row-reverse;
}

.col .reverse {
  flex-direction: column-reverse;
}

.col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-offset-0, .col-xs-offset-1, .col-xs-offset-2, .col-xs-offset-3, .col-xs-offset-4, .col-xs-offset-5, .col-xs-offset-6, .col-xs-offset-7, .col-xs-offset-8, .col-xs-offset-9, .col-xs-offset-10, .col-xs-offset-11, .col-xs-offset-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-offset-0, .col-sm-offset-1, .col-sm-offset-2, .col-sm-offset-3, .col-sm-offset-4, .col-sm-offset-5, .col-sm-offset-6, .col-sm-offset-7, .col-sm-offset-8, .col-sm-offset-9, .col-sm-offset-10, .col-sm-offset-11, .col-sm-offset-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-offset-0, .col-md-offset-1, .col-md-offset-2, .col-md-offset-3, .col-md-offset-4, .col-md-offset-5, .col-md-offset-6, .col-md-offset-7, .col-md-offset-8, .col-md-offset-9, .col-md-offset-10, .col-md-offset-11, .col-md-offset-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-offset-0, .col-lg-offset-1, .col-lg-offset-2, .col-lg-offset-3, .col-lg-offset-4, .col-lg-offset-5, .col-lg-offset-6, .col-lg-offset-7, .col-lg-offset-8, .col-lg-offset-9, .col-lg-offset-10, .col-lg-offset-11, .col-lg-offset-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-offset-0, .col-xl-offset-1, .col-xl-offset-2, .col-xl-offset-3, .col-xl-offset-4, .col-xl-offset-5, .col-xl-offset-6, .col-xl-offset-7, .col-xl-offset-8, .col-xl-offset-9, .col-xl-offset-10, .col-xl-offset-11, .col-xl-offset-12, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl-offset-0, .col-xxl-offset-1, .col-xxl-offset-2, .col-xxl-offset-3, .col-xxl-offset-4, .col-xxl-offset-5, .col-xxl-offset-6, .col-xxl-offset-7, .col-xxl-offset-8, .col-xxl-offset-9, .col-xxl-offset-10, .col-xxl-offset-11, .col-xxl-offset-12 {
  flex: 0 0 auto;
  max-width: 100%;
  min-height: 1px;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-xs-2 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-xs-5 {
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-xs-8 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-xs-11 {
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-key-offset-0 {
    margin-left: 0%;
  }
  .col-key-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-key-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-key-offset-3 {
    margin-left: 25%;
  }
  .col-key-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-key-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-key-offset-6 {
    margin-left: 50%;
  }
  .col-key-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-key-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-key-offset-9 {
    margin-left: 75%;
  }
  .col-key-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-key-offset-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-key-offset-0 {
    margin-left: 0%;
  }
  .col-key-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-key-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-key-offset-3 {
    margin-left: 25%;
  }
  .col-key-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-key-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-key-offset-6 {
    margin-left: 50%;
  }
  .col-key-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-key-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-key-offset-9 {
    margin-left: 75%;
  }
  .col-key-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-key-offset-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1024px) {
  .col-lg-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-key-offset-0 {
    margin-left: 0%;
  }
  .col-key-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-key-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-key-offset-3 {
    margin-left: 25%;
  }
  .col-key-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-key-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-key-offset-6 {
    margin-left: 50%;
  }
  .col-key-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-key-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-key-offset-9 {
    margin-left: 75%;
  }
  .col-key-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-key-offset-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1280px) {
  .col-xl-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-key-offset-0 {
    margin-left: 0%;
  }
  .col-key-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-key-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-key-offset-3 {
    margin-left: 25%;
  }
  .col-key-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-key-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-key-offset-6 {
    margin-left: 50%;
  }
  .col-key-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-key-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-key-offset-9 {
    margin-left: 75%;
  }
  .col-key-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-key-offset-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1536px) {
  .col-xxl-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-key-offset-0 {
    margin-left: 0%;
  }
  .col-key-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-key-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-key-offset-3 {
    margin-left: 25%;
  }
  .col-key-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-key-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-key-offset-6 {
    margin-left: 50%;
  }
  .col-key-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-key-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-key-offset-9 {
    margin-left: 75%;
  }
  .col-key-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-key-offset-11 {
    margin-left: 91.6666666667%;
  }
}
b,
strong {
  font-weight: bold;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-size: var(--footy-font-size);
  letter-spacing: -0.1rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

h1 {
  --footy-font-size: 2rem;
}

h2 {
  --footy-font-size: 1.75rem;
}

h3 {
  --footy-font-size: 1.5rem;
}

h4 {
  --footy-font-size: 1.25rem;
}

h5 {
  --footy-font-size: 1.125rem;
}

h6 {
  --footy-font-size: 1rem;
}

a {
  text-decoration: none;
  color: #00CC90;
}

.btn {
  display: inline-block;
  margin: 0;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  overflow: visible;
}

.btn-primary {
  background: #00CC90;
  color: #FFF;
}

.btn-outline-primary {
  border: 1px solid #00CC90;
}

.btn-secondary {
  background: #ADADB8;
}

.btn-outline-secondary {
  border: 1px solid #ADADB8;
  color: #ADADB8;
}

/**
 * Basics form elements
 */
input,
optgroup,
select,
textarea {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-family: inherit;
  letter-spacing: inherit;
}

input {
  overflow: visible;
}

select {
  text-transform: none;
}

legend {
  max-width: 100%;
  padding: 0;
  color: inherit;
  white-space: normal;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  padding: 0;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

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

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

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

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

:-moz-focusring {
  outline: none;
}

:-moz-ui-invalid {
  box-shadow: none;
}

::-ms-expand {
  display: none;
}

[type=file],
[type=range] {
  padding: 0;
  border-width: 0;
}

fieldset {
  width: 100%;
  margin: 0;
  margin-bottom: 1rem;
  padding: 0;
  border: 0;
}

fieldset legend {
  display: block;
  width: 100%;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #DEDEE3;
  font-weight: 400;
  font-size: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.375rem;
  font-weight: 700;
  color: #53535F;
}

input[type=hidden] + span {
  display: block;
}

input:not([type=checkbox], [type=radio]),
button[type=submit],
select,
textarea,
input[type=hidden] + span {
  width: 100%;
}

input:not([type=checkbox], [type=radio], [type=range], [type=file]),
select,
textarea,
input[type=hidden] + span {
  appearance: none;
  padding: 0.75rem 1rem;
}

input,
select,
textarea {
  border: 0.0625rem solid #DEDEE3;
  outline: none;
  font-weight: 400;
}

input::placeholder,
input::-webkit-input-placeholder,
textarea::placeholder,
textarea::-webkit-input-placeholder,
select:invalid {
  opacity: 1;
}

input:not([type=checkbox], [type=radio]),
select,
textarea,
button,
input[type=hidden] + span {
  margin-bottom: 1rem;
}

:where(table) {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

th,
td {
  padding: calc(1rem / 2) calc(1rem / 4);
  border-bottom: 0.0625rem solid #C8C8D0;
  font-weight: 400;
  text-align: left;
  text-align: start;
}
th:first-child,
td:first-child {
  padding-left: 0;
}
th:last-child,
td:last-child {
  padding-right: 0;
}

tfoot th,
tfoot td {
  border-top: 0.0625rem solid #C8C8D0;
  border-bottom: 0;
}

table.striped tbody tr:nth-child(odd) th,
table.striped tbody tr:nth-child(odd) td {
  background-color: #F7F7F8;
}

table.responsive > thead {
  display: none;
}

table.responsive tr.responsive-row {
  display: none;
}

table.responsive tr.responsive-card {
  display: table-row;
}

@media (min-width: 576px) {
  table.responsive > thead {
    display: table-header-group;
  }
  table.responsive tr.responsive-row {
    display: table-row;
  }
  table.responsive tr.responsive-card {
    display: none;
  }
}
/*
tr {
    display: inline-block;
    padding: 1rem;
    margin: 1.5rem;
    border: 1px solid grey;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

td {
    display: block;
}

table tbody {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; 
}
*/
.mg-spinbox-plugin {
  display: flex;
  margin-bottom: 1rem;
}
.mg-spinbox-plugin > button {
  font-size: 2rem;
  padding: 0 1rem;
}
.mg-spinbox-plugin > .button-prepend {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.mg-spinbox-plugin > .button-append {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.mg-spinbox-plugin > input {
  border-radius: 0;
  width: 64px;
  text-align: center;
}

.mg-toggle-switch {
  display: inline-block;
  margin-bottom: 1rem;
}
.mg-toggle-switch > input {
  display: none;
}
.mg-toggle-switch > input:checked + span.mg-switch {
  background-color: #00CC90;
  border-color: #00CC90;
}
.mg-toggle-switch > input:checked + span.mg-switch::after {
  left: calc(100% - 3.5rem);
}
.mg-toggle-switch > span.mg-switch {
  display: block;
  background-color: #cecece;
  height: 3.5rem;
  width: 6rem;
  position: relative;
  border: 1px solid #cecece;
  border-radius: 3.5rem;
  transition: background-color 0.25s, border-color 0.25s;
}
.mg-toggle-switch > span.mg-switch::after {
  content: "";
  background-color: #fff;
  display: block;
  height: 3.3rem;
  width: 3.5rem;
  position: absolute;
  border-radius: 3.3rem;
  left: 0;
  transition: left 0.25s;
}

.mg-datetimepicker-plugin {
  display: flex;
  position: relative;
}
.mg-datetimepicker-plugin > input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.mg-datetimepicker-plugin > .button-calendar {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 1.5rem;
  padding: 0 1.5rem;
}
.mg-datetimepicker-plugin > .widget {
  display: block;
  position: absolute;
  width: 15em;
  margin: 2px 0;
  padding: 4px;
  background: #FFF;
  border: 1px solid #cacaca;
  border-radius: 4px;
  z-index: 999;
  top: 40px;
}
.mg-datetimepicker-plugin .date-picker {
  width: 15em;
  margin: 0;
}
.mg-datetimepicker-plugin .date-picker thead, .mg-datetimepicker-plugin .date-picker tbody, .mg-datetimepicker-plugin .date-picker tfoot {
  display: table;
  width: 100%;
}
.mg-datetimepicker-plugin .date-picker th, .mg-datetimepicker-plugin .date-picker td {
  padding: 5px;
}
.mg-datetimepicker-plugin .date-picker td {
  text-align: center;
}
.mg-datetimepicker-plugin .date-picker td.old, .mg-datetimepicker-plugin .date-picker td.new {
  color: #cacaca;
}
.mg-datetimepicker-plugin .date-picker td.day {
  border-radius: 4px;
  border: none;
  height: 20px;
  line-height: 20px;
}
.mg-datetimepicker-plugin .date-picker td.day:hover {
  background: #eeeeee;
  cursor: pointer;
}
.mg-datetimepicker-plugin .date-picker th.month-switch, .mg-datetimepicker-plugin .date-picker th.month-chevron {
  text-align: center;
  border-radius: 4px;
  border: none;
}
.mg-datetimepicker-plugin .date-picker th.month-switch:hover, .mg-datetimepicker-plugin .date-picker th.month-chevron:hover {
  background: #eeeeee;
  cursor: pointer;
}
.mg-datetimepicker-plugin .date-picker td.time-select {
  text-align: center;
  border-radius: 4px;
  border: none;
}
.mg-datetimepicker-plugin .date-picker td.time-select:hover {
  background: #eeeeee;
  cursor: pointer;
}
.mg-datetimepicker-plugin .month-picker {
  width: 15em;
  margin: 0;
}
.mg-datetimepicker-plugin .month-picker thead, .mg-datetimepicker-plugin .month-picker tbody {
  display: table;
  width: 100%;
}
.mg-datetimepicker-plugin .month-picker th, .mg-datetimepicker-plugin .month-picker td {
  padding: 5px;
}
.mg-datetimepicker-plugin .month-picker th {
  text-align: center;
  border: none;
}
.mg-datetimepicker-plugin .month-picker th.year-chevron {
  border-radius: 4px;
}
.mg-datetimepicker-plugin .month-picker th.year-chevron:hover {
  background: #eeeeee;
  cursor: pointer;
}
.mg-datetimepicker-plugin .month-picker td {
  padding: 5px;
  text-align: center;
  border-radius: 4px;
  border: none;
  height: 54px;
  line-height: 54px;
}
.mg-datetimepicker-plugin .month-picker td.month:hover {
  background: #eeeeee;
  cursor: pointer;
}
.mg-datetimepicker-plugin .time-picker {
  width: 15em;
  margin: 0;
}
.mg-datetimepicker-plugin .time-picker thead, .mg-datetimepicker-plugin .time-picker tbody {
  display: table;
  width: 100%;
}
.mg-datetimepicker-plugin .time-picker th, .mg-datetimepicker-plugin .time-picker td {
  padding: 5px;
}
.mg-datetimepicker-plugin .time-picker th.date-select {
  text-align: center;
  border-radius: 4px;
  border: none;
}
.mg-datetimepicker-plugin .time-picker th.date-select:hover {
  background: #eeeeee;
  cursor: pointer;
}
.mg-datetimepicker-plugin .time-picker td {
  text-align: center;
  border-radius: 4px;
  border: none;
  height: 54px;
  line-height: 54px;
  width: 54px;
}
.mg-datetimepicker-plugin .time-picker td.time-chevron:hover,
.mg-datetimepicker-plugin .time-picker td.time-hour:hover,
.mg-datetimepicker-plugin .time-picker td.time-minute:hover {
  background: #eeeeee;
  cursor: pointer;
}
.mg-datetimepicker-plugin .hour-picker {
  width: 15em;
  margin: 0;
  display: block;
}
.mg-datetimepicker-plugin .hour-picker tbody {
  display: table;
  width: 100%;
}
.mg-datetimepicker-plugin .hour-picker td {
  padding: 5px;
  text-align: center;
  border-radius: 4px;
  border: none;
  height: 54px;
  line-height: 54px;
  width: 54px;
}
.mg-datetimepicker-plugin .hour-picker td.hour:hover {
  background: #eeeeee;
  cursor: pointer;
}
.mg-datetimepicker-plugin .minute-picker {
  width: 15em;
  margin: 0;
  display: block;
}
.mg-datetimepicker-plugin .minute-picker tbody {
  display: table;
  width: 100%;
}
.mg-datetimepicker-plugin .minute-picker td {
  padding: 5px;
  text-align: center;
  border-radius: 4px;
  border: none;
  height: 54px;
  line-height: 54px;
  width: 54px;
}
.mg-datetimepicker-plugin .minute-picker td.minute:hover {
  background: #eeeeee;
  cursor: pointer;
}

#home section.match {
  padding-top: 0;
  text-align: center;
}
#home section.match .match-bold-text {
  font-weight: bold;
}
#home section.match .match-muted-text {
  font-size: 0.8rem;
  color: #ADADB8;
}
#home section.match .match-score {
  display: flex;
  align-items: center;
}
#home section.match .match-score div:first-child {
  width: 100%;
}
#home section.match .match-score h3 {
  font-size: 3rem;
}
#home section.match .players-header {
  display: flex;
  justify-content: space-between;
}
#home section.match .players-container {
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}
#home section.match .players-container .player {
  padding: 10px;
  width: 50px;
  height: 50px;
}
#home section.match .stats-header {
  display: flex;
  justify-content: space-between;
}
#home section.match .stats-table table td, #home section.match .stats-table table th {
  text-align: center;
  border: 0;
}

#match article.demo {
  padding-block: 3rem;
  text-align: center;
}
#match h1 {
  --footy-font-size: 2rem;
  text-transform: uppercase;
}
#match section.match {
  padding-top: 0;
}
#match section.match .match-header {
  text-align: center;
  background: var(--footy-border-color);
}
#match section.match .match-info {
  margin-top: 1rem;
  text-align: center;
}
#match section.match .players-header {
  display: flex;
  justify-content: space-between;
}
#match section.match .players-container {
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}
#match section.match .players-container .player {
  padding: 10px;
  width: 50px;
  height: 50px;
}
#match section.match .stats-header {
  display: flex;
  justify-content: space-between;
}
#match section.match .stats-table table td, #match section.match .stats-table table th {
  text-align: center;
}

#stats article.demo {
  padding-block: 3rem;
  text-align: center;
}
#stats h1 {
  --footy-font-size: 2rem;
  text-transform: uppercase;
}
#stats section.match {
  padding-top: 0;
}
#stats section.match .match-header {
  text-align: center;
  background: var(--footy-border-color);
}
#stats section.match .match-info {
  margin-top: 1rem;
  text-align: center;
}
#stats section.match .players-header {
  display: flex;
  justify-content: space-between;
}
#stats section.match .players-container {
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}
#stats section.match .players-container .player {
  padding: 10px;
  width: 50px;
  height: 50px;
}
#stats section.match .stats-header {
  display: flex;
  justify-content: space-between;
}
#stats section.match .stats-table table td, #stats section.match .stats-table table th {
  text-align: center;
  border: 0;
}

#kickoff section.match {
  padding-top: 0;
  text-align: center;
}
#kickoff section.match .match-bold-text {
  font-weight: bold;
}
#kickoff section.match .match-muted-text {
  font-size: 0.8rem;
  color: #ADADB8;
}
#kickoff section.match .match-score {
  display: flex;
  align-items: center;
}
#kickoff section.match .match-score div:first-child {
  width: 100%;
}
#kickoff section.match .match-score h3 {
  font-size: 3rem;
}