/* app/frontend/core/stylesheets/_palette.css */
:root {
  --cedarras-cedar-core: #0C6B2E;
  --cedarras-old-growth: #1D8A3C;
  --cedarras-fogbank: #F4F6F5;
  --cedarras-riverstone: #8A969B;
  --cedarras-glacierwater: #4CA7A3;
  --cedarras-morninglight: #D6A76A;
  --cedarras-wood-ember: #A65F3A;
  --cedarras-success: #4CAF68;
  --cedarras-warning: #E2B851;
  --cedarras-danger: #C3504A;
  --cedarras-info: #489BB8;
  --color-bg: var(--cedarras-fogbank);
  --color-surface: #FFFFFF;
  --color-text-main: var(--cedarras-cedar-core);
  --color-text-muted: var(--cedarras-riverstone);
  --color-border-subtle: #D3D8DA;
  --color-link: var(--cedarras-glacierwater);
  --color-link-hover: var(--cedarras-morninglight);
  --color-primary: var(--cedarras-cedar-core);
  --color-primary-hover: var(--cedarras-old-growth);
  --color-accent-soft: var(--cedarras-morninglight);
  --color-button-primary-fg: var(--cedarras-fogbank);
  --color-button-primary-bg: var(--cedarras-cedar-core);
  --color-button-secondary-fg: var(--cedarras-fogbank);
  --color-button-secondary-bg: var(--cedarras-wood-ember);
}

/* app/frontend/core/stylesheets/base.css */
body {
  background-color: var(--color-bg);
  margin: 0;
  padding: 0;
  font-family:
    "Roboto",
    "Arial",
    "Helvetica",
    sans-serif;
  font-size: 16px;
  color: #261B23;
}
h1 {
  font-size: 2rem;
  color: var(--color-text-main);
  small {
    font-size: 1.3rem;
    color: #888888;
  }
}
h2 {
  font-size: 1.7rem;
  color: var(--color-text-main);
  small {
    font-size: 1.2rem;
    color: #888888;
  }
}
h3 {
  font-size: 1.4rem;
  color: var(--color-text-main);
  small {
    font-size: 1.1rem;
    color: #888888;
  }
}
h4 {
  font-size: 1.2rem;
  color: var(--color-text-main);
  small {
    font-size: 1.0rem;
    color: #888888;
  }
}
a {
  color: var(--color-link);
  text-decoration: none;
  &:hover {
    color: var(--color-link-hover);
  }
}
.fake-a {
  color: var(--color-link);
  text-decoration: none;
  cursor: pointer;
  &:hover {
    color: var(--color-link-hover);
  }
}
.italic {
  font-style: italic;
}
.info {
  font-style: italic;
  font-size: .8em;
}
.hidden {
  display: none;
}
.error {
  color: var(--cedarras-danger);
  font-style: italic;
}
.success {
  color: var(--cedarras-success);
  font-style: italic;
}
.loading {
  color: var(--cedarras-warning);
  font-style: italic;
}

/* app/frontend/core/stylesheets/buttons.css */
.button {
  border-radius: 5px;
  display: inline-block;
  padding: 5px;
  margin: 5px 5px 10px 0;
  font-size: 16px;
  &:hover {
    filter: brightness(120%);
    cursor: pointer;
  }
  &.primary,
  &.submit_action {
    color: var(--color-button-primary-fg);
    background-color: var(--color-button-primary-bg);
    border: none;
  }
  &.secondary,
  &.alt_action {
    color: var(--color-button-secondary-fg);
    background-color: var(--color-button-secondary-bg);
    border: none;
  }
  &.trinary,
  &.cancel_action,
  &.close_action {
    border: 1px solid var(--color-button-primary-bg);
    background-color: inherit;
    color: inherit;
    &:hover {
      color: var(--color-button-primary-bg);
      background-color: var(--color-button-primary-fg);
      filter: brightness(110%);
    }
  }
  &.alt2_action {
    color: var(--color-button-primary-fg);
    background-color: var(--cedarras-riverstone);
    border: none;
    &:hover {
      filter: brightness(90%);
    }
  }
  &.red_button,
  &.danger_action {
    border: 1px solid var(--cedarras-danger);
    color: var(--cedarras-danger);
    &:hover {
      background-color: var(--cedarras-danger);
      color: white;
      filter: brightness(150%);
    }
  }
  &.disabled {
    background-color: #cccccc;
    border: 1px solid #cccccc;
    color: #444444;
    &:hover {
      filter: brightness(100%);
      cursor: default;
    }
  }
  &.tiny {
    font-size: 10px;
    padding: 2px 5px;
    margin-top: 0;
    margin-bottom: 0;
  }
}

