/* app/assets/theme/global/nav/logo.css */
.nav__logo {
  padding: 10px 0 0 3px;
  display: block;
  opacity: 1;
  transition: opacity 300ms;
  height: var(--body-margin-top);
}
@media (min-width: 768px) {
  .nav__logo {
    padding: 15px 0 0 3px;
  }
}
@media (min-width: 1024px) {
  .nav__logo {
    margin-top: 0;
  }
}
.nav__logo img {
  height: 36px;
  width: 131px;
}
@media (min-width: 768px) {
  .nav__logo img {
    height: 42px;
    width: 152px;
  }
}
@media (min-width: 1024px) {
  .nav__logo img {
    height: 50px;
    width: 182px;
  }
}
.nav__logo a {
  display: block;
  text-align: left;
}

/* app/assets/theme/global/nav/links.css */
.nav__links {
  display: none;
  font-size: 15px;
}
@media (min-width: 768px) {
  .nav__links {
    display: flex;
    align-items: baseline;
  }
}
.nav__links .intercom {
  margin-right: 0;
}
.nav__links .intercom i {
  margin-right: 0;
}
.nav__link {
  color: var(--purple6);
  font-weight: 300;
  margin: 10px 4px;
  padding: 6px;
  display: inline-block;
  position: relative;
}
@media (min-width: 769px) {
  .nav__link {
    margin: 10px 8px;
  }
}
.nav__link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--green2);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}
.nav__link.active,
.nav__link:hover {
  color: var(--primary-color);
}
:is(.nav__link.active, .nav__link:hover)::before {
  visibility: visible;
  transform: scaleX(1);
}
.nav__link.active {
  font-weight: 300;
}
.nav__link .badge {
  background-color: var(--purple6);
  border-radius: 8px;
  width: 16px;
  height: 16px;
  color: white;
  position: absolute;
  top: calc(50% - 8px);
  right: -14px;
  overflow: hidden;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}
.nav__link .badge.red {
  background-color: red;
}
.nav__link > i {
  margin-right: 0;
}
.nav__link_active {
  font-weight: 500;
  color: var(--black);
}
.nav__link_active::after {
  content: "";
  display: block;
  width: 60%;
  margin: 6px auto 0;
}
.nav__link_active:hover::before {
  visibility: hidden;
}
.nav__link_login {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3px;
  appearance: none;
  transition: background-color ease-in-out 0.15s;
  cursor: pointer;
  box-shadow: var(--block-shadow-min);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
  background-color: transparent;
  color: var(--white);
  box-shadow: none;
  border: 1px solid var(--white);
  margin-left: 10px;
  padding: 2px 8px;
  font-size: 14px;
  border-color: var(--gray5);
  color: var(--purple6);
  font-weight: 300;
}
.nav__link_login:hover {
  background-color: var(--link-hover-color);
  color: var(--white);
}
.nav__link_login:disabled {
  background-color: var(--gray4);
  font-weight: 300;
  cursor: not-allowed;
  color: var(--gray6);
  box-shadow: none;
}
.nav__link_login:disabled,
.nav__link_login:hover {
  background-color: var(--gray3);
  color: var(--primary-color);
}
.nav__link_login:hover {
  border-color: var(--primary-color);
}
.nav__link_icon {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3px;
  appearance: none;
  transition: background-color ease-in-out 0.15s;
  cursor: pointer;
  box-shadow: var(--block-shadow-min);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
  background-color: transparent;
  color: var(--link-color);
  box-shadow: none;
  border: none;
  padding: 6px;
  width: min-content;
  height: min-content;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  top: 3px;
  position: relative;
  width: 32px;
  height: 32px;
}
.nav__link_icon:hover {
  background-color: var(--link-hover-color);
  color: var(--white);
}
.nav__link_icon:disabled {
  background-color: var(--gray4);
  font-weight: 300;
  cursor: not-allowed;
  color: var(--gray6);
  box-shadow: none;
}
.nav__link_icon:hover {
  color: var(--link-hover-color);
  text-decoration: none;
  background-color: var(--gray4);
}
.nav__link_icon:disabled {
  color: var(--gray6);
  background-color: transparent;
}
.nav__link_icon:disabled:hover {
  color: var(--gray6);
  background-color: transparent;
}
.nav__link_icon i {
  margin: 0;
}
.nav__link_icon:hover {
  color: var(--primary-color);
}
.nav__link_icon i {
  --icon-size: 1.1em;
}

/* app/assets/theme/global/nav/index.css */
body > nav {
  background-color: var(--white);
  box-shadow: var(--block-shadow-min);
  z-index: 99;
  position: sticky;
  width: 100%;
  top: 0;
}
body > nav .container {
  display: flex;
  width: 96%;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  body > nav .container {
    width: 98%;
  }
}

