/** Included _colors.scss */
/* Color mixins which can be used in CSS files */
/** Included _breakpoints.scss */
/** Included _typesetting.scss */
/** Included _foundation.scss */
/* Color definitions */
.cs-w .dr {
  --title-color: #1871bd;
  --subtitle-color: #091f2f;
  --icon-color: #1871bd;
  --hover-bg-color: #1871bd;
  --title-hover-color: #ffffff;
  --subtitle-hover-color: #ffffff;
  --icon-hover-color: #ffffff;
  --open-bg-color: #091f2f;
  --title-open-color: #ffffff;
  --subtitle-open-color: #1871bd;
  --icon-open-color: #ffffff;
  --content-bg-color: var(--background-color);
}
.cs-g .dr {
  --title-color: #1871bd;
  --subtitle-color: #091f2f;
  --icon-color: #1871bd;
  --hover-bg-color: #1871bd;
  --title-hover-color: #ffffff;
  --subtitle-hover-color: #ffffff;
  --icon-hover-color: #ffffff;
  --open-bg-color: #091f2f;
  --title-open-color: #ffffff;
  --subtitle-open-color: #1871bd;
  --icon-open-color: #ffffff;
  --content-bg-color: #ffffff;
}
.cs-b .dr {
  --title-color: #ffffff;
  --subtitle-color: #1871bd;
  --icon-color: #ffffff;
  --hover-bg-color: #1871bd;
  --title-hover-color: #ffffff;
  --subtitle-hover-color: #ffffff;
  --icon-hover-color: #ffffff;
  --open-bg-color: #1871bd;
  --title-open-color: #ffffff;
  --subtitle-open-color: #091f2f;
  --icon-open-color: #ffffff;
  --content-bg-color: #ffffff;
}
.cs-ob .dr {
  --title-color: #ffffff;
  --subtitle-color: #ffffff;
  --icon-color: #ffffff;
  --hover-bg-color: #ffffff;
  --title-hover-color: #091f2f;
  --subtitle-hover-color: #091f2f;
  --icon-hover-color: #091f2f;
  --open-bg-color: #091f2f;
  --title-open-color: #ffffff;
  --subtitle-open-color: #1871bd;
  --icon-open-color: #ffffff;
  --content-bg-color: #ffffff;
}