/* app/frontend/core/stylesheets/flash.css */
#flash_content,
#flash_content_inline {
  margin-left: 25%;
  margin-right: 25%;
  width: 50%;
  .close_box {
    text-align: right;
    span {
      cursor: pointer;
    }
  }
  .callout {
    padding: 0 10px 10px 10px;
    border-radius: 20px;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.5);
  }
  .message {
    margin: 0;
  }
  .flash_notice {
    border: 1px solid var(--cedarras-success);
    background-color: var(--cedarras-success);
  }
  .flash_info {
    border: 2px solid #FFFFFF;
    background-color: #eeeeee;
    color: #333333;
  }
  .flash_alert {
    background-color: var(--cedarras-danger);
    color: var(--cedarras-fogbank);
  }
  .flash_error {
    background-color: var(--cedarras-danger);
    color: var(--cedarras-fogbank);
  }
}
#flash_content {
  position: absolute;
  top: 10px;
  margin-top: 0;
}
body.theme-dark .flash_notice {
  color: #000000;
}

/* app/frontend/core/stylesheets/forms.css */
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=url],
input[type=number] {
  box-sizing: border-box;
  font-size: 16px;
  border: 1px solid #ccc;
  padding: 8px;
  margin: 0 0 0 0;
  width: 100%;
}
.simple_form_horizontal {
  display: flex;
  .sf_hz_label {
    flex: 1 1 100px;
    margin-right: 10px;
    label {
      width: 100%;
      display: block;
      text-align: right;
      font-weight: bold;
      &:after {
        content: ":";
      }
    }
  }
  .sf_hz_content {
    flex: 5 5 500px;
  }
}
.simple_form_vertical {
  margin-bottom: 16px;
  label {
    display: block;
  }
  input[type=text],
  input[type=password],
  input[type=email],
  select {
    display: block;
    margin: 0;
  }
  input[type=checkbox] {
    display: inline;
  }
  span {
    label {
      display: block;
      input {
      }
      label {
        display: inline;
        margin-left: 5px;
      }
    }
  }
  span.hint {
    display: block;
    font-style: italic;
    font-size: .8em;
  }
  &.field_with_errors {
    label {
      color: red;
    }
    input[type=text],
    input[type=password],
    input[type=email],
    select {
      border: 1px solid red;
      background-color: #ff8888;
    }
    span.hint {
      color: red;
    }
    span.error {
      display: block;
      font-style: italic;
      font-size: .8em;
      color: red;
    }
  }
  &.radio_buttons {
    label {
      display: block;
      margin-bottom: 5px;
    }
    span.radio {
      margin: 10px;
      display: inline;
      label {
        display: inline;
        white-space: nowrap;
        input {
          display: inline;
        }
      }
    }
  }
}
.simple_form_vertical,
div.simple_form_horizontal {
  margin-bottom: 10px;
  input,
  select,
  textarea {
    margin-bottom: 0;
  }
  .error {
    color: red;
    display: block;
  }
  .hint {
    font-style: italic;
    font-size: .8em;
    color: #333;
    display: block;
  }
}
.error_notification {
  color: red;
  font-size: .8em;
  margin-bottom: 10px;
  display: block;
}
.form_errors {
  border: 1px solid red;
  background-color: #cccccc;
  border-radius: 20px;
  box-shadow: red 5px 5px 5px;
  margin: 20px auto 30px 30px;
  width: 500px;
  padding: 20px;
  h5 {
    padding: 0;
    margin: 0;
    color: red;
  }
  ul {
    li {
      color: red;
    }
  }
}
.form_join {
  display: flex;
  align-items: center;
  .text_info {
    box-sizing: border-box;
    font-size: 16px;
    padding: 8px;
    background-color: #ccc;
    border: 1px solid #ccc;
  }
}
select {
  font-size: 18px;
  width: 100%;
  margin: 0;
  padding: 8px;
  border: 1px solid #ccc;
}
textarea {
  font-size: 16px;
  width: calc(100% - 10px);
}

