/*
Theme Name: Jeff Gothelf Theme
Author: Michelle Schulp Hunt
Description: A pink Full Site Editing utility theme
Version: 1.4.2
Requires at least: 6.2
Tested up to: 6.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jeff-gothelf
*/
/* Base*/
/* - Reset the browser*/
/**
 * Base
 * - Reset the browser
 */
/**
 * Breakpoints & Media Queries
 */
/**
*  Converts a hex value into the rgb equivalent.
*
* @param {string} hex - the hexadecimal value to convert
* @return {string} comma separated rgb values
*/
/**
 * Long content fade mixin
 *
 * Creates a fading overlay to signify that the content is longer
 * than the space allows.
 */
/**
 * Breakpoint mixins
 */
/**
 * Focus styles.
 */
/**
 * Applies editor left position to the selector passed as argument
 */
/**
 * Styles that are reused verbatim in a few places
 */
/**
 * Allows users to opt-out of animations via OS-level preferences.
 */
/**
 * Reset default styles for JavaScript UI based pages.
 * This is a WP-admin agnostic reset
 */
/**
 * Reset the WP Admin page styles for Gutenberg-like pages.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  word-wrap: break-word;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background: var(--wp--custom--color--background);
  height: 100%;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: var(--wp--custom--body--typography--line-height);
  font-weight: var(--wp--custom--body--typography--font-weight);
  height: 100%;
  text-rendering: optimizelegibility;
  width: 100%;
}

pre,
abbr,
acronym,
address,
cite,
code,
del,
dfn,
img,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dd,
dl,
dt,
li,
ol,
ul,
fieldset,
form,
legend,
button,
.wp-block-post-comments .comment-edit-link,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-style: normal;
  font-size: 100%;
  font-weight: 400;
  padding: 0;
}

em,
strong {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
  margin: 0;
}

audio[controls],
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

pre {
  overflow: auto;
}

code,
pre {
  font-family: var(--wp--custom--code--typography--font-family);
  font-weight: var(--wp--custom--code--typography--font-weight);
  line-height: var(--wp--custom--code--typography--line-height);
}

@-webkit-viewport {
  width: device-width;
}
@-moz-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
.is-style-reverse {
  color: var(--wp--custom--color--background) !important;
}
.is-style-reverse h1,
.is-style-reverse h2,
.is-style-reverse h3,
.is-style-reverse h4,
.is-style-reverse h5,
.is-style-reverse h6,
.is-style-reverse p {
  color: var(--wp--custom--color--background) !important;
}
.is-style-reverse a {
  color: var(--wp--custom--color--background) !important;
}
.is-style-reverse a:hover, .is-style-reverse a:focus {
  opacity: 0.9;
}
.is-style-reverse label {
  color: var(--wp--custom--color--background) !important;
}
.is-style-reverse input.wp-block-search__input,
.is-style-reverse input[type=text],
.is-style-reverse input[type=email],
.is-style-reverse input[type=url],
.is-style-reverse input[type=password],
.is-style-reverse input[type=search],
.is-style-reverse input[type=number],
.is-style-reverse input[type=tel],
.is-style-reverse input[type=range],
.is-style-reverse input[type=date],
.is-style-reverse input[type=month],
.is-style-reverse input[type=week],
.is-style-reverse input[type=time],
.is-style-reverse input[type=datetime],
.is-style-reverse input[type=datetime-local],
.is-style-reverse input[type=color],
.is-style-reverse textarea {
  background-color: transparent !important;
  border-color: var(--wp--custom--color--background) !important;
  color: var(--wp--custom--color--background) !important;
}
.is-style-reverse input.wp-block-search__input:focus,
.is-style-reverse input[type=text]:focus,
.is-style-reverse input[type=email]:focus,
.is-style-reverse input[type=url]:focus,
.is-style-reverse input[type=password]:focus,
.is-style-reverse input[type=search]:focus,
.is-style-reverse input[type=number]:focus,
.is-style-reverse input[type=tel]:focus,
.is-style-reverse input[type=range]:focus,
.is-style-reverse input[type=date]:focus,
.is-style-reverse input[type=month]:focus,
.is-style-reverse input[type=week]:focus,
.is-style-reverse input[type=time]:focus,
.is-style-reverse input[type=datetime]:focus,
.is-style-reverse input[type=datetime-local]:focus,
.is-style-reverse input[type=color]:focus,
.is-style-reverse textarea:focus {
  border-color: var(--wp--custom--color--background) !important;
  color: var(--wp--custom--color--background) !important;
  outline: 1px dotted currentcolor;
}

@media (min-width: 480px) {
  .wp-block[data-align=left],
  .wp-block[data-align=right],
  .wp-site-blocks .alignleft,
  .wp-site-blocks .alignright {
    max-width: var(--wp--custom--alignment--aligned-max-width);
  }
}
.aligncenter {
  text-align: center;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.alignleft {
  margin-top: 0;
  margin-right: var(--wp--custom--gap--horizontal) !important;
}

.alignright {
  margin-top: 0;
  margin-left: var(--wp--custom--gap--horizontal) !important;
}

/*
 * Alignment styles - from TT2
 * These rules are temporary, and should not be relied on or
 * modified too heavily by themes or plugins that build on
 * Twenty Twenty-Two. These are meant to be a precursor to
 * a global solution provided by the Block Editor.
 *
 * Relevant issues:
 * https://github.com/WordPress/gutenberg/issues/35607
 * https://github.com/WordPress/gutenberg/issues/35884
 */
.edit-post-visual-editor__post-title-wrapper,
.wp-block-group.alignfull,
.wp-block-group.has-background,
.wp-block-columns.alignfull,
.wp-block-cover.alignfull,
.is-root-container .wp-block[data-align=full] > .wp-block-group,
.is-root-container .wp-block[data-align=full] > .wp-block-columns.has-background,
.is-root-container .wp-block[data-align=full] > .wp-block-cover {
  padding-left: var(--wp--custom--gap--horizontal);
  padding-right: var(--wp--custom--gap--horizontal);
}

.wp-block-group.has-background {
  padding: var(--wp--custom--gap--horizontal);
}

.wp-site-blocks .alignfull,
.wp-site-blocks > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-cover,
.wp-site-blocks > .wp-block-template-part > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-template-part > .wp-block-cover,
body > .is-root-container > .wp-block-cover,
body > .is-root-container > .wp-block-template-part > .wp-block-group.has-background,
body > .is-root-container > .wp-block-template-part > .wp-block-cover,
.is-root-container .wp-block[data-align=full] {
  max-width: none;
  width: unset;
}

/* Blocks inside columns don't have negative margins. */
.wp-site-blocks .wp-block-columns .wp-block-column .alignfull,
.is-root-container .wp-block-columns .wp-block-column .wp-block[data-align=full],
.wp-site-blocks .alignfull:not(.wp-block-group) .alignfull,
.is-root-container .wp-block[data-align=full] > *:not(.wp-block-group) .wp-block[data-align=full] {
  margin-left: auto;
  margin-right: auto;
  width: inherit;
}

.alignfull.has-global-padding > .alignfull:not(.has-global-padding) > :where([class*=wp-block-]:not([class*=__]), p, h1, h2, h3, h4, h5, h6, ul, ol) {
  padding-left: 0;
  padding-right: 0;
}

.has-foreground-background-color {
  background-color: var(--wp--custom--color--foreground) !important;
}

.has-background-background-color {
  background-color: var(--wp--custom--color--background) !important;
}

.has-foreground-color {
  color: var(--wp--custom--color--foreground) !important;
}

.has-background-color {
  color: var(--wp--custom--color--background) !important;
}

.wp-site-blocks .header-wrapper {
  margin-top: 0 !important;
}
.wp-site-blocks .header-wrapper button:not(.wp-block-navigation-item__content):not(.wp-block-navigation__responsive-container-open), .wp-site-blocks .header-wrapper .wp-block-post-comments .comment-edit-link:not(.wp-block-navigation-item__content):not(.wp-block-navigation__responsive-container-open), .wp-block-post-comments .wp-site-blocks .header-wrapper .comment-edit-link:not(.wp-block-navigation-item__content):not(.wp-block-navigation__responsive-container-open),
.wp-site-blocks .header-wrapper .wp-element-button,
.wp-site-blocks .header-wrapper .wp-block-button__link {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-bottom-width: var(--wp--custom--button--border--width) !important;
  padding-bottom: var(--wp--custom--button--spacing--border-padding--top) !important;
}

