html {
  margin-top: 0 !important;
}

@media screen and (max-width: 782px) {
  html {
    margin-top: 0 !important;
  }
}
body, html {
  overflow: hidden;
}

.content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 10000;
  background-color: var(--preview-background);
  overflow: hidden;
}
.content .preview__block {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .preview__block.column {
  flex-direction: column;
}
.content .preview__block.row {
  flex-direction: row-reverse;
}
.content .preview__block.row-left {
  flex-direction: row;
}
.content .preview__image {
  width: 90%;
  max-width: 810px;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  height: auto;
  position: relative;
  overflow-y: hidden;
}
.content .preview__image .image {
  position: relative;
  height: inherit;
  transition: transform 0.6s ease;
  width: 100%;
  margin: 10px auto 0;
}
.content .preview__image .image picture {
  max-width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.content .preview__image .image picture img {
  display: block;
  width: 100%;
  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 .title {
  width: 80%;
  line-height: var(--line_height_title);
  text-align: center;
  font-size: var(--title_font_size);
  color: var(--title_color);
  font-weight: 700;
}
.content-wrap .button-wrap {
  margin-top: 35px;
}
.content-wrap .button-wrap .preview__btn {
  font-weight: 400;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: none;
  box-shadow: var(--box_shadow);
  color: var(--button_text_color);
  padding: var(--button_padding_height) var(--button_padding_width);
  border-radius: var(--button_border_radius);
  font-size: 30px;
  transition: all 0.2s;
}
.content-wrap .button-wrap .button__main {
  background-color: var(--button_bg_color);
}
.content-wrap .button-wrap .blue {
  background: linear-gradient(45deg, #6ab1d7, #33d9de 50%, #002878) 100% 0;
  background-size: 200% 200%;
}
.content-wrap .button-wrap .blue:hover {
  background: linear-gradient(45deg, #6ab1d7, #33d9de 50%, #002878);
}
.content-wrap .button-wrap .red {
  background: linear-gradient(45deg, rgb(236, 65, 75) 0%, rgb(247, 3, 3) 50%, rgb(120, 0, 54) 100%) 100% 0;
  background-size: 200% 200%;
}
.content-wrap .button-wrap .red:hover {
  background: linear-gradient(45deg, rgb(236, 65, 75) 0%, rgb(247, 3, 3) 50%, rgb(120, 0, 54));
}
.content-wrap .button-wrap .violet {
  background: linear-gradient(45deg, rgb(175, 65, 236) 0%, rgb(140, 3, 247) 50%, rgb(112, 2, 147) 100%) 100% 0;
  background-size: 200% 200%;
}
.content-wrap .button-wrap .violet:hover {
  background: linear-gradient(45deg, rgb(175, 65, 236) 0%, rgb(140, 3, 247) 50%, rgb(112, 2, 147) 100%);
}

.pulsing {
  animation: heart 1s infinite;
}

@keyframes heart {
  50% {
    transform: scale(1.1);
  }
}
@media (max-width: 576px) {
  .content-wrap {
    margin-top: 20px;
  }
  .content .preview__block {
    flex-direction: column;
    padding-bottom: 115px;
  }
  .content .preview__block.row {
    flex-direction: column;
  }
  .content .preview__block.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);
    max-width: 100%;
  }
  .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 .title {
    width: 90%;
    font-size: var(--title_font_size_mob);
    line-height: var(--line_height_title-mob);
  }
  .content .button-wrap .preview__btn {
    font-size: 28px;
    padding: var(--button_padding_height_mob) var(--button_padding_width_mob);
  }
}

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