@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&family=Roboto+Flex:wght@200;300;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&family=Roboto+Flex:wght@200;300;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&family=Roboto+Flex:wght@200;300;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 100px;
  background: #dde1e7;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  color: rgb(16, 94, 127);
}

.container {
  border-radius: 5px;
  background: #fff;
  max-width: 1280px;
  margin: auto;
  box-shadow: 3px 3px 7px rgba(70, 70, 70, 0.12);
}

[data-feed-main-container-id=taboola-below-other-thumbnails][data-feed-container-num] {
  width: calc(100% - 330px);
}

@keyframes headDown {
  from {
    top: -900px;
  }
  to {
    top: 150px;
  }
}
@keyframes headUp {
  from {
    top: 150px;
  }
  to {
    top: -900px;
  }
}
@keyframes footerUp {
  from {
    top: 110vh;
  }
  to {
    top: 70vh;
  }
}
@keyframes footerDown {
  from {
    top: 70vh;
  }
  to {
    top: 110vh;
  }
}
/* CSS En-tête */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 100px;
  background: #dde1e7;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  color: rgb(16, 94, 127);
}

.container {
  border-radius: 5px;
  background: #fff;
  max-width: 1280px;
  margin: auto;
  box-shadow: 3px 3px 7px rgba(70, 70, 70, 0.12);
}

[data-feed-main-container-id=taboola-below-other-thumbnails][data-feed-container-num] {
  width: calc(100% - 330px);
}

@keyframes headDown {
  from {
    top: -900px;
  }
  to {
    top: 150px;
  }
}
@keyframes headUp {
  from {
    top: 150px;
  }
  to {
    top: -900px;
  }
}
@keyframes footerUp {
  from {
    top: 110vh;
  }
  to {
    top: 70vh;
  }
}
@keyframes footerDown {
  from {
    top: 70vh;
  }
  to {
    top: 110vh;
  }
}
header#top {
  background: white;
  width: 100%;
  height: 40px;
  position: fixed;
  z-index: 10000000;
  top: 22px;
  box-shadow: 0 0 7px rgba(64, 75, 85, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header#top #logo {
  margin: 0 30px;
}
header#top #logo #home {
  width: 100px;
  filter: drop-shadow(0 0 3px gray);
}
header#top #logo > a {
  position: relative;
}
header#top #logo > a:first-of-type {
  z-index: 100;
}
header#top nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
header#top nav#rs {
  display: flex;
  align-items: center;
}
header#top nav#rs a {
  margin: 0 1.5em;
}
header#top nav#rs a svg {
  margin-top: 4px;
  height: 28px;
  width: auto;
}
header#top nav#rs a svg#fb {
  fill: #3b5998;
}
header#top nav#rs a svg#insta {
  fill: #dd2a7b;
}
header#top nav#rs a svg#linkedin {
  fill: #0e76a8;
}
header#top nav#compet {
  display: flex;
  flex: 1;
  justify-content: space-around;
}
header#top nav a {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  text-decoration: none;
  color: rgb(16, 94, 127);
  text-align: center;
}
header#top nav #profil {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 3px gray);
  border: 3px solid white;
}
header #bars {
  display: none;
}
header #cross {
  display: none;
}

.menu {
  display: none;
  --front: rgb(17, 133, 171);
  --back: rgb(217, 131, 36);
  --icon: white;
  perspective: 600px;
  width: 44px;
  height: 44px;
  position: absolute;
  right: 10px;
  top: 3px;
  z-index: 2000;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.menu input {
  display: none;
}
.menu input + div span {
  --rotateY: 0deg;
  --background: var(--front);
  transform: rotateY(var(--rotateY));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--background);
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.2, 0.64, 0.48, 1.24);
}
.menu input + div span:before, .menu input + div span:after {
  --rotate: 0deg;
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  border-radius: 1px;
  top: 50%;
  left: 50%;
  background: var(--icon);
  backface-visibility: hidden;
  transform: translate(-50%, -50%) rotate(var(--rotate)) translateZ(8px);
}
.menu input + div span:first-child {
  --background: var(--back);
}
.menu input + div span:first-child:before {
  --rotate: -45deg;
}
.menu input + div span:first-child:after {
  --rotate: 45deg;
}
.menu input + div span:last-child {
  --rotateY: 180deg;
}
.menu input + div span:last-child:before {
  box-shadow: 0 -5px 0 var(--icon), 0 5px 0 var(--icon);
}
.menu input + div span:last-child:after {
  display: none;
}
.menu input:checked + div span:first-child {
  --rotateY: -180deg;
}
.menu input:checked + div span:last-child {
  --rotateY: 0deg;
}

