@import "../init/bootstrap.css" layer(vendor);
@import "../init/default.css" layer(vendor);
@import "../init/styles.css" layer(vendor);
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@layer vendor, base, components, utilities, theme;
.row > * {
  flex-shrink: 0;
  width: auto;
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-top: 0;
}

:root {
  --primary: #182e45;
  --secondary: #acc8e5;
  --gray: #f2f2f2;
  --white: #ffffff;
  --black: #000000;
  --font-family: "Lato", sans-serif;
  --body-bg: #f2f2f2;
  --body-color: var(--primary);
  --footer-bg: var(--primary);
  --footer-color: var(--white);
}

body {
  font-size: 1rem;
  line-height: 24px;
  letter-spacing: 0.02em;
  font-family: var(--font-family);
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  color: var(--body-color);
  background: var(--body-bg);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.group, .social, .languages-select {
  display: flex;
  gap: 0.3rem 0.8rem;
  flex-wrap: wrap;
}

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

.btn {
  font-size: 0.875rem;
  line-height: 16px;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-style: italic;
  display: inline-block;
  overflow: hidden;
  height: 50px;
  border: 1px solid #182e45;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  transition-property: background-color, color;
  transition-duration: 0.666s;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #182e45;
  flex: 1;
}
.btn:hover, .btn:active {
  background-color: #182e45;
  color: #fff;
  border: 1px solid #182e45;
  box-shadow: none !important;
}
.btn:focus, .btn:focus-visible {
  box-shadow: 0 0 0 1px #182e45;
  outline: none;
}

.btn-primary:focus,
.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled):active {
  background-color: #182e45;
}

.btn-outline-primary, .btn-filtre {
  background-color: #fff;
  color: #182e45;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-filtre:not(:disabled):not(.disabled):active {
  background-color: #182e45;
  color: #fff;
  border: 1px solid #182e45;
}