/* app/assets/theme/props/body.css */
body {
  --body-background: var(--blue2);
  --body-font-color: var(--gray8);
  --body-font-size: 14px;
  --body-font-weight: 300;
  --body-line-height: 1.4;
  --body-font-family: var(--default-font-family);
  --body-margin: 0;
  --body-margin-top: 51px;
}
@media (min-width: 768px) {
  body {
    --body-margin-top: 76px;
  }
}

/* app/assets/theme/props/colors.css */
:root {
  --white: #fff;
  --off-white: #fefefe;
  --dirty-white: #edebec;
  --black: #0a0a0a;
  --off-black: #333;
  --gray0: #fafafa;
  --gray1: #f7f7f7;
  --gray2: #f3f3f4;
  --gray3: #ebebeb;
  --gray4: #ddd;
  --gray5: #cacaca;
  --gray6: #8a8a8a;
  --gray7: #8a8a8a;
  --gray8: #6e6362;
  --gray9: #666;
  --purple1: #757294;
  --purple2: #aa7fb8;
  --purple3: #8463b9;
  --purple4: #995fa7;
  --purple5: #722a88;
  --purple6: #533747;
  --purple7: #48334e;
  --purple8: #302238;
  --purple9: #1a1450;
  --blue0: #f8f9fd;
  --blue1: #f0f8ff;
  --blue2: #f5f6fa;
  --blue3: #eaebf0;
  --blue4: #e4e7f2;
  --blue5: #d7ebfe;
  --blue6: #4a90e2;
  --blue7: #1a1352;
  --green1: #d7f7c2;
  --green2: #afdbd8;
  --green3: #48e79a;
  --green4: #5cb85c;
  --green5: #064;
  --green6: #397b79;
  --green7: #005237;
  --lighter-orange: #fffae6;
  --dark-orange: #ffab00;
  --darker-orange: #ff8b00;
  --light-orange: #e89781;
  --orange: #e07356;
  --red0: #ffe0e0;
  --red: #f00;
  --lighter-pink: #f5e6f4;
  --light-pink: #f1d9ee;
  --pink: #d183c9;
  --dark-pink: #c688c5;
  --primary-color: var(--purple5);
  --secondary-color: var(--gray4);
  --input-color: var(--gray8);
  --input-disabled-color: var(--gray6);
  --input-background: var(--white);
  --input-disabled-background: var(--gray3);
  --input-border-color: var(--gray4);
  --input-hover-border-color: var(--gray6);
  --input-alt-color: var(--black);
  --input-alt-background: var(--blue2);
  --input-alt-border-color: var(--gray3);
  --input-alt-hover-border-color: var(--gray5);
  --body-background: var(--blue2);
  --link-color: var(--primary-color);
  --link-hover-color: var(--purple6);
}

/* app/assets/theme/props/fonts.css */
@font-face {
  font-family: MuseoSansRounded;
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src:
    local("MuseoSansRounded"),
    url(/fonts/museosansrounded-300-webfont.woff2) format("woff2"),
    url(/fonts/museosansrounded-300-webfont.woff) format("woff");
}
@font-face {
  font-family: MuseoSansRounded;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src:
    local("MuseoSansRounded"),
    url(/fonts/museosansrounded-500-webfont.woff2) format("woff2"),
    url(/fonts/museosansrounded-500-webfont.woff) format("woff");
}
@font-face {
  font-family: MuseoSansRounded;
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src:
    local("MuseoSansRounded"),
    url(/fonts/museosansrounded-100-webfont.woff2) format("woff2"),
    url(/fonts/museosansrounded-100-webfont.woff) format("woff");
}
:root {
  --default-font-family:
    "MuseoSansRounded",
    "Helvetica Neue",
    Helvetica,
    Roboto,
    Arial,
    sans-serif;
  --article-font-family:
    Georgia,
    Cambria,
    "Times New Roman",
    Times,
    serif;
}

/* app/assets/theme/props/forms.css */
:root {
  --input-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  --input-height: 2.75em;
  --input-font-size: 14px;
}
@media (max-width: 768px) {
  :root {
    --input-font-size: 16px;
  }
}

/* app/assets/theme/props/misc.css */
:root {
  --phone: 320px;
  --largephone: 425px;
  --tablet: 768px;
  --desktop: 1024px;
  --largedesktop: 1440px;
  --block-shadow: 0 0 15px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  --block-shadow-bottom: 0 18px 35px rgba(50, 50, 93, 0.1), 0 8px 15px rgba(0, 0, 0, 0.07);
  --block-shadow-top: 0 -18px 35px rgba(50, 50, 93, 0.1), 0 -8px 15px rgba(0, 0, 0, 0.07);
  --block-shadow-min: 0 0 2px 0 rgba(0, 0, 0, 0.2), 0 0 3px 0 rgba(0, 0, 0, 0.1);
  --block-shadow-hover: var(--block-shadow-bottom);
  --floating-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}

