@import url(https://fonts.googleapis.com/css?family=BenchNine|Open+Sans:300,400|Roboto:300,400,600,700|Roboto+Condensed:400,600|Oxygen+Mono:300,400|EB+Garamond:400|Quicksand:300,400,700|Raleway:400,700);
html {
  box-sizing: border-box;
  min-height: 100vh;
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
}
*,
*:after,
*:before {
  box-sizing: border-box;
}
form {
  margin: 0;
  padding: 0;
}
.section {
  position: relative;
  display: grid;
  row-gap: 1rem;
  column-gap: 1rem;
}
.section > * {
  position: relative;
}
.grid {
  display: grid;
}
.inline-grid {
  display: inline-grid;
}
.grid-h {
  grid-auto-flow: column;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
picture {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
picture > img {
  object-fit: contain;
}
img {
  max-width: 100%;
}
a {
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.apc-btn:hover {
  text-decoration: none;
}
.link,
.pointer {
  cursor: pointer;
}
.o-9 {
  opacity: 0.9;
}
.o-8 {
  opacity: 0.8;
}
.o-7 {
  opacity: 0.7;
}
.w-100p {
  width: 100%;
}
.h-100p {
  height: 100%;
}
hr {
  height: 1px;
  border: 0;
  border-color: inherit;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  margin: 0;
  z-index: 1;
}
hr.hr-dotted {
  border-style: dotted;
}
hr.hr-dashed {
  border-style: dashed;
}
.nowrap {
  white-space: nowrap;
}
.wb-normal {
  word-break: normal;
}
.new-ver.container {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  max-width: 100%;
}
.new-ver.container.show {
  display: flex;
}
.capital {
  text-transform: capitalize;
}
.quill {
  display: flex;
  flex-direction: column;
}
.quill > .ql-container {
  overflow: hidden;
}
.container {
  padding: 0 1rem;
}
.container > * {
  margin: 0 auto;
  width: 100%;
  max-width: 1140px;
}
.container.fs > * {
  max-width: 100%;
}
.container.np > * {
  padding: 0;
}
.bgimg,
.bgcolor {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 100% !important;
  top: 0;
  left: 0;
}
.bgimg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 520px) {
  .mobile-hidden {
    display: none !important;
  }
}
.cs-none {
  column-gap: 0;
}
.rs-none {
  row-gap: 0;
}
.cs-xl {
  column-gap: 1.5rem;
}
.rs-xl {
  row-gap: 1.5rem;
}
.cs-2x {
  column-gap: 2rem;
}
.rs-2x {
  row-gap: 2rem;
}
.cs-3x {
  column-gap: 3rem;
}
.rs-3x {
  row-gap: 3rem;
}
.cs-l {
  column-gap: 1.2rem;
}
.rs-l {
  row-gap: 1.2rem;
}
.cs-m {
  column-gap: 0.7rem;
}
.rs-m {
  row-gap: 0.7rem;
}
.cs-s {
  column-gap: 0.5rem;
}
.rs-s {
  row-gap: 0.5rem;
}
.cs-xs {
  column-gap: 0.3rem;
}
.rs-xs {
  row-gap: 0.3rem;
}
.cs-xxs {
  column-gap: 0.15rem;
}
.rs-xxs {
  row-gap: 0.15rem;
}
:root {
  --padding: 1rem;
  --spacing: 1rem;
  --fontSize: 1rem;
  --height: 200px;
}
.responsive {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.cols-12 {
  grid-column: span 12;
}
.cols-10 {
  grid-column: span 10;
}
.cols-9 {
  grid-column: span 9;
}
.cols-8 {
  grid-column: span 8;
}
.cols-7 {
  grid-column: span 7;
}
.cols-6 {
  grid-column: span 6;
}
.cols-5 {
  grid-column: span 5;
}
.cols-4 {
  grid-column: span 4;
}
.cols-3 {
  grid-column: span 3;
}
@media (max-width: 768px) {
  :root {
    --padding: 0.75rem;
  }
  .cols-s-12 {
    grid-column: span 12;
  }
  .cols-s-8 {
    grid-column: span 8;
  }
  .cols-s-7 {
    grid-column: span 7;
  }
  .cols-s-6 {
    grid-column: span 6;
  }
  .cols-s-4 {
    grid-column: span 4;
  }
  .cols-s-3 {
    grid-column: span 3;
  }
}
@media (max-width: 420px) {
  :root {
    --padding: 0.6rem;
  }
  .cols-xs-12 {
    grid-column: span 12;
  }
  .cols-xs-8 {
    grid-column: span 8;
  }
  .cols-xs-7 {
    grid-column: span 7;
  }
  .cols-xs-6 {
    grid-column: span 6;
  }
  .cols-xs-5 {
    grid-column: span 5;
  }
  .cols-xs-4 {
    grid-column: span 4;
  }
  .cols-xs-3 {
    grid-column: span 3;
  }
  .cs-2x,
  .cs-3x {
    column-gap: 1rem;
  }
}
.jc-center {
  justify-content: center;
}
.jc-end {
  justify-content: end;
}
.jc-start {
  justify-content: start;
}
.jc-space-between,
.jc-sb {
  justify-content: space-between;
}
.ji-end {
  justify-items: end;
}
.ji-center {
  justify-items: center;
}
.ac-center {
  align-content: center;
}
.ac-stretch {
  align-content: stretch;
}
.ac-space-between {
  align-content: space-between;
}
.ac-start {
  align-content: start;
}
.ac-end {
  align-content: end;
}
.ai-center {
  align-items: center;
}
.ai-end {
  align-items: end;
}
.ai-start {
  align-items: start;
}
.js-start {
  justify-self: start;
}
.js-emd {
  justify-self: end;
}
.form-c {
  align-content: start;
}
.form-c .form-dh {
  font-size: 1.6rem;
}
.form-c .form-sh {
  font-size: 1.1rem;
}
.form-body {
  gap: 16px 12px;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Ubuntu, sans-serif;
  font-size: 15px;
}
.form-body > .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: inherit;
}
.field {
  display: grid;
  row-gap: 2px;
  justify-items: start;
}
.field > label {
  margin-left: 1px;
  text-align: left;
  font-weight: 500;
}
.field > .control {
  white-space: pre-wrap;
}
.field > .control.htmleditor {
  width: 100%;
}
.field > .err {
  color: red;
  font-size: 0.9em;
  text-align: left;
}
.field > small.ht {
  opacity: 0.7;
  display: block;
}
.field .f-reqstar {
  color: red;
  margin-left: 3px;
}
.field-row {
  align-items: center;
  grid-template-columns: auto 1fr;
}
.field-row > label {
  margin-right: 2px;
}
.field-row > .control {
  display: inline-flex;
}
input,
select,
textarea {
  font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Ubuntu, sans-serif;
  padding: 0.4em 0.5em;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  font-size: 15px;
  line-height: 1;
  width: 100%;
  color: #333;
}
input.input-m,
select.input-m,
textarea.input-m {
  padding: 4px 5px;
  font-size: 15px x-large 2px;
}
input.input-l,
select.input-l,
textarea.input-l {
  padding: 10px;
  font-size: 17px;
}
input.input-xl,
select.input-xl,
textarea.input-xl {
  padding: 13px 18px;
  font-size: 19px;
}
textarea {
  line-height: 1.3;
}
.apc-date.srch {
  max-width: 130px;
}
.apc-cbx {
  width: 18px;
  height: 0;
  position: relative;
}
.apc-cbx:before {
  position: absolute;
  left: 0;
  top: -9px;
  width: 18px;
  height: 18px;
  background: linear-gradient(to top, #eee 0%, #fff 60%);
  border: 1px solid #a6c8e6;
  border-radius: 3px;
  content: " ";
  transition: all 0.5s;
}
.apc-cbx:checked:before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="white" d="M435.848 83.466L172.804 346.51l-96.652-96.652c-4.686-4.686-12.284-4.686-16.971 0l-28.284 28.284c-4.686 4.686-4.686 12.284 0 16.971l133.421 133.421c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-28.284-28.284c-4.686-4.686-12.284-4.686-16.97 0z"/></svg>'),
    linear-gradient(to top, #123 0%, #2b5580 60%);
  border-width: 1px;
  padding-left: 1px;
}
.apc-cbx:indeterminate:before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="white" d="M436 284c6.6 0 12-5.4 12-12v-32c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v32c0 6.6 5.4 12 12 12h424z"/></svg>'),
    linear-gradient(to top, #123 0%, #2b5580 60%);
  padding: 2px 0 0 3px;
  width: 19px;
}
.apc-cbx[disabled]:before {
  border-color: #777;
  background: #fff;
  color: #777;
}
@media (max-width: 520px) {
  .form-c {
    margin-top: 40px;
  }
  .form-c .df-h {
    display: none;
  }
}
.apc-btn {
  display: inline-flex;
  cursor: pointer;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Ubuntu, sans-serif;
  user-select: none;
  font-weight: 400;
  white-space: nowrap;
  height: 36px;
  padding: 0rem 0.9rem;
  font-size: 1rem;
  align-items: center;
  text-decoration: none;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  line-height: 1;
}
.apc-btn div.icon {
  opacity: 0.9;
  width: 17px;
  align-items: center;
}
.apc-btn > div:first-child {
  margin-right: 0.3em;
  margin-left: -0.3em;
}
.apc-btn > div:last-child {
  margin-left: 0.3em;
  margin-right: -0.3em;
}
.apc-btn-tr {
  border-width: 2px;
  color: inherit;
}
.apc-btn-l {
  padding: 0.2rem 1.1rem;
  border-radius: 4px;
}
.apc-btn-m {
  font-size: 0.9rem;
}
.apc-btn-s {
  font-size: 0.8rem;
}
.apc-btn-xs {
  font-size: 0.7rem;
}
.apc-btn-radius-none {
  border-radius: 0;
}
.apc-btn[disabled] {
  background-color: #999999;
  cursor: not-allowed;
  border-color: #8c8c8c;
}
.apc-btn-icon {
  padding: 5px;
  min-height: 26px;
  min-width: 28px;
  border-width: 1px;
  justify-content: center;
}
.apc-btn-icon .icon {
  font-size: 1.5rem;
}
.apc-btn-icon > div,
.apc-btn-icon > div:last-child {
  margin-left: 0;
  margin-right: 0;
}
.apc-btn-icon-circle {
  outline: none;
  padding: 0;
  border-radius: 100%;
  border-width: 1px;
  width: 23px;
  height: 23px;
}
.apc-tab > .tab-h {
  border-bottom: solid 5px #8C5C34;
}
.apc-tab > .tab-h > .tab-t {
  background-color: #fff;
  padding: 0.4em 0.9em 0em;
  border: solid 1px #ea8267;
  border-bottom: none;
  border-radius: 3px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.apc-tab > .tab-h > .tab-t.tab-sel {
  background: #8C5C34;
  border-color: #8C5C34;
  color: #fff;
}
.apc-tab > .tab-p {
  padding: 7px 0;
}
.apc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.8);
}
.apc-overlay > .body {
  background: #bbb;
  padding: 7px 14px;
}
.apc-overlay-window {
  position: fixed;
}
.apc-overlay .spinner {
  width: 1em;
  height: 1em;
  animation: fa-spin 2s infinite linear;
}
.apc-overlay .fa-spin {
  animation: fa-spin 2s infinite linear;
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.apc-dd {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 15px;
}
.apc-dd input {
  width: 100%;
}
.apc-dd > div.ph {
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  background: white;
  display: flex;
}
.apc-dd > div.ph > input {
  flex: 1;
  border: none;
  cursor: default;
  padding-right: 0;
}
.apc-dd > div.ph > div.da {
  width: 27px;
  border-left-width: 1px;
  border-left-style: solid;
  background: no-repeat
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" style="fill:steelblue" viewBox="0 0 256 512"><path d="M119.5 326.9L3.5 209.1c-4.7-4.7-4.7-12.3 0-17l7.1-7.1c4.7-4.7 12.3-4.7 17 0L128 287.3l100.4-102.2c4.7-4.7 12.3-4.7 17 0l7.1 7.1c4.7 4.7 4.7 12.3 0 17L136.5 327c-4.7 4.6-12.3 4.6-17-.1z"/></svg>');
  background-position: center 2px;
}
.apc-dd > div.ph > div.de {
  visibility: hidden;
  width: 12px;
  margin-right: 5px;
  background: no-repeat
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" style="fill:steelblue" viewBox="0 0 320 512"><path d="M193.94 256L296.5 153.44l21.15-21.15c3.12-3.12 3.12-8.19 0-11.31l-22.63-22.63c-3.12-3.12-8.19-3.12-11.31 0L160 222.06 36.29 98.34c-3.12-3.12-8.19-3.12-11.31 0L2.34 120.97c-3.12 3.12-3.12 8.19 0 11.31L126.06 256 2.34 379.71c-3.12 3.12-3.12 8.19 0 11.31l22.63 22.63c3.12 3.12 8.19 3.12 11.31 0L160 289.94 262.56 392.5l21.15 21.15c3.12 3.12 8.19 3.12 11.31 0l22.63-22.63c3.12-3.12 3.12-8.19 0-11.31L193.94 256z"/></svg>');
  background-position: center 6px;
}
.apc-dd-ac > div.ph > div.de {
  visibility: visible;
}
.apc-dd-dis > div.ph > div.de {
  display: none;
}
.apc-dd > div.dd {
  min-width: 100%;
  z-index: 1;
  background: #fff;
  border-style: solid;
  border-width: 1px;
  border-top: none;
  border-radius: 0 0 3px 3px;
  padding: 5px;
  position: absolute;
  display: none;
  margin-bottom: 10px;
  white-space: nowrap;
}
.apc-dd .apc-dd-opts {
  max-height: 200px;
  min-width: 100%;
  width: fit-content;
  overflow: auto;
}
.apc-dd .apc-dd-opts > span {
  padding: 5px;
  cursor: pointer;
  border-radius: 3px;
}
.apc-dd .apc-dd-opts > span:hover {
  color: #333;
  background-color: lightblue;
}
.apc-dd .apc-dd-opts > span.nodata,
.apc-dd .apc-dd-opts > span.loading {
  color: #666;
}
.apc-dd .apc-dd-opts > span.nodata:hover,
.apc-dd .apc-dd-opts > span.loading:hover {
  background-color: white;
  cursor: default;
}
.apc-dd .apc-dd-opts > span.loading {
  font-style: italic;
}
.apc-dd .apc-dd-opts > .cur {
  color: white;
  background: lightblue;
}
.apc-dd .apc-dd-opts > .selected {
  color: white;
  background: steelblue;
}
.apc-dd.dd-shown > div.ph {
  border-width: 2px;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.apc-dd.dd-shown > div.ph > div.da,
.apc-dd.dd-shown > div.ph > div.de {
  visibility: hidden;
}
.apc-dd.dd-shown > div.dd {
  border-width: 2px;
  display: block;
}
.icon {
  display: inline-grid;
  width: 25px;
}
.icon-s {
  width: 22px;
}
.icon-xs {
  width: 19px;
}
.icon-xxs {
  width: 16px;
}
.icon-xxxs {
  width: 13px;
}
.dialog {
  position: fixed;
  display: grid;
  align-items: stretch;
  justify-content: end;
  transform: translateX(100%);
  transition: 0.2s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  overflow: hidden;
}
.dialog-visible {
  transform: translateX(0);
  overflow: visible;
}
.dialog > .body {
  overflow: auto;
  min-width: 500px;
  background: #fff;
  border-left: solid 1.5px #777;
  padding: 1rem 1.5rem;
  align-content: start;
}
.dialog > .body > .form-c {
  padding-bottom: 1rem;
}
.dialog > .body > .dh-d > .heading {
  font-size: 1.5rem;
  font-weight: 500;
}
.dialog > .body > .dh-m {
  display: none;
  position: fixed;
  min-height: 40px;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3px 8px;
  grid-template-columns: auto 1fr;
  z-index: 1;
  align-content: center;
}
@media (max-width: 520px) {
  .dialog {
    justify-content: stretch;
  }
  .dialog > .body {
    min-width: auto;
    border-left: none;
    padding: 0.5rem 0.7rem;
  }
  .dialog > .body > .dh-d {
    display: none;
  }
  .dialog > .body > .dh-m {
    display: grid;
  }
}
ul,
li,
div {
  border-color: inherit;
  border-width: 1px;
}
.bg-lgy1 {
  background-color: #f5f9fa;
  border-color: #e4eff2;
}
.b-lgy1 {
  border-color: #f5f9fa;
}
.bg-lgy2 {
  background-color: #f3f5fa;
  border-color: #e1e6f3;
}
.b-lgy2 {
  border-color: #f3f5fa;
}
.bg-lgy3 {
  background-color: #eee;
  border-color: #e1e1e1;
}
.b-lgy3 {
  border-color: #eee;
}
.bg-mgy1 {
  background-color: #eee;
  border-color: #e1e1e1;
}
.b-mgy1 {
  border-color: #eee;
}
.s-b {
  background-color: #fff;
  color: #495057;
  fill: #495057;
  border-color: #ddd;
}
.s-b a.link-normal {
  color: #495057;
  fill: #495057;
}
.s-b h1,
.s-b h2,
.s-b h3,
.s-b h4,
.s-b h5,
.s-b h6,
.s-b .h {
  color: inherit;
  fill: inherit;
}
.s-b a,
.s-b .link {
  color: #5469d4;
  fill: #5469d4;
}
.s-b a:hover,
.s-b .link:hover {
  color: #2c42af;
  fill: #2c42af;
}
.s-b a.apc-btn {
  color: #fff !important;
  fill: #fff !important;
}
.s-b a.apc-btn:hover {
  background-color: #8C5C34 !important;
}
.s-b hr {
  border-bottom-color: #ccc;
}
.s-b input,
.s-b textarea,
.s-b select,
.s-b .apc-dd > div.ph,
.s-b .apc-dd > div.dd,
.s-b .apc-dd > div.da {
  border-color: #a6c8e6;
}
.s-b .apc-btn {
    color: #fff;
    fill: #fff;
    background: linear-gradient(to right, #825D2A, #CD9950, #825D2A); /* Gradient background */
    text-shadow: 0 1px 3px rgba(231, 111, 81, 0.4);
    border-color: #8C5C34;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.05), 0 1px 3px rgba(0, 0, 0, 0.05);
  }
.s-b .apc-btn:hover {
  color: #fff;
  fill: #fff;
}
.s-b .apc-btn:hover {
  background-color: #8C5C34;
  border-color: #8C5C34;
}
.s-b .apcmenu li > a {
  color: #777;
  fill: #777;
}
.s-b .apcmenu li > a:hover {
  color: #000;
  fill: #000;
}
.s-b .apcmenu li.active > a:hover {
  color: #000;
  fill: #000;
}
.s-b .apcmenu li.selected {
  color: #333;
  background: #8C5C34;
}
.s-b .apcmenu li.selected > a {
  color: #333;
  fill: #333;
}
.s-b .apcmenu li.selected > a:hover {
  background: #8C5C34 !important;
}
.s-b .apcmenu.hoverbg > li > a:hover {
  color: #fff;
  fill: #fff;
  background: linear-gradient(to right, #CD9950, #825D2A, #CD9950,); /*button on hover*/
}
.s-b .apcmenu ul {
  background-color: #8C5C34;
  border: solid 1px #8C5C34;
}
.s-b .apcmenu ul li > a,
.s-b .apcmenu ul li.active > a {
  color: #333;
  fill: #333;
}
.s-b .apcmenu ul li > a:hover,
.s-b .apcmenu ul li.active > a:hover {
  color: #333;
  fill: #333;
}
.s-b .apcmenu ul li > a:hover,
.s-b .apcmenu ul li.active > a:hover {
  background-color: #cf401d !important;
}
.s-b .b,
.s-b.b {
  border-color: #ddd;
}
.s-b .b-bg,
.s-b.b-bg {
  border-color: #f2f2f2;
}
.s-b .b-light {
  border-color: #fff;
}
.s-b > .sh-sm .sm-h {
  background-color: #8C5C34;
  color: #fff;
  fill: #fff;
}
.s-b > .sh-sm .sm-h a {
  color: #fff;
  fill: #fff;
}
.s-b > .sh-sm .sh-sm-c {
  background-color: #fff;
}
.s-b > .sh-sm .sh-sm-c a.apc-btn {
  color: !important;
  fill: !important;
}
.s-b > .sh-sm .sh-sm-c a.apc-btn:hover {
  background-color: !important;
}
.s-b > .sh-sm .sh-sm-c .b-bg,
.s-b > .sh-sm .sh-sm-c.b-bg {
  border-color: #f2f2f2;
}
.container > .grid {
  border-color: inherit;
}
.sh-scroll {
  background-color: #fff;
}
.sh-scroll a.apc-btn {
  color: !important;
  fill: !important;
}
.sh-scroll a.apc-btn:hover {
  background-color: !important;
}
.sh-scroll .b-bg,
.sh-scroll.b-bg {
  border-color: #f2f2f2;
}
.sh-c {
  background-color: #fff;
  border-color: #f4a261;
}
.sh-c a.apc-btn {
  color: !important;
  fill: !important;
}
.sh-c a.apc-btn:hover {
  background-color: !important;
}
.sh-c .apcmenu li > a {
  color: #333;
  fill: #333;
}
.sh-c .b,
.sh-c.b {
  border-color: #f4a261;
}
.sh-c .b-bg,
.sh-c.b-bg {
  border-color: #f2f2f2;
}
.sh-c .b-light {
  border-color: #fbdac0;
}
.sh-c .s-sm-c {
  background-color: #fff;
}
.sh-tr:not(.sh-scroll) .sh a {
  color: #fff;
  fill: #fff;
}
.s-admin {
  background-color: #f5f7fb;
}
.s-admin.s-b > .sh-scroll {
  background-color: #8C5C34;
  color: #fff;
  fill: #fff;
  border-color: #8C5C34;
}
.s-admin.s-b > .sh-scroll a.link-normal {
  color: #fff;
  fill: #fff;
}
.s-admin.s-b > .sh-scroll a,
.s-admin.s-b > .sh-scroll .link {
  color: #fff;
  fill: #fff;
}
.s-admin.s-b > .sh-scroll a.apc-btn {
  color: !important;
  fill: !important;
}
.s-admin.s-b > .sh-scroll a.apc-btn:hover {
  background-color: !important;
}
.s-admin.s-b > .sh-scroll .apcmenu li > a {
  color: #fff;
  fill: #fff;
}
.s-admin.s-b > .sh-scroll .apcmenu li.selected {
  color: #fff;
  background: #8C5C34;
}
.s-admin.s-b > .sh-scroll .apcmenu li.selected > a {
  color: #fff;
  fill: #fff;
}
.s-admin.s-b > .sh-scroll .apcmenu li.selected > a:hover {
  background: #8C5C34 !important;
}
.s-admin.s-b > .sh-scroll .apcmenu.hoverbg > li > a:hover {
  color: #fff;
  fill: #fff;
  background-color: #8C5C34;
}
.s-admin.s-b > .sh-scroll .apcmenu ul {
  background-color: #8C5C34;
  border: solid 1px #8C5C34;
}
.s-admin.s-b > .sh-scroll .apcmenu ul li > a,
.s-admin.s-b > .sh-scroll .apcmenu ul li.active > a {
  color: #fff;
  fill: #fff;
}
.s-admin.s-b > .sh-scroll .apcmenu ul li > a:hover,
.s-admin.s-b > .sh-scroll .apcmenu ul li.active > a:hover {
  color: #fff;
  fill: #fff;
}
.s-admin.s-b > .sh-scroll .apcmenu ul li > a:hover,
.s-admin.s-b > .sh-scroll .apcmenu ul li.active > a:hover {
  background-color: #8C5C34 !important;
}
.s-admin.s-b > .sh-scroll .b,
.s-admin.s-b > .sh-scroll.b {
  border-color: #8C5C34;
}
.s-admin.s-b > .sh-scroll .b-bg,
.s-admin.s-b > .sh-scroll.b-bg {
  border-color: #8C5C34;
}
.s-admin.s-b > .sh-scroll .b-light {
  border-color: #ed947e;
}
.s-admin.s-b > .sh-sm .sh-sm-c {
  background-color: #fff;
}
.s-admin.s-b > .sh-sm .sh-sm-c a.apc-btn {
  color: !important;
  fill: !important;
}
.s-admin.s-b > .sh-sm .sh-sm-c a.apc-btn:hover {
  background-color: !important;
}
.s-admin.s-b > .sh-sm .sh-sm-c .b-bg,
.s-admin.s-b > .sh-sm .sh-sm-c.b-bg {
  border-color: #f2f2f2;
}
.sf {
  background-color: #fff;
}
.sf a.apc-btn {
  color: !important;
  fill: !important;
}
.sf a.apc-btn:hover {
  background-color: !important;
}
.sf .b-bg,
.sf.b-bg {
  border-color: #f2f2f2;
}
.bg-1 {
  color: #fff;
  fill: #fff;
}
.bg-1 > .bgcolor {
  background-color: #8C5C34;
  
  border-color: #8C5C34;
}
.bg-1 a.link-normal {
  color: #fff;
  fill: #fff;
}
.bg-1 a,
.bg-1 .link {
  color: #264653;
  fill: #264653;
}
.bg-1 a.apc-btn {
  color: !important;
  fill: !important;
}
.bg-1 a.apc-btn:hover {
  background-color: #f18631 !important;
}
.bg-1 hr {
  border-bottom-color: #8C5C34;
}
.bg-1 .apc-btn {
  background-color: #8C5C34;
  text-shadow: 0 1px 3px rgba(244, 162, 97, 0.4);
  border-color: #8C5C34;
}
.bg-1 .apc-btn:hover {
  background-color: #8C5C34;
  border-color: #8C5C34;
}
.bg-1 .b-bg,
.bg-1.b-bg {
  border-color: #8C5C34;
}
.bg-2 {
  color: #fff;
  fill: #fff;
}
.bg-2 > .bgcolor {
  background-color: #2a9d8f;
  border-color: #1a6158;
}
.bg-2 a.link-normal {
  color: #fff;
  fill: #fff;
}
.bg-2 a,
.bg-2 .link {
  color: #264653;
  fill: #264653;
}
.bg-2 a.apc-btn {
  color: !important;
  fill: !important;
}
.bg-2 a.apc-btn:hover {
  background-color: !important;
}
.bg-2 .b-bg,
.bg-2.b-bg {
  border-color: #25897d;
}
.bg-3 {
  color: #fff;
  fill: #fff;
}
.bg-3 > .bgcolor {
  background-color: #8C5C34;
  border-color: #8C5C34;
}
.bg-3 a.link-normal {
  color: #fff;
  fill: #fff;
}
.bg-3 a,
.bg-3 .link {
  color: #264653;
  fill: #264653;
}
.bg-3 a.apc-btn {
  color: !important;
  fill: !important;
}
.bg-3 a.apc-btn:hover {
  background-color: !important;
}
.bg-3 .b-bg,
.bg-3.b-bg {
  border-color: #f29449;
}
.bg-4 {
  color: #fff;
  fill: #fff;
}
.bg-4 > .bgcolor {
  background-color: #264653;
  border-color: #0e1a1f;
}
.bg-4 a.link-normal {
  color: #fff;
  fill: #fff;
}
.bg-4 a.apc-btn {
  color: !important;
  fill: !important;
}
.bg-4 a.apc-btn:hover {
  background-color: !important;
}
.bg-4 .b-bg,
.bg-4.b-bg {
  border-color: #1e3742;
}
.bg-5 {
  color: #fff;
  fill: #fff;
}
.bg-5 > .bgcolor {
  background-color: #e9c46a;
  border-color: #dfaa27;
}
.bg-5 a.link-normal {
  color: #fff;
  fill: #fff;
}
.bg-5 a.apc-btn {
  color: !important;
  fill: !important;
}
.bg-5 a.apc-btn:hover {
  background-color: !important;
}
.bg-5 .b-bg,
.bg-5.b-bg {
  border-color: #e6bb54;
}
.bg-6 > .bgcolor {
  background-color: #fff8e6;
  border-color: #ffe39a;
}
.bg-6 a,
.bg-6 .link {
  color: #e9c46a;
  fill: #e9c46a;
}
.bg-6 a.apc-btn {
  color: !important;
  fill: !important;
}
.bg-6 a.apc-btn:hover {
  background-color: !important;
}
.bg-6 .b-bg,
.bg-6.b-bg {
  border-color: #fff1cd;
}
.t-white {
  color: #fff;
  fill: #fff;
}
.t-white a.link-normal {
  color: #fff;
  fill: #fff;
}
.t-white a,
.t-white .link {
  color: wheat;
  fill: wheat;
}
.t-white a:hover,
.t-white .link:hover {
  color: #fff;
  fill: #fff;
}
.t-white a.apc-btn {
  color: !important;
  fill: !important;
}
.t-white a.apc-btn:hover {
  background-color: !important;
}
.t-inherit {
  color: inherit !important;
  fill: inherit !important;
}
.t-bg1 {
  color: #8C5C34;
  fill: #8C5C34;
}
.t-bg2 {
  color: #2a9d8f;
  fill: #2a9d8f;
}
.t-bg3 {
  color: #8C5C34;
  fill: #8C5C34;
}
.t-bg4 {
  color: #264653;
  fill: #264653;
}
.t-bg5 {
  color: #e9c46a;
  fill: #e9c46a;
}
.t-bg6 {
  color: #fff8e6;
  fill: #fff8e6;
}
.ts-white {
  text-shadow: white 0 0 5px;
}
.ts-black {
  text-shadow: black 0 0 5px;
}
.apc-btn.apc-btn-cancel {
  background-color: #999;
  border-color: gray;
}
.apc-btn.apc-btn-cancel:hover {
  background: gray;
  border-color: #737373;
}
.apc-btn.apc-btn-save {
  background-color: #66a930;
  border-color: #4e8125;
}
.apc-btn.apc-btn-save:hover {
  background: #4e8125;
  border-color: #426d1f;
}
.btn-tr {
  background: transparent;
}
.dfg-h-m {
  background-color: #8C5C34;
  color: #fff;
  fill: #fff;
}
.sh {
  padding: 0 10px;
}
.sh > .sh-lh {
  margin: 7px 0 7px 0;
}
.sh > .sh-lh > a {
  display: grid;
}
.sh > .sh-lh > a > .sh-logo {
  max-height: 67px;
}
.sh > .sh-r {
  padding: 5px 0;
}
.sh .auth-icons {
  padding-right: 0.75rem;
}
.sh .sh-hb {
  display: none;
}
div.sh-scroll {
  position: sticky;
  top: 0px;
  display: none;
  z-index: 1;
}
div.sh-scroll > .sh > .sh-lh {
  margin: 3px 0 3px 0;
}
div.sh-scroll > .sh .sh-logo {
  max-height: 34px;
}
.s-admin .sh {
  padding: 0;
}
@media (max-width: 520px) {
  .sh {
    column-gap: 0.5rem;
  }
  .sh .sh-hb {
    display: grid;
  }
  .sh .auth-icons {
    padding-right: 0;
    font-size: 0.8em;
    text-transform: uppercase;
  }
  .sh .mainmenu {
    display: none;
  }
}
.sh-sm {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: grid;
  transition: transform 0.2s ease;
  transform: translateX(-100%);
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  z-index: 2;
}
.sh-sm .sm-logo {
  max-height: 35px;
}
.sh-sm .sh-sm-c {
  width: 80%;
}
.sh-sm .menu-gap {
  display: none;
}
.sh-sm .sm-h {
  padding: 6px 10px;
  font-weight: 500;
}
.sh-sm .sm-h .ci {
  justify-self: end;
}
.dfg-h-m {
  display: none;
  position: fixed;
  min-height: 40px;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3px 8px;
  grid-template-columns: auto 1fr;
  z-index: 1;
}
.dfg-h-m.grid-h-inline {
  position: relative;
  z-index: auto;
}
.dfg-h-m .mh-il:empty {
  display: none;
}
.dfg-h-m .mh-ir {
  justify-self: end;
}
.dfg-h-m .icon {
  width: 25px;
}
.dfg-h-m .mh-back {
  width: 20px;
}
.dfg-h-m .mh-add {
  width: 27px;
}
.dfg-h-m > .mh-h {
  font-size: 1.1rem;
  margin-bottom: 2px;
}
ul.apcmenu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  justify-content: start;
  grid-auto-flow: column;
  column-gap: 1em;
  row-gap: 1em;
  white-space: nowrap;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}
ul.apcmenu.adminmenu {
  font-size: 1rem;
}
ul.apcmenu.adminmenu .apcmenu {
  font-size: 1rem;
}
ul.apcmenu > li {
  position: relative;
  border: solid 1px transparent;
  border-width: 0 1px;
}
ul.apcmenu > li > a {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr;
  column-gap: 7px;
  align-items: center;
  white-space: nowrap;
  transition: background-color 0.5s ease;
}
ul.apcmenu > li > a > svg {
  width: 9px;
}
ul.apcmenu > li.selected {
  z-index: 1;
}
ul.apcmenu > li.menuitem-collapse {
  display: none;
}
ul.apcmenu.hoverbg {
  column-gap: 0;
  row-gap: 0;
}
ul.apcmenu.hoverbg > li > a {
  text-decoration: none;
  padding: 0.52rem 0.75rem;
  height: 100%;
}
ul.apcmenu.collapsed > li {
  display: none;
}
ul.apcmenu.collapsed > li.menuitem-collapse {
  display: inline-grid;
}
ul.apcmenu ul {
  display: none;
  position: absolute;
  margin-left: -1px;
  margin-top: -1px;
  z-index: -1;
  border-top: none !important;
}
ul.apcmenu.vmenu {
  grid-auto-flow: row;
  justify-content: stretch;
  min-width: 230px;
  align-items: start;
}
ul.apcmenu.vmenu > li {
  border-width: 1px 0;
}
ul.apcmenu.vmenu.hoverbg > li > a {
  padding: 10px 11px;
}
ul.apcmenu.vmenu ul {
  padding-left: 15px;
}
ul.apcmenu.vmenu.menu-mobile ul {
  position: relative;
}
@media (max-width: 786px) {
  ul.apcmenu.hmenu.hoverbg li > a {
    padding: 7px 10px;
  }
}
body {
  margin: 0;
  min-height: 100vh;
  grid-template-rows: auto 1fr;
}
body.no-header {
  grid-template-rows: 1fr;
}
.s-b,
.dfg-h-m {
  font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Ubuntu, sans-serif;
}
.s-b .icon-li {
  display: none;
}
.s-b.loggedin .icon-li {
  display: grid;
}
.s-b.loggedin .icon-lo {
  display: none;
}
.s-b.scroll {
  grid-template-rows: auto auto 1fr;
}
.s-b.scroll > div.sh-scroll {
  display: grid;
}
.s-b.s-admin > div.sh-scroll {
  display: grid;
}
.s-b.s-admin > .s-bc {
  padding: 12px;
}
.s-b.s-admin .sh-title {
  margin-left: 10px;
  display: none;
}
.s-b.sh-sidemenu {
  overflow: hidden;
}
.s-b.sh-sidemenu > .sh-sm {
  transform: translateX(0);
}
.s-bc {
  display: grid;
  line-height: 1.4;
  font-size: 1rem;
  align-content: start;
}
.s-bc.fs {
  grid-template-rows: 1fr;
}
@media (max-width: 520px) {
  .s-b.s-admin > div.sh-scroll {
    display: none;
  }
  .s-b.s-admin .dfg-h-m {
    display: grid;
  }
  .s-b.s-admin .dfg-h-d {
    display: none;
  }
  .s-b.s-admin > .s-bc {
    padding: 10px 7px;
  }
}
.sf {
  line-height: 1.4;
  font-size: 0.9rem;
}
.sf-fm {
  font-size: 0.9rem;
}
.sf-copy {
  text-transform: none;
}
.table-h {
  flex: 1;
}
.table-h > .hdr .h-l {
  margin-right: 30px;
}
.table-h > .hdr .sel-actions {
  display: none;
}
.table-h > .hdr .heading {
  line-height: 1;
  font-weight: 500;
  font-size: 1.6rem;
}
.table-h > .hdr.selected .sel-actions {
  display: flex;
}
.table-h-inline > .hdr > .dfg-h-m {
  position: relative;
}
.table-h > .border {
  border: solid 1px #d5d5d5;
  border-radius: 5px;
}
.table-h > .border > table {
  width: 100%;
}
@media (max-width: 520px) {
  .table-h {
    gap: 0;
  }
  .table-h-fixed {
    margin-top: 38px;
  }
  .table-h > .border {
    border: 0;
    padding: 0 5px;
  }
}
.table {
  font: 16px "Roboto Condensed", sans-serif;
  border-collapse: collapse;
  border-radius: 5px;
  color: #333;
}
.table > * > tr {
  background: #fff;
  border-top: solid 1px #e4e4e4;
}
.table > * > tr > td {
  white-space: pre-wrap;
  word-break: normal;
  padding: 9px 7px;
  line-height: 1.4;
  text-align: left;
}
.table > * > tr > td > .field {
  grid-auto-flow: column;
  align-items: center;
}
.table > * > tr > td > .field > label {
  display: none;
}
.table > * > tr > td.break {
  display: none;
  height: 0;
  padding: 0;
  width: 100%;
}
.table > * > tr > td.apc-num {
  text-align: right;
  width: 1%;
  white-space: nowrap;
}
.table > * > tr > td.apc-num > .field {
  justify-items: end;
}
.table > * > tr > td.sel {
  width: 1%;
  padding: 0 2px 0 5px;
  min-width: 32px;
  max-width: 32px;
}
.table > * > tr > td > .apc-cbx {
  height: 7px;
}
.table > thead > tr {
  border-top: none;
}
.table > thead > tr > td {
  font-weight: 600;
  opacity: 0.8;
}
.table > thead > tr > td[data-col] > div {
  cursor: pointer;
  display: inline-block;
}
.table > thead > tr > td[data-col] > div.sorted {
  position: relative;
  padding-right: 18px;
  white-space: pre;
}
.table > thead > tr > td[data-col] > div.sorted:after {
  content: " ";
  position: absolute;
  right: 0;
  background-repeat: no-repeat;
  width: 13px;
  opacity: 0.5;
}
.table > thead > tr > td[data-col] > div.sorted-a:after {
  top: 4px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M279 224H41c-21.4 0-32.1-25.9-17-41L143 64c9.4-9.4 24.6-9.4 33.9 0l119 119c15.2 15.1 4.5 41-16.9 41z"/></svg>');
}
.table > thead > tr > td[data-col] > div.sorted-d:after {
  top: -4px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41z"/></svg>');
}
.table > tbody > tr:hover {
  background-color: #f9f9f9;
}
.table > tfoot > tr > td {
  font-weight: 600;
}
.table > tfoot > tr.np {
  cursor: pointer;
  background: #dcdcdc;
}
.table > tfoot > tr.np:hover {
  background: #cacaca;
}
.table > tfoot > tr.np > td {
  text-align: center;
  width: 100%;
}
.table.retrieved > tfoot > tr.np {
  display: none;
}
.table.hide-sel > * > tr > td.sel {
  display: none;
}
.table.noRows > thead,
.table.noRows > tfoot {
  display: none;
}
@media (max-width: 520px) {
  .table > thead {
    display: none;
  }
  .table > * {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .table > * > tr {
    display: flex;
    flex-wrap: wrap;
    border: solid 1px #aaa;
    align-items: center;
    border-radius: 5px;
    padding: 5px;
    margin: 0px -5px;
  }
  .table > * > tr > td {
    padding: 0;
    width: auto;
  }
  .table > * > tr > td > .field > .control {
    padding: 3px 5px;
  }
  .table > * > tr > td > .field > .control:empty {
    display: none;
  }
  .table > * > tr > td > .field.grid-label > label {
    display: inline-block;
  }
  .table > * > tr > td.sel {
    width: auto;
    max-width: auto;
    min-width: auto;
    padding: 0;
  }
  .table > * > tr > td.apc-num {
    text-align: left;
    width: auto;
  }
  .table > * > tr > td.break {
    display: block;
  }
  .table > tfoot {
    margin-top: 10px;
  }
  .table > tfoot label {
    font-weight: 400 !important;
  }
}
.mt-auto {
  margin-top: auto;
}
.ml-auto {
  margin-left: auto;
}
.ml-s {
  margin-left: 0.8rem;
}
.pa {
  padding: 1rem;
}
.pa-xs {
  padding: 0.25rem;
}
.b {
  border-style: solid;
  border-width: 0;
}
.bs-dashed {
  border-style: dashed;
}
.bs-dotted {
  border-style: dotted;
}
.ba {
  border-width: 1px;
}
.bb {
  border-bottom-width: 1px;
}
.br {
  border-right-width: 1px;
}
.bl {
  border-left-width: 1px;
}
.bt {
  border-top-width: 1px;
}
.bt-none {
  border-top-width: 0;
}
.br-none {
  border-right-width: 0;
}
.bb-none {
  border-bottom-width: 0;
}
.bl-none {
  border-left-width: 0;
}
.ra {
  border-radius: 3px;
}
.ra-l {
  border-radius: 5px;
}
.bwa-l {
  border-width: 3px;
}
.bwa-m {
  border-width: 2px;
}
.serif {
  font-family: "EB Garamond", "Georgia", "EB Garamond", "Garamond", serif;
  font-size: 1.3rem;
  line-height: 1.4;
}
.post p {
  margin: 0;
}
.font-condensed {
  font-family: "Roboto Condensed";
}
.font-xxs {
  font-size: 0.6em;
}
.font-xs {
  font-size: 0.7em;
}
.font-s {
  font-size: 0.8em;
}
.font-m {
  font-size: 0.9em;
}
.font-l {
  font-size: 1.1em;
}
.font-xl {
  font-size: 1.2em;
}
.font-xxl {
  font-size: 1.4em;
}
.font-thin {
  font-weight: 300;
}
.font-bold {
  font-weight: bold;
}
.font-italic {
  font-style: italic;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Ubuntu, sans-serif;
  font-weight: normal;
  line-height: 1.4;
  margin: 0;
}
h1,
.h1 {
  font-size: calc(1.3rem + 0.6vw);
}
h2,
.h2 {
  font-size: calc(1.1rem + 0.6vw);
}
.ta-center {
  text-align: center;
}
.ta-justify {
  text-align: justify;
}
.uppercase {
  text-transform: uppercase;
}
.lh-1 {
  line-height: 1;
}
.ls-l {
  letter-spacing: 3px;
}
.ls-xl {
  letter-spacing: 5px;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.hidden,
.apc-hidden,
.grid.apc-hidden {
  display: none;
}
.invisible {
  visibility: hidden;
}
.j-co .j-mic {
  display: none;
}
.j-co.j-sel .j-mic {
  display: grid;
}
