@charset "UTF-8";
/* stylelint-disable order/order */
/*
* Converts an pixel value into a rem value.
*
* @param string  $values    the pixel value(s) as a number. Can convert multiple values if values separated by a space.
* @param integer $base      the base pixel value.
*
* @return string   a space-separated string of rem values.
*/
/*
* This is an abbreviated wrapper for the responsive-values function.
*/
/*
* Creates a CSS clamp value that sizes between breakpoints.
*
* @param integer $min                    the minimum pixel value.
* @param integer $max                    the maximum pixel value.
* @param string  $smallest-breakpoint    the name of the smallest breakpoint from the $grid-breakpoints variable.
* @param string  $largest-breakpoint     the name of the largest breakpoint from the $grid-breakpoints variable.
* @param string  $screen                 whether to use a horizontal (width) breakpoint or a vertical (height) breakpoint.
*
* @return string   a CSS clamp property value.
*/
/*
* Outputs a font family value from the $fonts variable.
*
* @param string  $key   the font key.
*
* @return string   a font family value.
*/
/*
* Outputs a color value from the $paints or $additional-paints variables.
*
* @param string  $key   the color name.
*
* @return string   a color value.
*/
/*
* Outputs an effect value from the $effects variable.
*
* @param string  $key   the effect name.
*
* @return string   an effect value.
*/
/* stylelint-enable order/order */
/*
* Used to target heading selectors.
*
* @param integer  $start               the first heading element to target. 1 through 6.
* @param integer  $end                 the last heading element to target. 1 through 6.
* @param string   $beforeCombinator    the CSS combinator to include before the heading classes.
* @param string   $afterCombinator     the CSS combinator to include after the heading classes.
* @param boolean  $includeFontClasses  whether or not to include the .has-t-1... classes or just output the standard heading elements.
*
* @return string  The included CSS wrapped with selectors for the specified headings.
*/
/*
* Used to add properties to a for a pseudo element to make an icon based on the iconfont set.
*
* @param string   $content     the content for the icon. Usually uses one of the iconfont variables.
* @param string   $font-size   the font size with unit.
*
* @return string  The CSS properties for the icon.
*/
/*
* Generates CSS to fit an element into the 12-column grid. Only works when used on an element where the parent element is the width of the entire page.
*
* @return string  CSS properties to set the width of the element to the specified column sizes.
*/
/*
* Used to target elements with a background color that has a text color different from the standard color.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma which task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/*
* This array is used to specify the fonts used on the project with the following parameters:
	base - the name for use in the font() mixin.
		css - the output CSS value.
		figma-name: - the 'font-family' name ued in the _figma-font-variable.scss file.
	)
*/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task which creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/* If additional colors need to be added to the _figma-color-variables.scss, they can be added to this variable: */
/* This variable controls the background colors generated in the ACF background_color field and the background color classes - bg-white, bg-gray-92, etc: */
/* If a background color uses a different font color than the default color, use these variables to specify the alternate colors */
/* Backgrounds specified in this variable will use the alternative text colors: */
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/****************
 * Block Spacing
 *
 * These variables are based on the "Spacing" rules found in the "Foundations" section in Figma. These control the default spacing between blocks of different colors.
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
.propel-calendar {
  display: flex;
  flex-flow: column;
}
.propel-calendar__header {
  margin: 0 0 1.5rem;
  padding: 0.5rem 0;
  text-align: center;
}
.propel-calendar__header .month-year {
  font-weight: var(--t3-font-weight);
  font-size: var(--t3-font-size);
  font-family: var(--t3-font-family);
  line-height: var(--t3-line-height);
}
.propel-calendar .days-of-week,
.propel-calendar .date-grid {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid #dbd0b8;
}
.propel-calendar .days-of-week {
  border-bottom: none;
}
.propel-calendar .day_name {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 3.5rem;
  padding: 0.25rem 0.5rem;
  border-right: 1px solid #dbd0b8;
  background-color: #fffdf9;
}
@media (max-width: 61.98rem) {
  .propel-calendar .day_name {
    min-height: 2rem;
    padding: 0.25rem;
  }
}
.propel-calendar .day_name:nth-child(7) {
  border: none;
}
.propel-calendar .day_num {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 6.25rem;
  padding: 0.75rem 0.5rem;
  border-right: 1px solid #dbd0b8;
  border-bottom: 1px solid #dbd0b8;
  background-color: #fffdf9;
}
.propel-calendar .day_num--ignore {
  color: #c2b7a3;
}
@media (max-width: 61.98rem) {
  .propel-calendar .day_num--ignore {
    cursor: inherit;
    pointer-events: none;
  }
}
.propel-calendar .day_num--today time {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  color: #fffdf9;
  border-radius: 2rem;
  background: #001d34;
  outline: 0.4375rem solid #001d34;
}
@media (max-width: 61.98rem) {
  .propel-calendar .day_num--today time {
    outline-width: 0.25rem;
  }
}
.propel-calendar .day_num--selected {
  background-color: #f2f1ee;
}
@media (max-width: 61.98rem) {
  .propel-calendar .day_num--selected {
    cursor: inherit;
    pointer-events: none;
  }
}
@media (max-width: 61.98rem) {
  .propel-calendar .day_num {
    gap: 0;
    min-height: 3rem;
    padding: 0.5rem;
  }
}
.propel-calendar .day_num:nth-child(7n) {
  border-right: none;
}
.propel-calendar .day_num:nth-last-child(-n+7) {
  border-bottom: none;
}
.propel-calendar .day_num time {
  font-weight: var(--t6-font-weight);
  font-size: var(--t6-font-size);
  font-family: var(--t6-font-family);
  line-height: var(--t6-line-height);
  letter-spacing: var(--t6-letter-spacing);
  text-transform: var(--t6-text-transform);
  display: inline-flex;
  align-self: flex-end;
}
@media (max-width: 61.98rem) {
  .propel-calendar .day_num time {
    align-self: center;
  }
}
.propel-calendar .day_num .event {
  display: flex;
  flex-flow: column wrap;
  word-wrap: break-word;
}
@media (max-width: 61.98rem) {
  .propel-calendar .day_num .event:first-of-type {
    position: absolute;
    top: 0;
    left: 0;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 0.5rem;
    cursor: pointer;
  }
  .propel-calendar .day_num .event:first-of-type::after {
    content: "•";
    display: flex;
    justify-content: center;
    line-height: 1;
  }
  .propel-calendar .day_num .event:not(:first-of-type) {
    display: none;
  }
  .propel-calendar .day_num .event > * {
    display: none;
  }
}
.propel-calendar .day_num .event-title {
  font-weight: var(--t6-font-weight);
  font-size: var(--t6-font-size);
  font-family: var(--t6-font-family);
  line-height: var(--t6-line-height);
  letter-spacing: var(--t6-letter-spacing);
  text-transform: var(--t6-text-transform);
  color: #001d34;
}
.propel-calendar .day_num .event-title:hover, .propel-calendar .day_num .event-title:active, .propel-calendar .day_num .event-title:focus {
  color: #001d34;
}
.propel-calendar .day_num .event-time, .propel-calendar .day_num .event-venue {
  font-weight: var(--t6-font-weight);
  font-size: var(--t6-font-size);
  font-family: var(--t6-font-family);
  line-height: var(--t6-line-height);
  letter-spacing: var(--t6-letter-spacing);
  text-transform: var(--t6-text-transform);
  font-weight: 400;
}
.propel-calendar .day_num .event-caption {
  font-weight: var(--caption-font-weight);
  font-size: var(--caption-font-size);
  font-family: var(--caption-font-family);
  line-height: var(--caption-line-height);
  text-transform: var(--caption-text-transform);
  font-weight: 400;
}
.propel-calendar .day_num .event-info {
  font-weight: var(--t6-font-weight);
  font-size: var(--t6-font-size);
  font-family: var(--t6-font-family);
  line-height: var(--t6-line-height);
  letter-spacing: var(--t6-letter-spacing);
  text-transform: var(--t6-text-transform);
  font-weight: 400;
  font-style: italic;
}
.propel-calendar .day_num .event .c-btn-wrap {
  margin-top: 0.5rem;
}
.propel-calendar .day-selected {
  display: none;
}
@media (max-width: 61.98rem) {
  .propel-calendar .day-selected {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid #dbd0b8;
    border-top: none;
    background-color: #fffdf9;
  }
}
@media (max-width: 35.98rem) {
  .propel-calendar .day-selected {
    padding: 1rem 0.5rem;
  }
}
@media (max-width: 61.98rem) {
  .propel-calendar .day-selected:empty {
    display: none;
  }
}
.propel-calendar .day-selected time {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
}
.propel-calendar .day-selected .event {
  display: grid;
  grid-template-rows: 1fr auto auto;
  grid-template-columns: 4rem 1fr 1fr;
  column-gap: 0.5rem;
}
.propel-calendar .day-selected .event-time {
  font-weight: var(--t6-font-weight);
  font-size: var(--t6-font-size);
  font-family: var(--t6-font-family);
  line-height: var(--t6-line-height);
  letter-spacing: var(--t6-letter-spacing);
  text-transform: var(--t6-text-transform);
  grid-row: 1;
  justify-self: start;
  align-self: center;
}
.propel-calendar .day-selected .event-title {
  grid-column: 2/-1;
  line-height: 1.2;
}
.propel-calendar .day-selected .event-caption {
  font-weight: var(--t6-font-weight);
  font-size: var(--t6-font-size);
  font-family: var(--t6-font-family);
  line-height: var(--t6-line-height);
  letter-spacing: var(--t6-letter-spacing);
  text-transform: var(--t6-text-transform);
  grid-row: 2;
  grid-column: 2;
}
.propel-calendar .day-selected .event .c-btn-wrap {
  grid-row: 3;
  grid-column: 2/-1;
  margin: 0.25rem 0 0 -0.5rem;
}