/* app/assets/theme/props/index.css */
@keyframes ball-clip-rotate-multiple-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* app/assets/theme/reset.css */
@import-normalize;
html {
  box-sizing: border-box;
  font-family: sans-serif;
  line-height: var(--body-line-height);
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  color: var(--body-font-color);
  line-height: var(--body-line-height);
  background-color: var(--body-background);
  margin: var(--body-margin);
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
span {
  display: inline-block;
}
a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 300;
  background-color: transparent;
}
a:hover {
  color: var(--link-hover-color);
  text-decoration: none;
}
figure {
  margin: 0;
}
button,
input,
optgroup,
select,
textarea {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
}
label {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 0.3rem;
  color: var(--black);
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 20px 0 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid var(--dirty-white);
  padding-bottom: 6px;
  margin-bottom: 22px;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
legend small {
  color: var(--gray7);
  margin-left: 10px;
}
table {
  border-collapse: collapse;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid var(--gray3);
  border-left: 0;
  margin: 25px 0;
}
dt {
  font-weight: 500;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
b,
strong {
  font-weight: bolder;
}
mark {
  background-color: var(--lighter-orange);
  position: relative;
}
mark::before {
  content: "";
  background-color: var(--lighter-orange);
  border-radius: 6px;
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: -6px;
  right: -6px;
  z-index: -1;
}
mark > .definition {
  background-color: var(--lighter-orange);
}

/* app/assets/theme/global/anchor.css */
a.icon {
  padding: 5px;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  transition: background-color ease-in-out 0.15s;
}
a.icon:hover {
  color: var(--link-hover-color);
  text-decoration: none;
  background-color: var(--gray4);
}
a.icon i {
  margin-right: 0;
}

/* app/assets/theme/global/definition.css */
.definition {
  cursor: help;
  background-color: var(--blue1);
}

/* app/assets/theme/global/footer.css */
footer {
  background-color: var(--purple7);
  color: var(--white);
  padding: 60px 10px 30px;
  text-align: center;
  font-size: 13px;
}
@media (max-width: 768px) {
  footer {
    padding: 40px 10px;
  }
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul li {
  display: inline-block;
}
footer ul li:not(:last-child)::after {
  content: "";
  border-right: 1px solid var(--purple2);
  padding-right: 12px;
  margin-right: 6px;
}
footer ul li.no-split::after {
  border-right: none;
  padding-right: 0;
}
footer p {
  margin: 28px 0;
  opacity: 0.8;
  font-size: 12px;
}
footer a {
  color: var(--white);
  font-weight: 300;
}
footer a:hover {
  color: var(--white);
  text-decoration: underline;
}
footer svg {
  width: 16px;
  vertical-align: sub;
  fill: currentColor;
}

/* app/assets/theme/global/main.css */
main {
  flex: 1;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  main {
    margin-top: 35px;
    margin-bottom: 50px;
  }
}

/* app/assets/theme/global/page_loader.css */
#pageLoader {
  display: none;
  overflow: hidden;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
}
#pageLoader div {
  height: 4px;
  width: 100%;
  background: var(--green2);
}
#pageLoader div:before {
  content: "";
  display: block;
  background-color: var(--dark-orange);
  height: 4px;
  width: 0;
  animation: getWidth 3s ease-out infinite;
}
@keyframes getWidth {
  100% {
    width: 100%;
  }
}

/* app/assets/theme/global/deprecated/action.css */
.action {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray3);
  border-left: 4px solid var(--green2);
  padding: 20px;
  background-color: var(--gray1);
  color: var(--black);
}
@media (min-width: 768px) {
  .action {
    flex-direction: row;
  }
}
.action_danger {
  border-left-color: var(--orange);
  background-color: var(--white);
}
.action_highlight {
  background-color: var(--white);
}
@media (min-width: 768px) {
  .action__text {
    flex: 1;
  }
}
.action__text ul {
  font-size: 15px;
}
.action__button {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .action__button {
    padding: 10px 0 0 30px;
  }
}

/* app/assets/theme/global/deprecated/alignment.css */
.align-right {
  text-align: right;
}
.center {
  text-align: center;
}
.indent {
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid var(--gray5);
}
@media (min-width: 425px) {
  .indent {
    margin-left: 16px;
    padding-left: 16px;
  }
}

