@charset "UTF-8";
/*------------------------------------*\
  Abstract
\*------------------------------------*/
/*------------------------------------*\
#Colour Functions
\*------------------------------------*/
/*------------------------------------*\
#Colour Variables
\*------------------------------------*/
/* PINK */
/* BLUE */
/* PURPLE */
/* YELLOW */
/* GREEN */
/* ORANGE */
/*------------------------------------*\
#Breakpoints
\*------------------------------------*/
/*------------------------------------*\
  Abstract
\*------------------------------------*/
/*------------------------------------*\
#Breakpoints Mixin
\*------------------------------------*/
/*------------------------------------*\
#Styling Mixin
\*------------------------------------*/
/*------------------------------------*\
  Base
\*------------------------------------*/
/*------------------------------------*\
  Abstract
\*------------------------------------*/
/*------------------------------------*\
#Global Styles
\*------------------------------------*/
.wp-block-post-excerpt {
  margin-block-start: var(--wp--preset--spacing--small);
}

.hyperlink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #f80070;
  text-decoration: none;
  transition: color 0.2s ease;
}
.hyperlink:hover, .hyperlink:focus {
  color: rgb(197, 0, 88.9677419355);
}

/*------------------------------------*\
#JSON Code Block
\*------------------------------------*/
.is-style-dark-code code {
  color: #f5f5f5;
}

.json-editable-highlight {
  background: rgba(255, 230, 0, 0.35); /* brighter yellow */
  border: 1px solid rgba(255, 200, 0, 0.8);
  color: #fff;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: 600;
}

