:root {
  --btn-bg: transparent;
  --btn-fill: white;
  --btn-hover: var(--btn-fill);
  --gif-overlay-bg: rgba(0, 0, 0, 0.7);
  --gif-overlay-border: rgba(255, 255, 255, 0.2);
  --gif-overlay-hover-bg: rgba(0, 0, 0, 0.8);
  --gif-overlay-hover-border: rgba(255, 255, 255, 0.4);
}

button.play-pause {
  height: 45px;
  width: 45px;
  background-color: transparent;
  border: 0px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
button.play-pause svg {
  display: none;
  width: 24px;
  height: 24px;
  fill: var(--btn-fill);
  margin-top: 0.2rem;
}
button.play-pause svg:first-of-type {
  margin-left: 0.1rem;
}
button.play-pause svg:nth-of-type(3) {
  display: none;
}
@media (max-width: 991.98px) and (hover: none) {
  button.play-pause svg {
    margin-left: -11px;
  }
  button.play-pause svg:first-of-type {
    margin-left: -9px;
  }
}
button.play-pause.paused svg.playing {
  display: unset;
}
button.play-pause.playing svg.paused {
  display: unset;
}
button.play-pause:hover svg {
  fill: var(--btn-hover);
}
@media (max-width: 767.98px) {
  button.play-pause {
    display: none;
  }
  button.play-pause.gif-mode {
    display: block;
  }
}
button.play-pause.is-style-rounded {
  background: var(--btn-bg);
  border: 3px solid var(--btn-bg);
}
button.play-pause.is-style-rounded svg {
  margin-top: 0.225rem;
}
button.play-pause.is-style-rounded svg.playing {
  margin-left: 0.225rem;
}
button.play-pause.is-style-rounded:hover {
  background: transparent;
  border: 3px solid var(--btn-hover);
}

.gif-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .gif-container {
    max-width: 100vw;
    max-height: 80vh;
  }
}
@media (max-width: 767.98px) {
  .gif-container {
    max-width: 100vw;
    max-height: 70vh;
  }
}
.gif-container .gif-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.gif-container .gif-image.initial-pause {
  animation-play-state: paused !important;
}
.gif-container .gif-overlay {
  position: absolute;
  z-index: 10;
  background: var(--gif-overlay-bg);
  backdrop-filter: blur(4px);
  border: 2px solid var(--gif-overlay-border);
  transition: all 0.3s ease-in-out;
}
.gif-container .gif-overlay:hover {
  background: var(--gif-overlay-hover-bg);
  border-color: var(--gif-overlay-hover-border);
  transform: scale(1.05);
}
.gif-container .gif-overlay.position-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gif-container .gif-overlay.position-top-left {
  top: 20px;
  left: 20px;
}
.gif-container .gif-overlay.position-top-right {
  top: 20px;
  right: 20px;
}
.gif-container .gif-overlay.position-bottom-left {
  bottom: 20px;
  left: 20px;
}
.gif-container .gif-overlay.position-bottom-right {
  bottom: 20px;
  right: 20px;
}

@media (max-width: 767.98px) {
  .gif-container .gif-overlay {
    height: 40px;
    width: 40px;
  }
  .gif-container .gif-overlay svg {
    width: 20px;
    height: 20px;
  }
}
/*# sourceMappingURL=style.css.map */
