/* Apply color scheme dynamically */
@import url(https://fonts.bunny.net/css?family=montserrat:300,400,500,600,700,800,900);
:root {
  --primary_main_colour_1: {{ color_scheme.primary_main_colour_1 | default:"rgba(18, 15, 45, 1.00)" }};
  --primary_main_colour_2: {{ color_scheme.primary_main_colour_2 | default:"rgba(89, 40, 229, 1.00)" }};
  --primary_main_colour_3: {{ color_scheme.primary_main_colour_3 | default:"rgba(232, 69, 199, 1.00)" }};
  --primary_main_colour_4: {{ color_scheme.primary_main_colour_4 | default:"rgba(35, 30, 60, 1.00)" }};
  --primary_black: {{ color_scheme.primary_black | default:"rgba(12, 10, 30, 1.00)" }};
  --primary_white: {{ color_scheme.primary_white | default:"rgba(240, 240, 255, 1.00)" }};
  --primary_site_danger: {{ color_scheme.primary_site_danger | default:"rgba(255, 77, 105, 1.0)" }};
  --primary_site_success: {{ color_scheme.primary_site_success | default:"rgba(82, 210, 132, 1.0)" }};
  --primary_site_background: {{ color_scheme.primary_site_background | default:"rgba(22, 19, 48, 1.00)" }};
  --primary_site_text: {{ color_scheme.primary_site_text | default:"rgba(230, 230, 255, 1.00)" }};
  --primary_button_gray: {{ color_scheme.primary_button_gray | default:"rgba(90, 90, 110, 1.00)" }};
  --primary_button_white: {{ color_scheme.primary_button_white | default:"rgba(255, 255, 255, 0.1)" }};
  --primary_shadows_spreed: {{ color_scheme.primary_shadows_spreed | default:"rgba(143, 98, 229, 0.15)" }};
  --primary_grey: {{ color_scheme.primary_grey | default:"rgba(130, 130, 150, 1.0)" }};
  --primary_grey_light: {{ color_scheme.primary_grey_light | default:"rgba(160, 160, 190, 1.0)" }};
  --primary_grey_light_2: {{ color_scheme.primary_grey_light_2 | default:"rgba(200, 180, 240, 0.1)" }};
  --primary_grey_light_3: {{ color_scheme.primary_grey_light_3 | default:"rgba(190, 190, 250, 0.07)" }};
  --primary_grey_light_4: {{ color_scheme.primary_grey_light_4 | default:"rgba(255, 255, 255, 0.04)" }};
  --primary_grey_dark: {{ color_scheme.primary_grey_dark | default:"rgba(90, 90, 120, 1.0)" }};
  --primary_footer_bg: {{ color_scheme.primary_footer_bg | default:"rgba(10, 8, 40, 1.00)" }};
}

.video_gallery {
  position: relative;
}
.video_gallery .gallery_item {
  position: relative;
  box-shadow: 0.1rem 0.1rem 0.2rem color-mix(in srgb, var(--primary_grey_light_3) 90%, var(--primary_site_background)), -0.1rem -0.1rem 0.2rem color-mix(in srgb, var(--primary_grey_light_4) 90%, var(--primary_site_background));
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: none;
  cursor: pointer;
  transition: all 1.3s ease-in-out;
}
.video_gallery .gallery_item img, .video_gallery .gallery_item video {
  position: relative;
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
  transition: all 1.3s ease-in-out;
}
.video_gallery .gallery_item .gallery_item_caption {
  padding: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 1.3s ease-in-out;
}
.video_gallery .gallery_item .gallery_item_caption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 1.3s ease-in-out;
}
.video_gallery .gallery_item .gallery_item_caption > a:hover {
  opacity: 0.3;
  background-color: var(--primary_main_colour_1);
  transition: all 1.3s ease-in-out;
  box-shadow: 0.1rem 0.1rem 0.2rem color-mix(in srgb, var(--primary_grey_light_3) 90%, var(--primary_site_background)), -0.1rem -0.1rem 0.2rem color-mix(in srgb, var(--primary_grey_light_4) 90%, var(--primary_site_background));
  border-radius: 2rem;
  padding: 2rem;
}

/*# sourceMappingURL=portfolio_video_lightbox.css.map */
