@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800&display=swap");
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(101%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(101%);
  }
}
@keyframes slideOutBot {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateY(101%);
  }
}
* {
  scroll-behavior: smooth;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::selection {
  background-color: #03dac6;
}

a {
  text-decoration: none;
}

body {
  position: relative;
  min-width: 310px;
  cursor: default;
  font-family: Helvetica, sans-serif;
  background-color: #f1f1f1;
}

.none {
  display: none !important;
}

.SlideOutBot {
  animation: slideOutBot 0.8s linear;
  -webkit-animation-fill-mode: forwards;
}

.greyed::after {
  content: "";
  position: absolute;
  transform: translateY(-100%);
  z-index: 9999;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  background: rgba(142, 142, 142, 0.112);
}

.nav {
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  max-width: 800px;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transform: translateX(101%);
}
@media screen and (max-width: 1000px) {
  .nav {
    transition: 0.3s cubic-bezier(0.08, 0.56, 0.42, 0.96), height 0s;
  }
}
@media screen and (min-width: 1001px) {
  .nav {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    height: auto;
    position: static;
    transform: translateX(0);
  }
}
.nav__links {
  margin: 1rem auto 4rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
}
@media screen and (min-width: 1001px) {
  .nav__links {
    margin: 0 auto;
    font-size: 1em;
    flex-direction: row;
  }
}
.nav__links-list {
  margin: 3rem auto 0;
  width: 60%;
  list-style: none;
  display: flex;
  flex-direction: column;
  font-size: 1.3em;
  gap: 1rem;
}
@media screen and (min-width: 1001px) {
  .nav__links-list {
    margin: 0.5rem 2rem 0.5rem 0;
    width: 100%;
    flex-direction: row;
  }
}
.nav__links-list li {
  mask-image: radial-gradient(white, black);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  position: relative;
  overflow: hidden;
  height: 3.8rem;
  min-height: 3.8rem;
  transition: background 0.3s ease;
  border-radius: 15px;
}
.nav__links-list li::after {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2em;
  background-color: #03dac6;
  transition: opacity 300ms, transform 300ms;
  position: absolute;
  transform: translate3d(-102%, 0, 0);
}
.nav__links-list li:hover::after,
.nav__links-list li :focus::after {
  transform: translate3d(0, 0, 0);
}
.nav__links-list li:hover {
  background-color: #51d7ca36;
}
.nav__links-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 1001px) {
  .nav__links-list li a {
    padding: 0;
    justify-content: center;
    color: black;
  }
}
@media screen and (min-width: 1001px) {
  .nav__links-list li {
    width: 100%;
  }
}
@media screen and (min-width: 1001px) {
  .nav__links-list li {
    height: 4rem;
  }
}
.nav__links-list .active-page {
  background-color: #51d7ca36;
}
@media screen and (max-width: 1000px) {
  .nav__links-list .active-page {
    color: #03dac6;
  }
}
.nav__links-list .active-page::after {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2em;
  background-color: #03dac6;
  transition: opacity 300ms, transform 300ms;
  position: absolute;
  transform: translate3d(0, 0, 0);
}
.nav__links-list .nav-img {
  height: 64px;
  padding-left: 1rem;
  padding-right: 15rem;
}
@media screen and (max-width: 1000px) {
  .nav__links-list .nav-img {
    display: none;
  }
}
.nav__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 100vh;
}
.nav__footer-socials {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.nav__footer-socials a {
  font-size: 2.8em;
  color: #fff;
  transition: color 0.3s ease;
}
.nav__footer-socials a:hover {
  color: #03dac6;
}
.nav__footer-socials #phone-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4em;
  padding: 0.5rem;
  border-radius: 100%;
  border: 4px solid #fff;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.nav__footer-socials #phone-icon:hover {
  border-color: #03dac6;
}
.nav__footer-logo {
  width: 120px;
}
.nav__footer-logo img {
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1001px) {
  .nav__footer {
    display: none;
  }
}

.active {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100vh;
  max-width: 380px;
  width: 100%;
  background-color: #2c2c2c;
  display: flex;
  justify-content: flex-start;
  transform: translateX(0);
}
@media screen and (min-width: 1001px) {
  .active {
    display: none;
  }
}

.close-div {
  position: fixed;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
}

.closed-div {
  display: none;
}

