@charset "UTF-8";
/*Regular images*/
figure.regular {
  display: none;
  justify-content: space-between;
}

.regular img {
  width: auto;
  object-fit: contain;
}

.svg-container {
  display: flex;
  align-items: center;
  position: relative;
}
.svg-container:hover {
  opacity: 0.6;
}
.svg-container.right {
  left: -40px;
}
.svg-container.left {
  left: 40px;
}

.image-container {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: center;
}

figcaption {
  background-color: var(--med-color);
  padding: 4px;
}

@media (max-width: 920px) {
  .regular {
    left: 0;
    top: 0;
  }
  .regular img {
    width: 100%;
    height: 100vh;
  }
  figure.regular {
    left: 0;
    margin: auto;
    width: 100%;
  }
}
.site__warning {
  background-color: #f5c344;
  width: 95%;
  padding: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.site__title {
  padding: 1.5rem;
  margin: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: rgb(143, 188, 188);
  width: 95%;
  text-align: center;
  border-radius: 0.375rem;
}
.site__pictures {
  display: flex;
  justify-content: center;
  width: 100%;
}
.site__footer {
  width: 100%;
  margin-top: 0.5rem;
  background-color: rgb(143, 188, 188);
  color: #fff;
}
.site__footer p {
  text-align: center;
}

.suivant::after {
  content: url("/static/icons/next-white.png");
}

.precedent::before {
  content: url("/static/icons/previous-white.png");
}

.picture {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  gap: 0.1rem;
}
.picture__title, .picture__text {
  width: 100%;
  text-align: center;
  background-color: rgb(143, 188, 188);
}

.hide {
  display: none;
}

.panel {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.panel__heading {
  width: 100%;
  background-color: rgb(143, 188, 188);
  color: #fff;
  padding: 0.25rem;
  border-radius: 0.375rem;
}
.panel__content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.panel__content div {
  display: flex;
  justify-content: space-between;
  min-width: 320px;
  padding: 0 0.5rem;
}

.crossmark::before {
  content: "✗";
  display: inline-block;
  color: red;
}

.checkmark::before {
  content: "✓";
  display: inline-block;
  color: green;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.alert {
  display: flex;
  padding: 2rem;
  justify-content: space-around;
}
.alert--info {
  background-color: #2196f3;
  color: #f3f3f3;
}
.alert--success {
  background-color: #359e64;
  color: #f3f3f3;
}
.alert--warning {
  background-color: #ff5722;
  color: #f3f3f3;
}
.alert--error {
  background-color: firebrick;
  color: #f3f3f3;
}