@charset "UTF-8";
/*
 Font Family
========================================================================== */
/*
 Font Size
========================================================================== */
/*
 Colors
========================================================================== */
/*
 Button Styles
========================================================================== */
/*
 Helpers
========================================================================== */
/*
 Sizes
========================================================================== */
/*
 Columns
========================================================================== */
/* Fluid Type - Responsive fonts sizing
https://chriskirknielsen.com/blog/modern-fluid-typography-with-clamp/
usage: @include fluid-type(min viewport size, max viewport, min font size, max font size);
========================================================================== */
/*
 Tint (adds white) – @include tint(red, 10%);
========================================================================== */
/*
 Shade (adds black) – @include shade(red, 10%);
========================================================================== */
/*
 Hex to RGB – hextorgb(#000); //returns 0, 0, 0,
========================================================================== */
/*
 Object Fit – @include object-fit(cover);
========================================================================== */
/*
 Rows – @include rows(4,10px); px or % support
========================================================================== */
/*
 Aspect Ratio – @include aspect-ratio(9,16) 0r @include aspect-ratio(70%,30%)
========================================================================== */
/*
 Align Full – @include alignfull;
========================================================================== */
/*
 Min Width Query – @include min($desktop);
========================================================================== */
/*
 Max Width Query – @include min-height($tablet);
========================================================================== */
/*
 Min Width and Max Width Query – @include between($tablet, $desktop);
========================================================================== */
/*
 Min Height Query – @include min-height($tablet);
========================================================================== */
/*
 Truncate – @include truncate-text(ellipsis);
========================================================================== */
/*
 Rem to Pix Calculate for fonts
========================================================================== */
/*
 Font Size rem to pix – @include font-size(30px);
========================================================================== */
/*
 Rem Calculate – @include rem(padding, 30px);
========================================================================== */
/*
 Column width with margin
========================================================================== */
/*
 SCSS variable in background image with SVG image data URI
 usage – style="fill: friendly-color(#FF6D00);"
========================================================================== */
/*
 Spacer
========================================================================== */
.block-responsive-spacer {
  margin-block-start: 0px;
}
.block-responsive-spacer + * {
  margin-block-start: 0px;
}

:root :where(.is-layout-flow, .is-layout-constrained) .wp-block-meta-responsive-spacer {
  margin-block-start: 0px;
}
:root :where(.is-layout-flow, .is-layout-constrained) .wp-block-meta-responsive-spacer + * {
  margin-block-start: 0px;
}
:root :where(.is-layout-flow, .is-layout-constrained) .wp-block-meta-responsive-spacer .block-responsive-spacer {
  border: 1px dashed currentcolor;
  position: relative;
  min-height: 20px;
  opacity: 0.5;
}
:root :where(.is-layout-flow, .is-layout-constrained) .wp-block-meta-responsive-spacer .block-responsive-spacer::after {
  content: "Responsive Spacer";
  font-size: 10px;
  text-transform: uppercase;
  color: currentcolor;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
:root :where(.is-layout-flow, .is-layout-constrained) .wp-block-meta-responsive-spacer.is-selected .block-responsive-spacer, :root :where(.is-layout-flow, .is-layout-constrained) .wp-block-meta-responsive-spacer:hover .block-responsive-spacer {
  background: rgba(0, 0, 0, 0.06);
}
