.vouriot-video {
  position: relative;
  padding-bottom: var(--hauteur);
}
@media screen and (max-width: 767px) {
  .vouriot-video {
    padding-bottom: 0;
  }
}
.vouriot-video.clicked:before {
  opacity: 0;
  visibility: hidden;
}
.vouriot-video.clicked button {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.vouriot-video button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  transition: 0.3s ease-out;
  background-color: rgba(242, 244, 247, 0);
  font-size: 15px;
  font-weight: 800;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #E30813;
  border-radius: 4px 4px 4px 4px;
  padding: 8px 8px 8px 15px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.vouriot-video button:hover span:before {
  width: calc(100% - 8px);
}
@media screen and (max-width: 767px) {
  .vouriot-video button {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.vouriot-video button span {
  padding-right: 4px;
  list-style: 0;
}
.vouriot-video button span:before {
  content: "";
  position: absolute;
  top: 6px;
  right: 4px;
  width: 26px;
  height: 26px;
  border-radius: 3px;
  background-color: var(--e-global-color-secondary);
  z-index: -1;
  transition: 0.3s ease-out;
}
.vouriot-video button span svg {
  width: 10px;
}
.vouriot-video[data-side=right] video {
  left: 0;
}
.vouriot-video[data-side=right]:before {
  left: 0;
}
.vouriot-video[data-side=left] video {
  right: 0;
}
.vouriot-video[data-side=left]:before {
  right: 0;
}
.vouriot-video video {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  max-width: unset !important;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .vouriot-video video {
    position: relative;
    aspect-ratio: 16/9;
    width: 100% !important;
  }
}
.vouriot-video.autoplay:before {
  content: inherit;
}
.vouriot-video.autoplay svg {
  display: none;
}