.wp-site-blocks .site-header {
  row-gap: 0;
}
@media (max-width: 599px) {
  .wp-site-blocks .site-header .site-brand {
    display: contents;
  }
}

.has-modal-open .wp-block-site-title {
  position: relative;
  z-index: 100001;
  color: var(--wp--custom--color--background);
}

.wp-block-navigation__responsive-container-close {
  filter: invert(1);
}

.wp-block-site-logo img {
  max-height: 200px;
  width: auto;
  transition: all 0.3s;
}

.wp-site-blocks .header-sticky {
  overflow: visible;
  padding-top: 0;
  padding-bottom: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}
.admin-bar .wp-site-blocks .header-sticky {
  top: var(--wpadmin-bar--height);
}
.wp-site-blocks .header-sticky.header-absolute:where(:not(.block-editor-block-list__block)) {
  height: 0;
  overflow: visible;
}
.wp-site-blocks .header-sticky.header-absolute:where(:not(.block-editor-block-list__block)):not(.header-sticky-small):not(.block-editor-block-list__block) .header-alt {
  background-color: transparent !important;
  transition: all 0.3s;
}
.wp-site-blocks .header-sticky.block-editor-block-list__block {
  position: relative;
}
.wp-site-blocks .header-sticky .site-header {
  transition: all 0.3s;
}
@media (max-width: 599px) {
  .wp-site-blocks .header-sticky.header-absolute {
    margin-bottom: -61px;
  }
}
.wp-site-blocks .header-sticky.header-sticky-small .header-alt {
  transition: all 0.3s;
}
.wp-site-blocks .header-sticky.header-sticky-small .site-header {
  padding-top: var(--wp--preset--spacing--10) !important;
  padding-bottom: var(--wp--preset--spacing--10) !important;
}
.wp-site-blocks .header-sticky.header-sticky-small .wp-block-button__link {
  color: var(--wp--custom--color--background);
}
.wp-site-blocks .header-sticky.header-sticky-small .wp-block-site-logo img {
  max-height: 60px;
  width: auto;
}

.wc-block-mini-cart__button {
  padding: 0.5em;
}
@media (min-width: 782px) {
  .wc-block-mini-cart__button {
    padding-top: 0.6em;
  }
}

.wp-block-woocommerce-customer-account a .wc-block-customer-account__account-icon {
  width: 1.35em;
  padding: 0.6em;
  border-radius: var(--wp--custom--button--border--radius);
}
.wp-block-woocommerce-customer-account a .wc-block-customer-account__account-icon:hover {
  background: var(--wp--custom--button--hover--color--background);
  color: var(--wp--custom--button--color--text);
}

/* Hide woo notice if not logged in */
body:not(.logged-in) .sensei-message.info {
  display: none;
}

.site-footer {
  margin-top: 0 !important;
}

.site-footer-main {
  margin-top: 0 !important;
}

.site-footer-utility {
  margin-top: 0 !important;
}

:root {
  --wpadmin-bar--height: 46px;
}

.wp-site-blocks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
}

:where(body .is-layout-flex) {
  gap: var(--wp--preset--spacing--30);
}

:where(body .is-layout-flow) > *,
:where(body .is-layout-constrained) > * {
  margin-block-start: var(--wp--custom--gap--vertical);
  margin-block-end: var(--wp--custom--gap--vertical);
}
:where(body .is-layout-flow) > * > :first-child:first-child,
:where(body .is-layout-constrained) > * > :first-child:first-child {
  margin-block-start: 0;
}
:where(body .is-layout-flow) > * > :last-child:last-child,
:where(body .is-layout-constrained) > * > :last-child:last-child {
  margin-block-end: 0;
}

header.wp-block-template-part .is-layout-flow > *,
header.wp-block-template-part .is-layout-constrained > *,
footer.wp-block-template-part .is-layout-flow > *,
footer.wp-block-template-part .is-layout-constrained > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.wrapper {
  position: relative;
}

.site-footer-container {
  margin-top: auto;
}

@media (min-width: 600px) {
  body.admin-bar {
    --wpadmin-bar--height: 32px;
  }
}
body.admin-bar .wp-site-blocks {
  min-height: calc(100vh - var(--wpadmin-bar--height));
}

@media (max-width: 781px) {
  .sticky-header-enabled #wpadminbar {
    position: fixed;
  }
}

.wp-block-template-part {
  clear: both;
  overflow: visible;
}

.content-body {
  margin-top: 0 !important;
}

.remove-link-decoration > a {
  text-decoration: none !important;
}
.remove-link-decoration > a:hover {
  text-decoration: underline !important;
  color: inherit;
}

.image-no-margin {
  margin: 0;
}
.image-no-margin * {
  vertical-align: bottom;
}

.has-background-no-padding.wp-block-columns.has-background {
  padding: 0;
}

.mt-0 {
  margin-top: 0 !important;
}

.gapless-group > * {
  margin-top: 0 !important;
}

@media (min-width: 782px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 781px) {
  .desktop-only {
    display: none !important;
  }
}

@media (max-width: 781px) {
  .reverse-columns-mobile {
    flex-direction: column-reverse;
  }
}

/* Elements*/
/* - Styles for basic HTML elemants*/
/**
 * Elements
 * - Styles for basic HTML elemants
 */
a:where(:not(.wp-block-button__link, .button)):hover, a:where(:not(.wp-block-button__link, .button)):focus {
  color: var(--wp--custom--color--interactive-hover);
}
a:where(:not(.wp-block-button__link, .button)):active, a:where(:not(.wp-block-button__link, .button)):focus {
  outline: 1px dotted currentcolor;
}

a {
  cursor: pointer;
  transition: var(--wp--custom--animation--transition-type) var(--wp--custom--animation--transition-duration);
}
a:hover, a:focus {
  transition: var(--wp--custom--animation--transition-type) var(--wp--custom--animation--transition-duration);
}

.block-editor-block-list__layout a,
.wp-block-post-content a {
  text-decoration-line: var(--wp--custom--paragraph--link--typography--text-decoration);
}
.block-editor-block-list__layout a:hover, .block-editor-block-list__layout a:focus,
.wp-block-post-content a:hover,
.wp-block-post-content a:focus {
  -webkit-text-decoration: var(--wp--custom--paragraph--link--hover--typography--text-decoration);
          text-decoration: var(--wp--custom--paragraph--link--hover--typography--text-decoration);
}

a:not(.ab-item):not(.screen-reader-shortcut):active, a:not(.ab-item):not(.screen-reader-shortcut):focus {
  outline: 1px dotted currentcolor;
}

.has-medium-font-size,
.has-small-font-size,
.has-x-small-font-size {
  font-weight: var(--wp--custom--body--typography--font-weight);
}

:where([style*="text-decoration:none"]) > a {
  text-decoration: none;
}
:where([style*="text-decoration:none"]) > a:hover, :where([style*="text-decoration:none"]) > a:focus {
  -webkit-text-decoration: var(--wp--custom--paragraph--link--typography--text-decoration);
          text-decoration: var(--wp--custom--paragraph--link--typography--text-decoration);
}

ul,
ol {
  padding-left: 2em;
}

dl {
  margin-top: var(--wp--custom--gap--vertical);
  margin-bottom: var(--wp--custom--gap--vertical);
}
dl dt {
  font-weight: 700;
}
dl dd {
  margin-left: 0;
  margin-bottom: var(--wp--custom--gap--vertical);
}

code {
  display: inline-block;
  line-height: inherit;
}

input.wp-block-search__input,
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  background: var(--wp--custom--form--color--background);
  border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
  border-radius: var(--wp--custom--form--border--radius);
  box-shadow: var(--wp--custom--form--color--box-shadow);
  color: var(--wp--custom--form--color--text);
  font-family: inherit;
  padding: var(--wp--custom--form--padding);
}
input.wp-block-search__input:active, input.wp-block-search__input:focus,
input[type=text]:active,
input[type=text]:focus,
input[type=email]:active,
input[type=email]:focus,
input[type=url]:active,
input[type=url]:focus,
input[type=password]:active,
input[type=password]:focus,
input[type=search]:active,
input[type=search]:focus,
input[type=number]:active,
input[type=number]:focus,
input[type=tel]:active,
input[type=tel]:focus,
input[type=range]:active,
input[type=range]:focus,
input[type=date]:active,
input[type=date]:focus,
input[type=month]:active,
input[type=month]:focus,
input[type=week]:active,
input[type=week]:focus,
input[type=time]:active,
input[type=time]:focus,
input[type=datetime]:active,
input[type=datetime]:focus,
input[type=datetime-local]:active,
input[type=datetime-local]:focus,
input[type=color]:active,
input[type=color]:focus,
textarea:active,
textarea:focus {
  border-color: currentcolor;
  color: var(--wp--custom--form--color--text);
  outline: 1px solid currentcolor;
  outline-offset: -1px;
}