header {
  border-bottom: 1px solid #dad8d2;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 15px;
  border-top: 3px solid #03dac6;
  position: sticky;
  top: 0;
  z-index: 99999;
}
header .confirmation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: #73f26f;
  padding: 1rem;
}
header .confirmation__text {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  text-shadow: #000 1px 0 30px;
}
header .confirmation__text i {
  font-size: 1.8em;
  padding-right: 0.8rem;
}
header .confirmation__cross i {
  color: #fff;
  font-size: 1.4em;
}
header .confirmation__cross:hover {
  cursor: pointer;
}
header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 101%;
  z-index: -1;
  top: -1px;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.725);
}
@media screen and (max-width: 1000px) {
  header {
    background-color: #fff !important;
  }
}
header .header__container {
  margin: auto 1rem;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  header .header__container {
    margin: auto;
  }
}
header .header__container-logo {
  height: 64px;
}
header .header__container-logo img {
  height: 64px;
}
@media screen and (min-width: 1001px) {
  header .header__container-logo {
    display: none;
  }
}
@media screen and (min-width: 1001px) {
  header .header__container {
    justify-content: center;
  }
}
@media screen and (min-width: 1001px) {
  header #special-button {
    display: none;
  }
}

main {
  padding: 1.6rem 5%;
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 850px) {
  main {
    min-width: 768px;
    padding: 1.6rem 0;
  }
}
@media screen and (max-width: 850px) {
  main .car__info {
    padding-bottom: 0.5rem !important;
  }
}
main .car__info h2 {
  position: relative;
  font-size: 2em !important;
  font-weight: 600;
}
main .car__info h2:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: #fff;
  bottom: -6px;
  left: 0;
  right: 0;
}
main .car__info h3 {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  main .intro {
    margin-bottom: -1.5rem;
  }
}
main .about {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  main .about {
    flex-direction: row;
    align-items: flex-start;
  }
}
main .about__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #131039;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-radius: 15px;
  color: #fff;
  padding: 2rem 1.5rem;
  gap: 1rem;
}
main .about__info h1 {
  position: relative;
  font-size: 2.2em;
  margin-bottom: 1rem;
}
main .about__info h1:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: #fff;
  bottom: -10px;
  left: 0;
  right: 0;
}
main .about__info h2 {
  position: relative;
  font-size: 2em;
  font-weight: 600;
}
main .about__info h2:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: #fff;
  bottom: -10px;
  left: 0;
  right: 0;
}
main .about__info button {
  margin: 1rem auto;
  width: 80%;
  max-width: 260px;
  height: 3.5rem;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 50px;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
  box-shadow: 0 4px 15px 0 rgba(3, 218, 198, 0.75);
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}
main .about__info button:hover {
  background-position: 100% 0;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
main .about__info button:focus {
  outline: none;
}
main .about__info button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}
main .about__info .tableau {
  gap: 0;
  background-color: #866cb091;
  border-radius: 15px;
}
@media screen and (min-width: 850px) {
  main .about__info .tableau {
    max-width: 75%;
  }
}
main .about__info .tableau div {
  padding: 1rem 1rem;
  display: flex;
  align-items: flex-start;
}
main .about__info .tableau div p {
  padding: 0.3rem;
}
main .about__info .tableau div p:nth-child(odd) {
  width: 85%;
}
@media screen and (min-width: 530px) {
  main .about__info .tableau div p:nth-child(odd) {
    width: 60%;
  }
}
main .about__info .tableau div p:nth-child(even) {
  padding-left: 1.5rem;
}
@media screen and (min-width: 530px) {
  main .about__info .tableau div p:nth-child(even) {
    width: 40%;
  }
}
main .about__info .tableau div .prix {
  text-align: center;
}
main .about__info .tableau div:nth-child(even) {
  background-color: #927db391;
}
main .about__info-bloc {
  margin: 1rem;
  list-style-type: disc;
  font-size: 1.2em;
  line-height: 1.6em;
}
main .about__hours {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #131039;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-radius: 15px;
  color: #fff;
  padding: 2rem 1.5rem;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  main .about__hours {
    margin-right: -1.5rem;
    width: 50%;
  }
}
main .about__hours h2 {
  position: relative;
  font-size: 2em;
  font-weight: 600;
}
main .about__hours h2:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background-color: #fff;
  bottom: -10px;
  left: 0;
  right: 0;
}
main .about__hours-days {
  list-style: none;
}
main .about__hours-days li {
  font-size: 1.2em;
  margin-bottom: 1rem;
}
@media screen and (min-width: 920px) {
  main .about__hours-days-hours {
    margin-left: 0.5rem;
  }
}