.wp-block-code code {
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

/*------------------------------------*\
#Instruction Box
\*------------------------------------*/
.aco-instruction-box > * {
  margin-block-start: 0.5rem;
  margin-block-end: 0.5rem;
}
.aco-instruction-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.aco-instruction-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.aco-instruction-box h3 + p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.aco-instruction-box p + p {
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}
.aco-instruction-box a {
  color: var(--aco-link-color, #2a4fff);
  border-bottom: 2px solid var(--aco-link-color, #2a4fff);
  text-decoration: none;
}
.aco-instruction-box a:hover {
  color: var(--aco-link-hover-color, #1d37c5);
  border-bottom: 2px solid var(--aco-link-hover-color, #1d37c5);
}

/*------------------------------------*\
#Tutorial Steps
\*------------------------------------*/
.aco-param {
  color: #00ffde;
  font-weight: 600;
}

/*------------------------------------*\
#Tutorial Steps
\*------------------------------------*/
.step-block {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.step-block .step-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: none;
  background-color: rgb(200.7721518987, 201.4810126582, 225.2278481013);
  color: rgb(69.6455696203, 71.3037974684, 126.8544303797);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  transform: translateY(-0.1rem);
}
.step-block .step-button .step-label {
  display: block;
  transition: opacity 0.2s ease;
}
.step-block .step-button .step-icon {
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.step-block .step-button .step-icon svg {
  width: 1rem;
  height: 1rem;
  fill: rgb(69.6455696203, 71.3037974684, 126.8544303797);
}
.step-block .step-button:hover .step-label, .step-block .step-button:focus .step-label {
  opacity: 0;
}
.step-block .step-button:hover .step-icon, .step-block .step-button:focus .step-icon {
  opacity: 1;
}
.step-block .step-button::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}
.step-block .step-button:hover::after, .step-block .step-button:focus::after {
  opacity: 1;
}
.step-block.copied .step-button::after {
  content: "Copied";
  opacity: 1;
}
.step-block > .step-content {
  flex: 1;
  margin: 0;
}
.step-block > .step-content p {
  margin-top: 0;
}
.step-block > .step-content p:not(:last-child) {
  margin-bottom: 0.5rem;
}

/*------------------------------------*\
  #Category List Styling
\*------------------------------------*/
.wp-block-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.wp-block-categories-list li {
  text-transform: uppercase;
  font-size: 0.75rem;
  background-color: rgb(200.7721518987, 201.4810126582, 225.2278481013);
  color: #333;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}
.wp-block-categories-list li::marker {
  content: none;
}
.wp-block-categories-list li:hover {
  background-color: rgb(151.3860759494, 152.7405063291, 198.1139240506);
}
.wp-block-categories-list li a {
  color: inherit;
  text-decoration: none;
}

/*------------------------------------*\
  #ACO Tool Styling
\*------------------------------------*/
.aco-tool-label.required {
  font-weight: bold;
  color: #8a1c1c;
}

/*------------------------------------*\
  #Form Styling
\*------------------------------------*/
.form-consent {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 0 !important;
}
.form-consent .ff-el-input--label .ff-el-form-label {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.form-consent .ff-el-input--label .ff-el-required {
  display: none !important;
}
.form-consent .ff-el-input--content {
  margin-top: 0;
}
.form-consent .ff-el-form-check-input + span::before {
  content: "* ";
  color: var(--fluentform-danger);
  font-weight: 700;
  margin-right: 0.25rem;
}

.mailerlite-note {
  margin-top: 0;
  font-style: italic;
  padding-bottom: 1em;
}

/*------------------------------------*\
  Layout
\*------------------------------------*/
/*------------------------------------*\
  Abstract
\*------------------------------------*/
/*------------------------------------*\
#Footer Nav
\*------------------------------------*/
footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover {
  color: #f80070;
}

/*------------------------------------*\
  Abstract
\*------------------------------------*/
.wp-block-post-template.is-layout-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .wp-block-post-template.is-layout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .wp-block-post-template.is-layout-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/*------------------------------------*\
  Components
\*------------------------------------*/
/*------------------------------------*\
  Abstract
\*------------------------------------*/
.btn {
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
}

.btn--muted {
  background: #f3f4f6;
  color: #1f2937;
}

.btn--muted:hover {
  background: #e5e7eb;
}

.btn--primary {
  background: #2563eb;
  color: #fff;
  border-color: #1d4ed8;
}

.btn--primary:hover {
  background: #1d4ed8;
}

.btn[disabled] {
  background: #9ca3af;
  border-color: #9ca3af;
  cursor: not-allowed;
}

/*------------------------------------*\
  Abstract
\*------------------------------------*/
/* Scope everything under .aco-tool */
.aco-tool {
  /* Accents */
}
.aco-tool__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .aco-tool__grid {
    grid-template-columns: 1fr 2fr;
  }
}
.aco-tool .field {
  margin-bottom: 1rem;
}
.aco-tool .field__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.aco-tool .field__asterisk {
  color: #dc2626;
  margin-left: 0.25rem;
}
.aco-tool .help {
  margin: 0.375rem 0.5rem 0 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}
.aco-tool .input, .aco-tool .select {
  width: 100%;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  background: #fff;
  font: inherit;
}
.aco-tool .input--accent1, .aco-tool .select--accent1 {
  border-left: 6px solid #8b0df9;
  border-radius: 6px;
}
.aco-tool .input--accent1:focus, .aco-tool .select--accent1:focus {
  border-color: #8b0df9;
  box-shadow: 0 0 0 3px rgba(139, 13, 249, 0.2);
  outline: none;
}
.aco-tool .input--accent2, .aco-tool .select--accent2 {
  border-left: 6px solid #db2777;
  border-radius: 6px;
}
.aco-tool .input--accent2:focus, .aco-tool .select--accent2:focus {
  border-color: #db2777;
  box-shadow: 0 0 0 3px rgba(219, 39, 119, 0.2);
  outline: none;
}
.aco-tool .input--focus, .aco-tool .select--focus {
  border-left: 6px solid #4338ca;
  border-radius: 6px;
}
.aco-tool .input--focus:focus, .aco-tool .select--focus:focus {
  border-color: #4338ca;
  box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.2);
  outline: none;
}
.aco-tool .input--success, .aco-tool .select--success {
  border-left: 6px solid #059669;
  border-radius: 6px;
}
.aco-tool .input--success:focus, .aco-tool .select--success:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
  outline: none;
}
.aco-tool .btnrow {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.aco-tool .codepreview {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 1rem;
}
.aco-tool .codepreview__code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  white-space: pre-wrap;
  word-break: break-word;
}

/* code color tokens */
.code-bold {
  font-weight: 700;
}

.code-accent--accent1 {
  color: #8b0df9;
}

.code-accent--accent2 {
  color: #db2777;
}

.code-accent--focus {
  color: #4338ca;
}

.code-accent--indigo {
  color: #4338ca;
}

.code-accent--success {
  color: #059669;
}

.aco-tool .input::-moz-placeholder, .aco-tool .select::-moz-placeholder {
  color: rgb(132.9914893617, 139.6638297872, 153.0085106383);
  opacity: 0.85;
}

.aco-tool .input::placeholder,
.aco-tool .select::placeholder {
  color: rgb(132.9914893617, 139.6638297872, 153.0085106383);
  opacity: 0.85;
}

.aco-tool .input::-webkit-input-placeholder,
.aco-tool .select::-webkit-input-placeholder {
  color: rgb(132.9914893617, 139.6638297872, 153.0085106383);
  opacity: 0.85;
}

/*------------------------------------*\
  Abstract
\*------------------------------------*/
/*------------------------------------*\
#Notice Box
\*------------------------------------*/
.aco-notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.aco-notice .notice-content {
  flex-grow: 1;
  font-size: 0.95rem;
}
.aco-notice .notice-content h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.aco-notice .notice-content p {
  margin: 0;
}
.aco-notice .notice-content p + p {
  margin-top: 0.75rem;
}
.aco-notice .notice-content a {
  font-weight: 600;
  color: #f80070;
}
.aco-notice .notice-content a:hover {
  color: rgb(197, 0, 88.9677419355);
}
.aco-notice .notice-content ul {
  margin-block-start: 0.5rem;
  margin-block-end: 1rem;
}
.aco-notice .notice-content ul li {
  margin-bottom: 0.25rem;
}
.aco-notice figure {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  margin: 0;
}
.aco-notice figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.aco-notice.aco-tip {
  background: #ffe6bb;
  color: #7f4800;
}
.aco-notice.aco-note {
  background: #e5e5e5;
  color: #3d3d3d;
}
.aco-notice.aco-important {
  background: #ffbbca;
  color: #9b0029;
}
.aco-notice.aco-insight {
  background: #e1e3ff;
  color: #311596;
}
.aco-notice.aco-nextsteps {
  background: #cafce8;
  color: #00562d;
}
.aco-notice.aco-learn {
  background-color: rgb(200.7721518987, 201.4810126582, 225.2278481013);
  color: rgb(69.6455696203, 71.3037974684, 126.8544303797);
}

.aco-approach {
  background-color: rgb(250.1582278481, 250.2215189873, 252.3417721519);
  border-radius: 0;
  border-left: 4px solid rgb(184.3101265823, 185.2341772152, 216.1898734177);
  padding: 1rem 1rem 1rem 2rem;
}

/*------------------------------------*\
#Form Notice
\*------------------------------------*/
.aco-formnotice {
  background: #ffe6bb;
  color: #7f4800;
  border-radius: 4px;
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  margin-top: 0.5rem;
}
.aco-formnotice p {
  margin: 0;
}
.aco-formnotice a {
  font-weight: 600;
  color: #f80070;
}
.aco-formnotice a:hover {
  color: rgb(197, 0, 88.9677419355);
}

.aco-formerror {
  background: #fde8e8;
  color: #8a1c1c;
  border-radius: 4px;
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  margin-top: 0.5rem;
}
.aco-formerror p {
  margin: 0;
}
.aco-formerror a {
  font-weight: 600;
  color: #f80070;
}
.aco-formerror a:hover {
  color: rgb(197, 0, 88.9677419355);
}

/*------------------------------------*\
  Abstract
\*------------------------------------*/
/*------------------------------------*\
  Abstract
\*------------------------------------*/
/*------------------------------------*\
#Tutorial Screenshots
\*------------------------------------*/
.step-screenshot {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.step-screenshot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: #fff;
}

/*------------------------------------*\
#Graphic Mixins
\*------------------------------------*/
.object-crop-topleft {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}

.object-crop-center {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.object-crop-topcenter {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

/*------------------------------------*\
#WP Embeds
\*------------------------------------*/
figure.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  position: relative !important;
  max-width: 100%;
}
figure.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
  content: "" !important;
  display: block !important;
  padding-top: 56.25% !important;
}
figure.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper > iframe {
  position: relative;
  width: 100%;
  height: auto;
  border: 0;
  display: block;
}
figure.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper {
  position: relative !important;
  max-width: 100%;
}
figure.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {
  content: "" !important;
  display: block !important;
  padding-top: 75% !important;
}
figure.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper > iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block !important;
}

/*------------------------------------*\
  #Cards
\*------------------------------------*/
.aco-card {
  border-radius: 8px;
}
.aco-card .wp-block-post-title a {
  text-decoration: none;
}
.aco-card .wp-block-post-title a:hover {
  color: #f80070;
}
.aco-card .has-cropped-image .wp-block-post-featured-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.aco-card .has-cropped-image .wp-block-post-featured-image img {
  height: 120%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}
.aco-card .has-cropped-image .wp-block-post-featured-image.bkg-adaptive-card img {
  -o-object-position: top left;
     object-position: top left;
}

/*------------------------------------*\
  Abstract
\*------------------------------------*/
/*------------------------------------*\
# YouTube
\*------------------------------------*/
.youtube-wrapper {
  width: 100%;
  position: relative;
}
.youtube-wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
  border: 0;
  border-radius: 8px;
}
.youtube-wrapper.card iframe {
  border-radius: 8px 8px 0 0;
}

/*------------------------------------*\
# Featured Video Gallery
\*------------------------------------*/
/* Featured Video Gallery */
.wp-block-columns.video-gallery {
  flex-wrap: wrap !important; /* override WP core at ≥782px */
  gap: 1rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .wp-block-columns.video-gallery {
    max-width: 900px; /* a bit wider on tablets */
  }
}
@media (min-width: 1105px) {
  .wp-block-columns.video-gallery {
    flex-wrap: nowrap !important;
    gap: 1.25rem;
    max-width: none;
  }
}

.aco-youtube {
  margin: 1rem 0;
}
.aco-youtube .aco-youtube__inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}
.aco-youtube .aco-youtube__inner .aco-youtube__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.aco-youtube .aco-youtube__title {
  margin-top: 0.5rem;
  font-weight: 600;
  line-height: 1.3;
}

/*------------------------------------*\
# YouTube Card
\*------------------------------------*/
.yt-card {
  display: inline-block;
  width: 100%;
}

.yt-card__thumb {
  all: unset;
  display: block;
  width: 100%;
  cursor: pointer;
}
.yt-card__thumb .yt-thumb__ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}
.yt-card__thumb .yt-thumb__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateZ(0);
  display: block;
}
.yt-card__thumb .yt-thumb__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.65);
}
.yt-card__thumb .yt-thumb__play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-45%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}
.yt-card__thumb:hover .yt-thumb__play {
  background: rgba(0, 0, 0, 0.85);
}

