@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

textarea {
  resize: vertical;
}

blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote ::after,
q::before,
q ::after {
  content: "";
}

input[type=checkbox] {
  width: inherit;
}

input[type=submit] {
  border: 0;
}

html {
  line-height: 1.15;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: button;
}

::-webkit-file-upload-button {
  appearance: button;
  font: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

:root {
  --sans-font:
    arial,
    helvetica,
    "Helvetica Neue",
    sans-serif,
    -apple-system,
    blinkmacsystemfont,
    roboto,
    "Segoe UI";
  --mono-font: consolas, menlo, monaco, "Andale Mono", "Ubuntu Mono", monospace;
  --font-size: 16px;
  --bg: #f5f7ff;
  --whitesmoke: #f5f5f5;
  --accent-bg: #2f3242;
  --text: #212121;
  --text-light: #585858;
  --accent: #0d47a1;
  --code: #d81b60;
  --clear: #1110;
  --red: #dc143c;
  --blue: #005a84;
  --green: #21ba45;
  --preformatted: #444;
  --marked: #fd3;
  --disabled: #efefef;
  --brand-color: #1e90ff;
  --brand-alt: #1b1b26;
  --brand-alt-l: #262635;
  --accent-color: #ffa900;
  --blackish: #303044;
  --slate: #bbb;
  --light: #f5f5f5;
  --dark: #111;
  --mid-color: #333;
  --grey: #b0b0b0;
  --white: #fff;
  --gainsboro: #dcdcdc;
  --black-rgb: 240, 240, 240;
  --font-family: system-ui, sans-serif;
  --font-family--heading: var(--font-family);
  --font-weight--thin: 100;
  --font-weight--extra-light: 200;
  --font-weight--light: 300;
  --font-weight--normal: 400;
  --font-weight--medium: 500;
  --font-weight--semi-bold: 600;
  --font-weight--bold: 700;
  --font-weight--extra-bold: 800;
  --font-weight--black: 900;
  --line-height: 1.5;
  --line-height--heading: 1.2;
  --border-radius: 0.1875rem;
  --spacing: 1.5rem;
  --spacing--small: 0.75rem;
  --border-width: 0.0625rem;
  --border: var(--border-width) solid currentcolor;
  --focus-outline-width: 0.1875rem;
  --focus-outline-offset: 0.125rem;
  --focus-outline: var(--focus-outline-width) solid var(--accent-color);
  --duration: 150ms;
  --timing: ease;
}

*,
::before,
::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--bg);
  box-sizing: border-box;
  font-family: var(--sans-font);
  font-size: 100%;
  width: 100%;
  line-height: var(--line-height);
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-size: var(--font-size);
  text-rendering: optimizelegibility;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--heading);
  font-size: 1.25rem;
  line-height: var(--line-height--heading);
  margin: 0 0 var(--spacing--small);
}

p {
  margin: 0 0 var(--spacing--small);
}

a {
  color: currentcolor;
  text-decoration-skip-ink: auto;
  text-decoration: none;
  transition: color var(--duration) var(--timing);
}
a:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

hr {
  border-bottom: var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: var(--spacing) 0;
}

textarea {
  resize: vertical;
  overflow: auto;
}

select,
textarea,
input[type=textarea] {
  width: 100%;
  padding: calc(var(--spacing) / 3);
}

select,
textarea,
input {
  font-size: var(--font-size);
  margin: auto;
}

button {
  appearance: none;
  cursor: pointer;
  color: none;
  background: none;
  border: 0;
  margin: 0;
  border-radius: 0;
  font-size: 16px;
  padding: 0;
  text-align: center;
  overflow: visible;
  opacity: 1;
  text-transform: none;
}

svg {
  min-width: 10px;
  min-height: 10px;
  pointer-events: none;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: var(--spacing--small);
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing--small);
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

[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],
input:not([type]),
textarea {
  appearance: none;
  background-color: transparent;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--form-box-shadow);
  box-sizing: border-box;
  margin-bottom: var(--spacing--small);
  padding: calc(var(--spacing) / 3);
  transition: border-color var(--duration) var(--timing);
  width: 100%;
}
[type=color]:focus,
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
input:not([type]):focus,
textarea:focus {
  box-shadow: var(--form-box-shadow-focus);
}
[type=color]:disabled,
[type=date]:disabled,
[type=datetime]:disabled,
[type=datetime-local]:disabled,
[type=email]:disabled,
[type=month]:disabled,
[type=number]:disabled,
[type=password]:disabled,
[type=search]:disabled,
[type=tel]:disabled,
[type=text]:disabled,
[type=time]:disabled,
[type=url]:disabled,
[type=week]:disabled,
input:not([type]):disabled,
textarea:disabled {
  cursor: not-allowed;
}
[type=color]:disabled:hover,
[type=date]:disabled:hover,
[type=datetime]:disabled:hover,
[type=datetime-local]:disabled:hover,
[type=email]:disabled:hover,
[type=month]:disabled:hover,
[type=number]:disabled:hover,
[type=password]:disabled:hover,
[type=search]:disabled:hover,
[type=tel]:disabled:hover,
[type=text]:disabled:hover,
[type=time]:disabled:hover,
[type=url]:disabled:hover,
[type=week]:disabled:hover,
input:not([type]):disabled:hover,
textarea:disabled:hover {
  border: var(--border);
}
[type=color]::placeholder,
[type=date]::placeholder,
[type=datetime]::placeholder,
[type=datetime-local]::placeholder,
[type=email]::placeholder,
[type=month]::placeholder,
[type=number]::placeholder,
[type=password]::placeholder,
[type=search]::placeholder,
[type=tel]::placeholder,
[type=text]::placeholder,
[type=time]::placeholder,
[type=url]::placeholder,
[type=week]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: var(--grey);
  opacity: 0.25;
}

[type=search] {
  appearance: textfield;
}

[type=checkbox],
[type=radio] {
  display: inline;
  margin-right: var(--spacing--small);
}