/* app/assets/theme/global/deprecated/button.css */
.button {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3px;
  appearance: none;
  transition: background-color ease-in-out 0.15s;
  cursor: pointer;
  box-shadow: var(--block-shadow-min);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
}
.button:hover {
  background-color: var(--link-hover-color);
  color: var(--white);
}
.button:disabled {
  background-color: var(--gray4);
  font-weight: 300;
  cursor: not-allowed;
  color: var(--gray6);
  box-shadow: none;
}

/* app/assets/theme/global/deprecated/colors.css */
.success {
  color: var(--green4);
}
.quiet {
  color: var(--gray6);
}
.quieter {
  color: var(--gray5);
}
.danger {
  color: var(--red);
}
.alert {
  color: var(--orange);
}

/* app/assets/theme/global/deprecated/container.css */
.container {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--desktop);
  width: 98%;
}
.container_tablet-max,
.container-narrow {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--desktop);
  width: 98%;
  max-width: var(--tablet);
}
.container-box {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--desktop);
  width: 98%;
  border-radius: 3px;
  box-shadow: var(--block-shadow-min);
  background-color: var(--white);
}
.container-box__narrow {
  max-width: 660px;
}
.container-box__centered {
  text-align: center;
}
.container-box__inner {
  padding: 16px;
  position: relative;
}
@media (min-width: 425px) {
  .container-box__inner {
    padding: 30px;
  }
}
@media (min-width: 426px) {
  .container-box__inner {
    padding: 60px;
  }
}

/* app/assets/theme/global/deprecated/description_list.css */
.dl_horizontal > dt {
  font-weight: 500;
  line-height: 1.42857143;
}
@media (min-width: 426px) {
  .dl_horizontal > dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.dl_horizontal > dt a {
  font-weight: 300;
}
@media (min-width: 426px) {
  .dl_horizontal > dd {
    margin-left: 180px;
  }
}
.dl_horizontal > dd::before,
.dl_horizontal > dd::after {
  display: table;
  content: " ";
}
@media (min-width: 426px) {
  .dl_horizontal.dt_narrow > dt {
    width: 100px;
  }
  .dl_horizontal.dt_narrow > dd {
    margin-left: 120px;
  }
}
@media (min-width: 769px) {
  .dl_horizontal.dt_wide > dt {
    width: 200px;
  }
  .dl_horizontal.dt_wide > dd {
    margin-left: 220px;
  }
}
.dl_horizontal .dt_print,
.dl_horizontal .dd_print {
  font-size: 0.85em;
  font-weight: 300;
}
.dl_horizontal .dd_print {
  font-weight: 100;
  margin-bottom: 0.25rem;
}
.dl_horizontal .dt_title,
.dl_horizontal .dd_title {
  font-size: 0.85em;
  font-weight: 500;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}
.dl_horizontal > .dl_horizontal {
  border-top: 1px dashed var(--gray4);
  padding-top: 10px;
  color: var(--gray8);
  display: none;
}

/* app/assets/theme/global/deprecated/dividing_header.css */
.dividing-header {
  display: table;
  white-space: nowrap;
  height: auto;
  margin: 40px 0 20px;
  text-align: center;
  color: var(--blue7);
  font-weight: 500;
  font-size: 16px;
}
.dividing-header::before,
.dividing-header::after {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC);
  content: "";
  display: table-cell;
  position: relative;
  top: 50%;
  width: 50%;
  background-repeat: no-repeat;
}
.dividing-header::before {
  background-position: right 1em top 50%;
}
.dividing-header::after {
  background-position: left 1em top 50%;
}
.dividing-header_nospaced {
  margin-top: 0;
}
.dividing-header_large {
  font-size: 18px;
}
.dividing-header_left::before {
  width: 0;
}
.dividing-header_left::after {
  width: 100%;
}

/* app/assets/theme/global/deprecated/form_actions.css */
.form__actions {
  border-top: 1px solid var(--gray3);
  padding-top: 20px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .form__actions .button,
  .form__actions [type=submit],
  .form__actions [type=reset] {
    width: 100%;
  }
}
.form__actions_min {
  padding-top: 14px;
  margin-top: 0;
}
.form__actions__choice {
  margin: 0 10px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 767px) {
  .form__actions__choice {
    width: 100%;
    display: block;
    margin: 5px 0;
  }
}
@media (max-width: 425px) {
  .form__actions__with-next {
    display: block;
  }
}
.form__actions__with-next section {
  margin: 14px 0 0;
}
@media (min-width: 426px) {
  .form__actions__with-next section {
    margin: 0 0 0 10px;
  }
}
.form__actions__message {
  margin-left: 30px;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}