@media screen and (max-width: 1366px) {
  #MTGLDBATF {
    position: sticky;
    top: 65px !important;
  }
  header#top {
    height: 35px;
    top: 30px;
  }
  header#top #logo {
    margin: 0 2vw;
  }
  header#top #logo img {
    width: 80px;
  }
  header#top nav#rs {
    height: 30px;
    flex: 2;
  }
  header#top nav#rs a {
    font-size: 18px;
    margin: 0;
  }
  header#top nav#compet {
    flex: 4;
  }
}
@media screen and (max-width: 990px) {
  .menu {
    display: block;
  }
  header#top {
    height: 50px;
    top: 12px;
    width: 100%;
  }
  header#top #logo {
    padding: 5px 0;
    order: -1;
  }
  header#top #logo img {
    margin-top: 7px;
    width: 65px;
    filter: drop-shadow(1px 1px 2px gray);
  }
  header#top nav#rs {
    height: 70px;
    width: 100vw;
    top: 110vh;
    justify-content: space-around;
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    flex: 0;
  }
  header#top nav#rs.piedUp {
    animation: footerUp 0.7s forwards;
  }
  header#top nav#rs.piedDown {
    animation: footerDown 0.5s forwards;
  }
  header#top nav#rs a {
    font-size: 30px;
    color: white;
  }
  header#top nav#rs a svg {
    margin-top: 5px;
    height: 40px;
    width: auto;
  }
  header#top nav#rs a svg#fb {
    fill: white;
  }
  header#top nav#rs a svg#insta {
    fill: white;
  }
  header#top nav#rs a svg#linkedin {
    fill: white;
  }
  header#top nav#compet {
    flex-direction: column;
    position: absolute;
    z-index: 100;
    width: 60vw;
    left: 20vw;
    top: -900px;
  }
  header#top nav#compet a {
    background: rgba(0, 0, 0, 0.85);
    padding: 10px 0;
    width: 100%;
    display: block;
    color: white;
    transition: all 0.5s;
    letter-spacing: 0.25em;
    font-size: 20px;
  }
  header#top nav#compet a:hover {
    color: rgb(181, 190, 15);
    text-shadow: none;
  }
  header#top nav#compet.teteUp {
    animation: headDown 0.5s ease-out forwards;
  }
  header#top nav#compet.teteDown {
    animation: headUp 0.9s forwards;
  }
  header :root {
    --bar-bg: #212529;
  }
}
/* desktop-rectangle-btf*/
@media (min-width: 992px) {
  .r89-desktop-rectangle-btf {
    min-height: 150px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* mobile-rectangle-infinite */
@media (max-width: 991px) {
  .r89-mobile-rectangle-infinite {
    min-height: 250px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* desktop-billboard-atf */
@media (min-width: 992px) {
  .r89-desktop-billboard-atf {
    min-height: 250px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* mobile-billboard-top */
@media (max-width: 991px) {
  .r89-mobile-billboard-top {
    min-height: 250px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* mobile-rectangle-mid */
@media (max-width: 991px) {
  .r89-mobile-rectangle-mid {
    min-height: 250px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* mobile-rectangle-mid-300x600 */
@media (max-width: 991px) {
  .r89-Mobile-Rectangle-Mid-300x600 {
    min-height: 600px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* CSS Résultats */
h1 {
  background: #f0f7fa;
  padding: 5px;
  text-align: center;
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

nav#menuRes {
  width: 80vw;
  margin: auto;
}
nav#menuRes a img {
  width: 100px;
  margin: 10px;
  /* Personnaliser l'affichage de l'attribut alt quand l'image ne se charge pas */
  /* Afficher le texte alt personnalisé */
}
nav#menuRes a img:not([src]), nav#menuRes a img[src=""], nav#menuRes a img[src*=undefined] {
  /* Masquer l'image cassée par défaut */
  display: none;
}
nav#menuRes a img:not([src])::after, nav#menuRes a img[src=""]::after, nav#menuRes a img[src*=undefined]::after {
  content: attr(alt);
  display: block;
  width: 100px;
  height: 100px;
  margin: 10px;
  background: #f0f0f0;
  border: 2px dashed #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
  text-align: center;
  padding: 5px;
  box-sizing: border-box;
}

select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  padding: 2px 1em;
  margin-top: -5px;
  line-height: 20px;
  border: 0px solid rgb(16, 94, 127);
  background: transparent;
  color: white;
}

@supports (pointer-events: none) and ((-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)) {
  .custom-dropdown {
    position: relative;
    display: inline-block;
    vertical-align: middle;
  }
  .custom-dropdown__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .custom-dropdown::before,
  .custom-dropdown::after {
    content: "";
    position: absolute;
    pointer-events: none;
  }
  .custom-dropdown::after { /*  Custom dropdown arrow */
    content: "▼";
    height: 1em;
    font-size: 0.5em;
    line-height: 1;
    right: 0;
    top: 60%;
    margin-top: -0.5em;
    background: none;
  }
  .custom-dropdown::before { /*  Custom dropdown arrow cover */
    width: 2em;
    right: 0;
    top: 0;
    bottom: 0;
  }
  /* White dropdown style */
  .custom-dropdown--white::before {
    top: 0.75em;
    background: none;
  }
  .custom-dropdown--white::after {
    color: white;
  }
  /* FF only temp fix */
  @-moz-document url-prefix() {
    .custom-dropdown__select {
      padding-right: 0.9em;
    }
    .custom-dropdown--large .custom-dropdown__select {
      padding-right: 1.3em;
    }
    .custom-dropdown--small .custom-dropdown__select {
      padding-right: 0.5em;
    }
  }
}
#resultats {
  --aside:320px;
  font-family: "Roboto Flex", sans-serif;
}
#resultats .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
#resultats .container h1 {
  width: 100%;
  margin-bottom: 10px;
  position: sticky;
  z-index: 20;
  top: 62px;
  height: 60px;
}
#resultats .container h1 input[type=time] {
  width: 6vw;
  min-width: 100px;
  padding: 5px;
  font-size: 1.4vw;
  text-align: center;
}
#resultats .container h1 .back {
  position: absolute;
  left: 5px;
  top: 10px;
  color: rgb(64, 75, 85);
  text-decoration: none;
}
#resultats .container h1 .back img {
  height: 30px;
}
#resultats .container .listTeams {
  width: calc(100% - var(--aside));
}
#resultats .container .listTeams .poule {
  padding: 10px;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}
#resultats .container .listTeams .poule h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  font-size: 25px;
  padding: 5px;
  border-top: 1px solid rgba(64, 75, 85, 0.3);
  padding-bottom: 5px;
  position: sticky;
  top: 122px;
  background: white;
}
#resultats .container .listTeams .poule h2 a {
  margin: 0;
  font-size: 20px;
  flex-basis: 200px;
  background: rgb(16, 94, 127);
  transition: all 0.5s;
  color: white;
}
#resultats .container .listTeams .poule h2 a:hover {
  background: rgb(64, 75, 85);
}
#resultats .container .listTeams .poule a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  text-decoration: none;
  background: rgba(64, 75, 85, 0.1);
  border-radius: 3px;
  padding: 5px;
  margin: 5px;
  color: rgb(64, 75, 85);
  font-family: "Oswald", sans-serif;
  transition: all 0.5s;
  flex-basis: calc(100% / var(--img) - 10px);
  text-align: center;
}
#resultats .container .listTeams .poule a img {
  width: 100%;
  max-width: 120px;
}
#resultats .container .listTeams .poule a:hover {
  background: rgba(16, 94, 127, 0.5);
}
#resultats .container #teamHeader {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
#resultats .container #teamHeader figure img {
  height: 200px;
}
#resultats .container #teamHeader .division {
  margin-right: 1em;
}
#resultats .container #teamHeader .division img {
  height: 200px;
}
#resultats .container #teamHeader div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}
#resultats .container #teamHeader div p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  min-width: 400px;
  padding: 2px 0;
}
#resultats .container #teamHeader div p big {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-align: center;
  line-height: 20px;
  background: rgb(64, 75, 85);
  color: white;
  min-width: 150px;
  border-radius: 5px;
}
#resultats .container #teamHeader div p big small {
  font-weight: 300;
  display: block;
  font-size: 14px;
}
#resultats .container #teamDatas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: calc(100% - var(--aside));
}
#resultats .container #teamDatas h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2em;
  width: 100%;
  background: #105e7f;
  color: white;
  text-align: center;
  position: sticky;
  top: 122px;
  z-index: 10;
  padding: 0 10px 5px 10px;
}
#resultats .container #teamDatas h2 select {
  font-size: 1em;
  line-height: 100%;
}
#resultats .container #teamDatas h2 a {
  color: rgb(181, 190, 15);
}
#resultats .container #teamDatas #health {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
#resultats .container #teamDatas #health span {
  --taille:30px;
  width: var(--taille);
  height: var(--taille);
  font-size: var(--taille);
  padding: 0;
  margin: 10px 0;
  display: inline-block;
}
#resultats .container #teamDatas #avg {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
#resultats .container #teamDatas #avg div {
  width: calc(25% - 20px);
  margin: 10px;
  background: rgba(64, 75, 85, 0.05);
  border-radius: 5px;
  text-align: center;
  padding: 5px;
}
#resultats .container #teamDatas #avg div h3 {
  font-size: 18px;
}
#resultats .container #teamDatas #avg div p {
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 40px;
}
#resultats .container #teamDatas section {
  width: 100%;
}
#resultats .container #teamDatas section a {
  text-decoration: none;
}
#resultats .container #teamDatas section:nth-of-type(2) h2 {
  background: rgb(181, 190, 15);
}
#resultats .container #teamDatas section:nth-of-type(n + 3) h2 {
  background: rgb(217, 131, 36);
}
#resultats .container #teamDatas section p.teamGames {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 5px 0;
  width: 100%;
}
#resultats .container #teamDatas section p.teamGames * {
  line-height: 40px;
  display: inline-block;
  height: 41px;
}
#resultats .container #teamDatas section p.teamGames time {
  color: rgb(64, 75, 85);
  font-family: "Oswald", sans-serif;
}
#resultats .container #teamDatas section p.teamGames time.date {
  text-align: left;
  padding-left: 7px;
  width: 100%;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
  border-bottom: 1px solid #efefef;
}
#resultats .container #teamDatas section p.teamGames span {
  font-family: "Oswald", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: calc(50% - 5px);
  background: rgba(64, 75, 85, 0.1);
  overflow: hidden;
}
#resultats .container #teamDatas section p.teamGames span a {
  color: rgb(16, 94, 127);
  display: block;
  transition: all 0.5s;
}
#resultats .container #teamDatas section p.teamGames span a:hover {
  background: rgba(245, 156, 169, 0.4);
  margin-left: -1em;
  padding-left: 1em;
  margin-right: -1em;
  padding-right: 1em;
  color: rgb(64, 75, 85);
}
#resultats .container #teamDatas section p.teamGames span.eqL {
  border-top-right-radius: 2em;
  border-bottom-right-radius: 2em;
  margin-right: 5px;
}
#resultats .container #teamDatas section p.teamGames span.eqL strong {
  text-align: right;
}
#resultats .container #teamDatas section p.teamGames span.eqR {
  border-top-left-radius: 2em;
  border-bottom-left-radius: 2em;
  margin-left: 5px;
}
#resultats .container #teamDatas section p.teamGames span strong {
  flex: 10;
  font-weight: 300;
  font-size: 17px;
  padding: 0 5px;
}
#resultats .container #teamDatas section p.teamGames span strong img {
  height: 35px;
  vertical-align: middle;
  margin: -2px 5px 0 5px;
}
#resultats .container #teamDatas section p.teamGames span small {
  flex: 1;
  background: rgba(64, 75, 85, 0.05);
  text-align: center;
}
#resultats .container #teamDatas section p.teamGames span big {
  flex: 2;
  background: rgba(64, 75, 85, 0.1);
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
#resultats .container #teamDatas section p.teamGames span big.bo {
  background: rgba(181, 190, 15, 0.5);
}
#resultats .container #teamDatas section p.teamCalendar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 5px 0;
  width: 100%;
}
#resultats .container #teamDatas section p.teamCalendar * {
  line-height: 40px;
  height: 40px;
  display: inline-block;
}
#resultats .container #teamDatas section p.teamCalendar time {
  color: rgb(64, 75, 85);
  font-family: "Oswald", sans-serif;
  font-size: 20px;
}
#resultats .container #teamDatas section p.teamCalendar time.date {
  text-align: left;
  padding-left: 7px;
  width: 100%;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
  border-bottom: 1px solid #efefef;
}
#resultats .container #teamDatas section p.teamCalendar time.heure {
  background: rgb(64, 75, 85);
  color: white;
  text-align: center;
  width: 50px;
  font-size: 16px;
  padding: 0 5px;
  border-radius: 5px;
}
#resultats .container #teamDatas section p.teamCalendar span {
  font-family: "Oswald", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: calc((100% - 50px) / 2 - 5px);
  background: rgba(64, 75, 85, 0.1);
  overflow: hidden;
}
#resultats .container #teamDatas section p.teamCalendar span a {
  color: rgb(16, 94, 127);
}
#resultats .container #teamDatas section p.teamCalendar span.eqL {
  border-top-right-radius: 2em;
  border-bottom-right-radius: 2em;
  margin-right: 5px;
}
#resultats .container #teamDatas section p.teamCalendar span.eqL strong {
  text-align: right;
}
#resultats .container #teamDatas section p.teamCalendar span.eqR {
  border-top-left-radius: 2em;
  border-bottom-left-radius: 2em;
  margin-left: 5px;
}
#resultats .container #teamDatas section p.teamCalendar span strong {
  flex: 10;
  padding: 0 10px;
  font-weight: 300;
  font-size: 18px;
}
#resultats .container #teamDatas section p.teamCalendar span strong img {
  height: 35px;
  vertical-align: middle;
  margin: -2px 5px 0 5px;
}
#resultats .container #teamDatas section.teamStandings:nth-of-type(2) h2 {
  background: rgb(181, 190, 15);
}
#resultats .container #teamDatas section.teamStandings:nth-of-type(3) h2 {
  background: rgb(217, 131, 36);
}
#resultats .container #teamDatas section.teamStandings .standingRow {
  position: relative;
}
#resultats .container #teamDatas section.teamStandings .standingRow .standing {
  width: 100%;
  border-collapse: collapse;
  font-family: "Oswald", sans-serif;
}
#resultats .container #teamDatas section.teamStandings .standingRow .standing .red {
  background: rgba(210, 0, 0, 0.2);
}
#resultats .container #teamDatas section.teamStandings .standingRow .standing tr {
  border-bottom: 1px solid rgba(64, 75, 85, 0.2);
}
#resultats .container #teamDatas section.teamStandings .standingRow .standing tr > * {
  text-align: center;
  padding: 5px 0;
}
#resultats .container #teamDatas section.teamStandings .standingRow .standing tr:nth-of-type(1) {
  position: sticky;
  top: 163px;
}
#resultats .container #teamDatas section.teamStandings .standingRow .standing tr th {
  background: rgba(64, 75, 85, 0.95);
  color: white;
  font-weight: 100;
}
#resultats .container #teamDatas section.teamStandings .standingRow .standing tr td {
  vertical-align: middle;
}
#resultats .container #teamDatas section.teamStandings .standingRow .standing tr td img {
  width: 40px;
  margin: 0 10px;
}
#resultats .container #teamDatas section.teamStandings .standingRow .standing tr td.first {
  background: rgba(181, 190, 15, 0.3);
}
#resultats .container #teamDatas section.teamStandings .standingRow .standing tr td.second {
  background: rgba(245, 156, 169, 0.3);
}
#resultats .container #teamDatas section.teamStandings .standingRow .standing tr td.third {
  background: rgba(16, 94, 127, 0.3);
}
#resultats .container #teamDatas section.teamStandings .standingRow .standing tr td.last {
  background: rgba(64, 75, 85, 0.4);
}
#resultats .container #teamDatas section.teamStandings .standingRow .standing tr td:nth-of-type(2) {
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#resultats .container #teamDatas section.teamStandings .standingRow .standing tr td:nth-of-type(3) {
  font-weight: 500;
  font-size: 18px;
  background: rgba(217, 131, 36, 0.2);
}
#resultats .container article {
  width: 100%;
}
#resultats .container article.forumView a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  height: 40px;
  margin: 5px 0;
  width: 100%;
  font-family: "Oswald", sans-serif;
  border-top-right-radius: 2em;
  border-bottom-right-radius: 2em;
  margin-bottom: 5px;
  background: rgba(64, 75, 85, 0.1);
  text-align: center;
  font-size: 20px;
  text-decoration: none;
  color: rgb(64, 75, 85);
  font-weight: 300;
  transition: all 0.5s;
}
#resultats .container article.forumView a:hover {
  background: rgba(245, 156, 169, 0.4);
  color: rgb(64, 75, 85);
  width: 97%;
}
#resultats .container article.forumView a * {
  line-height: 40px;
  display: inline-block;
}
#resultats .container article.forumView a time {
  background: rgb(64, 75, 85);
  color: white;
  text-align: center;
  width: 200px;
  font-size: 14px;
  font-family: "Roboto Flex", sans-serif;
}
#resultats .container article.forumView a span {
  flex: 1;
}
#resultats .container aside {
  width: var(--aside);
}
#resultats aside {
  margin-top: 48px;
  padding-left: 3px;
}
#resultats aside h3 {
  background: rgb(245, 156, 169);
  color: white;
  padding: 4px 0;
  text-align: center;
  width: 100%;
  border-top-left-radius: 2em;
  border-bottom-left-radius: 2em;
}
#resultats aside h3:nth-of-type(2) {
  margin-top: 2em;
}
#resultats aside .otherTeams {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
#resultats aside .otherTeams a {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  text-decoration: none;
  background: rgba(64, 75, 85, 0.1);
  border-radius: 3px;
  padding: 5px;
  margin: 5px;
  color: #404b55;
  font-family: "Oswald", sans-serif;
  transition: all 0.5s;
  flex-basis: 40%;
  text-align: center;
  font-size: 13px;
}
#resultats aside .otherTeams a.pouleOff {
  background: rgb(64, 75, 85);
  color: white;
  font-size: 20px;
}
#resultats aside .otherTeams a.pouleOff:hover {
  background: rgb(64, 75, 85);
  color: white;
}
#resultats aside .otherTeams a:hover {
  background: rgba(16, 94, 127, 0.5);
}
#resultats aside .otherTeams a.pouleOn {
  font-size: 20px;
}
#resultats aside .otherTeams a img {
  width: 100%;
}

