@charset "UTF-8";
/*
 Theme Path
========================================================================== */
/*
 Font Family
========================================================================== */
/*
 Font Size
========================================================================== */
/*
 Colors
========================================================================== */
/*
 Helpers
========================================================================== */
/*
 Sizes
========================================================================== */
/*
 Columns
========================================================================== */
/*
 Buttons – @include button();
========================================================================== */
/* 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 media($desktop);
========================================================================== */
/*
 Max Width Query – @include media-height($tablet);
========================================================================== */
/*
 Min Width and Max Width Query – @include media-between($tablet, $desktop);
========================================================================== */
/*
 Min Height Query – @include media-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(var(--wp--preset--color--tertiary));"
========================================================================== */
/* -------------------------------------------------------------------------- */
/*                                   Resets                                   */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                    Utils                                   */
/* -------------------------------------------------------------------------- */
/*
 Accordion
========================================================================== */
section.block-accordion {
  border-bottom: 1px solid rgba(153, 153, 153, 0.25);
}
section.block-accordion * {
  transition: all 0.15s;
}
section.block-accordion .details .summary {
  cursor: pointer;
  padding: 0;
  position: relative;
  border-top: 1px solid rgba(153, 153, 153, 0.25);
  padding: 22px 45px 22px 0;
}
section.block-accordion .details .summary h2 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--wp--preset--font-family--primary);
  color: #2d2d39;
  line-height: 1.3;
  margin: 0 !important;
}
section.block-accordion .details .summary::-webkit-details-marker {
  display: none;
}
section.block-accordion .details .summary:hover svg path {
  fill: var(--wp--preset--color--primary);
}
.has-text-color section.block-accordion .details .summary {
  color: currentcolor !important;
}
section.block-accordion .details .summary em {
  font-weight: 400;
  opacity: 0.5;
  user-select: none;
}
section.block-accordion .details .summary .chevron {
  position: absolute;
  top: calc(50% - 12px);
  right: 10px;
}
section.block-accordion .details[open] summary {
  color: var(--wp--preset--color--primary-dark);
}
section.block-accordion .details[open] .chevron {
  transform: rotate(180deg);
}
section.block-accordion .details[open] svg path {
  fill: var(--wp--preset--color--primary-light);
}
section.block-accordion .details .acf-innerblocks-container {
  width: 100%;
  padding: 0 0 var(--wp--style--block-gap) 0;
}
section.block-accordion.is-style-toggle i {
  transform: rotate(0deg);
}
section.block-accordion.is-style-toggle i::before, section.block-accordion.is-style-toggle i::after {
  width: 10px;
}
section.block-accordion.is-style-toggle i::before {
  transform: rotate(45deg);
  left: 4px;
}
section.block-accordion.is-style-toggle i::after {
  transform: rotate(-45deg);
  right: 4px;
}
section.block-accordion.is-style-toggle [open] i {
  transform: rotate(-180deg) !important;
}