.opened {
  font-weight: bold !important;
  margin-right: -5px;
  color: #00b100;
}

.closed {
  font-weight: bold !important;
  color: red;
}

.container-gallery {
  position: relative;
  z-index: 150;
  height: 310px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px -50px 36px -28px inset;
}

.expanded {
  height: 100%;
  box-shadow: none;
}

.reviews {
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  max-width: 90%;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .reviews {
    flex-direction: row;
    align-items: flex-start;
  }
}
.reviews__container {
  padding: 2rem 0;
  color: #131039;
}
.reviews__container h2 {
  padding-left: 1.4rem;
  position: relative;
  font-size: 2em;
  font-weight: bold;
}
.reviews__container h2:after {
  margin-left: 1.4rem;
  content: "";
  position: absolute;
  width: 50px;
  height: 4px;
  background-color: #131039;
  bottom: -10px;
  left: 0;
  right: 0;
}
.reviews__container #google-reviews {
  max-width: 710px;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .reviews__container #google-reviews {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.reviews__container #google-reviews .review-item {
  width: 100%;
  border-radius: 10px;
  background-color: #e9e9e9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media screen and (min-width: 768px) {
  .reviews__container #google-reviews .review-item {
    margin-left: 0;
    max-width: 49%;
    min-width: 300px;
  }
}
.reviews__container #google-reviews .review-item .review-meta {
  display: grid;
  grid-template-columns: 1fr 4px;
  row-gap: 0.5rem;
}
.reviews__container #google-reviews .review-item .review-meta .review-author {
  grid-column: 1;
  grid-row: 1;
  margin: 0 auto 0 0;
}
.reviews__container #google-reviews .review-item .review-meta .review-sep {
  display: none;
}
.reviews__container #google-reviews .review-item .review-meta .review-date {
  grid-column: 1;
  grid-row: 2;
  margin: 0 auto 0 0;
}
.reviews__container #google-reviews .review-item .review-text {
  margin-top: 0;
}

.find h3 {
  text-align: center;
}
.find .find-map {
  display: flex;
  justify-content: center;
  align-items: center;
}
.find .find-map iframe {
  margin: 1rem 1.5rem 1.5rem;
  border-radius: 15px;
}

footer {
  padding: 0 2rem;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #dad8d2;
}
footer .container {
  max-width: 1200px;
  margin: 0 1rem;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 920px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
  }
}
footer .container__img {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .container__img img {
  width: 60px;
  margin-right: 0.5rem;
}
footer .container__img h4 {
  font-size: 1.4em;
}
footer .container__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (min-width: 920px) {
  footer .container__links {
    flex-direction: row;
    gap: 1rem;
  }
}
footer .container__links a {
  margin: 12px 0;
  width: fit-content;
  color: black;
  font-size: 12px;
  font-weight: bold;
  transition: color 0.2s ease;
}
footer .container__links a:hover {
  color: #074aa1;
}
footer .container__socials {
  padding-top: 24px;
  border-top: 1px solid #dbdbdb;
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 920px) {
  footer .container__socials {
    width: fit-content;
    padding: 0;
    border-top: none;
  }
}
footer .container__socials .phone {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .container__socials a {
  font-size: 1.3em;
  color: black;
  transition: color 0.2s ease;
}
footer .container__socials a:hover {
  color: #074aa1;
}
footer .container__socials a .facebook,
footer .container__socials a .instagram {
  font-size: 1.2em;
}
footer .container__socials a .phone-number {
  font-family: Arial, sans-serif;
  margin-left: 1rem;
  font-size: 0.8em;
}

.cookies {
  position: fixed;
  z-index: 99999;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 5rem;
  background-color: rgba(0, 0, 0, 0.957);
  color: #fff;
}
.cookies__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}
@media screen and (min-width: 768px) {
  .cookies__info {
    width: 600px;
  }
}
.cookies__info p {
  max-width: 80%;
  text-align: center;
  margin-right: 1rem;
}
.cookies__info button {
  cursor: pointer;
  border: none;
  outline: none;
  background: #18753c;
  color: #fff;
  padding: 0.8rem;
}
.cookies__info button:hover {
  text-decoration: underline;
}

.cards__container {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.cards__container-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 25%;
  min-width: 130px;
  height: 130px;
  text-align: center;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 10px;
  color: black;
}
.cards__container-card-info i {
  margin: 1.2rem auto 0;
  width: 55px;
  height: 55px;
}
.cards__container-card p {
  margin: 0 1.2rem 1.2rem;
  margin-bottom: 1.2rem;
}
.cards__container-card:hover .card-info {
  top: 0;
  opacity: 100;
}

.waze {
  height: 57px;
  margin: auto;
  background-color: #31c6f7;
  border-radius: 50px;
  width: 80%;
  max-width: 260px;
  padding: 1rem;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  transition: 0.2s ease;
}
.waze:hover {
  background-color: #12a8db;
}

.googlemaps {
  height: 57px;
  margin: auto;
  background-color: #fff;
  border-radius: 50px;
  width: 80%;
  max-width: 260px;
  padding: 1rem;
  text-decoration: none;
  color: #5e6166;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  transition: 0.2s ease;
}
.googlemaps:hover {
  background-color: #dedede;
}

#waze-icon {
  height: 1.6em;
}

