* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
* a:visited {
  text-decoration: none;
}

/* Landscape phones and down */
/*@mixin phone {
   @media (max-width: 480px) {
        @content;
   }
}*/
/* Landscape phone to portrait tablet */
/* Portrait tablet to landscape and desktop */
/* Large desktop */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text);
  font-size: 1.6rem;
}

ul {
  list-style: none;
}

a {
  color: white;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

H2 {
  text-align: center;
  color: white;
  margin-left: auto;
  margin-top: 200px;
}

img {
  max-width: 100%;
}

.center_v {
  align-items: center;
}

.center_h {
  justify-content: space-evenly;
}

.group_v {
  align-items: flex-start;
}

.size1 {
  height: 30px;
  min-height: 30px;
  width: 100px;
  min-width: 100px;
  text-align: center;
}

.size2 {
  height: 50px;
  min-height: 50px;
}

.size3 {
  height: 50px;
  min-height: 50px;
  width: 250px;
}

.texteindex1 {
  color: white;
  text-align: left;
  margin-top: 30vh;
  margin-left: 5vw;
  padding-bottom: 5px;
}

.verybig {
  font-size: 5vw;
}
@media (min-width: 20px) and (max-width: 767px) {
  .verybig {
    font-size: 2em;
  }
}

.big {
  font-size: 2vw;
}
@media (min-width: 20px) and (max-width: 767px) {
  .big {
    font-size: 2em;
  }
}

.btn {
  display: flex;
  background: rgb(0, 0, 39);
  color: white;
  text-align: center;
  border-top: 2px solid #242424;
  border-bottom: 2px solid #242424;
}
.btn-danger {
  background: orange;
}
.btn:hover {
  opacity: 0.8;
}

/* Landscape phones and down */
/*@mixin phone {
   @media (max-width: 480px) {
        @content;
   }
}*/
/* Landscape phone to portrait tablet */
/* Portrait tablet to landscape and desktop */
/* Large desktop */
.invisible {
  display: none;
}

.visible {
  display: flex;
  flex-direction: column;
  opacity: 0.9;
}

.container_general {
  display: flex;
  width: fit-content;
  flex-direction: row;
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general {
    flex-direction: column;
  }
}
.container_general .menu {
  position: fixed;
  top: 0;
  width: 250px;
  height: auto;
  background: rgb(0, 0, 39);
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .menu {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 50px;
  }
}
.container_general .menu .title {
  display: none;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: var(--title_height);
  width: 250px;
  border-bottom: 2px, solid, rgb(56, 56, 56);
  background: rgb(0, 0, 39);
}
.container_general .menu .title a {
  color: white;
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .menu .title {
    display: flex;
    height: 50px;
    min-height: 50px;
    width: 100vw;
    flex-direction: row;
    justify-content: flex-start;
  }
}
.container_general .menu .title .burger {
  display: none;
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .menu .title .burger {
    display: flex;
    flex-direction: row;
    margin-right: 100px;
  }
  .container_general .menu .title .burger i {
    z-index: 2;
    font-size: 4rem;
    color: white;
    padding-top: 0px;
  }
}
.container_general .menu header {
  height: calc(100vh - var(--title_height));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .menu header {
    width: 100px;
    min-width: 100px;
    height: 100vh;
    min-height: 100vh;
  }
}
.container_general .menu header .navbar {
  background: rgb(0, 0, 39);
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .menu header .navbar {
    display: none;
  }
}
@media (min-width: 980px) {
  .container_general .menu header .mini-navbar {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .container_general .menu header .mini-navbar {
    display: none;
  }
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .menu header .mini-navbar {
    flex-direction: column;
    z-index: 1;
    box-shadow: 8px;
    width: 100px;
    min-width: 100px;
  }
}
.container_general .main {
  display: flex;
  flex: auto;
  flex-direction: column;
  background: green;
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .main {
    flex-direction: column;
    min-height: 100vh;
    min-width: 100vw;
  }
}
.container_general .main .presentation {
  flex-basis: 100vh;
  background-image: url(../img/Apex_1920_A.jpg);
}
.container_general .main .presentation p {
  margin: 100px 300px;
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .main .presentation p {
    margin: 80px 50px;
    text-align: justify;
  }
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .main .presentation {
    min-width: 100vw;
    width: 100vw;
  }
}
.container_general .main .aside {
  width: 100vw;
  height: 100vh;
  background-image: url(../img/Fond_vitesse.jpg);
  background-size: 100vw;
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .main .aside {
    min-width: 100vw;
    width: 100vw;
    background-size: cover;
  }
}
.container_general .main .aside .encart_sommaire {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  column-gap: 5px;
  justify-items: center;
  justify-content: center;
  margin: 50px auto;
  padding: 2em;
  width: 60%;
  height: 200px;
  min-height: 200px;
  background-color: orange;
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .main .aside .encart_sommaire {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 80%;
    height: auto;
  }
}
.container_general .main .aside .encart_sommaire a {
  padding-left: 5px;
}
.container_general .main .aside .encart_sommaire select {
  width: 300px;
  background-color: rgb(255, 210, 127);
  border-radius: 5px;
  margin-bottom: 5px;
}
.container_general .main .aside .encart_sommaire input {
  border-radius: 5px;
  margin-bottom: 5px;
  height: 40px;
  width: 80px;
  margin: 10px 20px 10px 0px;
}
.container_general .main .wrapperchronos {
  flex-basis: 100vh;
  width: calc(100vw - 250px - 17px);
  height: calc(100vh - 70px);
  margin-left: 250px;
  background-color: rgb(44, 44, 44);
  border: 1px solid #a8a8a8;
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .main .wrapperchronos {
    width: 100vw;
    min-width: 100vw;
    margin-left: 0;
    height: 60%;
    margin-top: 50px;
  }
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .main .wrapperchronos #graphique {
    height: 60%;
  }
}
.container_general .main .wrapperstandings {
  display: flex;
  flex-direction: row;
  flex-basis: calc 380px;
  width: calc(100vw - 207px - 17px);
  height: calc(100vh - 30px);
  margin-left: 207px;
  background-color: rgb(44, 44, 44);
  border: 1px solid #a8a8a8;
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .main .wrapperstandings {
    flex-direction: column;
    min-width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    min-height: 50vh;
    height: auto;
  }
}
.container_general .main .wrapperstandings .standingslist {
  padding: 10px;
  margin-top: 70px;
  margin-left: 100px;
  background-color: #645c5c;
  color: white;
  height: 90%;
  min-height: 90%;
  border-radius: 5px;
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .main .wrapperstandings .standingslist {
    width: calc(100vw - 207px - 17px);
    min-height: 80vh;
    height: auto;
  }
}
.container_general .main .wrapperstandings .standingslist td {
  padding: 10px;
}
.container_general .main .wrapperstandings .standingschart {
  flex-grow: 3;
  padding: 5px;
  margin: 70px 20px;
  background-color: #645c5c;
  height: 90%;
  min-height: 90%;
  width: 170px;
  border-radius: 5px;
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .main .wrapperstandings .standingschart {
    width: 100%;
    min-width: 100%;
    overflow: scroll;
    min-height: 80vh;
    height: auto;
    margin-left: 100px;
  }
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .main .wrapperstandings .standingschart #graphique {
    height: 800px;
    overflow: scroll;
  }
}
.container_general .main .footer {
  background: orange;
  min-height: 50px;
  height: 50px;
}
.container_general .main .footer:hover {
  background: white;
  min-height: 200px;
}
@media (min-width: 20px) and (max-width: 767px) {
  .container_general .main .footer {
    min-width: 100vw;
    width: 100vw;
    height: 150px;
    min-height: 150px;
  }
}

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