@media screen and (orientation: portrait) and (max-width: 990px) {
  #resultats {
    --aside:100%;
  }
  #resultats .reduce {
    display: none;
  }
  #resultats .container h1 {
    text-align: right;
    font-size: 20px;
    line-height: 40px;
  }
  #resultats .container h1 .back {
    top: 10px;
  }
  #resultats .container .listTeams {
    width: 100%;
  }
  #resultats .container .listTeams .poule h2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    font-size: 35px;
  }
  #resultats .container .listTeams .poule h2 a {
    flex-basis: 90%;
    font-size: 20px;
    margin: 5px 0;
  }
  #resultats .container .listTeams .poule a {
    flex-basis: 30%;
  }
  #resultats .container #teamHeader {
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
  }
  #resultats .container #teamHeader figure {
    align-self: flex-start;
  }
  #resultats .container #teamHeader figure img {
    height: 120px;
  }
  #resultats .container #teamHeader .division {
    position: absolute;
    right: 5px;
    top: 10px;
  }
  #resultats .container #teamHeader .division img {
    height: 100px;
  }
  #resultats .container #teamHeader div {
    max-width: 90%;
    margin: auto;
  }
  #resultats .container #teamHeader div p {
    flex-direction: column;
    text-align: center;
    font-size: 20px;
    min-width: auto;
    width: 100%;
  }
  #resultats .container #teamHeader div p big {
    min-width: 200px;
    line-height: 30px;
    padding: 0 5px;
  }
  #resultats .container #teamHeader div p big small {
    font-size: 20px;
  }
  #resultats .container #teamDatas {
    width: 100%;
  }
  #resultats .container #teamDatas h2 {
    top: 120px;
  }
  #resultats .container #teamDatas #health span {
    display: none;
  }
  #resultats .container #teamDatas #health span.show {
    display: block;
  }
  #resultats .container #teamDatas section {
    width: 100%;
  }
  #resultats .container #teamDatas section p {
    margin-bottom: 10px;
  }
  #resultats .container #teamDatas section p.teamGames span {
    width: 99%;
  }
  #resultats .container #teamDatas section p.teamGames span img {
    margin: 0 1em;
  }
  #resultats .container #teamDatas section p.teamGames span.eqL {
    border-bottom-right-radius: 0;
    margin-left: 0;
    margin-bottom: 1px;
  }
  #resultats .container #teamDatas section p.teamGames span.eqR {
    border-top-right-radius: 0;
    border-bottom-right-radius: 2em;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: 0;
    flex-direction: row-reverse;
  }
  #resultats .container #teamDatas section p.teamGames span.eqR strong {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  #resultats .container #teamDatas section p.teamCalendar {
    position: relative;
  }
  #resultats .container #teamDatas section p.teamCalendar time {
    color: rgb(64, 75, 85);
    font-family: "Oswald", sans-serif;
    font-size: 20px;
  }
  #resultats .container #teamDatas section p.teamCalendar time.heure {
    background: rgba(64, 75, 85, 0.2);
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    color: rgb(64, 75, 85);
    width: 60px;
    font-size: 16px;
    border-radius: 0;
    border-top-right-radius: 2em;
    border-bottom-right-radius: 2em;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 81px;
    line-height: 80px;
  }
  #resultats .container #teamDatas section p.teamCalendar span {
    width: calc(100% - 60px);
  }
  #resultats .container #teamDatas section p.teamCalendar span img {
    margin: 0 1em;
  }
  #resultats .container #teamDatas section p.teamCalendar span.eqL {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-left: 0;
    margin-bottom: 1px;
  }
  #resultats .container #teamDatas section p.teamCalendar span.eqR {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: 0;
    flex-direction: row-reverse;
  }
  #resultats .container #teamDatas section p.teamCalendar span.eqR strong {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  #resultats .container #teamDatas section.teamStandings .standingRow .standing .stats {
    display: none;
  }
  #resultats .container #teamDatas section.teamStandings .standingRow .standing tr td {
    padding: 5px;
  }
  #resultats .container #teamDatas section.teamStandings .standingRow .standing tr td img {
    margin: 0 5px;
    width: 30px;
  }
  #resultats .container #teamDatas #avg div {
    width: calc(40% - 10px);
  }
  #resultats .container article.forumView a {
    flex-direction: column;
    border-radius: 0 !important;
    height: auto;
  }
  #resultats .container article.forumView a:hover {
    width: 100%;
  }
  #resultats .container article.forumView a time {
    background: transparent;
    color: rgb(16, 94, 127);
    font-size: 20px;
    width: 100%;
    text-transform: capitalize;
    font-family: "Oswald", sans-serif;
  }
  #resultats .container aside {
    width: 100%;
  }
  #resultats aside .otherTeams a {
    flex-direction: column;
    align-items: center;
    font-size: 18px;
  }
  #resultats aside .otherTeams a img {
    max-width: 150px;
  }
}
/* CSS Pied de page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 100px;
  background: #dde1e7;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  color: rgb(16, 94, 127);
}

.container {
  border-radius: 5px;
  background: #fff;
  max-width: 1280px;
  margin: auto;
  box-shadow: 3px 3px 7px rgba(70, 70, 70, 0.12);
}

[data-feed-main-container-id=taboola-below-other-thumbnails][data-feed-container-num] {
  width: calc(100% - 330px);
}

@keyframes headDown {
  from {
    top: -900px;
  }
  to {
    top: 150px;
  }
}
@keyframes headUp {
  from {
    top: 150px;
  }
  to {
    top: -900px;
  }
}
@keyframes footerUp {
  from {
    top: 110vh;
  }
  to {
    top: 70vh;
  }
}
@keyframes footerDown {
  from {
    top: 70vh;
  }
  to {
    top: 110vh;
  }
}
#taboola-below-other-thumbnails {
  padding: 20px;
}

footer {
  font-family: "Oswald", sans-serif;
}
footer#main {
  width: 1280px;
  margin: 0 auto;
}
footer.main {
  padding: 3vw 0;
  background: rgb(64, 75, 85);
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}
footer.main nav {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
}
footer.main nav h3 {
  text-transform: uppercase;
  color: rgb(181, 190, 15);
  font-size: 1.1em;
  font-weight: normal;
  margin: 0;
}
footer.main nav a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.4s ease-in;
  text-decoration: none;
  margin: 5px 0;
}
footer.main nav a:hover {
  color: rgb(245, 156, 169);
}
footer.main nav.social {
  margin: 0 0 0 0;
  display: flex;
  flex-direction: column;
}
footer.main nav.social a {
  margin: 0 0 0 5px;
  color: white;
  font-size: 2em;
  text-decoration: none;
}
footer.main time#footerDate {
  clear: both;
  color: #aaa;
  width: 30%;
  margin-left: 69%;
  font-size: 0.8em;
  text-align: right;
}
footer .mentions {
  padding-top: 5px;
}
footer .mentions h2 {
  text-transform: uppercase;
  margin-left: 0;
  padding: 0 10px;
  text-align: left;
  background: #f1f3f3;
  border-radius: 5px;
  margin: 10px;
}
footer .mentions h3 {
  margin: 20px 10px 0 10px;
  border-bottom: 1px solid #252e2e;
}
footer .mentions p {
  margin: 5px 0 5px 20px;
  font-size: 0.8em;
}
footer .mentions a {
  color: #cc0000;
}

@media screen and (max-width: 1100px) {
  footer.main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer.main nav {
    margin-bottom: 1em;
    font-size: 1.3em;
    align-items: center;
  }
  footer.main nav a {
    margin: 0.5em 0;
  }
  footer.main nav.social {
    width: 100vw;
    flex-direction: row;
    justify-content: space-around;
    font-size: 7vw;
  }
  footer.main time#footerDate {
    width: 100%;
    margin-left: 0;
    margin-top: 2em;
    font-size: 1em;
    text-align: center;
  }
}/*# sourceMappingURL=2023results.css.map */