button,
.btn {
}
textarea:focus,
select:focus,
input:focus {
  outline: none;
}
.mal_disp0 {
  /* display: none; */
  text-decoration: line-through;
  color: rgba(122, 0, 0, 0.797);
}
.mal_disp1 {
  color: rgb(30 58 138);
}
.mal_disp1::after {
  content: "✓";
  display: inline-block;
  vertical-align: top;
  line-height: 1em;
  width: 1em;
  height: 1em;
  margin-right: 0.3em;
  text-align: center;
}
/* button:active,
.btn:hover {
  box-shadow: 0px 0px 5px black;
} */
.swiper {
  width: auto;
  height: auto;
}
@media (min-width: 768px) {
  .embla__slide {
    flex: 0 0 50%; /* Breakpoint SM slide covers 50% of the viewport */
  }
}
form {
  display: grid;
  gap: 5px;
}
input,
textarea,
select {
  padding: 10px;
}
@media (min-width: 640px) {
  body {
    content: "Application non disponible pour cette taille d'ecran!";
  }
}
#zoom {
  -webkit-animation: zoomeffect 15s infinite;
  -webkit-animation-direction: alternate-reverse;

  -moz-animation: zoomeffect 15s infinite;
  -moz-animation-direction: alternate-reverse;

  animation: zoomeffect 15s infinite;
  animation-direction: alternate-reverse;
}
@-webkit-keyframes zoomeffect {
  0% {
    background-position: right;
    background-size: 110%;
  }
  30% {
    background-position: top;
    background-size: 140%;
  }
  60% {
    background-position: left;
    background-size: 170%;
  }

  /* transform: scale(1, 1); */
  100% {
    background-position: center;
    background-size: 210%;
  }
}
@keyframes zoomeffect {
  0% {
    background-position: right;
    background-size: 110%;
  }
  30% {
    background-position: top;
    background-size: 140%;
  }
  60% {
    background-position: left;
    background-size: 170%;
  }

  /* transform: scale(1, 1); */
  100% {
    background-position: center;
    background-size: 210%;
  }
}
