/*	a11y-datepicker.scss */
/*	modules/_index.scss */
/*	_fonts.scss */
/*
	@imports from vendors ---
--------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=PT+Mono&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap");
/*	_animation.scss */
/*	_button.scss */
/*	_helpers.scss */
/*	_colors.scss */
/*	_typography.scss */
/*
	Group Selectors ---
--------------------------------------------- */
/*
	Size Aliases ---
--------------------------------------------- */
/*
	Mixins ---
--------------------------------------------- */
.has-foreground-background-color,
.has-foreground-tint-1-background-color,
.has-foreground-tint-2-background-color,
.has-primary-background-color,
.has-primary-shade-1-background-color,
.has-primary-shade-2-background-color,
.has-quaternary-shade-2-background-color {
  color: var(--wp--preset--color--background);
}
.has-foreground-background-color h1, .has-foreground-background-color h2, .has-foreground-background-color h3, .has-foreground-background-color h4, .has-foreground-background-color h5, .has-foreground-background-color h6,
.has-foreground-tint-1-background-color h1,
.has-foreground-tint-1-background-color h2,
.has-foreground-tint-1-background-color h3,
.has-foreground-tint-1-background-color h4,
.has-foreground-tint-1-background-color h5,
.has-foreground-tint-1-background-color h6,
.has-foreground-tint-2-background-color h1,
.has-foreground-tint-2-background-color h2,
.has-foreground-tint-2-background-color h3,
.has-foreground-tint-2-background-color h4,
.has-foreground-tint-2-background-color h5,
.has-foreground-tint-2-background-color h6,
.has-primary-background-color h1,
.has-primary-background-color h2,
.has-primary-background-color h3,
.has-primary-background-color h4,
.has-primary-background-color h5,
.has-primary-background-color h6,
.has-primary-shade-1-background-color h1,
.has-primary-shade-1-background-color h2,
.has-primary-shade-1-background-color h3,
.has-primary-shade-1-background-color h4,
.has-primary-shade-1-background-color h5,
.has-primary-shade-1-background-color h6,
.has-primary-shade-2-background-color h1,
.has-primary-shade-2-background-color h2,
.has-primary-shade-2-background-color h3,
.has-primary-shade-2-background-color h4,
.has-primary-shade-2-background-color h5,
.has-primary-shade-2-background-color h6,
.has-quaternary-shade-2-background-color h1,
.has-quaternary-shade-2-background-color h2,
.has-quaternary-shade-2-background-color h3,
.has-quaternary-shade-2-background-color h4,
.has-quaternary-shade-2-background-color h5,
.has-quaternary-shade-2-background-color h6 {
  color: var(--wp--preset--color--secondary);
}

/*
	@font-face for local fonts or creating families from vendors ---
--------------------------------------------- */
@font-face {
  font-family: "werker-sans";
  font-weight: normal bold;
  src: local("werker-sans"), url("../fonts/ag-werker-sans/zarwkfzo6e4kmmjzfuzfgo4boqaoqxd7t8vmbeqvq99uq3my35lkzso6tlwt1syw-webfont.woff") format("woff"), url("../fonts/ag-werker-sans/zarwkfzo6e4kmmjzfuzfgo4boqaoqxd7t8vmbeqvq99uq3my35lkzso6tlwt1syw-webfont.woff2") format("woff2");
}
/*
	Font Stacks ---
--------------------------------------------- */
/**
 * Button Reset
 *
 */
/**
 * Size
 *
 */
/**
 * Block Cover
 * Creates a block that covers the full width/height of parent div. Typically used on a :before pseudo element
 */
/**
 * Placeholder Color
 *
 */
/**
 * Clearfix
 *
 */
/*	_helpers.scss */
/*
	This file is to mimic the button styles from theme.json.

	Much of the settings below should be copied from that file.

*/
/*	_helpers.scss */
/*	_button.scss */
/*	_spacing.scss */
/*	_colors.scss */
.gfield--type-text.a11y-datepicker .ginput_container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sr-only {
  position: absolute;
  top: -2000em;
  left: -3000em;
}

.a11y-datepicker {
  position: relative;
}

.a11y-datepicker .group {
  display: inline-block;
  position: relative;
  width: 13em;
}

.a11y-datepicker label {
  display: block;
}

.a11y-datepicker button.icon {
  cursor: pointer;
  padding: 5px 10px;
  font-size: var(--wp--preset--font-size--medium);
}

.a11y-datepicker .desc {
  position: absolute;
  left: 0;
  top: 2em;
}

.a11y-datepicker .fa-calendar-alt {
  color: var(--wp--preset--color--background);
}

.a11y-datepicker-dialog {
  position: absolute;
  width: 320px;
  clear: both;
  border: 3px solid var(--wp--preset--color--primary-shade-1);
  margin-top: 0.15em;
  border-radius: 5px;
  padding: 0;
  background-color: var(--wp--preset--color--quaternary-tint-2);
  display: none;
}

.a11y-datepicker-dialog button {
  cursor: pointer;
}

.a11y-datepicker-dialog button:hover {
  background-color: transparent;
  transform: none;
  box-shadow: none;
}