[type=file] {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

select {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

[type=checkbox]:focus,
[type=radio]:focus,
[type=file]:focus,
select:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

.action-bar {
  border-bottom: thin solid var(--gainsboro);
  padding: 0.4rem;
}
.action-bar .icon {
  display: flex;
  align-items: center;
}
.action-bar a {
  display: flex;
  align-items: center;
  border: 2px solid var(--brand-alt);
  border-radius: 0.4rem;
  color: var(--brand-alt);
  cursor: pointer;
  margin: auto 0.4rem;
  padding: 0.2rem 0.4rem;
}
.action-bar a:hover {
  background-color: var(--brand-alt);
  color: var(--light);
}

.light-font {
  font-weight: 300;
}

.bold-font {
  font-weight: 600;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.absolute {
  position: absolute;
}

.sticky {
  position: sticky;
}

.relative {
  position: relative;
}

.level-one {
  z-index: 1;
}

.hide-x-overflow {
  overflow-x: hidden;
}

.hide-y-overflow {
  overflow-y: hidden;
}

.fixed {
  position: fixed;
}

.top-fixed {
  position: fixed;
  top: 0;
}

.bottom-fixed {
  position: fixed;
  bottom: 0;
}

.image.round-bdr {
  border-radius: 50%;
}
.image.round-bdr img {
  border-radius: 50%;
  width: 100%;
}

.fixed-att-bg {
  background-attachment: fixed;
}

.light-stroke svg {
  stroke: var(--light);
}

.dark-stroke svg {
  stroke: var(--dark);
}

.current-color-stroke {
  stroke: currentcolor;
}

.icon.current-color-fill svg {
  fill: currentcolor;
}
.icon.light-fill svg {
  fill: var(--light);
}
.icon .gainsboro-fill svg {
  fill: var(--gainsboro);
}
.icon.grey-fill svg {
  fill: var(--grey);
}
.icon.red-fill svg {
  fill: var(--red);
}
.icon.dark-fill svg {
  fill: var(--dark);
}
.icon.blue-fill {
  color: var(--gainsboro);
}
.icon.blue-fill svg {
  fill: var(--gainsboro);
}
.icon.ocean-fill svg {
  fill: var(--gainsboro);
}
.icon.micro-svg svg {
  width: 10px;
  height: 10px;
}
.icon.tiny-svg svg {
  width: 12px;
  height: 12px;
}
.icon.small-svg svg {
  width: 15px;
  height: 15px;
}
.icon.average-svg svg {
  width: 20px;
  height: 20px;
}
.icon.big-svg svg {
  width: 25px;
  height: 25px;
}
.icon.standard-svg svg {
  width: 30px;
  height: 30px;
}
.icon.medium-svg svg {
  width: 40px;
  height: 40px;
}
.icon.long-svg svg {
  width: 100%;
  max-width: 200px;
  height: 80px;
}
.icon.large-svg svg {
  width: 55px;
  height: 55px;
}
.icon.larger-svg svg {
  width: 75px;
  height: 75px;
}
.icon.huge-svg svg {
  width: 100px;
  height: 100px;
}

.brd-bot-mc {
  border-bottom: thin solid var(--mid-color);
}

.brd-top-mc {
  border-bottom: thin solid var(--mid-color);
}

.disabled {
  opacity: 50%;
}
.disabled:active {
  pointer-events: none;
}
.disabled:hover {
  cursor: not-allowed;
}

.hidden {
  display: none;
}

.non-selectable {
  user-select: none;
  -webkit-user-select: none;
}

.auto-marg {
  margin: auto;
}

.invisibile {
  opacity: 0;
}

.tall {
  height: 65vh;
}

.no-margin {
  margin: 0;
}

.top-margin {
  margin-top: 0.4rem;
}

.right-margin {
  margin-right: 0.4rem;
}

.bottom-margin {
  margin-bottom: 0.4rem;
}

.left-margin {
  margin-left: 0.8rem;
}

.margin-sides {
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}

.no-padding {
  padding: 0;
}

.padded {
  padding: 1.2rem;
}

.lighly-padded {
  padding: 0.6rem;
}

.top-padded {
  padding-top: 1.2rem;
}

.right-padded {
  padding-right: 1.2rem;
}

.bottom-padded {
  padding-bottom: 1.2rem;
}

.left-padded {
  padding-left: 1.2rem;
}

.padded-sides {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.heavily-padded-sides {
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}

.max-content {
  height: max-content;
}

.max-content-h {
  height: max-content;
}

.fit-h {
  height: fit-content;
}

.full-height {
  height: 100%;
}

.fill-avail-h {
  min-height: stretch;
}

.fill-avail-w {
  min-width: stretch;
}

.full-width {
  width: 100%;
}

.two-third-width {
  width: 66.66%;
}

.half-width {
  width: 50%;
}

.third-width {
  width: 33.33%;
}

.quarter-width {
  width: 25%;
}

.mid-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}
.flex.row {
  flex-direction: row;
}
.flex.rev-row {
  flex-direction: row-reverse;
}
.flex.column {
  flex-direction: column;
}
.flex.wrapped {
  flex-wrap: wrap;
}
.flex.align-items-start {
  align-items: flex-start;
}
.flex.align-content-start {
  align-content: flex-start;
}
.flex.baseline {
  align-items: baseline;
}
.flex.spaced-between {
  justify-content: space-between;
}
.flex.spaced-around {
  justify-content: space-around;
}
.flex.evenly-spaced {
  justify-content: space-evenly;
}
.flex.just-end {
  justify-content: flex-end;
}
.flex.just-start {
  justify-content: flex-start;
}
.flex.just-centered {
  justify-content: center;
}
.flex.center-aligned {
  align-items: center;
}
.flex.grow {
  flex-grow: 1;
}

.flex-third-basis {
  flex-basis: calc(33% - 3rem);
}

.clickable {
  cursor: pointer;
}

.non-clickable {
  pointer-events: none;
}

.capitalized {
  text-transform: capitalize;
}

.upcase {
  text-transform: uppercase;
}

.downcase {
  text-transform: lowercase;
}

.brand-text {
  color: var(--brand-color);
}

.dark-text {
  color: var(--dark);
}

.red-text {
  color: var(--red);
}

.grey-text {
  color: var(--grey);
}

.light-text {
  color: var(--light);
}

.main-bg {
  background-image: url("/assets/bg/main-cf63c5b3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
}

.image-bg {
  background-image: url("/assets/bg/main-cf63c5b3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
}

.translucent-bg {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
}

.accent-bg {
  background-color: var(--accent-color);
}

.brand-bg {
  background-color: var(--brand-color);
}

.brand-alt-bg {
  background-color: var(--brand-alt);
}

.cream-bg {
  background-color: var(--light);
}

.center {
  margin: auto;
  text-align: center;
}

.big-text {
  font-size: 4.4rem;
}

.x-large-text {
  font-size: 2.25rem;
}

.large-text {
  font-size: 1.25rem;
}

.medium-text {
  font-size: 0.8rem;
}

.small-text {
  font-size: 0.75rem;
}

.tiny-text {
  font-size: 0.55rem;
}

.borderless {
  border: 0;
}

.square {
  border-radius: 0.25rem;
}

.regular {
  border-radius: 0.5rem;
}

.circle {
  border-radius: 50%;
}

.round {
  border-radius: 1.25rem;
}

.rounded {
  border-radius: 0.2rem;
}

.dark-bg {
  background-color: var(--brand-alt);
}
.dark-bg .toggle {
  cursor: pointer;
}
.dark-bg .toggle:hover {
  background-color: var(--accent-bg);
}

.night-bg {
  background-color: var(--accent-bg);
}

.light-bg {
  background-color: var(--light);
}

.green-bg {
  background-color: var(--green);
}

.blue-bg {
  background-color: var(--blue);
}

.red-bg {
  background-color: var(--red);
}

.white-bg {
  background-color: var(--white);
}

.grey-bg {
  background-color: var(--grey);
}

.gainsboro-bg {
  background-color: var(--gainsboro);
}

.black-bg {
  background-color: var(--blackish);
}

.basic-border {
  border: thin solid var(--gainsboro);
}

.alt-border {
  border: thin solid var(--grey);
}

.shadowed {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.mobile-only {
  display: none;
}

.tablet-only {
  display: none;
}

.desktop-only {
  display: none;
}

.app-body {
  padding-bottom: 25px;
}

@media screen and (max-width: 420px) {
  .app-body {
    padding-bottom: 80px;
  }
  .mobile-only {
    display: inherit;
  }
}
@media screen and (max-width: 420px) {
  .app-body {
    padding-bottom: 80px;
  }
  .tablet-only {
    display: inherit;
  }
}
@media screen and (max-width: 799px) {
  .app-body {
    padding-bottom: 80px;
  }
  .tablet-only {
    display: inherit;
  }
  .third-width {
    width: 100%;
  }
}
@media screen and (min-width: 800px) {
  .app-body {
    margin-bottom: 50px;
  }
  .desktop-only {
    display: inherit;
  }
}
[data-slides-state-value=start] .controls .hide-at-start {
  display: none;
}
[data-slides-state-value=start] .controls .shown-at-end {
  display: none;
}

[data-slides-state-value=in_progress] .controls .hide-at-start {
  display: block;
}
[data-slides-state-value=in_progress] .controls .shown-at-end {
  display: none;
}

[data-slides-state-value=end] .controls .hide-at-start {
  display: block;
}
[data-slides-state-value=end] .controls .hide-at-end {
  display: none;
}
[data-slides-state-value=end] .controls .shown-at-end {
  display: block;
}

[data-slides-state-value=at_start_end_and_in_progress] .controls .hide-at-start {
  display: none;
}
[data-slides-state-value=at_start_end_and_in_progress] .controls .hide-at-end {
  display: none;
}
[data-slides-state-value=at_start_end_and_in_progress] .controls .shown-at-end {
  display: block;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: var(--white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  margin: 0.4rem 1.2rem;
  max-width: 361px;
}
.card h2 {
  color: var(--accent-bg);
  font-weight: 700;
  font-size: 25px;
  text-align: center;
}
.card p {
  color: var(--mid-color);
  margin: 1.5rem 0;
  font-size: 1.1em;
}
.card .cta {
  align-self: flex-end;
  text-align: center;
  text-transform: capitalize;
}

.card-image {
  min-height: 160px;
  min-width: 280px;
}
.card-image img {
  border-bottom: 3px solid var(--accent-color);
  width: 100%;
  background-size: cover;
  object-fit: cover;
}
.card-image img:hover {
  opacity: 0.9;
}

.card-header {
  border-bottom: 1px solid var(--mid-color);
}
.card-header a {
  color: var(--accent-bg);
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
}
.card-content > * {
  flex: 1 1 100%;
}

.preview {
  width: 100%;
  max-width: 800px;
}
.preview svg {
  height: 110px;
  min-height: 100%;
  padding: 10px;
  max-width: 50%;
  margin: auto;
}

.comments-title,
.comment-reply-title {
  font-size: 1.75em;
  font-weight: 700;
  color: var(--brand-alt);
}

.comment-section {
  margin: 2rem;
}

.comments-title-container {
  border-bottom: 1px solid var(--slate);
}

.comment-respond {
  margin: 2rem 0;
  padding: 1.5%;
  background: var(--white);
  border-top: 1px solid var(--slate);
}

.comments .comment {
  position: relative;
}
.comments .commentlist > li:first-child {
  margin-top: 0;
}

.comment-inner {
  background: var(--light);
  border: thin solid var(--gainsboro);
  border-radius: 3px;
  margin-left: 90px;
  padding: 2%;
  position: relative;
}
.comment-inner::after {
  content: "";
  display: block;
  border: 12px solid transparent;
  border-right-color: var(--gainsboro);
  position: absolute;
  top: 15px;
  left: 0;
  margin-left: -24px;
}

.comment-avatar {
  float: left;
  width: 60px;
  height: 60px;
  background: var(--mid-color);
  border-radius: 15%;
}

.comment-header p,
.comment-header a {
  font-size: 0.85em;
}
.comment-header cite {
  color: var(--accent-bg);
  display: block;
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 8px;
}
.comment-header cite a {
  color: var(--accent-bg);
}
.comment-header cite a:hover {
  color: var(--brand-color);
}

.comment-content {
  font-size: 0.9em;
}
.comment-content h1,
.comment-content h2,
.comment-content h3,
.comment-content h4,
.comment-content h5,
.comment-content h6 {
  margin: 50px 0 20px;
  font-weight: 400;
  font-size: 1.2em;
}
.comment-content a :hover {
  text-decoration: underline;
}
.comment-content li {
  margin-top: 0.5em;
  line-height: 170%;
}
.comment-content blockquote,
.comment-content p,
.comment-content li {
  padding: 10px;
  line-height: 150%;
  margin-top: 1em;
  word-wrap: break-word;
}

.comment-actions {
  position: absolute;
  right: 20px;
  top: 22px;
}
.comment-actions .fa {
  color: var(--text-light);
  font-size: 20px;
}

@media screen and (max-width: 600px) {
  .comment-inner {
    margin-left: 80px;
  }
  .comment .avatar {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .comment-inner {
    margin: 0;
    padding: 5px;
  }
  .comment-inner::after {
    border-bottom-color: var(--light);
    border-right-color: transparent;
    margin-left: 10px;
    top: -22px;
  }
  .comment-section {
    margin: 0.2rem;
  }
  .comment-avatar {
    float: none;
    margin: 8px 0;
  }
}
.app {
  flex: 1;
  min-height: 100vh;
}
.app.shared {
  margin: 0 0 0 180px;
}
.app.full {
  margin: 0;
}
.app .top-nav {
  top: -60px;
  padding-top: 60px;
  z-index: 3;
}
.app .wrapper {
  padding: 45px 0 40px;
  min-height: stretch;
}
.app .wrapper .flex .block {
  margin: 1.2rem;
}
.app .wrapper h1,
.app .wrapper h2,
.app .wrapper h3,
.app .wrapper h4 {
  text-transform: capitalize;
}
.app .wrapper p {
  text-transform: initial;
}
.app .wrapper.right-side {
  margin-left: 165px;
}

.bottom-nav {
  border-top: 1px solid var(--gainsboro);
  bottom: 0;
  min-width: 350px;
}
.bottom-nav .icon {
  margin: auto;
}
.bottom-nav .icon.active {
  border-top: 4px solid var(--brand-color);
  background: var(--light);
}
.bottom-nav .icon svg {
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 550px) {
  .app .desktop {
    display: none;
  }
  .app .wrapper.right-side {
    margin-left: 0;
  }
}
.app-container {
  margin-top: 72px;
  min-height: calc(100vh - 123px);
}

.actions {
  align-items: end;
}

.sparkline {
  padding: 0.8rem 0 0;
}
.sparkline.decreased {
  color: var(--red);
}
.sparkline.increased {
  color: var(--green);
}

.overview-cards .overview {
  border-radius: 4px;
  border-top: 2px solid var(--brand-color);
}
.overview-cards .overview h1 {
  font-size: 50px;
}
.overview-cards .overview p {
  color: var(--grey);
  font-weight: 600;
}
.overview-cards .overview:first-of-type {
  margin: 0 2rem 0 0;
}
.overview-cards .overview:last-of-type {
  margin: 0 0 0 2rem;
}

.text-area {
  max-width: 80%;
  margin: auto 4rem;
  padding: 4rem;
}
.text-area svg {
  width: 400px;
}

.document {
  width: 100px;
}
.document.preview {
  width: 100%;
}

.hero-container {
  text-align: center;
}
.hero-container h1 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}
.hero-container h3 {
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
  padding: 0 30px;
  position: relative;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero {
  margin-bottom: 4rem;
  padding: 150px 0 90px;
}
.hero.overlaid::after {
  background: url("/assets/bg/confetti-ebf2778d.png");
  background-size: cover;
  background-repeat: repeat;
  content: "";
  display: block;
  height: 100%;
  opacity: 0.6;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.texture {
  background-image: url("/assets/bg/cream_dust-e3739151.png");
}

.lighter {
  background-image: linear-gradient(to top, #d5d4d0 0%, #d5d4d0 1%, #eeeeec 31%, #efeeec 75%, #e9e9e7 100%);
}

.backimage {
  background: var(--grey);
  width: 60%;
}

.sideimage {
  background-image: url("/assets/bg/main-cf63c5b3.png");
  background-size: cover;
  width: 40%;
}

.icon-item {
  float: left;
  display: block;
  margin-right: 2%;
  width: 48%;
  padding-bottom: 0;
  padding-left: 2.625rem;
  position: relative;
}
.icon-item h2 {
  font-size: 1.1rem;
  display: block;
  margin: 0.67rem 0;
}
.icon-item p {
  font-size: 1rem;
  margin: 0 0 0.75rem;
}
.icon-item svg,
.icon-item img {
  position: absolute;
  top: -5px;
  left: 0;
  max-width: 31px;
}
.icon-item:nth-child(odd) {
  clear: left;
}
.icon-item:last-child, .icon-item:nth-child(2n) {
  margin-right: 0;
}

.item-blocks {
  margin-top: 1rem;
}
.item-blocks svg,
.item-blocks img {
  width: 20px;
}
.item-blocks::after {
  clear: both;
  content: "";
  display: block;
}

.top-spaced {
  margin: 2rem 0;
  border-bottom: 1px solid var(--mid-color);
}
.top-spaced h2 {
  margin: -1.4rem 0;
}
.top-spaced .summaries {
  border-top: 2px solid var(--slate);
  margin: 0.2rem -2rem;
  padding: 1.8rem 2rem;
}

.section-hero-image {
  max-width: none;
  width: 100%;
}

hr {
  border-bottom: 2px solid var(--gainsboro);
  margin: 0.5rem 0;
}
hr.hr-blue {
  border-bottom: 2px solid var(--mid-color);
}
hr.hr-red {
  border-bottom: 2px solid var(--red);
}
hr.hr-green {
  border-bottom: 2px solid var(--green);
}

.dropdown-button {
  background-blend-mode: lighten;
  border: thin solid var(--mid-color);
  color: var(--brand-alt);
}
.dropdown-button.iconed {
  padding: 0.4rem 0.4rem 0.4rem 1.8rem;
}
.dropdown-button:hover {
  background-color: var(--mid-color);
  color: var(--brand-alt);
}

.dropdown-menu {
  margin: 0.1rem 0;
  border: var(--mid-color);
  border-radius: 0.4rem;
  background: var(--light);
  position: absolute;
  width: 190px;
  display: none;
}
.dropdown-menu.active {
  display: block;
}

.select_item {
  border-bottom: var(--mid-color);
  color: var(--brand-alt);
  display: flex;
  font-weight: 600;
  padding: 0.6rem 0.8rem 0.4rem 0.4rem;
  width: 100%;
}
.select_item:hover {
  background-color: var(--gainsboro);
  color: var(--brand-alt);
}

@media screen and (max-width: 250px) {
  .panel .half-width {
    width: 100%;
    margin: 0.8rem;
  }
  .panel .third-width {
    width: 100%;
    margin: 0.8rem;
  }
  .panel.flex {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 250px) {
  .panel .half-width {
    width: 100%;
    margin: 0.8rem;
  }
  .panel .third-width {
    width: 100%;
    margin: 0.8rem;
  }
  .panel.flex {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 800px) {
  .panel .third-width {
    width: 29%;
  }
}
@media screen and (max-width: 890px) {
  .backimage {
    width: 100%;
    background-size: cover;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url("/assets/bg/main-cf63c5b3.png");
  }
  .sideimage {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .panel {
    margin: 2rem 0 0;
  }
  .panel .half-width {
    width: 45%;
  }
  .panel .third-width {
    width: 29%;
  }
}
trix-toolbar * {
  box-sizing: border-box;
}
trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
trix-toolbar .trix-button-group {
  display: flex;
  margin-bottom: 10px;
  border: thin solid #bbb;
  border-top-color: #ccc;
  border-bottom-color: #888;
  border-radius: 3px;
}
trix-toolbar .trix-button-group:not(:first-child) {
  margin-left: 1.5vw;
}
trix-toolbar .trix-button-group-spacer {
  flex-grow: 1;
}
trix-toolbar .trix-button {
  position: relative;
  float: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5em;
  margin: 0;
  outline: none;
  border: 0;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
}
trix-toolbar .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}
trix-toolbar .trix-button.trix-active {
  background: #cbeefa;
  color: black;
}
trix-toolbar .trix-button:not(:disabled) {
  cursor: pointer;
}
trix-toolbar .trix-button:disabled {
  color: rgba(0, 0, 0, 0.125);
}
trix-toolbar .trix-button--icon {
  font-size: inherit;
  width: 2.6em;
  height: 1.6em;
  max-width: calc(0.8em + 4vw);
  text-indent: -9999px;
}
trix-toolbar .trix-button--icon::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
trix-toolbar .trix-button--icon.trix-active::before {
  opacity: 1;
}
trix-toolbar .trix-button--icon:disabled::before {
  opacity: 0.125;
}
trix-toolbar .trix-dialogs {
  position: relative;
}
trix-toolbar .trix-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.75em;
  padding: 15px 10px;
  background: var(--light);
  box-shadow: 0 0.3em 1em #ccc;
  border-top: 2px solid #888;
  border-radius: 5px;
  z-index: 5;
}
trix-toolbar .trix-input--dialog {
  font-size: inherit;
  font-weight: normal;
  padding: 0.5em 0.8em;
  margin: 0 10px 0 0;
  border-radius: 3px;
  border: thin solid #bbb;
  background-color: var(--light);
  box-shadow: none;
  outline: none;
  appearance: none;
}
trix-toolbar .trix-input--dialog.validate:invalid {
  box-shadow: var(--red) 0 0 1.5px 1px;
}
trix-toolbar .trix-button--dialog {
  font-size: inherit;
  padding: 0.5em;
  border-bottom: none;
}
trix-toolbar .trix-dialog--link {
  max-width: 600px;
}
trix-toolbar .trix-dialog__link-fields {
  display: flex;
  align-items: baseline;
}
trix-toolbar .trix-dialog__link-fields .trix-input {
  flex: 1;
}
trix-toolbar .trix-dialog__link-fields .trix-button-group {
  flex: 0 0 content;
  margin: 0;
}

@media (max-device-width: 768px) {
  trix-toolbar .trix-button-group:not(:first-child) {
    margin-left: 0;
  }
}
@media (max-device-width: 768px) {
  trix-toolbar .trix-button-group-spacer {
    display: none;
  }
}
@media (max-device-width: 768px) {
  trix-toolbar .trix-button {
    letter-spacing: -0.01em;
    padding: 0 0.3em;
  }
}
@media (max-device-width: 768px) {
  trix-toolbar .trix-button--icon {
    height: 2em;
    max-width: calc(0.8em + 3.5vw);
  }
}
@media (max-device-width: 768px) {
  trix-toolbar .trix-button--icon::before {
    right: 6%;
    left: 6%;
  }
}
trix-editor {
  border: thin solid #bbb;
  border-radius: 3px;
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none;
}
trix-editor [datacursor-target]::selection {
  background: none;
}
trix-editor [data-trix-cursor-target]::selection {
  background: none;
}
trix-editor [data-trix-mutable] ::selection {
  background: none;
}
trix-editor [data-trix-mutable].attachment__caption-editor:focus::selection {
  background: highlight;
}
trix-editor [data-trix-mutable].attachment__caption-editor:focus:not(.attachment__caption-editor) {
  user-select: none;
}
trix-editor [data-trix-mutable].attachment.attachment--file {
  box-shadow: 0 0 0 2px highlight;
  border-color: transparent;
}
trix-editor [data-trix-mutable].attachment img {
  box-shadow: 0 0 0 2px highlight;
}
trix-editor .attachment {
  position: relative;
}
trix-editor .attachment:hover {
  cursor: default;
}
trix-editor .attachment--preview .attachment__caption:hover {
  cursor: text;
}
trix-editor .attachment__progress {
  position: absolute;
  z-index: 1;
  height: 20px;
  top: calc(50% - 10px);
  left: 5%;
  width: 90%;
  opacity: 0.9;
  transition: opacity 200ms ease-in;
}
trix-editor .attachment__progress[value="100"] {
  opacity: 0;
}
trix-editor .attachment__caption-editor {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  vertical-align: top;
  border: none;
  outline: none;
  appearance: none;
}
trix-editor .attachment__toolbar {
  position: absolute;
  z-index: 1;
  top: -0.9em;
  left: 0;
  width: 100%;
  text-align: center;
}
trix-editor .trix-button-group {
  display: inline-flex;
}
trix-editor .trix-button {
  position: relative;
  float: left;
  color: #666;
  white-space: nowrap;
  font-size: 80%;
  padding: 0 0.8em;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent;
}
trix-editor .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}
trix-editor .trix-button.trix-active {
  background: #cbeefa;
}
trix-editor .trix-button:not(:disabled) {
  cursor: pointer;
}
trix-editor .trix-button--remove {
  text-indent: -9999px;
  display: inline-block;
  padding: 0;
  outline: none;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  border-radius: 50%;
  background-color: var(--light);
  border: 2px solid highlight;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}
trix-editor .trix-button--remove::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}
trix-editor .trix-button--remove:hover {
  border-color: #333;
}
trix-editor .trix-button--remove:hover::before {
  opacity: 1;
}
trix-editor .attachment__metadata-container {
  position: relative;
}
trix-editor .attachment__metadata {
  position: absolute;
  left: 50%;
  top: 2em;
  transform: translate(-50%, 0);
  max-width: 90%;
  padding: 0.1em 0.6em;
  font-size: 0.8em;
  color: var(--light);
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
}
trix-editor .attachment__metadata .attachment__name {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
trix-editor .attachment__metadata .attachment__size {
  margin-left: 0.2em;
  white-space: nowrap;
}

.trix-content {
  line-height: 1.5;
}
.trix-content * {
  box-sizing: border-box;
}
.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
  margin: 0;
}
.trix-content blockquote {
  margin: 0 0 0 0.3em;
  padding: 0 0 0 0.6em;
}
.trix-content pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  margin: 0;
  padding: 0.5em;
  white-space: pre;
  background-color: #eee;
  overflow-x: auto;
}
.trix-content ul,
.trix-content ol,
.trix-content li {
  margin: 0;
  padding: 0;
}
.trix-content ul li,
.trix-content ol li,
.trix-content li li {
  margin-left: 1em;
}
.trix-content img {
  max-width: 100%;
  height: auto;
}
.trix-content .attachment {
  display: inline-block;
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.trix-content .attachment a {
  color: inherit;
  text-decoration: none;
}
.trix-content .attachment a:hover, .trix-content .attachment a:visited:hover {
  color: inherit;
}
.trix-content .attachment__caption {
  padding: 0;
  text-align: center;
}
.trix-content .attachment__caption .attachment__name + .attachment__size::before {
  content: " · ";
}
.trix-content .attachment--preview {
  width: 100%;
  text-align: center;
}
.trix-content .attachment--preview .attachment__caption {
  color: #666;
  font-size: 0.9em;
  line-height: 1.2;
}
.trix-content .attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 0;
  padding: 0.4em 1em;
  border: thin solid #bbb;
  border-radius: 5px;
}
.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: 0;
  padding: 0;
}
.trix-content .attachment-gallery .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}
.trix-content .attachment-gallery.attachment-gallery--2 .attachment, .trix-content .attachment-gallery.attachment-gallery--4 .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

.footer {
  padding: 0.5rem;
}
.footer p {
  margin: 0;
}

.page-footer {
  background: var(--brand-alt);
  display: block;
  padding: 0;
  text-align: center;
  width: 100%;
}
.page-footer a,
.page-footer h5,
.page-footer label {
  color: var(--light);
  font-weight: 200;
}
.page-footer a:hover,
.page-footer h5:hover,
.page-footer label:hover {
  color: var(--accent-color);
}
.page-footer .footer-top {
  background: var(--blackish);
}
.page-footer .footer-copyright {
  background: var(--brand-alt);
  color: var(--grey);
  padding: 2rem;
}

.application-footer {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  padding: 3rem;
}
.application-footer h3 {
  display: block;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}
.application-footer ul {
  display: block;
  margin: 0;
  padding: 0;
}
.application-footer a {
  text-decoration: none;
  transition: color 150ms ease-in-out, border-color 150ms ease-in-out;
}
.application-footer a:hover {
  color: var(--accent-color);
}
.application-footer .group {
  flex-basis: calc(33% - 3rem);
  margin-bottom: 3rem;
  margin-right: 3rem;
}
.application-footer .group li {
  margin-bottom: 0.375rem;
}
.application-footer .footer-groups {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.application-footer .footer-groups li {
  margin-bottom: 0.7rem;
}
.application-footer .group-title {
  color: var(--light);
  font-size: 1.2rem;
}
.application-footer .copyright {
  color: var(--slate);
}
.application-footer .copyright li {
  display: inline-block;
  margin-right: 0.75rem;
}
.application-footer .footer-container {
  display: block;
  width: 100%;
  padding: 0;
  text-align: center;
}
.application-footer .footer-container a,
.application-footer .footer-container h5,
.application-footer .footer-container label {
  font-weight: 200;
}
.application-footer .footer-top {
  background: var(--blackish);
}
.application-footer .footer-copyright {
  background: var(--brand-alt);
  color: var(--grey);
  padding: 2rem 1rem;
}

.dashboard-footer {
  padding: 0.5rem;
}
.dashboard-footer p {
  margin: 0;
}

@media screen and (max-width: 540px) {
  .application-footer {
    padding: 0.3rem;
  }
  .application-footer .group {
    flex-basis: 100%;
    margin: 0.2rem 1.3rem;
  }
  .application-footer .copyright {
    margin: 1.2rem;
  }
  .footer-groups {
    flex-direction: column;
  }
  .block {
    text-align: center;
  }
  .card {
    margin: 1.5%;
  }
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: 0 0 0 1000px var(--accent-color) inset;
  -webkit-text-fill-color: var(--blackish);
}

.log-in,
.sign-up {
  margin: 4rem 0.4rem;
}
.log-in h1,
.log-in h2,
.sign-up h1,
.sign-up h2 {
  text-align: center;
}

.auth {
  width: 90%;
  margin: auto;
  max-width: 650px;
}
.auth .mainbox {
  margin-left: auto;
  margin-right: auto;
}
.auth .email,
.auth .submit,
.auth .btn,
.auth .password {
  width: 100%;
}
.auth .btn {
  background: var(--brand-color);
  border: 0;
  border-radius: 3px;
  color: var(--light);
  cursor: pointer;
  padding: 10px;
}
.auth .links {
  font-size: 95%;
  margin: 2rem 0 0;
}
.auth a {
  color: var(--blue);
}
.auth h2 {
  font-weight: 600;
  text-align: center;
}
.auth div,
.auth .boolean {
  margin: 0.2rem;
}
.auth input {
  background-image: none;
  border: thin solid var(--gainsboro);
  border-radius: 0.2rem;
  color: inherit;
  margin: 0;
  outline: 0;
  padding: 0.2rem;
  transition: background-color 0.3s;
}

.message {
  animation: fadeinout 8s linear forwards;
  background-color: var(--blackish);
  border-radius: 2px;
  color: var(--light);
  min-width: 250px;
  padding: 16px;
  text-align: center;
}

.form {
  border-radius: 0.4rem;
  padding: 1.8rem 2rem;
}
.form .form-actions {
  padding-top: 1.8rem;
}
.form h1 {
  font-weight: 700;
}
.form h2 {
  font-weight: 600;
}

.form-control {
  border: thin solid var(--mid-color);
}

.form-label {
  height: 25px;
}

.form-textarea {
  background-color: rgba(2, 2, 2, 0.0509803922);
}

.lines-bg {
  background-image: url("/assets/svg/lines_light-9d5054a8.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
}

.main-bg {
  background-image: url("/assets/svg/main-f9ea5545.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
}

.thin-bg {
  background-image: url("/assets/svg/thin-5da6ce7d.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
}

@keyframes fadeinout {
  0%, 100% {
    opacity: 0;
    visibility: hidden;
  }
  50% {
    opacity: 1;
    visibility: visible;
  }
}
.navigation {
  font-size: larger;
  text-align: center;
  width: 100%;
}
.navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.navigation ul li {
  display: block;
  float: left;
  font-size: 18px;
  position: relative;
  text-decoration: none;
  transition-duration: 0.5s;
}
.navigation ul li ul {
  display: none;
  left: 0;
  min-width: 5rem;
  opacity: 0;
  position: absolute;
  transition: color 0.5s ease;
  visibility: hidden;
  z-index: 1;
}

.navlist {
  align-content: center;
  align-items: center;
  flex-flow: row wrap;
  height: 100%;
}
.navlist .link {
  background-color: var(--brand-alt);
  border-bottom: 2px solid transparent;
  height: 100%;
}
.navlist .link.active {
  background-color: var(--brand-alt-l);
  border-bottom: 2px solid var(--accent-color);
}
.navlist .link.active:hover {
  border-bottom: 2px solid var(--accent-color);
}
.navlist .link:hover {
  background-color: var(--brand-alt-l);
  border-bottom: 2px solid var(--grey);
}
.navlist.spaced-between {
  justify-content: space-between;
}
.navlist.center {
  justify-content: center;
}
.navlist a:focus {
  outline: none;
}

.logo {
  padding: 0.4rem;
}
.logo img {
  width: 150px;
  height: 150px;
}
.logo svg {
  height: 50px;
}

.sidebar-container li {
  max-width: 175px;
  min-width: 165px;
}
.sidebar-container .nav-item {
  padding: 1.2rem 1.2rem 1.2rem 2.8rem;
}
.sidebar-container .nav-item.active {
  background: var(--accent-bg);
  border-left: 2px solid var(--accent-color);
  color: var(--alt-color);
}
.sidebar-container .nav-item:hover {
  background: var(--accent-bg);
  border-left: 2px solid var(--gray);
}
.sidebar-container.shared {
  width: 0;
}
.sidebar-container.full {
  width: 180px;
}

.sidebar-items {
  height: 100vh;
  margin-top: 45px;
}
.sidebar-items .icon {
  margin: 0.12rem 1.2rem;
  position: fixed;
}
.sidebar-items svg {
  margin: 1.1rem -2px;
}

.nav-item {
  display: inline-block;
  height: inherit;
  line-height: inherit;
  padding: 0.8rem 1.2rem;
  text-transform: uppercase;
  transition: color 150ms ease;
}
.nav-item:hover {
  color: var(--blackish);
}
.nav-item.active {
  background: var(--brand-alt);
  color: var(--light);
}
.nav-item:focus {
  outline: 1px solid var(--brand-alt);
}

.nav-img {
  border-radius: 0.8rem;
  margin: 0.4rem 0.4rem 0;
}

.left-border {
  border-left: 2px solid var(--grey);
}
.left-border:hover {
  border-left: 2px solid var(--brand-color);
}
.left-border.active {
  border-left: 2px solid var(--brand-color);
}

.bottom-border:hover {
  border-bottom: 2px solid var(--brand-alt);
}
.bottom-border.active {
  border-bottom: 2px solid var(--brand-color);
}

/* Secondary nav */
.secondary-nav {
  background-color: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 0.4rem;
}

.outline {
  border: thin solid;
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
.outline:hover {
  background: var(--accent-color);
  color: var(--light);
}

.noline {
  border: thin var(--grey);
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
.noline:hover {
  background: var(--gainsboro);
  color: var(--light);
}

.header-links {
  margin: 0 1.2rem;
  padding: 4px;
}

.sidebar-logo {
  margin: auto;
}
.sidebar-logo svg,
.sidebar-logo img {
  width: 160px;
  max-width: 160px;
  padding-left: 0.4rem;
}

.nav-logo {
  width: 120px;
}
.nav-logo.long {
  width: 280px;
}

.icon .badge {
  background-color: var(--clear);
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.4rem;
  border-radius: 50%;
}
.icon .badge.active {
  background-color: var(--red);
  transition: background-color 0.3s;
}
.icon.red-fill svg {
  fill: var(--red);
}
.icon.light-fill svg {
  fill: var(--light);
}
.icon.light-stroke svg {
  stroke: var(--light);
}
.icon.grey-fill svg {
  fill: var(--grey);
}
.icon.dark-fill svg {
  fill: var(--brand-alt);
}
.icon.dark-stroke svg {
  stroke: var(--brand-alt);
}
.icon.grey-stroke svg {
  stroke: var(--grey);
}
.icon.blue-fill {
  color: var(--blue);
}
.icon.blue-fill svg {
  fill: var(--blue);
}
.icon.ocean-fill svg {
  fill: var(--brand-alt);
}
.icon.micro-svg svg {
  width: 4px;
  height: 4px;
}
.icon.tiny-svg svg {
  width: 12px;
  height: 12px;
}
.icon.small-svg svg {
  width: 15px;
  height: 15px;
}
.icon.mdm-svg svg {
  width: 20px;
  height: 20px;
}
.icon.standard-svg svg {
  width: 30px;
  height: 30px;
}
.icon.medium-svg svg {
  width: 40px;
  height: 40px;
}
.icon.long-svg svg {
  width: 100%;
  max-width: 200px;
  height: 80px;
}
.icon.large-svg svg {
  width: 55px;
  height: 55px;
}
.icon.larger-svg svg {
  width: 75px;
  height: 75px;
}
.icon.huge-svg svg {
  width: 100px;
  height: 100px;
}

.float-icon.search svg {
  top: 5px;
}
.float-icon svg {
  position: absolute;
  top: 10px;
  left: 5px;
  width: 15px;
  height: 20px;
}

.search-container {
  padding: 0.5rem;
}

.search-wrapper {
  position: relative;
  border: thin solid var(--mid-color);
  border-radius: 0.2rem;
}
.search-wrapper.dark-bg {
  border: thin solid var(--grey);
}
.search-wrapper.dark-bg input {
  background-color: #060608;
}
.search-wrapper.dark-bg ::placeholder {
  color: var(--slate);
  opacity: 1;
}
.search-wrapper .search-input {
  margin: 0;
  padding: 0.2em 0.2em 0.2em 1.5em;
  font-size: 18px;
}
.search-wrapper form {
  height: 30px;
}
.search-wrapper input {
  border: 0;
}

.bar-input {
  width: 80%;
  margin: auto;
}
.bar-input input {
  border-radius: 2rem;
}

.breadcrumbs-container {
  margin: auto 1.1rem;
}
.breadcrumbs-container .current {
  color: var(--grey);
}

.breadcrumbs {
  list-style: none;
  text-transform: lowercase;
}
.breadcrumbs li {
  display: inline;
  font-size: 18px;
}
.breadcrumbs li + li::before {
  color: var(--blackish);
  content: "/ ";
  padding: 8px;
}
.breadcrumbs a {
  color: var(--blue);
  font-weight: bold;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--brand-color);
}

.mob-nav-item {
  padding-top: 0.4rem;
  padding-bottom: calc(0.8rem + env(safe-area-inset-bottom));
  width: 100%;
}

@media screen and (max-width: 700px) {
  nav.navigation {
    flex-direction: column;
    align-items: center;
    border-bottom: 2px solid var(--brand-alt);
  }
}
@media screen and (max-width: 550px) {
  .secondary-nav {
    padding: 0.8rem;
  }
  .breadcrumbs-container {
    margin: 0;
    max-width: 50%;
  }
  .header-links {
    padding: 0.4rem;
    margin: 0;
  }
}
.profile-area,
.profile-post-area {
  padding: 3rem;
  text-align: center;
  margin: auto;
}
.profile-area .content,
.profile-post-area .content {
  max-width: 450px;
  margin: 0 auto;
}
.profile-area .title,
.profile-post-area .title {
  text-align: center;
  margin-top: 30px;
  font-weight: 700;
}
.profile-area .avatar,
.profile-post-area .avatar {
  height: 150px;
  width: 150px;
  background: var(--grey);
  border-radius: 50%;
  border: 4px solid var(--light);
  z-index: 1;
}
.profile-area h3,
.profile-post-area h3 {
  font-size: 2em;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.4em;
}

.avatar {
  border: 0.6rem var(--gainsboro) solid;
  border-radius: 50%;
  min-width: 150px;
  width: 10%;
}

.profile-info-area {
  text-align: left;
  padding: 40px;
  border: thin solid var(--grey);
  margin: 20px;
}

.social-description {
  display: inline-block;
  max-width: 150px;
  width: 145px;
  text-align: center;
  margin: 15px 0 0;
}
.social-description h2 {
  font-size: 2.5em;
  margin: 0 0 15px;
}
.social-description h4 {
  font-size: 1.8em;
  margin: 0 0 15px;
}

.spaced {
  margin: auto 1.1rem;
}

.dropdown {
  width: 100px;
}
.dropdown .menu {
  cursor: pointer;
}
.dropdown .icon svg {
  width: 50px;
}
.dropdown svg,
.dropdown img {
  display: block;
  width: auto;
  height: 60px;
  margin: 0 auto;
  padding: 0.2rem;
}

.nav-avatar {
  cursor: pointer;
  display: block;
  margin: 0 0.1rem 0 0.8rem;
}
.nav-avatar img {
  min-width: 40px;
  height: 40px;
  border-radius: 10%;
  background-color: var(--grey);
}

.divider {
  border-top: 1px solid var(--gainsboro);
}

.user-menu-wrap {
  position: relative;
}

.v-menu .menu-item {
  margin: 4px 0;
}
.v-menu .menu-item.active {
  background-color: var(--light);
  border: thin solid var(--grey);
  color: var(--text);
}
.v-menu .menu-item:hover {
  background-color: var(--grey);
}

.menu-container {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.menu-container.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.user-menu {
  background-color: var(--white);
  border: thin solid var(--slate);
  border-radius: 4px;
  margin-top: 10px;
  position: absolute;
  right: 5px;
  width: 140px;
  text-align: center;
  z-index: 10;
}
.user-menu .user-menu-link {
  color: var(--text);
  border-top: thin solid var(--gainsboro);
  padding: 0.8rem;
  transition: background-color 0.1s ease-in;
}
.user-menu .user-menu-link:hover {
  background-color: var(--accent-color);
  color: var(--light);
}
.user-menu .user-menu-link:hover svg {
  fill: var(--light);
}
.user-menu::before, .user-menu::after {
  border: 8px solid transparent;
  border-bottom-color: var(--slate);
  content: "";
  display: inline-block;
  left: 95px;
  position: absolute;
  top: -16px;
}

thead {
  line-height: var(--line-height--heading);
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

tr {
  border-bottom: var(--border);
}

th {
  font-weight: 600;
}

th,
td {
  padding: var(--spacing--small) var(--spacing--small) var(--spacing--small) 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--spacing) 0;
  table-layout: fixed;
  text-align: left;
}
table tbody tr:nth-child(odd) {
  border: thin solid var(--gainsboro);
}
table tbody tr:nth-child(even) {
  background-color: var(--light);
  border: thin solid var(--gainsboro);
}
table td,
table th {
  padding: 8px;
  text-align: left;
  text-transform: initial;
  vertical-align: middle;
  border-left: thin solid var(--gainsboro);
}
table td.small-cell,
table th.small-cell {
  width: 80px;
}

.table {
  font-size: 14px;
  margin: 0.4em 0;
}
.table th {
  font-weight: 400;
}
.table .profile-pic {
  height: 50px;
  width: 50px;
  border: 3px solid var(--light);
  border-radius: 50%;
}
.table .profile-pic img {
  height: 50px;
  width: 50px;
}
.table .profile-link {
  font-weight: bold;
  color: var(--accent-bg);
}
.table .tbody:hover {
  background: var(--light);
  color: var(--accent-bg);
}

.information {
  font-size: 16px;
  margin: auto 0;
}

.question-content {
  width: 65%;
}

.question {
  font-size: 20px;
  margin-bottom: 0.8rem;
}

.answers .answer {
  background: var(--light);
  border: thin solid var(--gainsboro);
  border-radius: 0.2rem;
  padding: 0.8rem;
  margin: 0.4rem;
  transition: background-color 100ms linear;
}
.answers .answer:hover {
  background: var(--gainsboro);
  border: thin solid var(--brand-alt);
}
.answers .answer:has(:checked) {
  background: var(--gainsboro);
  border: thin solid var(--brand-alt);
}

.score {
  width: 35%;
}

.sort-link {
  font-weight: 600;
  color: var(--accent-bg);
}
.sort-link.asc {
  color: var(--blue);
}
.sort-link.desc {
  color: var(--blue);
}
.sort-link:hover {
  color: var(--mid-color);
}

@media screen and (max-width: 650px) {
  th:nth-child(3) {
    display: none;
  }
  th:nth-child(4) {
    display: none;
  }
  td:nth-child(3) {
    display: none;
  }
  td:nth-child(4) {
    display: none;
  }
  .select-form td,
  .select-form th {
    border: 0;
  }
  .select-form .score-header {
    display: none;
  }
}
.testimonials {
  padding: 2.5em 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/assets/bg/city-30fc296e.jpg");
  background-position: center top;
  background-repeat: repeat-x;
}

.pre-text {
  text-align: center;
  color: var(--accent-bg);
  margin: 4rem auto;
}

.quote-image,
.quote-avatar {
  border: 5px solid var(--light);
  border-radius: 44px;
  height: 73px;
  width: 73px;
}

.quotes {
  min-height: 200px;
}

blockquote {
  bottom: 0;
  font-size: 14px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 0;
}
blockquote cite {
  color: var(--brand-alt);
  font-size: 16px;
  text-align: center;
}
blockquote p {
  color: var(--accent-bg);
  font-size: 24px;
  font-style: italic;
  font-weight: normal;
  line-height: 30px;
  margin-bottom: 10px;
}
blockquote p::before {
  content: "“";
}
blockquote p::after {
  content: "”";
}

.mask {
  min-height: 200px;
  overflow: hidden;
}

#slider {
  border: thin solid var(--slate);
  border-radius: 4px;
  margin: 2rem auto;
  padding: 2rem;
  text-align: center;
  width: 80%;
}
#slider::before {
  background: var(--light);
  filter: blur(100px);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.slider {
  overflow: hidden;
  position: relative;
  text-align: center;
}
.slider .slide {
  left: 50%;
  list-style: none;
  position: absolute;
  top: 2rem;
  transform: translate(-50%, -100%);
  width: 100%;
  max-width: 800px;
}
.slider .slide.firstanimation {
  animation: cycle 20s ease-in-out infinite;
}
.slider .slide.secondanimation {
  animation: cycletwo 20s ease-in-out infinite;
}
.slider .slide.thirdanimation {
  animation: cyclethree 20s ease-in-out infinite;
}

@media screen and (min-width: 980px) {
  .testimonials {
    background-size: cover;
  }
  .pre-text {
    max-width: 60%;
    margin: 6rem auto;
  }
}
@media screen and (max-width: 640px) {
  .testimonials {
    background-size: cover;
  }
  #slider {
    width: 90%;
  }
  .mask {
    min-height: 240px;
  }
}
@keyframes cycle {
  0% {
    transform: translate(-50%, 0%);
    opacity: 1;
  }
  /* visible */
  29% {
    transform: translate(-50%, 0%);
    opacity: 1;
  }
  /* start move */
  33% {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  /* below */
  96% {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
  /* above */
  100% {
    transform: translate(-50%, 0%);
    opacity: 1;
  }
  /* visible */
}
@keyframes cycletwo {
  0% {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
  /* above */
  29% {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
  /* start move */
  33% {
    transform: translate(-50%, 0%);
    opacity: 1;
  }
  /* visible */
  62% {
    transform: translate(-50%, 0%);
    opacity: 1;
  }
  /* visible */
  66% {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  /* below */
  100% {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
  /* above */
}
@keyframes cyclethree {
  0% {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
  /* top */
  62% {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
  /* start move */
  66% {
    transform: translate(-50%, 0%);
    opacity: 1;
  }
  /* visible */
  96% {
    transform: translate(-50%, 0%);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
}
.landing .button {
  border-radius: 0;
}

.icon,
.button,
.non-selectable,
.btn-text {
  user-select: none;
  -webkit-user-select: none;
}

.wrap {
  max-width: 80%;
  margin: 2rem 0 2rem 2rem;
  padding: 2rem;
  border-radius: 1.2rem;
}
.wrap.offset-left {
  margin: 2rem;
}
.wrap.offset-right {
  margin: 2rem;
}
.wrap.offset-up {
  margin: 2rem 0 2rem 2rem;
}
.wrap.raised {
  z-index: 1;
}
.wrap .svg {
  width: 70%;
  max-width: 200px;
  margin: auto;
}

@media screen and (min-width: 540px) {
  .wrap {
    max-width: 60%;
  }
  .wrap.offset-left {
    margin: -4rem 0 -4rem 6rem;
  }
  .wrap.offset-right {
    margin: -4rem 4rem -4rem 0;
  }
}
@media screen and (min-width: 480px) {
  .wrap {
    max-width: 60%;
  }
  .wrap.offset-left {
    margin: -4rem 0 -4rem 4rem;
  }
}
:not(.active) > .hide-actv {
  display: inherit;
}
:not(.active) > .show-actv {
  display: none;
}

.active > .hide-actv {
  display: none;
}
.active > .show-actv {
  display: inherit;
}

.tabbar {
  border: thin solid var(--gainsboro);
}
.tabbar.grouped {
  margin: 0;
}
.tabbar .tab {
  background: var(--mid-color);
  cursor: pointer;
  padding: 1.4rem 0.2rem;
  text-align: center;
  text-transform: uppercase;
  border-left: 1px solid var(--gainsboro);
  border-right: 1px solid var(--gainsboro);
}
.tabbar .tab.active {
  background: var(--light);
  border-left: 1px solid var(--gainsboro);
  border-right: 1px solid var(--gainsboro);
  font-weight: bold;
}

.grey-block {
  background: var(--light);
  padding: 4rem 2rem;
}

.hero {
  display: inline-block;
}

.grouped .button {
  cursor: pointer;
  border: none;
}
.grouped .button.active {
  background-color: var(--white);
  border: thin solid var(--gainsboro);
  cursor: revert;
  color: var(--accent-bg);
}
.grouped .button:first-child {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.grouped .button:last-child {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.outline-btn {
  border-radius: 0.4rem;
  padding: 0.4rem;
}
.outline-btn.dark-btn {
  border: 2px solid var(--blackish);
  color: var(--brand-alt);
  transition: color 0.3s ease;
}
.outline-btn.dark-btn:hover {
  color: var(--light);
  background-color: var(--brand-alt);
}

.button {
  padding: 0.4rem 0.8rem;
  background-color: var(--accent-bg);
  color: var(--light);
}
.button.thin-btn {
  padding: 0.4rem 1.2rem;
}
.button.dark {
  border: thin solid var(--accent-bg);
}
.button.dark:hover, .button.dark:focus {
  background-color: var(--accent-color);
  border: thin solid var(--accent-bg);
  color: var(--brand-alt);
}
.button.dark:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.button.dark:disabled:hover {
  background-color: var(--accent-color);
}
.button.light {
  background-color: var(--light);
  border: thin solid var(--brand-alt);
  color: var(--brand-alt);
}
.button.light:hover, .button.light:focus {
  background-color: var(--brand-alt);
  border: thin solid var(--light);
  color: var(--brand-alt);
}
.button.light:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.button.light:disabled:hover {
  background-color: var(--light);
}

.gapped {
  gap: 2rem;
  margin: 2rem;
}
.gapped.no-lm {
  margin-left: 0;
}
.gapped.no-rm {
  margin-right: 0;
}

.controls .filter-container {
  display: none;
}
.controls .filter-container.active {
  display: block;
}

.content {
  background: var(--white);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  padding: 2rem;
}

.sparkline {
  padding: 2rem 0.4rem;
}

.heading {
  margin: 1.2rem auto;
  max-width: 60%;
}

.message-container {
  background: var(--blue);
  border-radius: 20px;
  margin: 10px auto;
  min-height: 100px;
  padding: 25px;
  width: 80%;
}

.heading h1,
.pre-text h1 {
  color: var(--dark);
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
}
.heading p,
.pre-text p {
  font-size: 20px;
}

.header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("/assets/bg/main-cf63c5b3.png");
  background-size: cover;
  font-weight: 400;
  text-align: center;
  width: 100%;
  height: 200px;
  display: table;
}
.header h1 {
  display: table-cell;
  vertical-align: middle;
  font-size: 30pt;
  color: var(--light);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.following {
  color: var(--blackish);
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
}
.following h1 {
  font-size: 48px;
}

.tagline {
  color: var(--grey);
  font-size: 26px;
  font-weight: 300;
  margin: 2rem auto;
  width: 83.33%;
}

.tags .tag-container {
  margin: 0 0.4rem 0.4rem 0;
}
.tags .tag-container .tag {
  border: thin solid var(--gainsboro);
  border-radius: 0.2rem;
  font-size: 14px;
  padding: 0.4rem;
}
.tags .tag-container .tag:hover {
  background-color: var(--gainsboro);
  border: thin solid var(--gainsboro);
}
.tags .tag-container .removeable-tag {
  border: thin solid var(--gainsboro);
  font-size: 14px;
  padding: 0.4rem;
}
.tags .tag-container .tag-button {
  border: thin solid var(--gainsboro);
  font-size: 14px;
  padding: 0.4rem;
}
.tags .tag-container .tag-button:hover {
  background-color: var(--gainsboro);
  border: thin solid var(--gainsboro);
}

.stats-box {
  background-color: var(--white);
  border: 2px var(--gainsboro) solid;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  margin: auto;
  width: 80%;
}

.stat {
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: 1.2rem;
}
.stat .large-text {
  font-size: 36px;
}
.stat .small-text {
  font-size: 14px;
}

.blocks {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}

.block {
  margin: 1.2rem auto;
  max-width: 540px;
  padding: 1.5em;
  text-align: left;
  width: 30%;
}
.block p,
.block h2 {
  color: var(--light);
  text-align: center;
}
.block button {
  width: 100%;
}
.block.content {
  padding: 0.4rem 0 0;
}

.block-header {
  border-bottom: 1px solid var(--gainsboro);
}
.block-header h1 {
  font-size: 20px;
}

.striped:nth-child(even) {
  background-color: var(--gainsboro);
  border-top: 1px solid var(--mid-color);
  border-bottom: 1px solid var(--mid-color);
}

.block-content {
  border-radius: 0.2em;
  display: flex;
  flex-direction: column;
  padding: 1em;
  width: 100%;
}
.block-content img {
  height: 80px;
  margin: 2% auto;
}
.block-content p {
  color: var(--blackish);
  flex: 1 0 auto;
  padding: 10px;
}
.block-content h2 {
  color: var(--blackish);
  text-align: center;
}

.dropzone {
  background-color: whitesmoke;
  text-align: center;
  border-color: #dcdcdc;
  border-style: dashed;
  border-width: thick;
}
.dropzone:hover {
  background-color: #fafafa;
  color: #767676;
  border-color: #ffa900;
  border-style: dashed;
  border-width: thick;
}

@media screen and (max-width: 980px) {
  .grid-item {
    width: 75%;
  }
}
@media screen and (max-width: 800px) {
  .to-column {
    flex-direction: column;
  }
  .to-column .to-full {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .grid-item {
    width: 100%;
  }
}
@media screen and (min-width: 700px) {
  .stats-box {
    width: 85%;
    flex-direction: row;
  }
  .stat {
    width: 33%;
  }
  .stat:nth-child(2) {
    border-left: 2px solid var(--gainsboro);
    border-right: 2px solid var(--gainsboro);
    border-top: 0;
    border-bottom: 0;
  }
  .block {
    width: 30%;
  }
}
@media screen and (max-width: 960px) {
  .block {
    width: 45%;
  }
}
@media screen and (max-width: 540px) {
  .stats-box {
    width: 95%;
    flex-direction: column;
  }
  .heading {
    max-width: 90%;
  }
  .stat {
    width: 100%;
  }
  .stat:nth-child(2) {
    border-top: 2px solid var(--gainsboro);
    border-left: 0;
    border-right: 0;
    border-bottom: 2px solid var(--gainsboro);
  }
  .block {
    width: 90%;
  }
  .gapped {
    margin: 0.8rem;
  }
}
@media screen and (max-width: 650px) {
  .tabbar .tab {
    padding: 1.2rem 0.2rem;
  }
  .block {
    width: 80%;
  }
}
.post-container {
  height: 100%;
  padding: 1.2rem;
}

.profile-header,
.post-header {
  border-bottom: thin solid var(--gainsboro);
}
.profile-header h1,
.post-header h1 {
  font-size: 26px;
}

.profile-body,
.post-body {
  padding: 1.2rem 0;
}

.profile-footer,
.post-footer {
  border-top: thin solid var(--gainsboro);
  padding: 0 1.5rem;
}

.profile-conten,
.post-content {
  flex: 1;
  padding: 0.4rem 1.8rem;
}
.profile-conten blockquote,
.post-content blockquote {
  font-weight: 500;
  font-size: 20px;
}
.profile-conten blockquote::before, .profile-conten blockquote::after,
.post-content blockquote::before,
.post-content blockquote::after {
  content: "";
  display: block;
  width: 30%;
  height: 3px;
  background: var(--mid-color);
  margin: 40px auto;
}
.profile-conten ul,
.post-content ul {
  list-style-type: initial;
  margin: 0 2rem;
}
.profile-conten ol,
.post-content ol {
  list-style-type: lower-alpha;
}

.posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
}
.posts .block {
  margin: 1.2rem;
  border-radius: 4px 4px 0 0;
}

.post {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.post.content {
  padding: 1.4rem 0 0;
}
.post .post-date {
  color: var(--grey);
  font-size: 12px;
  margin: auto 0.2rem;
}
.post .meta {
  background: var(--light);
  padding: 0.2rem 1.2rem;
}
.post .meta svg {
  margin: 0 0.4rem;
}

.blog-card {
  width: 30%;
}

.profile-title,
.post-title {
  font-weight: 600;
  margin: 0.4rem 1.8rem;
  padding: 0.2rem;
}
.profile-title a,
.post-title a {
  color: var(--brand-alt);
}
.profile-title a:hover,
.post-title a:hover {
  color: var(--blue);
}

.adblock {
  border: thin solid var(--mid-color);
  padding: 4px;
}

.post-meta-container {
  margin: auto;
  padding: 2rem;
  text-align: center;
  background-color: #dcdcdc;
}

.block-meta {
  border-top: var(--mid-color);
  display: flex;
  padding: 0.8rem;
  justify-content: space-around;
}
.block-meta .meta {
  margin: 0 0.2rem;
  white-space: nowrap;
  display: flex;
}

.pagination {
  background-color: var(--light);
  border-radius: 5px;
}
.pagination .active,
.pagination .current {
  background-color: var(--accent-bg);
  color: var(--light);
  float: left;
  padding: 8px 16px;
}
.pagination .disabled {
  background-color: var(--mid-color);
  color: var(--grey);
  cursor: not-allowed;
  padding: 8px 16px;
}
.pagination .gap {
  padding: 8px 4px;
}
.pagination a {
  color: var(--accent-bg);
  float: left;
  padding: 8px 16px;
}
.pagination a:hover {
  background-color: var(--mid-color);
}
.pagination span {
  color: var(--blackish);
  float: left;
  border: var(--mid-color);
}
.pagination span:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.pagination span:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.link-underline.read-more:hover::after {
  height: 130%;
}
.link-underline.read-more::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  width: 120%;
  height: 4px;
  background: var(--accent-color);
  left: -5px;
  transition: height 0.2s;
  z-index: -1;
}

.sub-section.sm-icon {
  margin: auto 0.2rem;
}
.sub-section.sm-icon svg {
  width: 20px;
  height: 20px;
}
.sub-section .sub-heading {
  font-size: 16px;
  margin: 0 4px;
}

.views .view {
  color: var(--accent-bg);
}

.grouped .icon,
.grouped p {
  margin: 0 5px;
}

.author img {
  border: 8px solid var(--light);
  border-radius: 50%;
  width: 100px;
}
.author h4 {
  text-transform: uppercase;
}
.author .bio {
  width: 100%;
  padding: 4rem;
}

.hr-sectioned {
  margin-bottom: 1.4rem;
}
.hr-sectioned .section:not(:last-child) {
  border-bottom: 1px solid var(--gainsboro);
}

.vt-sectioned .section:not(:last-child) {
  border-left: 1px solid var(--gainsboro);
}

.alt-overlay {
  background-image: linear-gradient(var(--dark), var(--blackish));
  cursor: pointer;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 1s ease-in-out;
}
.alt-overlay:hover {
  opacity: 0.6;
}

.overlay {
  background-image: linear-gradient(var(--dark), var(--blackish));
  cursor: pointer;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  position: absolute;
  transition: opacity 1s ease-in-out;
}
.overlay:hover {
  opacity: 0.5;
}

.progressbar {
  width: 98%;
  height: 17px;
  background-color: var(--light);
  margin: 0.6em 0;
  border: thin double var(--slate);
  border-radius: 5px;
  box-shadow: 0 1px 5px var(--slate) inset, 0 1px 0 var(--gainsboro);
}

.progress {
  border-radius: 5px;
  height: 15px;
  max-width: 100%;
  float: left;
  width: 100%;
}
.progress.red {
  background-image: linear-gradient(to right, var(--red) 0%, var(--red) 100%);
}
.progress.green {
  background-image: linear-gradient(to right, var(--green) 0%, var(--green) 100%);
}
.progress.yellow {
  background-image: linear-gradient(to right, var(--accent-color) 0%, var(--accent-color) 100%);
}

.icons .open {
  display: none;
}
.icons .closed {
  display: block;
}
.icons.active .open {
  display: block;
}
.icons.active .closed {
  display: none;
}

.conditional-message {
  background-color: var(--light);
  opacity: 0;
  padding: 1.2rem;
  position: sticky;
  transition: 0.3s;
  top: 2.4rem;
  visibility: hidden;
}
.conditional-message.showing {
  opacity: 1;
  visibility: visible;
}

.nav-area .padded {
  padding: 0.4rem 1.2rem;
}

.block-meta .small-svg {
  margin: 0 0.4rem;
}

.navlist .link {
  color: var(--white);
  padding: 1.2rem;
}

.lg-form-textarea {
  background-color: rgba(2, 2, 2, 0.0509803922);
  min-height: 350px;
}

.form-textarea {
  width: 100%;
  padding: 0.8rem;
}

.sticky {
  bottom: 40px;
  width: fit-content;
  z-index: 100;
}