@media screen and (min-width: 640px) {
  .btn {
    max-width: 150px;
  }
}
footer {
  background-color: var(--footer-bg);
  text-align: center;
  padding: 1rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

footer .logo {
  width: 42px;
  height: 49px;
  color: var(--white);
  display: block;
}
footer .logo svg {
  width: auto;
  height: 100%;
}

.footer__copyright {
  flex-direction: column;
}

.footer__addresses {
  display: flex;
  flex-direction: column;
  gap: 1rem 2rem;
}
@media screen and (min-width: 640px) {
  .footer__addresses {
    flex-direction: row;
  }
}

.footer__address {
  font-size: 12px;
  color: var(--secondary);
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

footer .link::after {
  display: none;
}

@media screen and (max-width: 719px) {
  footer {
    flex-direction: column;
  }
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a.link {
  font-weight: 400;
  font-style: italic;
  position: relative;
  color: var(--secondary);
}
a.link:after {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0;
  background-color: var(--secondary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease-in-out, opacity 0.3s linear;
  content: "";
}
a.link:hover {
  color: var(--secondary);
}
a.link:hover:after {
  opacity: 1;
  transform: scaleX(1);
}

.languages-select {
  gap: 0;
  font-size: 1rem;
  line-height: 22px;
  letter-spacing: 0.02em;
  position: absolute;
  right: 25px;
  font-style: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 460px) {
  .languages-select {
    right: initial;
    left: 15px;
  }
}

.languages-select__item {
  margin-left: 10px;
  opacity: 0.25;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  font-style: italic;
  position: relative;
  color: var(--primary);
  line-height: 23px;
}
.languages-select__item:focus {
  outline: none;
}

.languages-select__item--active {
  opacity: 1;
  pointer-events: none;
}
.languages-select__item--active:after {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 1;
  background-color: var(--primary);
  transform: scaleX(1);
  content: "";
}

.social {
  justify-content: center;
  gap: 0.5rem;
}
.social svg {
  width: 45px;
  height: 25px;
  fill: var(--white);
  stroke: var(--white);
  stroke-width: 1px;
  transition: opacity 0.3s linear;
}
.social svg:hover {
  opacity: 0.6;
}

.sponsoring {
  overflow: hidden;
  background-color: var(--gray);
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sponsoring__content {
  display: flex;
  padding: 0;
  width: 420px;
  height: 60px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.sponsoring__content a {
  cursor: pointer;
  animation-name: fadeInUp;
  animation-duration: 0.4s;
  animation-delay: 0.2s;
  animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-fill-mode: both;
  opacity: 0;
}

.sponsoring__content a:nth-child(1) {
  animation-delay: 0.2s;
}

.sponsoring__content a:nth-child(2) {
  animation-delay: 0.4s;
}

.sponsoring__content a:nth-child(3) {
  animation-delay: 0.6s;
}

.sponsoring__content a:nth-child(4) {
  animation-delay: 0.8s;
}

.sponsoring__content__image {
  width: auto;
  height: 37px;
}

.sponsoring--footer .sponsoring__content {
  width: 600px;
  height: 100px;
}
@media screen and (max-width: 767px) {
  .sponsoring--footer .sponsoring__content {
    width: 250px;
    height: 75px;
  }
}
.sponsoring--footer .sponsoring__content__image {
  height: 50px;
}
@media screen and (max-width: 767px) {
  .sponsoring--footer .sponsoring__content__image {
    height: 25px;
  }
}

@media screen and (max-width: 719px) {
  .sponsoring__content {
    margin-right: auto;
    margin-left: auto;
    width: 230px;
    height: 35px;
  }
  .sponsoring__content__image {
    height: 15px;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
header {
  z-index: 2;
  height: 60px;
  background-color: var(--white);
  position: relative;
}

.header__content {
  position: relative;
  display: flex;
  margin: 0 auto;
  max-width: 1200px;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.header__logo {
  width: auto;
  height: 45px;
}

.header__logo-image {
  width: auto;
  height: 100%;
}

.header__rolex {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
}

.header__rolex-iframe {
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 70px;
  height: 64px;
  border: 0;
}

@media screen and (min-width: 720px) {
  header {
    height: 100px;
  }
  .header__logo {
    height: 75px;
  }
  .header__rolex {
    display: none;
    visibility: hidden;
  }
}
.tableau {
  margin: 0;
  width: auto;
  max-width: 970px;
  margin: auto;
}

.tableau-title {
  padding: 18px 20px;
  border-top: 1px solid rgba(154, 155, 156, 0.15);
  background-color: #f2f2f2;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: bolder;
  max-width: 1900px;
  margin: auto;
  color: var(--white);
  background-color: var(--primary);
}

.aachen-tableau--event-date-item .tableau-title {
  color: var(--primary);
  background-color: var(--body-bg);
}

.tableau-subtitle {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: color-mix(in srgb, var(--primary), transparent 10%);
  color: var(--white);
  text-transform: capitalize;
  justify-content: flex-start;
}
.tableau-subtitle:before {
  content: "";
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  margin-right: 0.2rem;
  background-color: currentColor;
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-map-pin-icon lucide-map-pin"><path d="M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0"/><circle cx="12" cy="10" r="3"/></svg>');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.epreuves {
  background-color: #fff;
  max-width: 1900px;
  margin: auto;
}

.tableau-event-time,
.tableau-event {
  text-align: start;
  margin: 0;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .tableau-event-time:has(span:not(:empty)) {
    margin-right: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .tableau-event-time:not(:has(span)) {
    width: 45px;
  }
}

.tableau-event {
  border-top: 1px solid rgba(154, 155, 156, 0.15);
  padding: 1rem;
}

.tableau-event-col {
  flex: 1;
  display: flex;
  width: 100%;
  min-height: 100px;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  gap: 0 0.5rem;
}

.cp-code {
  font-size: 0.9rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--primary), transparent 20%);
  width: 5ch;
  text-align: center;
}

.tableau-event-button {
  padding: 0;
}

.tableau-event-button-col {
  display: flex;
  gap: 0.3rem;
  flex: initial;
  padding: 0;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .tableau-event-button-col {
    width: 100%;
  }
}

.tableau-event-button .row {
  display: flex;
  gap: 0.3rem;
  margin: 0;
}

.tableau-event-title {
  font-size: 0.875rem;
  line-height: 22px;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-style: normal;
  color: #182e45;
  text-transform: capitalize;
}

.tableau-event-details {
  color: #9a9b9c;
  font-size: 0.875rem;
  line-height: 22px;
  letter-spacing: 0.02em;
}

.tableau-event-groupe-infos {
  max-width: fit-content;
}

.table tr:has([colspan="99"]) {
  background: color-mix(in srgb, var(--primary), transparent 0%);
  color: var(--white);
}
.table tr:has([colspan="99"]) td {
  width: 100%;
  max-width: 100%;
}

.tableau-event-groupe-details {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .tableau-event-groupe-details {
    flex: 1;
  }
}

@media screen and (min-width: 640px) {
  .tableau-event {
    flex-direction: row;
  }
}
@media screen and (min-width: 720px) {
  .tableau-event-button-col {
    flex-direction: row;
    justify-content: flex-end;
  }
  .tableau-event-button {
    flex: 1;
  }
}
.title-wrapper {
  margin-top: -40px;
  background-color: #fff;
  z-index: 5;
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 970px;
}
.title-wrapper h2 {
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  width: 75%;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .title-wrapper h2 {
    font-size: 2.625rem;
    margin-left: 6%;
  }
}

.btn-filtre {
  max-width: 50px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  flex: initial;
  flex-direction: column;
}

.btn-filtre.jumping {
  --icon: url("https://media.resultsapi.net/assets/img/fei/filter/jumping.1ed40bc7985b.png");
  background-image: var(--icon);
}

.btn-filtre.dressage {
  --icon: url("https://media.resultsapi.net/assets/img/fei/filter/dressage.229accb24124.png");
  background-image: var(--icon);
}

.btn-filtre.complet {
  --icon: url("https://media.resultsapi.net/assets/img/fei/filter/eventing.50374b2c0018.png");
  background-image: var(--icon);
}

.btn-filtre.attelage {
  --icon: url("https://media.resultsapi.net/assets/img/fei/filter/driving.4d4d55af3bdb.png");
  background-image: var(--icon);
}

.btn-filtre.vaulting {
  --icon: url("https://media.resultsapi.net/assets/img/fei/filter/vaulting.dcec80accd3a.png");
  background-image: var(--icon);
}

.banner {
  height: 220px;
  object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .banner {
    height: 300px;
  }
}

.table-responsive {
  margin-top: 10px;
  padding: 0;
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  .table-responsive {
    border: 1px solid #ddd;
  }
}

.table tr {
  border-top: 1px solid rgba(154, 155, 156, 0.15);
}
.table th .text-center {
  text-align: center;
}
.table .line_even {
  background-color: transparent;
}
.table th {
  background-color: #182e45;
  color: #FFF;
  text-shadow: 0 1px 2px rgba(100, 100, 100, 0.25);
  text-transform: uppercase;
  font-size: 80%;
  vertical-align: bottom;
  font-weight: 700;
  line-height: 1.5;
}
.table th .infos {
  font-weight: normal;
  font-size: 80%;
}

.table tr:has(.videoCellPreview) {
  justify-content: center;
}
.table tr:has(.videoCellPreview) .videoCellPreview {
  width: 100%;
}
.table tr:has(.videoCellPreview) .video-nav .span12 {
  display: flex;
  justify-content: end;
}
.table tr:has(.videoCellPreview) .video-nav .span12 .btn {
  flex: none;
  background: transparent;
  border-color: transparent;
  color: var(--primary);
  padding: 0.5rem;
  margin: 0;
}

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

.table-col:has(.play_video) {
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .table-col:has(> .rider) .horse span.horse {
    display: none;
    visibility: hidden;
  }
}
@media screen and (max-width: 639px) {
  #table-rank .table-col.order-rank,
  #table-rank .table-col.table-rk {
    flex: none;
    min-width: 30px !important;
  }
  #table-rank .table-number,
  .table-pen {
    flex: none;
    min-width: 40px !important;
  }
  .table-empty,
  .table-col:has(.flag) {
    flex: none;
    min-width: 30px !important;
  }
}
.jumping:not(.btn-filtre) {
  background-color: #0273ce;
}

.jumping:not(.btn-filtre):after {
  content: "\e804";
  font-family: "wst-icones";
  font-size: 1.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  color: #fff;
}

.complet:not(.btn-filtre) {
  background-color: #02be70;
}

.complet:not(.btn-filtre):after {
  content: "\e801";
  font-family: "wst-icones";
  font-size: 1.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  color: #fff;
}

.multi:not(.btn-filtre) {
  background-color: #040404;
}

.multi:not(.btn-filtre):after {
  content: "\e805";
  font-family: "wst-icones";
  font-size: 1.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  color: #fff;
}

.reining:not(.btn-filtre) {
  background-color: #be9374;
}

.reining:not(.btn-filtre):after {
  content: "\e806";
  font-family: "wst-icones";
  font-size: 1.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  color: #fff;
}

.voltige:not(.btn-filtre) {
  background-color: #2cd4c3;
}

.voltige:not(.btn-filtre):after {
  content: "\e808";
  font-family: "wst-icones";
  font-size: 1.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  color: #fff;
}

.dressage:not(.btn-filtre) {
  background-color: #7d888f;
}

.dressage:not(.btn-filtre):after {
  content: "\e802";
  font-family: "wst-icones";
  font-size: 1.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  color: #fff;
}

.attelage:not(.btn-filtre) {
  background-color: #f8c65a;
}

.attelage:not(.btn-filtre):after {
  content: "\e800";
  font-family: "wst-icones";
  font-size: 1.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  color: #fff;
}

.endurance:not(.btn-filtre) {
  background-color: #da592c;
}

.endurance:not(.btn-filtre):after {
  content: "\e803";
  font-family: "wst-icones";
  font-size: 1.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  color: #fff;
}

.modal .btn {
  flex: initial;
}
.modal .btn.close {
  color: var(--primary);
  background: transparent;
}
.modal .btn.close:hover {
  border: none;
}

.time-allowed {
  justify-content: center;
}

.rider-results .description-epreuve {
  padding: 1rem !important;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  margin: 0 !important;
}
.rider-results .epreuves {
  background: color-mix(in srgb, var(--primary), transparent 90%);
}
.rider-results .epreuves .tableau-groupe {
  background: transparent;
}
.rider-results .tableau-event-col {
  min-height: 0;
}
@media screen and (max-width: 767px) {
  .rider-results .tableau-event-col {
    display: block;
    font-size: 0.88rem;
  }
}

.aachen-title-epreuve {
  background: white;
  padding: 0;
  box-shadow: none;
}
.aachen-title-epreuve .container__wrapper {
  padding: 2rem;
  display: grid;
  gap: 0 1rem;
}
@media screen and (min-width: 640px) {
  .aachen-title-epreuve .container__wrapper {
    grid-template-columns: 1fr 160px;
  }
}
.aachen-title-epreuve .container__wrapper .row {
  margin: 0;
}
.aachen-title-epreuve .container__wrapper > :nth-child(1) {
  grid-column-start: 1;
  grid-row-start: 1;
}
@media screen and (min-width: 768px) {
  .aachen-title-epreuve .container__wrapper > :nth-child(2) {
    grid-row-start: 1;
  }
}
.aachen-title-epreuve .container__wrapper > :nth-child(2) .row {
  gap: 0.5rem;
  flex-direction: column;
  align-items: start;
}
@media screen and (min-width: 640px) {
  .aachen-title-epreuve .container__wrapper > :nth-child(2) .row {
    gap: 1.5rem;
  }
}
.aachen-title-epreuve .container__wrapper > :nth-child(2) .row > :last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}
.aachen-title-epreuve .container__wrapper .heure-disciplines {
  display: flex;
  font-weight: 500;
}
.aachen-title-epreuve .container__wrapper .heure-disciplines:before,
.aachen-title-epreuve .container__wrapper .date-disciplines:before {
  display: block;
  content: "";
  height: 1.2rem;
  width: 1.2rem;
  margin-right: 0.5rem;
  background-color: var(--primary);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path d="M528 320C528 434.9 434.9 528 320 528C205.1 528 112 434.9 112 320C112 205.1 205.1 112 320 112C434.9 112 528 205.1 528 320zM64 320C64 461.4 178.6 576 320 576C461.4 576 576 461.4 576 320C576 178.6 461.4 64 320 64C178.6 64 64 178.6 64 320zM296 184L296 320C296 328 300 335.5 306.7 340L402.7 404C413.7 411.4 428.6 408.4 436 397.3C443.4 386.2 440.4 371.4 429.3 364L344 307.2L344 184C344 170.7 333.3 160 320 160C306.7 160 296 170.7 296 184z"/></svg>');
}
.aachen-title-epreuve .container__wrapper .date-disciplines:before {
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path d="M216 64C229.3 64 240 74.7 240 88L240 128L400 128L400 88C400 74.7 410.7 64 424 64C437.3 64 448 74.7 448 88L448 128L480 128C515.3 128 544 156.7 544 192L544 480C544 515.3 515.3 544 480 544L160 544C124.7 544 96 515.3 96 480L96 192C96 156.7 124.7 128 160 128L192 128L192 88C192 74.7 202.7 64 216 64zM216 176L160 176C151.2 176 144 183.2 144 192L144 240L496 240L496 192C496 183.2 488.8 176 480 176L216 176zM144 288L144 480C144 488.8 151.2 496 160 496L480 496C488.8 496 496 488.8 496 480L496 288L144 288z"/></svg>');
}
.aachen-title-epreuve .page-header {
  padding-bottom: 9px;
  border-bottom: 1px solid #eee;
}
.aachen-title-epreuve .titre-epreuve {
  font-size: 24px;
  font-weight: 400;
  padding: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .aachen-title-epreuve .titre-epreuve {
    font-size: 1rem;
    font-weight: bolder;
  }
}
.aachen-title-epreuve .description-epreuve {
  font-size: 18px !important;
  margin-bottom: 10px !important;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .aachen-title-epreuve .description-epreuve {
    font-size: 0.88rem;
  }
}

.aachen-page-buttons-group {
  margin: 0.5rem auto;
  padding: 0 0.5rem;
  max-width: 970px;
}
.aachen-page-buttons-group .btn {
  color: #182e45;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  background-color: #fff;
  border-color: #ccc;
  height: auto;
  display: flex;
  gap: 0.3rem;
}

.aachen .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  height: auto;
  display: flex;
  gap: 0.3rem;
  transition: none;
  font-style: normal;
  font-weight: 400;
}

.aachen-title-epreuve .disciplines {
  margin-left: 0.5rem;
}

.aachen-tableau--event-date {
  width: 100%;
  box-shadow: none;
  margin: 1rem auto;
}
.aachen-tableau--event-date .btn {
  height: auto;
  flex: none;
  margin: 0;
  min-width: 0;
}
.aachen-tableau--event-date .tableau-event {
  display: grid;
  gap: 1rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .aachen-tableau--event-date .tableau-event {
    grid-template-columns: 1fr 300px;
  }
}
.aachen-tableau--event-date .tableau-event-col {
  min-height: 0;
}
@media screen and (min-width: 768px) {
  .aachen-tableau--event-date .tableau-event-col {
    flex-wrap: nowrap;
  }
}
.aachen-tableau--event-date .tableau-event-details {
  margin: 0;
}
.aachen-tableau--event-date .tableau-event-button {
  align-content: center;
  flex: none;
}

.isotope .aachen-tableau--event-date {
  padding-right: 0;
  padding-left: 0;
}

.aachen-tableau--event-date-items {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 1rem;
  padding: 0 1rem;
}

.aachen-tableau--event-date-item {
  flex: initial;
}
.aachen-tableau--event-date-item .tableau-title {
  border: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 0;
}

.aachen-tableau--event-date-filter {
  padding: 0;
}
.aachen-tableau--event-date-filter .btn-filtre {
  background-color: #FFF;
  background-size: auto;
  border: none;
  outline: solid 1px rgb(232, 232, 233);
  padding: 4px;
  transition: none;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  height: 50px;
  width: 50px;
  gap: 0;
  border-radius: 0;
  color: #9a9b9c;
}
.aachen-tableau--event-date-filter .btn-filtre .btn-filtre-date-number {
  color: #182e45;
  font-weight: 400;
  font-size: 0.9rem;
}
.aachen-tableau--event-date-filter .btn-filtre.check .btn-filtre-date-number {
  color: #FFF;
}
.aachen-tableau--event-date-filter .btn-filtre div:not(.btn-filtre-date-number) {
  font-size: 12px;
}
.aachen-tableau--event-date-filter .btn-filtre.check {
  color: #FFF;
  background-color: #182e45;
}

.aachen-tableau--event-date-buttons-group .row {
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .aachen-tableau--event-date-buttons-group .row {
    justify-content: flex-end;
  }
}

main {
  padding: 0;
}

.btn-pdf:before, .btn-pdf:after {
  display: block;
  height: 1rem;
  width: 1rem;
  background: var(--primary);
  content: "";
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
[aria-expanded=true].btn-pdf:before, [aria-expanded=true].btn-pdf:after {
  background: var(--white);
}

.aachen .show > .dropdown-toggle[aria-expanded=true] {
  color: var(--white);
}
.aachen .show > .dropdown-toggle[aria-expanded=true]:after, .aachen .show > .dropdown-toggle[aria-expanded=true]:before {
  background: var(--white);
}

.btn-pdf:after {
  position: relative;
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path d="M297.4 470.6C309.9 483.1 330.2 483.1 342.7 470.6L534.7 278.6C547.2 266.1 547.2 245.8 534.7 233.3C522.2 220.8 501.9 220.8 489.4 233.3L320 402.7L150.6 233.4C138.1 220.9 117.8 220.9 105.3 233.4C92.8 245.9 92.8 266.2 105.3 278.7L297.3 470.7z"/></svg>');
  top: -1px;
  margin-left: 0;
}

.btn-pdf:before {
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc.--><path d="M352 96C352 78.3 337.7 64 320 64C302.3 64 288 78.3 288 96L288 306.7L246.6 265.3C234.1 252.8 213.8 252.8 201.3 265.3C188.8 277.8 188.8 298.1 201.3 310.6L297.3 406.6C309.8 419.1 330.1 419.1 342.6 406.6L438.6 310.6C451.1 298.1 451.1 277.8 438.6 265.3C426.1 252.8 405.8 252.8 393.3 265.3L352 306.7L352 96zM160 384C124.7 384 96 412.7 96 448L96 480C96 515.3 124.7 544 160 544L480 544C515.3 544 544 515.3 544 480L544 448C544 412.7 515.3 384 480 384L433.1 384L376.5 440.6C345.3 471.8 294.6 471.8 263.4 440.6L206.9 384L160 384zM464 440C477.3 440 488 450.7 488 464C488 477.3 477.3 488 464 488C450.7 488 440 477.3 440 464C440 450.7 450.7 440 464 440z"/></svg>');
  top: -1px;
}

.btn-affiche-judges {
  color: var(--white);
}
.btn-affiche-judges:hover {
  color: color-mix(in srgb, currentColor, transparent 20%);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent;
  color: var(--primary);
}

.dropdown-item:hover {
  color: var(--primary);
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  background-color: var(--primary);
  border-color: var(--primary);
}

#table-rank {
  line-height: 1.5;
}
@media screen and (max-width: 369px) {
  #table-rank {
    font-size: 0.6rem;
  }
}
#table-rank .table-order,
#table-rank .table-number,
#table-rank .table-col.order-rank,
#table-rank .table-col.number,
#table-rank .table-col:has(.flag), #table-rank:has(.flag) thead .table-col:not(.font-weight-bold),
#table-rank .table-empty,
#table-rank .table-rk,
#table-rank .table-round,
#table-rank .table-jo,
#table-rank .table-flag,
#table-rank .table-pen,
#table-rank .table-time {
  padding-right: 5px;
  padding-left: 5px;
  min-width: 0;
}
#table-rank .table th,
#table-rank .table td {
  padding-right: 5px;
  padding-left: 5px;
}
#table-rank .table tbody .table-round,
#table-rank .table tbody .table-total {
  flex-direction: column;
}
#table-rank .table-round,
#table-rank .table-total {
  text-align: center;
}
@media screen and (max-width: 369px) {
  #table-rank .table .table-col {
    font-size: 0.6rem;
  }
}

.table th:has(.infos),
.table tr th .infos {
  text-align: start;
}

/*# sourceMappingURL=default.css.map */