input[type=checkbox] {
  -o-appearance: none;
  appearance: none;
  border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
  border-radius: var(--wp--custom--form--border--radius);
  content: var(--wp--custom--form--checkbox--unchecked--content);
  height: var(--wp--custom--form--checkbox--sizing--height);
  width: var(--wp--custom--form--checkbox--sizing--width);
  background: var(--wp--custom--form--color--background);
}
input[type=checkbox]:checked {
  content: var(--wp--custom--form--checkbox--checked--content);
  font-size: var(--wp--custom--form--checkbox--checked--font-size);
  left: var(--wp--custom--form--checkbox--checked--position--left);
  top: var(--wp--custom--form--checkbox--checked--position--top);
}

input[type=checkbox],
input[type=submit],
button,
.wp-block-post-comments .comment-edit-link {
  transition: all 0.2s;
}
input[type=checkbox]:focus,
input[type=submit]:focus,
button:focus,
.wp-block-post-comments .comment-edit-link:focus {
  outline: 1px dotted currentcolor;
  outline-offset: 2px;
}
input[type=checkbox]::placeholder,
input[type=submit]::placeholder,
button::placeholder,
.wp-block-post-comments .comment-edit-link::placeholder {
  color: var(--wp--custom--form--color--text);
  opacity: 0.66;
}

select {
  font-family: inherit;
  font-size: 100%;
}

textarea {
  width: 100%;
}

label {
  font-size: var(--wp--custom--form--label--typography--font-size);
  font-weight: var(--wp--custom--form--label--typography--font-weight);
  letter-spacing: var(--wp--custom--form--label--typography--letter-spacing);
  text-transform: var(--wp--custom--form--label--typography--text-transform);
  margin-top: var(--wp--custom--form--label--spacing--margin--top);
  margin-bottom: var(--wp--custom--form--label--spacing--margin--bottom);
}

input[type=checkbox] + label {
  display: inline;
  margin-left: 0.5em;
  line-height: 1em;
}

img {
  border: 0;
  height: auto;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  vertical-align: middle;
}

figure {
  margin: 0 0 var(--wp--custom--gap--vertical) 0;
}

figcaption {
  display: block !important;
  font-size: var(--wp--custom--figcaption--font-size);
  font-style: var(--wp--custom--figcaption--font-style);
  font-weight: var(--wp--custom--figcaption--font-weight);
  margin: var(--wp--custom--figcaption--margin);
  padding: 0;
}

/* TABLES */
table {
  background-color: var(--wp--custom--table--color--background);
  border-collapse: collapse;
  border-spacing: 0;
  height: 100%;
  width: 100%;
}

th,
td {
  border-width: 0;
  font-size: var(--wp--custom--table--typography--font-size);
  line-height: var(--wp--custom--table--typography--line-height);
  padding: var(--wp--custom--table--spacing--cell-padding);
  text-align: var(--wp--custom--table--typography--text-align);
  vertical-align: var(--wp--custom--table--typography--vertical-align);
}

th {
  font-weight: var(--wp--custom--table--header--typography--font-weight);
}

td {
  border-top: var(--wp--custom--table--border--width) var(--wp--custom--table--border--style) var(--wp--custom--table--border--color);
}

thead th {
  background-color: var(--wp--custom--table--header--color--background);
  border-bottom: var(--wp--custom--table--header--border--width) var(--wp--custom--table--header--border--style) var(--wp--custom--table--header--border--color);
  vertical-align: var(--wp--custom--table--header--typography--vertical-align);
}

tfoot th {
  border-bottom: inherit;
}

thead:first-child tr:first-child th,
thead:first-child tr-first-child td {
  border-top: 0;
}

/* Blocks*/
/* - These styles replace key Gutenberg Block styles for fonts, colors, and*/
/*   spacing with CSS-variables overrides*/
/**
 * Button
 * Needs to account for editor style and not overreach
 */
button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])), .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])),
input[type=submit] {
  border-radius: var(--wp--custom--button--border--radius);
  border-style: var(--wp--custom--button--border--style);
  border-width: var(--wp--custom--button--border--width) var(--wp--custom--button--border--width) var(--wp--custom--button--border--width-bottom) var(--wp--custom--button--border--width);
  padding-top: var(--wp--custom--button--spacing--border-padding--top);
  padding-bottom: var(--wp--custom--button--spacing--border-padding--bottom);
  padding-left: var(--wp--custom--button--spacing--border-padding--left);
  padding-right: var(--wp--custom--button--spacing--border-padding--right);
  font-weight: var(--wp--custom--button--typography--font-weight);
  font-family: var(--wp--custom--button--typography--font-family);
  font-size: var(--wp--custom--button--typography--font-size);
  line-height: var(--wp--custom--button--typography--line-height);
  text-decoration: none;
  opacity: 1;
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
  transition: var(--wp--custom--animation--transition-type) var(--wp--custom--animation--transition-duration);
  cursor: pointer;
}
button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])) svg, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])) svg,
input[type=submit] svg {
  fill: var(--wp--custom--button--color--text);
}
button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):hover, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):hover, button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):focus, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):focus, button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])).has-focus, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])).has-focus,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=submit].has-focus {
  border-bottom-width: var(--wp--custom--button--border--width);
  padding-bottom: var(--wp--custom--button--spacing--border-padding--bottom-alt);
}
button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):not(.has-background):not(.has-text-color):hover, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):not(.has-background):not(.has-text-color):hover, button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):not(.has-background):not(.has-text-color):focus, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):not(.has-background):not(.has-text-color):focus, button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):not(.has-background):not(.has-text-color).has-focus, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):not(.has-background):not(.has-text-color).has-focus,
input[type=submit]:not(.has-background):not(.has-text-color):hover,
input[type=submit]:not(.has-background):not(.has-text-color):focus,
input[type=submit]:not(.has-background):not(.has-text-color).has-focus {
  --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
  --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
  --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
  opacity: 1;
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
}
button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):not(.has-background):not(.has-text-color):hover svg, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):not(.has-background):not(.has-text-color):hover svg, button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):not(.has-background):not(.has-text-color):focus svg, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):not(.has-background):not(.has-text-color):focus svg, button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):not(.has-background):not(.has-text-color).has-focus svg, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])):not(.has-background):not(.has-text-color).has-focus svg,
input[type=submit]:not(.has-background):not(.has-text-color):hover svg,
input[type=submit]:not(.has-background):not(.has-text-color):focus svg,
input[type=submit]:not(.has-background):not(.has-text-color).has-focus svg {
  fill: var(--wp--custom--button--color--text);
}
button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])).has-background:hover, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])).has-background:hover, button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])).has-background:focus, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])).has-background:focus, button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])).has-background.has-focus, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])).has-background.has-focus, button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])).has-text-color:hover, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])).has-text-color:hover, button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])).has-text-color:focus, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])).has-text-color:focus, button:where(:not([role=presentation]):not(.components-button):not([class*=navigation])).has-text-color.has-focus, .wp-block-post-comments .comment-edit-link:where(:not([role=presentation]):not(.components-button):not([class*=navigation])).has-text-color.has-focus,
input[type=submit].has-background:hover,
input[type=submit].has-background:focus,
input[type=submit].has-background.has-focus,
input[type=submit].has-text-color:hover,
input[type=submit].has-text-color:focus,
input[type=submit].has-text-color.has-focus {
  filter: brightness(1.2);
}

