html .fancybox__slide {
  padding: 0; }
  html .fancybox__caption {
    display: none; }
  html .fancybox__container.is-closing .fancybox__caption__box {
    display: none; }
  html .fancybox__caption__box {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    bottom: 0;
    z-index: 999;
    height: auto;
    line-height: 1;
    padding: 15px; }
  html .fancybox__nav .carousel__button {
    background: rgba(0, 0, 0, 0.2); }
  html .carousel__button.is-close {
    border-radius: 250px;
    background: rgba(0, 0, 0, 0.2); }
  html .fancybox__container .fancybox__thumbs {
    display: none; }
    html .fancybox__container .fancybox__backdrop {
      background: rgba(0, 0, 0, 1); }
    html .fancybox__container .fancybox__content > .carousel__button.is-close {
      background: #000; }
  html .fancybox-lock {
    overflow: hidden !important;
    width: auto; }
  html .fancybox-fadeIn {
    animation: 0.2s ease both fancybox-fadeIn; }
  html .fancybox-fadeOut {
    animation: 0.2s ease both fancybox-fadeOut; }
  html .fancybox-zoomInUp {
    animation: 0.2s ease both fancybox-zoomInUp; }
  html .fancybox-zoomOutDown {
    animation: 0.2s ease both fancybox-zoomOutDown; }
  html .fancybox-throwOutUp {
    animation: 0.2s ease both fancybox-throwOutUp; }
  html .fancybox-throwOutDown {
    animation: 0.2s ease both fancybox-throwOutDown; }

@keyframes fancybox-fadeIn {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@keyframes fancybox-fadeOut {
  to {
    opacity: 0; } }

@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0; }

  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1; } }

@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0; } }

@keyframes fancybox-throwOutUp {
  20% {
    opacity: 0.5; }

  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0; } }

@keyframes fancybox-throwOutDown {
  20% {
    opacity: 0.5; }

  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0; } }