.yt-card__title {
  margin-top: 0.5rem;
  line-height: 1.3;
  padding: 0.75rem;
}

/*------------------------------------*\
# YouTube Modal
\*------------------------------------*/
.ytm-root {
  display: none;
}

/* Stacking above admin bar / UI */
.ytm-overlay {
  z-index: 1000000;
}

.ytm-dialog {
  z-index: 1000001;
}

.ytm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: auto; /* receives clicks */
}

.ytm-dialog {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  pointer-events: none; /* let outside clicks hit overlay */
}

.ytm-frame {
  position: relative; /* anchor for the close button */
  width: min(1100px, 92vw);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  pointer-events: auto; /* interact with player + button */
}

.ytm-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ytm-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}
.ytm-close:hover, .ytm-close:focus-visible {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.03);
}
.ytm-close svg {
  width: 20px;
  height: 20px;
}

.ytm-root {
  display: none;
}

.ytm-lock {
  overflow: hidden;
}

/*------------------------------------*\
  #5 Blocks (Gutenberg or reusable blocks)
\*------------------------------------*/
/*------------------------------------*\
  #6 Pages (page-specific styles)
\*------------------------------------*/
/*------------------------------------*\
#Global
\*------------------------------------*/
.force-white-icons svg {
  color: #fff !important;
}

