body, html {
  overflow: hidden;
}

button {
  background-color: transparent;
  outline: none;
  cursor: pointer;
  border: 0;
}

.content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 10000;
  background: radial-gradient(circle, rgb(238, 174, 202) 36%, rgb(148, 187, 233) 96%);
  overflow: hidden;
}
.content h2 {
  width: 80%;
  line-height: var(--line_height_title);
  text-align: center;
  font-size: var(--title_font_size);
  color: var(--title_color);
  font-weight: 600;
  margin: 0 auto;
}
.content p {
  margin: 25px 0 15px;
  text-align: center;
}

.gs_start {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1100;
  overflow: hidden;
  transition: opacity 1s;
  padding: 0 30px;
}
.gs_start-inner {
  max-width: 800px;
  height: auto;
  background-color: rgba(255, 255, 255, 0.62);
  padding: 40px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gs_start-button {
  font-weight: 400;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  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);
  margin-top: 25px;
  font-size: 30px;
  transition: all 0.2s;
  animation: scale 2s infinite;
}
.gs_start-button.customColor {
  background-color: var(--button_bg_color);
}
.gs_start-button.blue {
  background: linear-gradient(45deg, #6ab1d7, #33d9de 50%, #002878) 100% 0;
  background-size: 200% 200%;
}
.gs_start-button.blue:hover {
  background: linear-gradient(45deg, #6ab1d7, #33d9de 50%, #002878);
}
.gs_start-button.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%;
}
.gs_start-button.red:hover {
  background: linear-gradient(45deg, rgb(236, 65, 75) 0%, rgb(247, 3, 3) 50%, rgb(120, 0, 54));
}
.gs_start-button.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%;
}
.gs_start-button.violet:hover {
  background: linear-gradient(45deg, rgb(175, 65, 236) 0%, rgb(140, 3, 247) 50%, rgb(112, 2, 147) 100%);
}
.gs_wrapper {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 1s;
}
.gs_title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.gs_images-wrap {
  padding: 20px 0;
  width: 100%;
  display: inline-flex;
  gap: 15px;
}
.gs_image-block {
  border: 1px solid #fff;
  border-radius: 15px;
  overflow: hidden;
}
.gs_image-block a {
  display: block;
  width: 100%;
  height: 100%;
}
.gs_image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}
.gs_image-block:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .content h2 {
    width: 90%;
    font-size: var(--title_font_size_mob);
    line-height: var(--line_height_title-mob);
  }
  .gs_start {
    align-items: flex-start;
    top: 10%;
  }
  .gs_start-inner {
    padding: 40px 20px;
  }
  .gs_start-button {
    font-size: 28px;
    padding: var(--button_padding_height_mob) var(--button_padding_width_mob);
  }
  .gs_wrapper {
    padding: 15px;
    justify-content: flex-start;
    margin-top: 55px;
  }
  .gs_images-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 30px 0 0;
  }
  .gs_image-block {
    max-width: 40%;
  }
}
.hide {
  opacity: 0;
}

.show {
  opacity: 1;
  z-index: 1111;
}

@keyframes scale {
  50% {
    transform: scale(1.1);
  }
}

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