.a11y-datepicker-dialog .header {
  cursor: default;
  background-color: var(--wp--preset--color--primary-shade-1);
  padding: 7px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--wp--preset--color--background);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.a11y-datepicker-dialog h2 {
  font-family: var(--wp--preset--font-family--new-spirit);
  margin: 0;
  padding: 0;
  display: inline-block;
  font-size: 1em;
  color: var(--wp--preset--color--background);
  text-transform: none;
  font-weight: normal;
  border: none;
}

.a11y-datepicker-dialog button {
  border-style: none;
  background: transparent;
}

.a11y-datepicker-dialog button::-moz-focus-inner {
  border: 0;
}

.a11y-datepicker-dialog .dates {
  width: 320px;
}

.a11y-datepicker-dialog .prev-year,
.a11y-datepicker-dialog .prev-month,
.a11y-datepicker-dialog .next-month,
.a11y-datepicker-dialog .next-year {
  padding: 2px 4px;
  color: var(--wp--preset--color--background);
  border: 2px solid transparent;
  border-radius: var(--wp--custom--border-radius--button);
}
.a11y-datepicker-dialog .prev-year:hover, .a11y-datepicker-dialog .prev-year:focus,
.a11y-datepicker-dialog .prev-month:hover,
.a11y-datepicker-dialog .prev-month:focus,
.a11y-datepicker-dialog .next-month:hover,
.a11y-datepicker-dialog .next-month:focus,
.a11y-datepicker-dialog .next-year:hover,
.a11y-datepicker-dialog .next-year:focus {
  border-color: var(--wp--preset--color--background);
}

.a11y-datepicker-dialog .dialog-ok-cancel-group {
  text-align: right;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-right: 1em;
}

.a11y-datepicker-dialog .dialog-ok-cancel-group button {
  margin-left: 1em;
  width: auto;
  background-color: var(--wp--preset--color--primary);
  font-size: 0.85em;
  color: var(--wp--preset--color--background);
  border: 2px solid transparent;
}

.a11y-datepicker-dialog .dialog-button:focus {
  border-color: var(--wp--preset--color--background);
  outline: 2px solid var(--wp--preset--color--primary);
}

.a11y-datepicker-dialog .dialog-button:hover {
  border-color: var(--wp--preset--color--background);
}

.a11y-datepicker-dialog .fa-calendar-alt {
  color: hsl(216, 89%, 51%);
}

.a11y-datepicker-dialog .month-year {
  display: inline-block;
  width: 12em;
  text-align: center;
}

.a11y-datepicker-dialog table.dates {
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 1em;
  border: none;
  border-collapse: separate;
}

.a11y-datepicker-dialog table.dates th,
.a11y-datepicker-dialog table.dates td {
  text-align: center;
  color: var(--wp--preset--color--foreground);
  border: none;
}

.a11y-datepicker-dialog table.dates thead {
  background: transparent;
}

.a11y-datepicker-dialog table.dates td {
  background: var(--wp--preset--color--foreground);
  padding: 3px;
  margin: 0;
  line-height: inherit;
  height: 40px;
  width: 40px;
  border-radius: 5px;
  font-size: 18px;
  line-height: 0.8;
  background: var(--wp--preset--color--background);
  font-variant-numeric: lining-nums;
}

.a11y-datepicker-dialog table.dates td.disabled {
  padding: 2px;
  border: none;
  height: 41px;
  width: 41px;
  background: color-mix(in srgb, black, transparent 70%);
}

.a11y-datepicker-dialog table.dates td:focus,
.a11y-datepicker-dialog table.dates td:hover {
  padding: 0;
  background-color: hsl(216, 80%, 92%);
  color: black;
}

.a11y-datepicker-dialog table.dates td:focus {
  background-color: var(--wp--preset--color--quaternary-shade-2);
  color: var(--wp--preset--color--background);
  outline: 2px solid var(--wp--preset--color--quaternary);
}

.a11y-datepicker-dialog table.dates td:not(.disabled):hover {
  background-color: var(--wp--preset--color--quaternary);
  color: var(--wp--preset--color--background);
  outline: 2px solid var(--wp--preset--color--quaternary-shade-2);
}

.a11y-datepicker-dialog table.dates td[aria-selected] {
  background-color: var(--wp--preset--color--quaternary-tint-1);
  color: var(--wp--preset--color--foreground);
  outline: 2px solid var(--wp--preset--color--quaternary-shade-2);
}

.a11y-datepicker-dialog table.dates td[aria-selected]:focus {
  background-color: var(--wp--preset--color--quaternary);
  color: var(--wp--preset--color--background);
  outline: 2px solid var(--wp--preset--color--quaternary-shade-2);
}

.a11y-datepicker-dialog table.dates td[tabindex="0"] {
  background-color: var(--wp--preset--color--quaternary-shade-2);
  color: var(--wp--preset--color--background);
}

.a11y-datepicker-dialog .dialog-message {
  padding: 0.25em 1em 0.5em;
  height: 1.75em;
  font-size: 1em;
  line-height: 1;
  background: var(--wp--preset--color--primary-shade-1);
  color: var(--wp--preset--color--background);
}