a.button,
.wp-block-sensei-lms-course-overview a {
  text-decoration: none;
  border-radius: var(--wp--custom--button--border--radius);
  border-style: var(--wp--custom--button--border--style);
  border-width: var(--wp--custom--button--border--width) var(--wp--custom--button--border--width) var(--wp--custom--button--border--width-bottom) var(--wp--custom--button--border--width);
  padding-top: var(--wp--custom--button--spacing--border-padding--top);
  padding-bottom: var(--wp--custom--button--spacing--border-padding--bottom);
  padding-left: var(--wp--custom--button--spacing--border-padding--left);
  padding-right: var(--wp--custom--button--spacing--border-padding--right);
  font-weight: var(--wp--custom--button--typography--font-weight);
  font-family: var(--wp--custom--button--typography--font-family);
  font-size: var(--wp--custom--button--typography--font-size);
  line-height: var(--wp--custom--button--typography--line-height);
  text-decoration: none;
  opacity: 1;
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
  transition: var(--wp--custom--animation--transition-type) var(--wp--custom--animation--transition-duration);
  cursor: pointer;
}
a.button svg,
.wp-block-sensei-lms-course-overview a svg {
  fill: var(--wp--custom--button--color--text);
}
a.button:hover, a.button:focus, a.button.has-focus,
.wp-block-sensei-lms-course-overview a:hover,
.wp-block-sensei-lms-course-overview a:focus,
.wp-block-sensei-lms-course-overview a.has-focus {
  border-bottom-width: var(--wp--custom--button--border--width);
  padding-bottom: var(--wp--custom--button--spacing--border-padding--bottom-alt);
}
a.button:not(.has-background):not(.has-text-color):hover, a.button:not(.has-background):not(.has-text-color):focus, a.button:not(.has-background):not(.has-text-color).has-focus,
.wp-block-sensei-lms-course-overview a:not(.has-background):not(.has-text-color):hover,
.wp-block-sensei-lms-course-overview a:not(.has-background):not(.has-text-color):focus,
.wp-block-sensei-lms-course-overview a:not(.has-background):not(.has-text-color).has-focus {
  --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
  --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
  --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
  opacity: 1;
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
}
a.button:not(.has-background):not(.has-text-color):hover svg, a.button:not(.has-background):not(.has-text-color):focus svg, a.button:not(.has-background):not(.has-text-color).has-focus svg,
.wp-block-sensei-lms-course-overview a:not(.has-background):not(.has-text-color):hover svg,
.wp-block-sensei-lms-course-overview a:not(.has-background):not(.has-text-color):focus svg,
.wp-block-sensei-lms-course-overview a:not(.has-background):not(.has-text-color).has-focus svg {
  fill: var(--wp--custom--button--color--text);
}
a.button.has-background:hover, a.button.has-background:focus, a.button.has-background.has-focus, a.button.has-text-color:hover, a.button.has-text-color:focus, a.button.has-text-color.has-focus,
.wp-block-sensei-lms-course-overview a.has-background:hover,
.wp-block-sensei-lms-course-overview a.has-background:focus,
.wp-block-sensei-lms-course-overview a.has-background.has-focus,
.wp-block-sensei-lms-course-overview a.has-text-color:hover,
.wp-block-sensei-lms-course-overview a.has-text-color:focus,
.wp-block-sensei-lms-course-overview a.has-text-color.has-focus {
  filter: brightness(1.2);
}

.wp-block-sensei-lms-course-overview a {
  display: inline-block;
  line-height: 1.5;
}

/**
 * Block Options
 */
.wp-block-button .wp-block-button__link {
  border-radius: var(--wp--custom--button--border--radius);
  border-style: var(--wp--custom--button--border--style);
  border-width: var(--wp--custom--button--border--width) var(--wp--custom--button--border--width) var(--wp--custom--button--border--width-bottom) var(--wp--custom--button--border--width);
  padding-top: var(--wp--custom--button--spacing--border-padding--top);
  padding-bottom: var(--wp--custom--button--spacing--border-padding--bottom);
  padding-left: var(--wp--custom--button--spacing--border-padding--left);
  padding-right: var(--wp--custom--button--spacing--border-padding--right);
  font-weight: var(--wp--custom--button--typography--font-weight);
  font-family: var(--wp--custom--button--typography--font-family);
  font-size: var(--wp--custom--button--typography--font-size);
  line-height: var(--wp--custom--button--typography--line-height);
  text-decoration: none;
  opacity: 1;
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
  transition: var(--wp--custom--animation--transition-type) var(--wp--custom--animation--transition-duration);
  cursor: pointer;
  text-decoration: none;
}
.wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus, .wp-block-button .wp-block-button__link.has-focus {
  border-bottom-width: var(--wp--custom--button--border--width);
  padding-bottom: var(--wp--custom--button--spacing--border-padding--bottom-alt);
}
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
  --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
  --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
  --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
  opacity: 1;
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
}
.wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
  fill: var(--wp--custom--button--color--text);
}
.wp-block-button .wp-block-button__link.has-background:hover, .wp-block-button .wp-block-button__link.has-background:focus, .wp-block-button .wp-block-button__link.has-background.has-focus, .wp-block-button .wp-block-button__link.has-text-color:hover, .wp-block-button .wp-block-button__link.has-text-color:focus, .wp-block-button .wp-block-button__link.has-text-color.has-focus {
  filter: brightness(1.2);
}
.wp-block-button .wp-block-button__link svg {
  fill: var(--wp--custom--button--color--text);
}
.wp-block-button.is-style-outline .wp-block-button__link {
  --wp--custom--button--color--text: var(--wp--custom--button--outline--color--text);
  --wp--custom--button--color--background: transparent;
  --wp--custom--button--border--color: var(--wp--custom--button--outline--border--color);
  --wp--custom--button--hover--color--background: var(--wp--custom--button--outline--hover--color--background);
  --wp--custom--button--hover--color--text: var(--wp--custom--button--outline--hover--color--text);
  --wp--custom--button--hover--border--color: var(--wp--custom--button--outline--hover--border--color);
  border-radius: var(--wp--custom--button--border--radius);
  border-style: var(--wp--custom--button--border--style);
  border-width: var(--wp--custom--button--border--width) var(--wp--custom--button--border--width) var(--wp--custom--button--border--width-bottom) var(--wp--custom--button--border--width);
  padding-top: var(--wp--custom--button--spacing--border-padding--top);
  padding-bottom: var(--wp--custom--button--spacing--border-padding--bottom);
  padding-left: var(--wp--custom--button--spacing--border-padding--left);
  padding-right: var(--wp--custom--button--spacing--border-padding--right);
  font-weight: var(--wp--custom--button--typography--font-weight);
  font-family: var(--wp--custom--button--typography--font-family);
  font-size: var(--wp--custom--button--typography--font-size);
  line-height: var(--wp--custom--button--typography--line-height);
  text-decoration: none;
  opacity: 1;
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
  transition: var(--wp--custom--animation--transition-type) var(--wp--custom--animation--transition-duration);
  cursor: pointer;
}
.wp-block-button.is-style-outline .wp-block-button__link svg {
  fill: var(--wp--custom--button--color--text);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
  border-bottom-width: var(--wp--custom--button--border--width);
  padding-bottom: var(--wp--custom--button--spacing--border-padding--bottom-alt);
}
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
  --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
  --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
  --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
  opacity: 1;
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
}
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
  fill: var(--wp--custom--button--color--text);
}
.wp-block-button.is-style-outline .wp-block-button__link.has-background:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-background:focus, .wp-block-button.is-style-outline .wp-block-button__link.has-background.has-focus, .wp-block-button.is-style-outline .wp-block-button__link.has-text-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-text-color:focus, .wp-block-button.is-style-outline .wp-block-button__link.has-text-color.has-focus {
  filter: brightness(1.2);
}

.wp-block-buttons .wp-block-button:last-child {
  margin-bottom: 0;
}

.wp-block-calendar table caption {
  color: var(--wp--preset--color--primary);
}
.wp-block-calendar table th {
  background-color: var(--wp--custom--color--tertiary);
  border-color: var(--wp--custom--color--tertiary);
}
.wp-block-calendar table td {
  color: var(--wp--preset--color--primary);
  border-color: var(--wp--custom--color--tertiary);
}

.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption,
.wp-block-gallery .wp-block-image figcaption {
  background: transparent !important;
  bottom: auto !important;
  color: var(--wp--custom--color--foreground) !important;
  line-height: 1.2;
  padding-inline: 0 !important;
  position: relative !important;
}

.wp-block-image {
  /*
  From what I can tell the below are styles regularly used by themes
  to fix the image block.  I believe these should go into the block's
  default styles.  It's difficult to say how this will land, however
  based on discussion found in (many) related issues here:
  https://github.com/WordPress/gutenberg/issues/28923
  https://github.com/WordPress/gutenberg/issues/29506
  */
  text-align: center;
}

/**
	Custom class for zoom-in effect on linked images
 */
.hover-zoom img {
  transition: opacity 1s, transform 1s;
}
.hover-zoom a {
  display: inline-block;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  border: 1px solid var(--wp--preset--color--gray-border);
}
.hover-zoom a:hover img {
  opacity: 0.9;
  transform: scale3d(1.1, 1.1, 1);
}

