.video-ultreia {
  position: relative;
  padding-bottom: var(--hauteur);
}
@media screen and (max-width: 767px) {
  .video-ultreia {
    padding-bottom: 0;
  }
}
.video-ultreia.clicked:before {
  opacity: 0;
  visibility: hidden;
}
.video-ultreia.clicked button {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.video-ultreia button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  transition: 0.3s ease-out;
  border: 0;
  background-color: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-ultreia button svg {
  width: 98px;
  height: 98px;
}
.video-ultreia video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  max-width: unset !important;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .video-ultreia video {
    position: relative;
    aspect-ratio: 16/9;
    width: 100% !important;
  }
}
.video-ultreia.autoplay:before {
  content: inherit;
}
.video-ultreia.autoplay svg {
  display: none;
}