.form__actions__message_success {
  color: var(--green4);
}

/* app/assets/theme/global/deprecated/form_row.css */
@media (min-width: 768px) {
  .form__row {
    display: flex;
  }
  .form__row > .input,
  .form__row > .form__column {
    flex: 1;
    padding: 0 10px;
  }
  :is(.form__row > .input, .form__row > .form__column):first-child {
    padding-left: 0;
  }
  :is(.form__row > .input, .form__row > .form__column):last-child {
    padding-right: 0;
  }
}

/* app/assets/theme/global/deprecated/forms.css */
[type=color],
[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week] {
  color: var(--input-color);
  background-color: var(--input-background);
  font-size: var(--input-font-size);
  font-weight: 300;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 2px;
  border: 1px solid var(--input-border-color);
  transition: var(--input-transition);
  display: block;
  padding: 0.5rem;
  background-image: none;
  background-clip: padding-box;
}
:is([type=color], [type=date], [type=datetime], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week]):hover:not(:disabled) {
  border-color: var(--input-hover-border-color);
}
:is([type=color], [type=date], [type=datetime], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week]):focus {
  color: var(--input-color);
  background-color: var(--input-background);
  border-color: var(--input-hover-border-color);
  outline: none;
}
:is([type=color], [type=date], [type=datetime], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week]):disabled,
:is([type=color], [type=date], [type=datetime], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week])[readonly] {
  background-color: var(--input-disabled-background);
  color: var(--input-disabled-color);
  cursor: not-allowed;
}
:is([type=color], [type=date], [type=datetime], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week])::placeholder {
  color: var(--gray5);
  opacity: 1;
}
textarea {
  color: var(--input-color);
  background-color: var(--input-background);
  font-size: var(--input-font-size);
  font-weight: 300;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 2px;
  border: 1px solid var(--input-border-color);
  transition: var(--input-transition);
  display: block;
  padding: 0.5rem;
  background-image: none;
  background-clip: padding-box;
  height: inherit;
}
textarea:hover:not(:disabled) {
  border-color: var(--input-hover-border-color);
}
textarea:focus {
  color: var(--input-color);
  background-color: var(--input-background);
  border-color: var(--input-hover-border-color);
  outline: none;
}
textarea:disabled,
textarea[readonly] {
  background-color: var(--input-disabled-background);
  color: var(--input-disabled-color);
  cursor: not-allowed;
}
textarea::placeholder {
  color: var(--gray5);
  opacity: 1;
}
[type=checkbox].boolean {
  opacity: 0;
  width: 0;
  position: fixed;
}
[type=checkbox].boolean + label {
  margin: 0;
  position: relative;
  cursor: pointer;
  text-transform: none;
}
[type=checkbox].boolean + label::before {
  content: "";
  font-size: 15px;
  color: var(--primary-color);
  width: 19px;
  height: 19px;
  background-color: var(--input-background);
  border: 1px solid var(--input-border-color);
  transition: var(--input-transition);
  display: inline-block;
  border-radius: 3px;
  position: relative;
  top: 4px;
  margin-right: 10px;
}
[type=checkbox].boolean + label:hover::before {
  border: 1px solid var(--input-hover-border-color);
}
[type=checkbox].boolean:disabled + label {
  cursor: initial;
}
[type=checkbox].boolean:disabled + label:hover::before {
  border: 1px solid var(--input-border-color);
}
[type=checkbox].boolean:checked + label::before {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
[type=checkbox].boolean:checked + label::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  top: 7px;
  left: 7px;
}
[type=radio] {
  opacity: 0;
  width: 0;
  position: fixed;
}
[type=radio] + span,
[type=radio] + label {
  margin: 0;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-transform: none;
}
:is([type=radio] + span, [type=radio] + label)::before {
  content: "";
  font-size: 15px;
  color: var(--primary-color);
  width: 20px;
  height: 20px;
  background-color: var(--input-background);
  border: 3px solid var(--input-border-color);
  transition: var(--input-transition);
  display: inline-block;
  border-radius: 50%;
  position: relative;
  margin-right: 10px;
}
:is([type=radio] + span, [type=radio] + label):hover::before {
  border-color: var(--input-hover-border-color);
}
:is([type=radio]:checked + span, [type=radio]:checked + label)::before {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
:is([type=radio]:checked + span, [type=radio]:checked + label)::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--white);
  position: absolute;
  left: 2px;
  border-radius: 50%;
}
:is([type=radio]:disabled + span, [type=radio]:disabled + label)::before {
  background-color: var(--gray3);
}
:is([type=radio]:disabled + span, [type=radio]:disabled + label):hover::before {
  border-color: var(--input-border-color);
}
[type=radio]:checked:disabled + span::before,
[type=radio]:checked:disabled + label::before {
  background-color: var(--gray6);
  border: 1px solid var(--gray3);
}
select.select {
  color: var(--input-color);
  background-color: var(--input-background);
  font-size: var(--input-font-size);
  font-weight: 300;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 2px;
  border: 1px solid var(--input-border-color);
  transition: var(--input-transition);
  appearance: none;
  background: var(--input-background) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding: 0.5rem 1.5rem 0.5rem 0.5rem;
  height: auto;
}
select.select:hover:not(:disabled) {
  border-color: var(--input-hover-border-color);
}
select.select:focus {
  color: var(--input-color);
  background-color: var(--input-background);
  border-color: var(--input-hover-border-color);
  outline: none;
}
select.select:disabled,
select.select[readonly] {
  background-color: var(--input-disabled-background);
  color: var(--input-disabled-color);
  cursor: not-allowed;
}
select.select::-ms-expand {
  background-color: transparent;
  border: 0;
}
select.select:focus::-ms-value {
  color: var(--input-color);
  background-color: var(--input-background);
}
.button {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3px;
  appearance: none;
  transition: background-color ease-in-out 0.15s;
  cursor: pointer;
  box-shadow: var(--block-shadow-min);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
}
.button:hover {
  background-color: var(--link-hover-color);
  color: var(--white);
}
.button:disabled {
  background-color: var(--gray4);
  font-weight: 300;
  cursor: not-allowed;
  color: var(--gray6);
  box-shadow: none;
}
.input {
  margin-bottom: 20px;
}
.input.radio_buttons > label {
  margin-bottom: 0.6rem;
  display: block;
}
.input.radio_buttons .radio {
  margin-right: 16px;
  margin-left: 0;
}
@media (max-width: 767px) {
  .input.radio_buttons .radio {
    display: block;
  }
}
.input.radio_buttons .collection_radio_buttons {
  margin-left: 0.4rem;
  font-size: 16px;
  text-transform: none;
}
.input__error {
  font-size: 13px;
  margin-top: 3px;
  margin-left: 2px;
  color: var(--red);
}
.input__hint {
  font-size: 13px;
  color: var(--gray6);
  margin-top: 8px;
}
.input__hint + .input__error {
  margin-top: 0;
}