/* General layout */
.drawer.ds-ele {
  display: block;
  margin-top: 1.5rem;
  background: var(--background-color);
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.drawer.ds-ele .dr-h {
  position: relative;
  padding: 2rem 3.5rem 2rem 1.5rem;
  text-transform: none;
  background: transparent;
  width: 100%;
  border: none;
  text-align: left;
  margin: 0;
  user-select: none;
  display: block;
}
.drawer.ds-ele .dr-ic {
  height: 20px;
  width: 26px;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  margin-top: -8px;
}
.drawer.ds-ele .dr-t {
  font-family: "Lora", "Georgia", serif;
  font-size: 1.5625rem;
  line-height: normal;
  font-style: italic;
}
.drawer.ds-ele .dr-st {
  font-family: "Lora", "Georgia", serif;
  font-size: 1.125rem;
  line-height: normal;
  margin-top: 0.25rem;
}
.drawer.ds-ele .dr-c {
  padding: 1.5rem;
  background: var(--content-bg-color) !important;
  display: block;
}
.drawer.ds-ele .dr-hidden {
  display: none;
}
.drawer.ds-ele.dr--compact .dr-h {
  padding: 0.5rem 3.5rem 0.5rem 1.5rem;
}
.drawer.ds-ele.dr--compact .dr-h .dr-t {
  font-size: 1.25rem;
}
.drawer.ds-ele.dr--compact .dr-h .dr-st {
  font-size: 1.125rem;
}

/* Upward sliding */
.dr-wrapper-up {
  width: 100%;
}
.dr-wrapper-up .drawer.ds-ele {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 30;
  --pos-open: 90deg;
  --pos-closed: -90deg;
}

/* Caret animation */
.ds-ele.dr {
  --pos-open: -90deg;
  --pos-closed: 90deg;
}
.ds-ele.dr .dr-ic svg {
  -webkit-transform: rotate(var(--pos-closed));
  transform: rotate(var(--pos-closed));
  transition: transform 500ms ease;
}
.ds-ele.dr .dr-tr:checked ~ .dr-h {
  background-color: inherit;
}
.ds-ele.dr .dr-tr:checked ~ .dr-h .dr-ic {
  margin-top: -9px;
}
.ds-ele.dr .dr-tr:checked ~ .dr-h .dr-ic svg {
  -webkit-transform: rotate(var(--pos-open));
  transform: rotate(var(--pos-open));
  transition: transform 500ms ease;
}
.ds-ele.dr.no-animation svg {
  transition: none !important;
}

/* Color Application & States */
.ds-ele.dr:visited .dr-t,
.ds-ele.dr .dr-t {
  color: var(--title-color);
}
.ds-ele.dr:visited .dr-st,
.ds-ele.dr .dr-st {
  color: var(--subtitle-color);
}
.ds-ele.dr:visited .dr svg .dr-i,
.ds-ele.dr .dr svg .dr-i {
  fill: var(--icon-color);
}
.ds-ele.dr:visited .dr-h.focus-active,
.ds-ele.dr .dr-h.focus-active {
  background: initial;
}
.ds-ele.dr:visited .dr-h:focus, .ds-ele.dr:visited .drh:focus-within,
.ds-ele.dr .dr-h:focus,
.ds-ele.dr .drh:focus-within {
  background: var(--hover-bg-color);
}
.ds-ele.dr:visited .dr-h:focus .dr-t, .ds-ele.dr:visited .drh:focus-within .dr-t,
.ds-ele.dr .dr-h:focus .dr-t,
.ds-ele.dr .drh:focus-within .dr-t {
  color: var(--title-hover-color);
}
.ds-ele.dr:visited .dr-h:focus .dr-st, .ds-ele.dr:visited .drh:focus-within .dr-st,
.ds-ele.dr .dr-h:focus .dr-st,
.ds-ele.dr .drh:focus-within .dr-st {
  color: var(--subtitle-hover-color);
}
.ds-ele.dr:visited .dr-h:focus svg .dr-i, .ds-ele.dr:visited .drh:focus-within svg .dr-i,
.ds-ele.dr .dr-h:focus svg .dr-i,
.ds-ele.dr .drh:focus-within svg .dr-i {
  fill: var(--icon-hover-color);
}
.ds-ele.dr:visited .dr-h:focus .dr-i,
.ds-ele.dr:visited .dr svg .dr-i,
.ds-ele.dr .dr-h:focus .dr-i,
.ds-ele.dr .dr svg .dr-i {
  fill: var(--icon-hover-color);
}
.ds-ele.dr:active, .ds-ele.dr:hover {
  background: var(--hover-bg-color);
}
.ds-ele.dr:active .dr-t, .ds-ele.dr:hover .dr-t {
  color: var(--title-hover-color);
}
.ds-ele.dr:active .dr-st, .ds-ele.dr:hover .dr-st {
  color: var(--subtitle-hover-color);
}
.ds-ele.dr:active .dr-h:focus .dr-i,
.ds-ele.dr:active svg .dr-i, .ds-ele.dr:hover .dr-h:focus .dr-i,
.ds-ele.dr:hover svg .dr-i {
  fill: var(--icon-hover-color);
}
.ds-ele.dr:has(.dr-tr:checked) {
  background: var(--open-bg-color);
}
.ds-ele.dr:has(.dr-tr:checked) .dr-t {
  color: var(--title-open-color);
}
.ds-ele.dr:has(.dr-tr:checked) .dr-st {
  color: var(--subtitle-open-color);
}
.ds-ele.dr:has(.dr-tr:checked) svg .dr-i {
  fill: var(--icon-open-color);
}

/*# sourceMappingURL=drawer.css.map */