.json-pending {
  visibility: hidden;
}

.json-ready {
  visibility: visible;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/*------------------------------------*\
#Links
\*------------------------------------*/
a:hover {
  text-decoration: none;
  color: #f80070;
}

.wp-block-navigation__container .has-child button:hover {
  text-decoration: none;
}

li.wp-block-navigation-item:hover {
  color: #f80070;
}
li.wp-block-navigation-item.wp-block-navigation-submenu:hover {
  color: #f80070;
}

/*------------------------------------*\
#Graphics
\*------------------------------------*/
.aco-shadow {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  transition: box-shadow 0.2s ease-in-out;
}
.aco-shadow--hover:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.aco-shadow--dark {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/*------------------------------------*\
#Sidebar
\*------------------------------------*/
.wp-block-column .toc-sidebar {
  align-self: start;
  position: sticky;
  top: 5rem;
  width: 100%;
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
  box-sizing: border-box;
  padding-bottom: 1rem;
}

.toc-nav {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}
.toc-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}
.toc-nav ul a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
}
.toc-nav ul a.is-active {
  background-color: rgb(217.2341772152, 217.7278481013, 234.2658227848);
  position: relative;
}

.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal.labelsOn {
  padding-top: 30px !important;
}

/*------------------------------------*\
#Navgiation
\*------------------------------------*/
.wp-block-navigation__container .current-menu-item > a {
  text-decoration: none;
}
/*# sourceMappingURL=styles.css.map */