/* app/assets/theme/global/deprecated/grid.css */
@media (min-width: 1024px) {
  .row {
    display: flex;
    align-items: flex-start;
  }
  .row .column {
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
  }
  .row .column:first-child {
    padding-left: 0;
  }
  .row .column:last-child {
    padding-right: 0;
  }
}

/* app/assets/theme/global/deprecated/page_title.css */
.container > .page-title {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .container > .page-title {
    margin-top: 30px;
  }
}
.page-title {
  margin: 0 auto 30px;
}
.page-title h1 {
  font-weight: 100;
  font-size: 20px;
  color: var(--purple5);
  padding: 0 2px 8px;
  border-bottom: 1px solid var(--gray3);
}
@media (min-width: 768px) {
  .page-title h1 {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .page-title h1 {
    font-size: 26px;
  }
}
.page-title h1 small {
  color: var(--gray6);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}
@media (min-width: 768px) {
  .page-title h1 small {
    float: right;
    position: relative;
    top: 12px;
  }
}
.page-title h2 {
  font-weight: 300;
  font-size: 17px;
  color: var(--purple1);
}
.page-title h2 small {
  color: var(--gray6);
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .page-title h2 small {
    float: right;
    position: relative;
    top: 2px;
  }
}
.page-title .label {
  font-size: 0.5em;
}

/* app/assets/theme/global/deprecated/shadowed_box/dlist.css */
.shadowed-box_dlist > dt {
  float: left;
  width: 60px;
  overflow: hidden;
  clear: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 300;
  color: var(--purple1);
  border-bottom: 1px solid var(--gray3);
  padding: 12px 0 10px 10px;
  min-height: 42px;
}
@media (min-width: 321px) {
  .shadowed-box_dlist > dt {
    width: 75px;
    padding-top: 10px;
  }
}
.shadowed-box_dlist > dt:last-of-type {
  border-bottom: none;
}
.shadowed-box_dlist > dd {
  margin: 0 0 0 60px;
  border-bottom: 1px solid var(--gray3);
  padding: 10px 10px 10px 15px;
  min-height: 42px;
}
@media (min-width: 321px) {
  .shadowed-box_dlist > dd {
    margin-left: 75px;
  }
}
.shadowed-box_dlist > dd:last-of-type {
  border-bottom: none;
}
.shadowed-box_dlist > dd::before,
.shadowed-box_dlist > dd::after {
  display: table;
  content: " ";
}
.shadowed-box_dlist > dd time {
  color: var(--gray6);
}
.shadowed-box_dlist__dd-link {
  display: block;
}
.shadowed-box_dlist__dd-link i {
  float: right;
}

/* app/assets/theme/global/deprecated/shadowed_box/link.css */
.shadowed-box_link {
  padding: 10px 16px;
  font-weight: 500;
  display: flex;
  margin-top: 10px;
  transition: background-color 0.15s;
}
.shadowed-box_link > section {
  flex: 1;
  align-self: center;
}
.shadowed-box_link > section:last-child {
  flex: 0;
  padding-left: 10px;
}
.shadowed-box_link > section img {
  border-radius: 6px;
  border: 2px solid var(--gray3);
  margin: 0 6px 0 -6px;
}
.shadowed-box_link > section hr {
  margin: 8px 0;
}
.shadowed-box_link > i {
  line-height: 1;
}
.shadowed-box_link small {
  display: block;
  font-weight: 300;
  color: var(--purple1);
}
a.shadowed-box_link:hover {
  background-color: var(--gray1);
}
.shadowed-box_highlighted {
  background-color: var(--purple5);
  color: var(--white);
  transition: background-color 0.15s;
}
.shadowed-box_highlighted:hover {
  color: var(--white);
  background-color: var(--purple6) !important;
}
.shadowed-box__link {
  border-radius: 3px;
  display: flex;
  padding: 10px 16px;
  border-top: 1px solid var(--gray4);
  transition: background-color 0.15s;
}
.shadowed-box__link:first-child {
  border-top: none;
}
.shadowed-box__link:hover {
  background-color: var(--gray1);
}
.shadowed-box__link > section {
  flex: 1;
  align-self: center;
}
.shadowed-box__link > section:last-child {
  flex: 0;
  padding-left: 10px;
}
.shadowed-box__link + .shadowed-box__link {
  border-radius: 0;
}

/* app/assets/theme/global/deprecated/shadowed_box/linked_list.css */
.shadowed-box_linked-list {
  list-style: none;
  padding: 0;
}
.shadowed-box_linked-list li {
  border-bottom: 1px solid var(--gray3);
}
.shadowed-box_linked-list li a {
  padding: 10px 16px;
  display: flex;
  align-items: center;
}
.shadowed-box_linked-list li a:hover {
  background-color: var(--gray1);
}
.shadowed-box_linked-list li a > div {
  flex: 1;
}
.shadowed-box_linked-list li a > div:nth-child(2) {
  padding-left: 15px;
  flex: none;
}
.shadowed-box_linked-list li a h3 {
  margin: 0;
}
.shadowed-box_linked-list li a h3 small {
  padding-left: 20px;
  font-weight: 300;
  font-size: 12px;
}

/* app/assets/theme/global/deprecated/shadowed_box/list.css */
.shadowed-box_list {
  list-style: none;
  padding: 0;
}
.shadowed-box_list li {
  border-bottom: 1px solid var(--gray3);
  padding: 10px 16px;
}
.shadowed-box_list li i {
  margin-right: 10px;
  color: var(--purple5);
}

/* app/assets/theme/global/deprecated/shadowed_box/sectioned.css */
.shadowed-box_sectioned > section {
  border-top: 1px solid var(--gray3);
  padding: 12px;
}
@media (min-width: 768px) {
  .shadowed-box_sectioned > section {
    padding: 16px;
  }
}
.shadowed-box_sectioned > section:first-child {
  border-top: 0;
}
.shadowed-box_sectioned > section > i {
  float: right;
  color: var(--purple5);
}
.shadowed-box_sectioned > section .button_to + .button_to {
  margin-top: 5px;
}
.shadowed-box_sectioned > section h1 {
  margin: 0;
}
.shadowed-box_sectioned > section h4 {
  margin: 0;
  font-weight: 300;
}
.shadowed-box_sectioned .shadowed-box_link {
  margin: 0;
}

/* app/assets/theme/global/deprecated/shadowed_box.css */
.shadowed-box {
  border-radius: 3px;
  background-color: var(--white);
  box-shadow: var(--block-shadow-min);
}
.shadowed-box_faded {
  opacity: 0.6;
  box-shadow: none;
}

/* app/assets/theme/global/deprecated/pagination.css */
.paginationContainer {
  border-top: 1px solid var(--gray4);
  padding-top: 20px;
  font-size: 12px;
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .paginationContainer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .paginationContainer > div:last-child {
    padding-bottom: 10px;
  }
}
.pagination {
  display: flex;
}
@media (max-width: 768px) {
  .pagination {
    margin-right: 10px;
  }
}
.pagination > span {
  display: flex;
  margin-right: 5px;
}
.pagination > span a {
  border-radius: 4px;
  background-color: var(--gray3);
  color: var(--body-font-color);
  padding: 0.2em 0.6em;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}
.pagination > span a:hover {
  background-color: var(--gray4);
}
.pagination .current {
  padding: 0.2em 0.6em;
  align-items: center;
  display: inline-flex;
  font-weight: 500;
  background-color: var(--white);
  color: var(--body-font-color);
  border-radius: 4px;
}
.pagination i {
  margin-right: 0;
}

/* app/assets/theme/global/deprecated/spaced.css */
.spaced {
  margin-bottom: 30px;
}
.spaced__above {
  margin-top: 30px;
}
.spaced__above_small {
  margin-top: 15px;
}
.spaced_small {
  margin-bottom: 15px;
}
.space__below_large {
  margin-bottom: 50px;
}
.space__none {
  margin: 0;
}

/* app/assets/theme/global/deprecated/table.css */
.table {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 425px) {
  .table:not(.table_always-horizontal) {
    display: block;
  }
  .table:not(.table_always-horizontal) thead,
  .table:not(.table_always-horizontal) tbody,
  .table:not(.table_always-horizontal) th,
  .table:not(.table_always-horizontal) td,
  .table:not(.table_always-horizontal) tr {
    display: block;
  }
  .table:not(.table_always-horizontal) thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
}
@media (min-width: 426px) {
  .table:not(.table_not-striped) tbody > tr:nth-of-type(odd) {
    background-color: darken(var(--gray1), 0.8%);
  }
}
.table thead > tr > th,
.table tbody > tr > th,
.table tfoot > tr > th,
.table thead > tr > td,
.table tbody > tr > td,
.table tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid var(--gray4);
}
.table thead > tr > th {
  vertical-align: bottom;
  border-top: none;
  border-bottom: 2px solid var(--gray4);
  color: var(--gray8);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 300;
  text-align: left;
}
.table tfoot > tr > th,
.table tfoot > tr > td {
  vertical-align: bottom;
  border-top: 2px solid var(--gray4);
  border-bottom: 1px solid var(--gray4);
  color: var(--black);
  background-color: var(--gray2);
}
.table tbody > tr {
  background-color: var(--blue0);
}
@media (min-width: 426px) {
  .table tbody > tr:hover {
    background-color: var(--white);
  }
}
@media (max-width: 425px) {
  .table:not(.table_always-horizontal) td:last-child {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray4);
  }
}
.table td.nowrap {
  white-space: nowrap;
  padding-right: 20px;
}
.table td.nopadding {
  padding: 0;
}
.table td blockquote {
  color: var(--gray9);
  font-size: 14px;
  margin: 10px 0;
}
.table ul {
  margin: 0;
  padding-left: 20px;
}
.table ul li {
  padding: 1px 0;
}
.table_small {
  font-size: 0.9em;
}
.table_dlist tbody > tr > td:first-child {
  font-size: 14px;
}
@media (min-width: 426px) {
  .table_dlist tbody > tr > td:first-child {
    width: 80px;
  }
}
.table_shadowed {
  border-radius: 3px;
  box-shadow: var(--block-shadow-min);
}
.table_shadowed tbody > tr > td {
  padding: 12px;
}
.table_shadowed tr:first-child td:first-child {
  border-top-left-radius: 3px;
}
.table_shadowed tr:first-child td:last-child {
  border-top-right-radius: 3px;
}
.table_shadowed tr:last-child td:first-child {
  border-bottom-left-radius: 3px;
}
.table_shadowed tr:last-child td:last-child {
  border-bottom-right-radius: 3px;
}
.table_shadowed tbody > tr {
  background-color: var(--white);
}

/* app/assets/theme/global/deprecated/typography.css */
.large {
  font-size: 1.05rem;
}
.small {
  font-size: 0.9rem;
}
.smaller {
  font-size: 0.8rem;
}
.smallest {
  font-size: 0.75rem;
}
.bold {
  font-weight: 500;
}
.regular {
  font-weight: 300;
}
.thin {
  font-weight: 100;
}
.strikethrough {
  text-decoration: line-through;
}
.underlined {
  text-decoration: underline;
}

/* app/assets/theme/global/deprecated/index.css */

/* app/assets/theme/global/index.css */
#floating-ui-root,
[data-floating-ui-portal] {
  z-index: 200;
}
.tippy-box {
  font-size: 12px !important;
}

/* app/assets/theme/index.css */

/* app/views/layouts/application.css */
/*# sourceMappingURL=application.css.map */