/* app/frontend/core/stylesheets/layout_settings.css */
#two_column_left_menu {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  #left_menu {
    border-radius: 0 0 20px 0;
    border-right: 1px solid #00000022;
    flex: 0 1 auto;
    padding: 10px 20px;
    min-width: 180px;
    h2 {
      font-size: 0.8em;
      font-weight: 600;
      color: #444444;
      text-decoration: underline;
      margin-bottom: 0;
    }
    .menu {
      text-decoration: none;
      color: #000000;
      padding: 0;
      font-size: 0.8rem;
    }
    .active {
      color: var(--cedarras-wood-ember);
      font-weight: bold;
    }
    .menu_inactive {
      color: #888888;
      cursor: default;
    }
  }
  #right_content {
    flex: 1 1 auto;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  #two_column_left_menu {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    #left_menu {
      order: 1;
    }
    #right_content {
      order: 2;
    }
  }
}

/* app/frontend/core/stylesheets/menu_nav.css */
nav#top_middle_nav {
  a {
    text-decoration: none;
  }
  #main_menu {
    display: flex;
    flex-wrap: wrap;
    .menu-item {
      display: inline-flex;
      white-space: nowrap;
      padding: 5px;
      .unread-count {
        font-weight: bold;
        font-style: italic;
      }
      .active {
        color: var(--cedarras-wood-ember);
      }
    }
    .menu_inactive {
      color: #888888;
      cursor: default;
    }
  }
}
nav#top_right_nav {
  a {
    text-decoration: none;
  }
}

/* app/frontend/core/stylesheets/tables.css */
table.primary,
table.novisible,
table.tight {
  border: 0;
  border-collapse: collapse;
  caption {
    font-style: italic;
    &.nowrap {
      white-space: nowrap;
    }
  }
  .right_aligned {
    text-align: end;
  }
  tr {
    th {
      border-spacing: 0;
      text-align: left;
      padding: 5px 10px 5px 10px;
      vertical-align: bottom;
      &.left {
        text-align: left;
      }
      &.center {
        text-align: center;
      }
      &.right {
        text-align: right;
      }
      &.nowrap {
        white-space: nowrap;
      }
    }
    td {
      padding: 5px 10px 5px 10px;
      vertical-align: top;
      &.left {
        text-align: left;
      }
      &.center {
        text-align: center;
      }
      &.right {
        text-align: right;
      }
      &.nowrap {
        white-space: nowrap;
      }
    }
  }
  &.full_width {
    width: 100%;
  }
  &.align_center {
    margin-left: auto;
    margin-right: auto;
  }
  &.caption_bottom {
    caption-side: bottom;
  }
  tbody {
    tr {
      th {
        vertical-align: top;
      }
    }
  }
  tfoot {
    background-color: var(--cedarras-riverstone);
    color: var(--cedarras-fogbank);
    tr {
      border: 0;
      td,
      th {
        padding: 5px 10px 5px 10px;
        border: 0;
      }
    }
  }
}
table.primary {
  tr {
    border: 1px solid #ddd;
  }
}
table.novisible {
  tr {
    border: 0;
  }
}
table.primary {
  caption {
    color: #666666;
  }
  thead {
    background-color: var(--cedarras-old-growth);
    color: var(--cedarras-fogbank);
  }
  &:hover {
    tbody {
      tr.nohover {
        &:hover {
          background-color: inherit;
        }
      }
      tr {
        &:hover {
          background-color: #ddd;
        }
      }
    }
  }
}
table.tight {
  border: 0;
  border-collapse: collapse;
  caption {
    font-style: italic;
    font-size: .8em;
    &.nowrap {
      white-space: nowrap;
    }
  }
  thead tr th,
  thead tr td,
  tbody tr th,
  tbody tr td,
  tr th,
  tr td {
    padding: 0;
    vertical-align: bottom;
  }
}
table.hover {
  tbody {
    tr {
      &:hover {
        background-color: #ddd;
      }
    }
  }
}
table.list_content {
  border-collapse: collapse;
  &.bordered {
    border: 1px solid #ddd;
  }
  &.colored {
    tr {
      th {
        background-color: var(--cedarras-old-growth);
      }
    }
  }
  tr {
    th {
      vertical-align: top;
      text-align: right;
      padding: 5px;
    }
    td {
      vertical-align: top;
      padding: 5px;
    }
  }
}
/*# sourceMappingURL=/assets/core-e7f2549a.css.map */