#maps-icon {
  height: 2em;
}

#tire,
#brake,
#clutch,
#engine,
#car-service,
#car,
#boule,
#courroie,
#valise {
  margin: 1.2rem auto 0;
  width: 55px;
  height: 55px;
}

#prestation {
  scroll-margin-top: 100px;
}

#prestation,
#contact,
#findme {
  scroll-margin-top: 76px;
}
@media screen and (min-width: 1001px) {
  #prestation,
#contact,
#findme {
    scroll-margin-top: 100px;
  }
}

.card-info {
  position: absolute;
  padding: 0.5rem 0;
  top: -100%;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: #ebebeb;
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card-info p {
  text-align: center;
  margin: auto;
  padding: 0 0.5rem;
}
.card-info img {
  max-width: 60%;
  max-height: 60%;
}

.galery {
  position: relative;
  margin: 1.5rem auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .galery {
    margin: 4rem auto;
  }
}
.galery__container {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.galery__container img {
  max-height: 27px;
}
@media screen and (min-width: 800px) {
  .galery__container {
    gap: 2rem;
  }
  .galery__container img {
    max-height: 55px;
  }
}

.button-pneu {
  margin: 8px 0 5px !important;
  font-size: 0.8em;
  padding: 0.5rem 0;
  height: auto !important;
}

.pneu-info {
  display: none;
  position: fixed;
  z-index: 1;
  max-width: 400px;
  max-height: 600px;
  min-height: 150px;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 75vh;
  margin-top: 3rem;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.pneu-info .info {
  position: absolute;
  z-index: 3;
  background-color: #f7f7f7;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow-y: scroll;
}
.pneu-info .info .pneu-close-info {
  position: fixed;
  cursor: pointer;
  top: 10px;
  right: 30px;
  padding: 0.5rem 1.4rem;
  border-radius: 5px;
  outline: none;
  border: 1px solid black;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 50px;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
  box-shadow: 0 4px 15px 0 rgba(3, 218, 198, 0.75);
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}
.pneu-info .info .pneu-close-info:hover {
  background-position: 100% 0;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.pneu-info .info .pneu-close-info:focus {
  outline: none;
}
.pneu-info .info .container-tableau {
  border: 1px solid black;
  max-width: 250px;
  margin: 4rem auto;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.pneu-info .info .container-tableau .tableau {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.pneu-info .info .container-tableau .tableau h3 {
  margin: 0.5rem 0;
}
.pneu-info .info .container-tableau .tableau p {
  display: flex;
  justify-content: space-between;
  line-height: 1.6em;
  padding: 0 0.4rem;
}
.pneu-info .info .container-tableau .tableau p:nth-child(odd) {
  background-color: rgba(128, 128, 128, 0.313);
}

.displayed {
  display: block;
}

.blured::after {
  content: "";
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  z-index: -2;
  width: 1000vw;
  height: 1000vh;
  backdrop-filter: blur(4px);
  background: rgba(142, 142, 142, 0.112);
}

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