body {
  overflow: hidden;
}

.content {
  position: fixed;
  top: 0;
  left: 0;
  padding-bottom: 50px;
  width: 100vw;
  height: 100vh;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--preview-background);
  overflow: hidden;
}
.content.column {
  flex-direction: column;
}
.content.row {
  flex-direction: row-reverse;
}
.content.row-left {
  flex-direction: row;
}
.content .preview__image {
  width: 80%;
  max-width: 810px;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  height: auto;
  position: relative;
  overflow-y: hidden;
}
.content .preview__image .image {
  padding: 0 30px;
  position: relative;
  height: inherit;
  transition: transform 0.6s ease;
  backface-visibility: hidden;
  flex: 0 0 100%;
  outline: none;
  display: flex;
  justify-content: center;
}
.content .preview__image .image picture {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .preview__image .image picture img {
  display: block;
  max-width: 85%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.content-wrap > div {
  display: flex;
  width: 100%;
  margin-top: 15px;
  justify-content: center;
}
.content-wrap .title-wrap {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}
.content-wrap .title-wrap h2 {
  color: #0c0c0c;
  font-size: 32px;
  font-weight: 600;
}
.content-wrap .button-wrap {
  margin-top: 20px;
}
.content-wrap .button__main {
  font-size: 30px;
  padding: var(--button_padding_height) var(--button_padding_width);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--button_border_radius);
  box-shadow: 10px 5px 5px #333;
  background-color: var(--button_bg_color);
  color: var(--button_text_color);
}

.pulsing {
  animation: heart 1s infinite;
}

@keyframes heart {
  50% {
    transform: scale(1.1);
  }
}
@media (max-width: 576px) {
  .content {
    flex-direction: column;
  }
  .content.row {
    flex-direction: column;
  }
  .content.row-left {
    flex-direction: column;
  }
  .content .preview__image {
    width: 100%;
  }
  .content .preview__image .image {
    padding: 0 20px;
  }
  .content .preview__image .image picture {
    position: relative;
    height: var(--image_height);
    width: calc(100vw - 30px);
  }
  .content .preview__image .image picture img {
    position: absolute;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--image_position);
  }
  .content .title-wrap {
    width: 90%;
    font-size: 30px;
    line-height: 36px;
  }
  .content .title-wrap h2 {
    font-size: 28px;
  }
}

/*# sourceMappingURL=preview-block.css.map */