.wp-block-html iframe {
  height: auto;
  width: auto;
}

.wp-block-spacer {
  margin: 0 !important;
}

k-popout-message,
k-popout-chatbot,
k-popout-button {
  animation: kPopoutOnLoad 0.4s ease-in-out;
}

@keyframes kPopoutOnLoad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/** Navigation **/
.wp-block-navigation .wp-block-navigation-container:where(:not(.has-text-color)) .wp-block-navigation-item,
.wp-block-navigation .wp-block-page-list:where(:not(.has-text-color)) .wp-block-navigation-item {
  color: var(--wp--custom--color--foreground);
}
@media (max-width: 599px) {
  .wp-block-navigation .wp-block-navigation-container,
  .wp-block-navigation .wp-block-page-list {
    gap: 0;
  }
}
.wp-block-navigation .wp-block-navigation-item {
  padding: var(--wp--custom--navigation--item--padding);
}
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
  -webkit-text-decoration: var(--wp--custom--navigation--item--text-decoration);
          text-decoration: var(--wp--custom--navigation--item--text-decoration);
}
.wp-block-navigation .wp-block-navigation-item:hover > .wp-block-navigation-item__content, .wp-block-navigation .wp-block-navigation-item:focus > .wp-block-navigation-item__content {
  -webkit-text-decoration: var(--wp--custom--navigation--hover--text-decoration);
          text-decoration: var(--wp--custom--navigation--hover--text-decoration);
}
.wp-block-navigation .wp-block-navigation-item:focus {
  outline: 1px dotted currentcolor;
  outline-offset: 2px;
}
.wp-block-navigation .wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content, .wp-block-navigation .wp-block-navigation-item.current-menu-ancestor > .wp-block-navigation-item__content, .wp-block-navigation .wp-block-navigation-item:has(> .current-menu-ancestor) > .wp-block-navigation-item__content {
  font-weight: var(--theme--type--weight--bold);
  -webkit-text-decoration: var(--wp--custom--navigation--current--text-decoration);
          text-decoration: var(--wp--custom--navigation--current--text-decoration);
}
.wp-block-navigation .wp-block-navigation-item.wp-block-navigation-submenu {
  font-size: inherit;
}
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-submenu__container {
  font-size: var(--wp--custom--navigation--item--font-size);
}
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-icon {
  background-color: transparent;
}
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-icon svg {
  stroke: currentcolor;
}
.site-header .wp-block-navigation {
  column-gap: var(--wp--preset--spacing--30);
}
.site-header .wp-block-navigation .wp-block-navigation-item {
  font-family: var(--wp--preset--font-family--ibm-plex-mono);
}
.site-header .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
  padding: var(--wp--custom--navigation--link--padding);
}
@media (max-width: 599px) {
  .site-header .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content:focus {
    outline: 0;
  }
}
.site-header .wp-block-navigation .wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content, .site-header .wp-block-navigation .wp-block-navigation-item.current-menu-ancestor > .wp-block-navigation-item__content, .site-header .wp-block-navigation .wp-block-navigation-item:has(> .current-menu-ancestor) > .wp-block-navigation-item__content {
  background-color: var(--wp--custom--navigation--current--color--background);
}
@media (min-width: 600px) {
  .site-header .wp-block-navigation .wp-block-navigation__container::before {
    content: "/";
  }
}
.wp-block-navigation .wp-block-navigation-item.has-child {
  transition: all 0.2s;
  color: currentcolor;
}
.wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation-item {
  width: 100%;
}
.wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-icon svg {
  transform: rotateZ(-90deg);
  transition: all 0.4s;
}
.wp-block-navigation .wp-block-navigation-item.has-child:hover > .wp-block-navigation-submenu__toggle svg {
  transform: rotateZ(0deg);
}
.wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation-submenu__toggle[aria-expanded=true] .wp-block-navigation__submenu-icon svg,
.wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation-submenu__toggle[aria-expanded=true] + .wp-block-navigation__submenu-icon svg {
  transform: rotateZ(0deg);
  color: currentcolor;
}
@media (min-width: 600px) {
  .wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container {
    left: 0;
  }
  .wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container:not(.has-background) {
    background-color: transparent;
  }
  .wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container:not(.has-background) .wp-block-navigation-item {
    background-color: var(--wp--custom--navigation--submenu--color--background);
  }
  .wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container:not(.has-text-color) .wp-block-navigation-item {
    color: var(--wp--custom--navigation--submenu--color--text);
  }
  *:where(.is-content-justification-right, .is-content-justification-space-between) .wp-block-navigation .wp-block-navigation-item.has-child:last-of-type .wp-block-navigation__submenu-container {
    left: auto;
    right: 0;
  }
  .wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation-item {
    padding-inline: var(--wp--preset--spacing--10);
  }
}
@media (min-width: 600px) {
  .wp-block-navigation .wp-block-navigation-item.has-child.open-on-hover-click .open-on-hover-click:hover > .wp-block-navigation-item__content, .wp-block-navigation .wp-block-navigation-item.has-child.open-on-hover-click .open-on-hover-click:focus > .wp-block-navigation-item__content {
    color: currentcolor;
  }
  .wp-block-navigation .wp-block-navigation-item.has-child.open-on-hover-click .open-on-hover-click:hover .wp-block-navigation__submenu-icon svg, .wp-block-navigation .wp-block-navigation-item.has-child.open-on-hover-click .open-on-hover-click:focus .wp-block-navigation__submenu-icon svg {
    stroke: currentcolor;
  }
}
.wp-block-navigation .wp-block-navigation-item.has-child.open-on-click {
  padding: 0;
}
.wp-block-navigation .wp-block-navigation-item.has-child.open-on-click > .wp-block-navigation-item__content {
  padding-inline-end: var(--wp--preset--spacing--20) !important;
}
.wp-block-navigation .wp-block-navigation-item.has-child.open-on-click > .wp-block-navigation-item__content span {
  display: inline-block;
}
.wp-block-navigation .wp-block-navigation-item.has-child.open-on-click.current-menu-item > .wp-block-navigation-item__content span, .wp-block-navigation .wp-block-navigation-item.has-child.open-on-click.current-menu-ancestor > .wp-block-navigation-item__content span, .wp-block-navigation .wp-block-navigation-item.has-child.open-on-click:has(> .current-menu-ancestor) > .wp-block-navigation-item__content span {
  background-color: var(--wp--custom--navigation--current--color--background);
  -webkit-text-decoration: var(--wp--custom--navigation--current--text-decoration);
          text-decoration: var(--wp--custom--navigation--current--text-decoration);
}
.wp-block-navigation .wp-block-navigation-item.has-child.open-on-click .wp-block-navigation__submenu-icon {
  color: currentcolor;
}
.site-header .wp-block-navigation .wp-block-navigation-item.has-child.open-on-click {
  padding: 0;
}
.site-header .wp-block-navigation .wp-block-navigation-item.has-child.open-on-click > .wp-block-navigation-item__content {
  padding: var(--wp--custom--navigation--item--padding);
}
.site-header .wp-block-navigation .wp-block-navigation-item.has-child.open-on-click > .wp-block-navigation-item__content span {
  padding: var(--wp--custom--navigation--link--padding);
}
.wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container {
  border: var(--wp--custom--navigation--submenu--border--width) var(--wp--custom--navigation--submenu--border--style) var(--wp--custom--navigation--submenu--border--color);
  width: auto;
}
.wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item {
  display: block;
  position: relative;
}
.wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  display: inline-block;
  width: 100%;
}
.wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.has-child > .wp-block-navigation-item__content {
  width: calc(100% - 10px);
}
.wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.has-child.open-on-hover-click {
  padding: 0;
}
.wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.has-child.open-on-hover-click > .wp-block-navigation-item__content {
  padding: var(--wp--preset--spacing--10);
}
.wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.has-child.open-on-hover-click .wp-block-navigation__submenu-icon {
  margin: 0;
}
.wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.has-child.open-on-click.current-menu-item > .wp-block-navigation-item__content span, .wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.has-child.open-on-click.current-menu-ancestor > .wp-block-navigation-item__content span, .wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation-item.has-child.open-on-click:has(> .current-menu-ancestor) > .wp-block-navigation-item__content span {
  text-decoration: none;
}
.wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
  background-color: inherit;
  position: relative;
  right: auto !important;
  left: 0;
}
.wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  color: currentcolor;
}
@media (min-width: 600px) {
  .wp-block-navigation .wp-block-navigation-item.has-child .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container .wp-block-navigation-item {
    background-color: rgba(0, 0, 0, 0.2) !important;
  }
}
.wp-block-navigation.is-vertical .wp-block-navigation__container {
  gap: 5px;
}
@media (min-width: 600px) {
  .wp-block-navigation .has-child:hover > .wp-block-navigation-submenu__toggle svg {
    transform: rotateZ(0deg);
  }
}
.wp-block-navigation.is-responsive ul.wp-block-social-links {
  margin: 0;
  gap: var(--wp--custom--gap--baseline);
}
@media (max-width: 599px) {
  .wp-block-navigation.is-responsive:where(:not(.is-content-justification-right)) {
    justify-content: right;
  }
}
.wp-block-navigation .wp-block-navigation__responsive-container .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container {
  padding: 0 !important;
  width: 100%;
}
.wp-block-navigation .wp-block-navigation__responsive-container ul.wp-block-social-links {
  justify-content: flex-start;
}
.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open:not(.has-background) {
  background: linear-gradient(180deg, var(--wp--preset--color--black) 0, var(--wp--preset--color--black) calc(60px + var(--wp-admin--admin-bar--height, 0px)), var(--wp--preset--color--quaternary) 60px, var(--wp--preset--color--quaternary) 100%);
  color: var(--wp--custom--color--foreground);
  padding-inline-start: var(--wp--custom--gap--horizontal);
  padding-inline-end: var(--wp--custom--gap--horizontal);
}
.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open:not(.has-text-color) .wp-block-navigation-item__content {
  color: var(--wp--custom--color--foreground);
}
@media (max-width: 599px) {
  .wp-block-navigation .wp-block-navigation__responsive-container {
    font-size: var(--wp--preset--font-size--medium);
  }
  .wp-block-navigation .wp-block-navigation__responsive-container .wp-block-navigation {
    font-size: var(--wp--preset--font-size--medium);
    gap: 0;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container .wp-block-navigation__submenu-container {
    font-size: var(--wp--preset--font-size--normal);
  }
  .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation {
    gap: 0;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:where(:not(.open-on-click)) {
    padding: var(--wp--custom--navigation--item--padding);
  }
  .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item:where(:not(.open-on-click)) .wp-block-navigation-item__content {
    padding: var(--wp--custom--navigation--link--padding);
  }
  .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
    width: 100%;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container.items-justified-right {
    align-items: flex-start !important;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container.items-justified-right .wp-block-navigation-item {
    align-items: flex-start !important;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item {
    display: block;
    width: 100%;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container {
    height: 0;
    overflow: hidden;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child.open-on-click > [aria-expanded=true] ~ .wp-block-navigation__submenu-container {
    height: auto;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child.open-on-hover-click > [aria-expanded=true] ~ .wp-block-navigation__submenu-container, .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child.open-on-hover-click:hover > .wp-block-navigation__submenu-container, .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child.open-on-hover-click:focus > .wp-block-navigation__submenu-container {
    height: auto;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-icon {
    display: inline-block;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container .wp-block-navigation__container,
  .wp-block-navigation .wp-block-navigation__responsive-container .wp-block-page-list {
    min-width: none;
    width: 100%;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container .wp-block-navigation-item {
    padding: 0 !important;
    width: 100%;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container .wp-block-navigation-item > .wp-block-navigation-item__content {
    width: 100%;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container .wp-block-navigation-item .wp-block-navigation-item > .wp-block-navigation-item__content {
    padding-inline-start: var(--wp--preset--spacing--50) !important;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container .wp-block-navigation-item .wp-block-navigation-item .wp-block-navigation-item > .wp-block-navigation-item__content {
    padding-inline-start: var(--wp--preset--spacing--60) !important;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container .wp-block-navigation__submenu-icon {
    position: absolute;
    right: 0;
    top: 0.75em;
  }
}
.wp-block-navigation .wp-block-search .wp-block-search__button {
  padding: 0.25em 0.5em;
}
@media (max-width: 599px) {
  .wp-block-navigation .wp-block-search {
    width: 100%;
  }
}
.wp-block-navigation .wp-block-buttons {
  color: var(--wp--custom--button--outline--text--color);
}
p.has-drop-cap:not(:focus)::first-letter {
  font-size: var(--wp--custom--paragraph--dropcap--typography--font-size);
  font-weight: var(--wp--custom--paragraph--dropcap--typography--font-weight);
  margin: var(--wp--custom--paragraph--dropcap--margin);
}

.wp-block-pullquote.is-style-solid-color,
.wp-block-pullquote {
  text-align: var(--wp--custom--pullquote--typography--text-align);
}
.wp-block-pullquote.is-style-solid-color blockquote,
.wp-block-pullquote blockquote {
  padding: 0;
  margin: 0;
}
.wp-block-pullquote.is-style-solid-color blockquote p,
.wp-block-pullquote blockquote p {
  font-size: 1em;
  padding: 0;
  margin: 0;
  line-height: inherit;
}
.wp-block-pullquote.is-style-solid-color blockquote .wp-block-pullquote__citation,
.wp-block-pullquote.is-style-solid-color blockquote cite,
.wp-block-pullquote blockquote .wp-block-pullquote__citation,
.wp-block-pullquote blockquote cite {
  display: block;
  font-size: var(--wp--custom--pullquote--citation--typography--font-size);
  font-style: var(--wp--custom--pullquote--citation--typography--font-style);
  font-weight: var(--wp--custom--pullquote--citation--typography--font-weight);
  margin-top: var(--wp--custom--pullquote--citation--spacing--margin--top);
}
.wp-block-pullquote.is-style-solid-color.is-style-solid-color,
.wp-block-pullquote.is-style-solid-color {
  background-color: var(--wp--custom--color--background);
  color: var(--wp--custom--color--foreground);
}

.jeff-gothelf-query .wp-block-post-template:where(:not(.is-layout-grid)) .wp-block-post-featured-image {
  margin: 0;
}
.jeff-gothelf-query .wp-block-post-template:where(:not(.is-layout-grid)) .jeff-gothelf-query__group {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--20);
}
.jeff-gothelf-query .wp-block-post-template:where(:not(.is-layout-grid)) .jeff-gothelf-query__body {
  margin-block-start: 0;
}
@media only screen and (min-width: 600px) {
  .jeff-gothelf-query .wp-block-post-template:where(:not(.is-layout-grid)) .wp-block-post-featured-image {
    max-width: 50%;
  }
  .jeff-gothelf-query .wp-block-post-template:where(:not(.is-layout-grid)) .jeff-gothelf-query__group {
    flex-direction: row;
  }
}

.wp-block-sensei-lms-course-list li.wp-block-post {
  border-bottom: 1px solid var(--wp--preset--color--gray-300);
  margin-bottom: var(--wp--preset--spacing--70);
  padding-bottom: var(--wp--preset--spacing--70);
}
.wp-block-sensei-lms-course-list li.wp-block-post:last-child {
  border-bottom: none;
}
.wp-block-sensei-lms-course-list li.wp-block-post ul {
  list-style: initial;
  margin: initial;
}
.wp-block-sensei-lms-course-list li.wp-block-post li {
  display: list-item;
}
.wp-block-sensei-lms-course-list li.wp-block-post .entry-content {
  margin-top: var(--wp--preset--spacing--40);
  margin-bottom: var(--wp--preset--spacing--40);
}
.wp-block-sensei-lms-course-list .wp-block-post-title a {
  text-decoration: none;
}
.wp-block-sensei-lms-course-list .entry-content {
  text-align: left;
}

div.wp-block-query-pagination {
  padding-top: 1.5em;
  justify-content: space-between;
  display: grid;
  grid-template-areas: "prev numbers next";
  grid-template-columns: 1fr 2fr 1fr;
}
@media (max-width: 599px) {
  div.wp-block-query-pagination {
    grid-template-areas: "prev next";
    grid-template-columns: 1fr 1fr;
  }
}
div.wp-block-query-pagination .wp-block-query-pagination-previous {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  justify-self: start;
  grid-area: prev;
  margin-right: 10px;
}
div.wp-block-query-pagination .wp-block-query-pagination-next {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  justify-self: flex-end;
  grid-area: next;
  margin-left: 10px;
}
div.wp-block-query-pagination .wp-block-query-pagination-numbers {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: numbers;
  justify-self: center;
  margin-right: 10px;
  margin-left: 10px;
}
@media (max-width: 599px) {
  div.wp-block-query-pagination .wp-block-query-pagination-previous {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  div.wp-block-query-pagination .wp-block-query-pagination-next {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}
div.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers {
  padding: 5px;
}
div.wp-block-query-pagination .wp-block-query-pagination-numbers .current {
  text-decoration: underline;
}
@media (max-width: 599px) {
  div.wp-block-query-pagination .wp-block-query-pagination-numbers {
    display: none;
  }
}

.wp-block-quote.is-style-large p,
.wp-block-quote p {
  font-style: unset;
  margin-top: 0;
}
.wp-block-quote.is-style-large .wp-block-quote__citation,
.wp-block-quote.is-style-large cite,
.wp-block-quote .wp-block-quote__citation,
.wp-block-quote cite {
  font-size: var(--wp--custom--quote--citation--typography--font-size);
  font-style: var(--wp--custom--quote--citation--typography--font-style);
  font-weight: var(--wp--custom--quote--citation--typography--font-weight);
  line-height: 1.2;
}

.wp-block-search {
  /* Block Styles */
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  padding: var(--wp--custom--form--border--width);
  border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
  border-radius: var(--wp--custom--form--border--radius);
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  padding: 0 var(--wp--custom--form--padding);
}
.wp-block-search .wp-block-search__input {
  padding: var(--wp--custom--form--padding);
  border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button,
.wp-block-search .wp-block-search__button {
  border-radius: var(--wp--custom--button--border--radius);
  border-style: var(--wp--custom--button--border--style);
  border-width: var(--wp--custom--button--border--width) var(--wp--custom--button--border--width) var(--wp--custom--button--border--width-bottom) var(--wp--custom--button--border--width);
  padding-top: var(--wp--custom--button--spacing--border-padding--top);
  padding-bottom: var(--wp--custom--button--spacing--border-padding--bottom);
  padding-left: var(--wp--custom--button--spacing--border-padding--left);
  padding-right: var(--wp--custom--button--spacing--border-padding--right);
  font-weight: var(--wp--custom--button--typography--font-weight);
  font-family: var(--wp--custom--button--typography--font-family);
  font-size: var(--wp--custom--button--typography--font-size);
  line-height: var(--wp--custom--button--typography--line-height);
  text-decoration: none;
  opacity: 1;
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
  transition: var(--wp--custom--animation--transition-type) var(--wp--custom--animation--transition-duration);
  cursor: pointer;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button svg,
.wp-block-search .wp-block-search__button svg {
  fill: var(--wp--custom--button--color--text);
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:hover, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-focus,
.wp-block-search .wp-block-search__button:hover,
.wp-block-search .wp-block-search__button:focus,
.wp-block-search .wp-block-search__button.has-focus {
  border-bottom-width: var(--wp--custom--button--border--width);
  padding-bottom: var(--wp--custom--button--spacing--border-padding--bottom-alt);
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):hover, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus,
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):hover,
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):focus,
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus {
  --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
  --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
  --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
  opacity: 1;
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):hover svg, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):focus svg, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus svg,
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):hover svg,
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):focus svg,
.wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus svg {
  fill: var(--wp--custom--button--color--text);
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-background:hover, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-background:focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-background.has-focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-text-color:hover, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-text-color:focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-text-color.has-focus,
.wp-block-search .wp-block-search__button.has-background:hover,
.wp-block-search .wp-block-search__button.has-background:focus,
.wp-block-search .wp-block-search__button.has-background.has-focus,
.wp-block-search .wp-block-search__button.has-text-color:hover,
.wp-block-search .wp-block-search__button.has-text-color:focus,
.wp-block-search .wp-block-search__button.has-text-color.has-focus {
  filter: brightness(1.2);
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon,
.wp-block-search .wp-block-search__button.has-icon {
  line-height: 0;
}
.wp-block-search .wp-block-search__input::placeholder {
  color: var(--wp--custom--form--color--text);
  opacity: 0.66;
}
.wp-block-search.is-style-small-search {
  --wp--custom--button--typography--font-size: calc(0.8 * var(--wp--preset--font-size--small));
}
.wp-block-search.is-style-small-search .wp-block-search__input {
  padding: calc(0.5 * var(--wp--custom--form--padding));
}

/* Toggle Search Styles */
.search-toggle-form {
  max-width: 0;
  overflow: hidden;
  transition: all 0.8s;
}
.search-toggle-form.search-expanded, .search-toggle-form.block-editor-block-list__block {
  max-width: 400px;
}

.search-toggle-container.is-layout-flex {
  gap: 1rem;
}

.search-toggle-trigger {
  --wp--custom--button--typography--font-size: calc(0.8 * var(--wp--preset--font-size--small));
  align-self: center;
  display: inherit !important;
}
.search-toggle-trigger .wp-block-button__link {
  width: 32px;
  height: 32px;
  overflow: hidden;
  padding: 6px !important;
  line-height: 2em !important;
}
.search-toggle-trigger.is-style-outline .wp-block-button__link {
  padding: 3px !important;
}
.search-toggle-trigger .wp-block-button__link::before {
  align-self: center;
  content: "";
  display: block;
  height: 22px;
  width: 22px;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-color: currentcolor;
  -webkit-mask-image: url("assets/svg/search.svg");
  mask-image: url("assets/svg/search.svg");
}
.search-toggle-trigger.search-open .wp-block-button__link::before {
  -webkit-mask-image: url("assets/svg/close.svg");
  mask-image: url("assets/svg/close.svg");
}

.wp-block-separator {
  opacity: var(--wp--custom--separator--opacity);
}
.wp-block-separator:not(.is-style-wide) {
  width: var(--wp--custom--separator--width);
}

p.wp-block-site-tagline {
  margin: 0;
}

.wp-block-site-title a {
  text-decoration: none;
}

.wp-block-file .wp-block-file__button {
  border-radius: var(--wp--custom--button--border--radius);
  border-style: var(--wp--custom--button--border--style);
  border-width: var(--wp--custom--button--border--width) var(--wp--custom--button--border--width) var(--wp--custom--button--border--width-bottom) var(--wp--custom--button--border--width);
  padding-top: var(--wp--custom--button--spacing--border-padding--top);
  padding-bottom: var(--wp--custom--button--spacing--border-padding--bottom);
  padding-left: var(--wp--custom--button--spacing--border-padding--left);
  padding-right: var(--wp--custom--button--spacing--border-padding--right);
  font-weight: var(--wp--custom--button--typography--font-weight);
  font-family: var(--wp--custom--button--typography--font-family);
  font-size: var(--wp--custom--button--typography--font-size);
  line-height: var(--wp--custom--button--typography--line-height);
  text-decoration: none;
  opacity: 1;
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
  transition: var(--wp--custom--animation--transition-type) var(--wp--custom--animation--transition-duration);
  cursor: pointer;
  display: inline-block;
}
.wp-block-file .wp-block-file__button svg {
  fill: var(--wp--custom--button--color--text);
}
.wp-block-file .wp-block-file__button:hover, .wp-block-file .wp-block-file__button:focus, .wp-block-file .wp-block-file__button.has-focus {
  border-bottom-width: var(--wp--custom--button--border--width);
  padding-bottom: var(--wp--custom--button--spacing--border-padding--bottom-alt);
}
.wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):hover, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):focus, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color).has-focus {
  --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
  --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
  --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
  opacity: 1;
  color: var(--wp--custom--button--color--text);
  background-color: var(--wp--custom--button--color--background);
  border-color: var(--wp--custom--button--border--color);
}
.wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):hover svg, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):focus svg, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color).has-focus svg {
  fill: var(--wp--custom--button--color--text);
}
.wp-block-file .wp-block-file__button.has-background:hover, .wp-block-file .wp-block-file__button.has-background:focus, .wp-block-file .wp-block-file__button.has-background.has-focus, .wp-block-file .wp-block-file__button.has-text-color:hover, .wp-block-file .wp-block-file__button.has-text-color:focus, .wp-block-file .wp-block-file__button.has-text-color.has-focus {
  filter: brightness(1.2);
}

.wp-block-table.is-style-stripes,
.wp-block-table {
  border-bottom: none;
}
.wp-block-table.is-style-stripes figcaption,
.wp-block-table figcaption {
  color: var(--wp--preset--color--foreground);
  font-size: var(--wp--custom--table--figcaption--typography--font-size);
  text-align: center;
}
.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th,
.wp-block-table td,
.wp-block-table th {
  border: 1px solid;
  padding: var(--wp--preset--spacing-10) var(--wp--preset--spacing-10);
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: var(--wp--custom--table--striped--color--background);
}

.wp-block-video figcaption {
  margin: var(--wp--custom--video--caption--margin);
  text-align: var(--wp--custom--video--caption--text-align);
}

.is-style-full-screen {
  justify-content: center;
  gap: 0 !important;
  flex-wrap: nowrap !important;
  padding: 0 !important;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  height: 100%;
  margin: 0 !important;
}

/* Post Elements & Templates*/
.wp-block-post-comments-form label,
.wp-block-post-comments-form .comment-meta {
  font-size: var(--wp--custom--form--label--typography--font-size);
}
.wp-block-post-comments-form .reply {
  margin-top: var(--wp--custom--gap--vertical);
  margin-bottom: 0;
}
.wp-block-post-comments-form .reply a {
  display: inline-block;
  text-decoration: underline;
}
.wp-block-post-comments-form .reply a:hover {
  text-decoration: none;
}
.wp-block-post-comments-form form {
  display: grid;
  column-gap: 1em;
  grid-template-rows: auto;
  grid-template-areas: "notes notes" "author author" "email url" "comment comment" "cookies-consent cookies-consent" "form-submit form-submit";
}
.wp-block-post-comments-form form input:not([type=submit]):not([type=checkbox]),
.wp-block-post-comments-form form textarea {
  font-size: var(--wp--preset--font-size--normal);
  background: var(--wp--custom--color--background);
  border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
  width: 100%;
}
.wp-block-post-comments-form form textarea {
  vertical-align: top;
}
.wp-block-post-comments-form form label:not([for=wp-comment-cookies-consent]) {
  font-size: var(--wp--custom--form--label--typography--font-size);
  font-weight: var(--wp--custom--form--label--typography--font-weight);
  letter-spacing: var(--wp--custom--form--label--typography--letter-spacing);
  margin-bottom: var(--wp--custom--form--label--spacing--margin--bottom);
  text-transform: var(--wp--custom--form--label--typography--text-transform);
}
.wp-block-post-comments-form form p {
  margin-top: 0;
  margin-bottom: var(--wp--custom--gap--vertical);
}
.wp-block-post-comments-form form .comment-notes {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: notes;
}
.wp-block-post-comments-form form .comment-form-author {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: author;
}
.wp-block-post-comments-form form .comment-form-email {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: email;
}
.wp-block-post-comments-form form .comment-form-url {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: url;
}
.wp-block-post-comments-form form .comment-form-comment {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: comment;
}
.wp-block-post-comments-form form .comment-form-cookies-consent {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: cookies-consent;
}
.wp-block-post-comments-form form .form-submit {
  -ms-grid-row: 6;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: form-submit;
}
.wp-block-post-comments-form form .comment-form-cookies-consent input[type=checkbox] {
  margin: 0 !important;
}
.wp-block-post-comments-form .comment-reply-title small {
  float: right;
  font-size: 14px;
}
.wp-block-post-comments-form .commentlist {
  margin-bottom: calc(2 * var(--wp--style--block-gap));
}
.wp-block-post-comments-form .commentlist .comment p {
  font-size: var(--wp--custom--post-comment--typography--font-size);
  line-height: var(--wp--custom--post-comment--typography--line-height);
  margin-bottom: var(--wp--custom--gap--vertical);
  margin-top: var(--wp--custom--gap--vertical);
}
.wp-block-post-comments-form .comment-body {
  margin-bottom: calc(1.5 * var(--wp--style--block-gap));
}
.wp-block-post-comments-form .commentmetadata {
  margin-left: 0;
  margin-bottom: calc(0.75 * var(--wp--style--block-gap));
}
.wp-block-post-comments-form .comment-awaiting-moderation {
  display: inline-block;
  font-size: var(--wp--preset--font-size--small);
  margin-bottom: var(--wp--custom--gap--baseline);
}

.wp-block-post-comments .comment-author b {
  font-weight: 700;
}
.wp-block-post-comments .comment-edit-link {
  margin-left: 10px;
  padding: 5px 10px !important;
  font-size: 11px;
  text-transform: uppercase;
}

.wp-block-post-content {
  clear: both;
  overflow: visible;
}
.wp-block-post-content p.wp-block.wp-block-paragraph,
.wp-block-post-content *[class^=wp-container] > * + p,
.wp-block-post-content *[class^=wp-container] > p + *,
.wp-block-post-content p {
  margin-top: var(--wp--custom--gap--vertical);
  margin-bottom: var(--wp--custom--gap--vertical);
}

.post-meta {
  row-gap: 0 !important;
}

.wp-block-post-author__name {
  font-weight: var(--wp--custom--post-author--font-weight);
}

.is-style-post-author-icon,
.is-style-post-date-icon,
.is-style-post-category-icon,
.is-style-post-tag-icon {
  display: flex;
  flex-wrap: wrap;
}
.is-style-post-author-icon::before,
.is-style-post-date-icon::before,
.is-style-post-category-icon::before,
.is-style-post-tag-icon::before {
  align-self: center;
  content: "";
  display: inline-block;
  margin-right: var(--wp--preset--spacing--10);
  height: 1em;
  width: 1em;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-color: currentcolor;
}

.is-style-post-author-icon::before {
  -webkit-mask-image: url(assets/svg/post-author.svg);
  mask-image: url(assets/svg/post-author.svg);
}

.is-style-post-date-icon::before {
  -webkit-mask-image: url(assets/svg/post-date.svg);
  mask-image: url(assets/svg/post-date.svg);
}

.is-style-post-category-icon::before {
  -webkit-mask-image: url(assets/svg/post-category.svg);
  mask-image: url(assets/svg/post-category.svg);
}

.is-style-post-tag-icon::before {
  -webkit-mask-image: url(assets/vg/post-tag.svg);
  mask-image: url(assets/svg/post-tag.svg);
}

.wp-block-post-template .post-meta,
.wp-block-query-loop .post-meta {
  padding-left: 0;
  padding-right: 0;
}
.wp-block-post-template .wp-block-post-title,
.wp-block-query-loop .wp-block-post-title {
  font-size: var(--wp--preset--font-size--large);
}

.wp-block-post-title {
  font-size: var(--wp--preset--font-size--xx-large);
}

.wp-block-jetpack-related-posts {
  padding-top: var(--wp--preset--spacing--20);
  border-top: 1px solid var(--wp--preset--color--gray-300);
}

.jp-related-posts-i2__post-date::before {
  content: "Posted on ";
}

.jp-related-posts-i2__post-link {
  font-size: var(--wp--preset--font-size--medium);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0.5rem !important;
}

.block-editor-block-list__layout.is-root-container .is-style-full-screen {
  position: relative;
}

body {
  background-color: var(--wp--custom--color--background);
}

@media (max-width: 781px) {
  .custom-home-cover .desktop-gradient-angle-container {
    background: transparent !important;
    padding: var(--wp--preset--spacing--80) 0 0 0 !important;
  }
  .custom-home-cover .reverse-columns-mobile {
    gap: 0;
  }
  .custom-home-cover .column-image {
    padding-inline: var(--wp--preset--spacing--20);
    position: relative;
    z-index: -1;
  }
  .custom-home-cover .jeff-gothelf-image {
    padding-top: var(--wp--preset--spacing--60) !important;
  }
  .custom-home-cover .jeff-gothelf-image .wp-block-image {
    height: 400px;
    max-height: 50vh;
    overflow: hidden;
  }
  .custom-home-cover .jeff-gothelf-image .wp-block-image img {
    width: auto;
    height: 100%;
  }
  .custom-home-cover .column-text {
    background: linear-gradient(178deg, rgba(217, 121, 69, 0) 10%, rgb(218, 122, 69) 10%);
    padding-inline: var(--wp--preset--spacing--20);
    padding-top: var(--wp--preset--spacing--60);
    margin-top: -50px;
  }
}

.featured-books-grid .wp-block-image figcaption {
  font-size: var(--wp--preset--font-size--medium) !important;
  font-style: normal !important;
  font-weight: 500;
  text-align: left !important;
}

.home--online-courses .wp-block-sensei-lms-course-list ul li.course {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.remember_me label,
.woocommerce-form-login__rememberme {
  display: inline-flex !important;
  vertical-align: text-top;
  align-items: center;
}
.remember_me label input,
.woocommerce-form-login__rememberme input {
  margin-right: 0.5rem;
}
/*# sourceMappingURL=style.css.map */