@charset "UTF-8";
/* == Base == */
/* = Reset = */
html {
  font-size: 16px;
}

img {
  display: block;
  max-width: 100%;
}

strong {
  font-weight: 700;
}

/* = Text Styles = */
.text-bold {
  font-weight: 700;
}
.text-italic {
  font-style: italic;
}
.text-lg {
  font-size: 1.25em;
}
.text-xl {
  font-size: 1.5em;
}
.text-sm {
  font-size: 0.8em;
}
.text-xs {
  font-size: 0.66em;
}
.text-justify {
  text-align: justify;
}
.text-balance {
  text-wrap: balance;
}
.text-header {
  font-family: var(--ark-header-family);
}
.text-base {
  color: var(--ark-text) !important;
}
.text-bg {
  color: var(--ark-bg-color) !important;
}
.text-primary {
  color: var(--ark-primary-dk) !important;
}
.text-secondary {
  color: var(--ark-secondary-dk) !important;
}
.text-dark {
  color: var(--ark-dark) !important;
}
.text-light {
  color: rgb(var(--ark-bg-color-rgb)/0.7) !important;
}
.text-light a {
  color: var(--ark-bg-color) !important;
}
.text-light a:hover {
  color: rgb(var(--ark-bg-color-rgb)/0.7) !important;
}
.text-light button {
  color: var(--ark-bg-color) !important;
}
.text-light button:hover {
  color: rgb(var(--ark-bg-color-rgb)/0.7) !important;
}
.text-faded {
  color: var(--ark-faded) !important;
}
@media (width >= 768px) {
  .text-md-lg {
    font-size: 1.25em;
  }
}

.word-wrap {
  word-break: break-all;
}

/* = GlobaL Elements = */
body {
  color: var(--ark-text);
  font-weight: 300;
  font-family: var(--ark-body-family);
}

a {
  font-weight: 700;
  text-decoration: none;
  color: var(--ark-dark);
}
a:hover {
  color: var(--ark-primary-dk);
}

p {
  margin-bottom: 0;
}

* + p,
* + ul {
  margin-bottom: 0;
  margin-top: 1em;
}

ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
ul p {
  margin-top: 0;
}
ul li h5:first-child {
  margin-bottom: 0;
  margin-top: 1em;
}
ul li * + p {
  margin-top: 0.5em;
}
ul ul {
  margin-top: 0;
}

ol ol li {
  list-style-type: lower-alpha;
}
ol ol ol li {
  list-style-type: lower-roman;
}
ol ol ol ol li {
  list-style-type: upper-alpha;
}

blockquote {
  margin-top: 1em;
  padding-left: 1em;
  border-left: 0.5em solid var(--ark-primary-lt);
}

/* = Headers = */
h2,
h3, h1 {
  font-family: var(--ark-header-family);
  font-weight: 700;
}

h1 {
  text-align: center;
  margin-bottom: 0.5em;
  text-wrap: balance;
}

h2,
h3 {
  color: var(--ark-dark);
}

h5 {
  font-weight: 700;
}

* + h2,
* + h3,
* + h4,
* + h5 {
  margin-bottom: 0;
  margin-top: 1em;
}

/* = Containers = */
.bg-cover {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.content {
  padding: 1.5rem;
  background: var(--ark-bg-color);
  border-radius: 0.5rem;
}

.outline-block {
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid var(--ark-primary-dk);
  background-color: var(--ark-bg-color);
}

.border-dashed {
  border-style: dashed !important;
}

.rounded-5 {
  border-radius: 0.5rem !important;
}

.shadow {
  box-shadow: -0.125rem 0.25rem 0.5rem rgb(var(--ark-text-rgb)/0.15) !important;
}

.headshot {
  border: 0.25rem solid var(--ark-primary-dk);
  border-radius: 100vmax;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}
@media (width >= 576px) {
  .headshot {
    width: 75%;
  }
}

/* = Interactive Elements = */
body.processing,
body.processing * {
  cursor: progress !important;
}

.disabled:not(.form-control) {
  color: rgb(var(--ark-faded-rgb)/0.75) !important;
  cursor: not-allowed;
}

.unlock {
  cursor: url(../img/icons/unlock-solid.svg), auto !important;
}

.anchor {
  scroll-margin-top: calc(var(--ark-menu-height) + 0.5rem);
}

.infodump {
  cursor: help;
}

.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-none::-webkit-scrollbar {
  display: none;
}

/* = Responsiveness = */
@media (width <= 576px) {
  .hide-on-mobile {
    display: none;
  }
}

/* = Background Colors = */
.bg-primary {
  background-color: rgb(var(--ark-primary-dk-rgb)/var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  background-color: rgb(var(--ark-secondary-dk-rgb)/var(--bs-bg-opacity)) !important;
}

.bg-dark {
  background-color: rgb(var(--ark-dark-rgb)/var(--bs-bg-opacity)) !important;
}

.bg-light {
  background-color: rgb(var(--ark-primary-lt-rgb)/var(--bs-bg-opacity)) !important;
}

.bg-faded {
  background-color: rgb(var(--ark-faded-rgb)/var(--bs-bg-opacity, 1)) !important;
}

.text-light .bg-primary a,
.bg-secondary a {
  color: var(--ark-bg-color);
}

.bg-primary a:hover,
.bg-secondary a:hover {
  color: rgb(var(--ark-bg-color-rgb)/0.7);
}

/* = Border Colors = */
.border-primary {
  border-color: rgb(var(--ark-primary-dk-rgb)/var(--bs-border-opacity)) !important;
}

/* == Layout == */
/* = Frontend Template = */
.frontend {
  background-color: var(--ark-bg-color);
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: 300px;
}

.hero-banner {
  background-position: top center;
  background-size: cover;
  aspect-ratio: 16/6;
}
.hero-banner h1 {
  text-transform: uppercase;
  color: var(--ark-bg-color);
  text-shadow: -2px -2px 2px rgb(var(--ark-text-rgb)/0.33), 2px 2px 2px rgb(var(--ark-text-rgb)/0.33), -2px 2px 2px rgb(var(--ark-text-rgb)/0.33), 2px -2px 2px rgb(var(--ark-text-rgb)/0.33), -1px -1px 0 var(--ark-text), 1px 1px 0 var(--ark-text), -1px 1px 0 var(--ark-text), 1px -1px 0 var(--ark-text);
}

/* = Backend Template = */
.backend {
  grid-template-columns: 10rem 1fr;
  background-color: rgb(var(--ark-secondary-lt-rgb)/0.5);
}

/* = Landing Page Template = */
.landing-page {
  background-color: var(--ark-bg-color);
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: 300px;
}

/* = Header = */
.site-header {
  background-color: var(--ark-bg-color);
  box-shadow: 0 0.25rem 0.5rem rgb(var(--ark-text-rgb)/0.15);
  z-index: 999;
  top: 0;
}
.site-header a {
  color: var(--ark-dark);
}
.site-header a:hover {
  color: var(--ark-primary-dk);
}
.site-header button {
  color: var(--ark-dark);
}
.site-header .top-nav {
  gap: 1rem;
  top: calc(var(--ark-menu-height) + 1.5rem);
}
.site-header .top-nav-links {
  gap: 1rem;
}
.site-header .top-nav-links .menu-link {
  font-family: var(--ark-header-family);
  font-size: 1.5em;
}
.site-header .brand-logo {
  display: inline-block;
  max-width: 50%;
}
.site-header .brand-logo a {
  gap: 12px;
}
.site-header .brand-logo a img {
  height: 4rem;
}
.site-header .brand-logo .tagline {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  font-family: var(--ark-header-family);
  text-wrap: balance;
  margin-top: 0.25em;
}
.site-header .dropdown-menu {
  right: 0 !important;
  top: 2.5rem !important;
  left: auto !important;
  min-width: -moz-max-content;
  min-width: max-content;
  text-align: right;
  background-color: var(--ark-primary-lt);
  padding: 0.25rem;
  transform: scaleY(0);
}
.site-header .dropdown-menu a {
  color: var(--ark-primary-dk);
  display: flex;
  justify-content: flex-end;
  align-content: center;
  padding: 0.5rem;
}
.site-header .dropdown-menu a:hover {
  background-color: var(--ark-dark);
  color: var(--ark-bg-color);
}
.site-header .dropdown-menu.show {
  transform: scaleY(100%);
}
.site-header .dropdown-toggle {
  font-size: 1.5em;
  display: flex;
  align-items: center;
}
.site-header .dropdown-toggle img {
  width: 2.25rem;
  border-radius: 100vmax;
  border: 4px solid var(--ark-dark);
}
.site-header .dropdown-toggle:hover img {
  border-color: var(--ark-primary-dk);
}

@media only screen and (max-width: 1200px) {
  .site-header .brand-logo {
    max-width: 45%;
  }
  .site-header .brand-logo .tagline {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 992px) {
  .site-header .brand-logo {
    max-width: calc(100% - 10rem);
  }
  .site-header .brand-logo .tagline {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 992px) {
  .site-header .dropdown-menu {
    top: 1rem !important;
    position: relative !important;
  }
}
/* = Main Content = */
.site-content {
  min-height: calc(100svh - 7.5rem);
}

/* = Footer = */
.site-footer {
  line-height: 1.25;
  box-shadow: 0 -0.25rem 0.5rem rgb(var(--ark-text-rgb)/0.15);
}
.site-footer .brand-logo {
  width: 100%;
  height: auto;
  max-height: 7.5rem;
}
.site-footer .social-icons {
  gap: 0.5rem;
}
.site-footer .social-icons a {
  background-color: var(--ark-primary-lt);
}
.site-footer .social-icons img {
  height: 2.5rem;
  width: 2.5rem;
}
.site-footer * + p {
  margin-top: 0.5rem;
}

/* = Sidebar = */
.offcanvas {
  width: 15rem !important;
}

.sidebar-wrapper {
  box-shadow: 0.25rem 0 0.5rem rgb(var(--ark-text-rgb)/0.15);
  width: 100%;
  z-index: 999;
  height: 100%;
}
.sidebar-wrapper .sidebar {
  padding: 1rem;
  top: 0;
}
.sidebar-wrapper .sidebar .active {
  cursor: default;
}
.sidebar-wrapper .sidebar .actions * {
  padding: 0.25rem 0.5rem;
  line-height: 1;
}
.sidebar-wrapper .sidebar .actions * *:first-child {
  padding-top: 0.5rem;
}
.sidebar-wrapper .sidebar .actions * *:last-child {
  padding-bottom: 0.5rem;
}
@media (width >= 992px) {
  .sidebar-wrapper .sidebar {
    position: sticky !important;
  }
}

/* == Components == */
/* = Accordions = */
.accordion-button {
  background-color: var(--ark-secondary-lt);
  color: var(--ark-text);
}

.accordion-button::after {
  content: "▼";
  font-weight: 900;
  background-image: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--ark-secondary-dk);
  color: var(--ark-bg-color);
}

/* = Alerts = */
.alert-wrapper {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.alert-wrapper .alert {
  font-size: 1.5em;
  background-color: var(--bs-success);
  color: var(--ark-bg-color);
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  width: auto;
  box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.3);
}

/* = Buttons = */
.btn {
  font-family: var(--ark-header-family);
  font-weight: 700;
  border-radius: 0.5rem;
  box-shadow: -0.125rem 0.125rem 0.25rem rgb(var(--ark-text-rgb)/0.3) !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  transition: all 500ms ease-out;
}
.btn:focus {
  box-shadow: 0 0 0 0.25rem var(--ark-primary-lt) !important;
}
.btn.disabled {
  pointer-events: auto;
  cursor: not-allowed;
  background-color: var(--ark-faded);
  border-color: var(--ark-faded);
  color: var(--ark-bg-color) !important;
}
.btn.disabled.text-base {
  color: var(--ark-text) !important;
}
.btn-primary {
  background-color: var(--ark-primary-lt);
  border-color: var(--ark-primary-lt);
  color: var(--ark-dark);
}
.btn-primary:focus {
  background-color: var(--ark-primary-lt);
  border-color: var(--ark-primary-dk);
  color: var(--ark-dark);
}
.btn-primary:hover, .btn-primary:active {
  background-color: var(--ark-primary-dk);
  border-color: var(--ark-primary-dk);
  color: var(--ark-bg-color);
}
.btn-secondary {
  background-color: var(--ark-secondary-lt);
  border-color: var(--ark-secondary-lt);
  color: var(--ark-dark);
}
.btn-secondary:focus {
  background-color: var(--ark-secondary-lt);
  border-color: var(--ark-secondary-dk);
  color: var(--ark-dark);
}
.btn-secondary:hover, .btn-secondary:active {
  background-color: var(--ark-secondary-dk);
  border-color: var(--ark-secondary-dk);
  color: var(--ark-bg-color);
}
.btn-dark:hover {
  background-color: var(--ark-text);
  border-color: var(--ark-text);
}
.btn-light {
  color: var(--ark-dark);
  background-color: var(--ark-bg-color);
  border-color: var(--ark-bg-color);
}
.btn-light:hover {
  color: var(--ark-primary-dk);
}
.btn-none {
  color: var(--ark-dark);
  border: none;
  background: transparent;
  padding: 0;
  display: inline-block;
}
.btn-none:hover {
  color: var(--ark-primary-dk);
}
.btn-pill {
  border-radius: 100vmax;
}

.scroll-to-top {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  width: 4rem;
  height: 4rem;
  z-index: 99;
  background-color: rgb(var(--ark-dark-rgb)/0.5);
  border-radius: 100vmax;
  animation-fill-mode: forwards !important;
  -webkit-mask-image: url("../img/icons/icon-top-to-line-inverted.svg");
  mask-image: url("../img/icons/icon-top-to-line-inverted.svg");
  -webkit-mask-origin: padding-box;
  mask-origin: padding-box;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: background-color 1s ease-in-out;
}
.scroll-to-top:hover {
  background-color: var(--ark-dark);
}
.scroll-to-top.fadeInAnimate {
  animation: fadeIn 2s;
}
.scroll-to-top.fadeOutAnimate {
  animation: fadeOut 2s;
}

/* = Checklist = */
ul.checklist {
  list-style: none;
  padding: 0;
}
ul.checklist li {
  display: flex;
  line-height: 1.25;
}
ul.checklist li + li {
  margin-top: 0.75em;
}
ul.checklist li::before {
  font-family: "FontAwesome";
  content: "\f111";
  padding-right: 0.5rem;
  color: var(--ark-faded);
}
ul.checklist li.done span {
  text-decoration: line-through;
}
ul.checklist li.done::before {
  content: "\f058";
  color: green;
}
ul.checklist li.pending::before {
  content: "\f057";
}

dd .checklist li {
  line-height: 1.5;
}
dd .checklist li + li {
  margin-top: 0.25em;
}

/* = Data Cards = */
.data-card {
  border-radius: 0.5rem;
}
@media (width >= 768px) {
  .data-card .dl-col-2 {
    grid-column-start: 2;
  }
}
@media (width <= 768px) {
  .data-card .dl-col-2 {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
.data-card .card-body {
  padding: 0.375rem 0.75rem;
}
.data-card .card-body p + p {
  margin-top: 0.5em;
}
.data-card .meta {
  padding: 0.375rem 0.75rem 0;
}
@media (width >= 768px) {
  .data-card .meta {
    opacity: 0;
  }
}
@media (width >= 768px) {
  .data-card .meta:hover {
    opacity: 1;
  }
}

/* = Forms = */
.form-control:disabled, .form-control[readonly] {
  background-color: rgb(var(--ark-faded-rgb)/0.33) !important;
}
.form-control.w-4 {
  width: 4rem;
}
.form-control.w-6 {
  width: 6rem;
}
.form-control.w-8 {
  width: 8rem;
}
.form-control.w-12 {
  width: 12rem;
}
.form-control.w-16 {
  width: 16rem;
}
.form-control.w-20 {
  width: 20rem;
}
.form-control.w-24 {
  width: 24rem;
}

.form-label {
  font-weight: 700;
}
.form-label.required::after {
  content: "*";
  color: red;
}

.form-control,
.form-select,
.selectize-control .selectize-input,
.form-check-input,
.ck-editor,
.ck-editor__editable {
  border-color: var(--ark-primary-lt) !important;
  background-color: rgb(var(--ark-primary-lt-rgb)/0.25) !important;
  border-radius: 0.5rem;
}

.form-control:focus,
.form-select:focus,
.selectize-input.focus,
.form-check-input:focus,
input[type=submit]:active:focus,
.ck-editor:has(.ck-focused),
.ck-editor__editable.ck-focused {
  border-color: var(--ark-primary-dk) !important;
  box-shadow: 0 0 0 0.25rem var(--ark-primary-lt) !important;
  background-color: var(--ark-bg-color) !important;
}

.ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-toolbar {
  background-color: rgb(var(--ark-faded-rgb)/0.66);
}

.ck-editor__editable {
  box-shadow: none !important;
  padding: 0.375rem 0.75rem !important;
}
.ck-editor__editable.ck-rounded-corners {
  border-radius: 0 0 0.5rem 0.5rem !important;
}

form .ck.ck-editor__editable_inline > :first-child {
  margin-top: 0;
}
form .ck.ck-editor__editable_inline > :last-child {
  margin-bottom: 0;
}

.ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-toolbar {
  border-radius: 0.5rem 0.5rem 0 0 !important;
}

.ck-editor:has(.ck-focused) .ck.ck-editor__top .ck-sticky-panel .ck-toolbar {
  border-color: var(--ark-primary-dk);
}

form .ck.ck-button.ck-on,
a.ck.ck-button.ck-on {
  background-color: var(--ark-primary-dk);
  color: var(--ark-bg-color);
}
form .ck.ck-button.ck-on:not(.ck-disabled):hover,
a.ck.ck-button.ck-on:not(.ck-disabled):hover {
  background-color: var(--ark-primary-lt);
  color: var(--ark-dark);
}

.ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content {
  border: none !important;
}

.ck.ck-toolbar .ck.ck-toolbar__separator {
  background-color: var(--ck-color-text) !important;
}

.ck-balloon-panel.ck-powered-by-balloon .ck-powered-by {
  display: none;
}

textarea.form-control {
  min-height: inherit;
  height: auto !important;
}

.form-check-input:checked {
  background-color: var(--ark-primary-dk) !important;
  border-color: var(--ark-primary-dk) !important;
}

.selectize-control.multi .selectize-input > .tag {
  background-color: var(--ark-secondary-lt);
  color: var(--ark-dark);
  font-family: var(--ark-body-family);
  font-weight: 400;
  box-shadow: -0.125rem 0.125rem 0.25rem rgb(var(--ark-text-rgb)/0.15) !important;
  margin: 0 0.25rem 0 0;
}

.selectize-dropdown,
.ui-autocomplete {
  border-radius: 0.5rem;
  background-color: var(--ark-bg-color) !important;
  padding: 0.375rem 0.75rem !important;
  z-index: 999 !important;
  box-shadow: 0 0.25rem 1rem rgb(var(--ark-text-rgb)/0.3) !important;
}

.selectize-dropdown .selectize-dropdown-content {
  padding: 0 !important;
}

.selectize-dropdown .selectize-dropdown-content .option:hover,
.ui-autocomplete .ui-menu-item div:hover {
  background-color: var(--ark-primary-lt);
  margin: 0 !important;
}

.select2-dropdown {
  max-height: 15rem;
  overflow-y: scroll !important;
}

.preventive-autocomplete .ui-autocomplete .ui-menu-item div:hover {
  background-color: rgb(var(--bs-danger-rgb), 0.5);
}

.form .input {
  position: relative;
}

.date .form-control {
  max-width: 7.5rem;
}
.date .due-date {
  max-width: none;
  width: 7.25rem;
}
@media (width >= 768px) {
  .date.w-sm-8 {
    width: 8rem;
  }
}

.form .error-message,
label.error {
  position: absolute;
  top: 3.5em;
  z-index: 9;
  display: block;
  padding: 0.125rem 0.25rem;
  border: 1px solid currentcolor;
  color: red;
  background-color: #ffbbbb;
  border-radius: 0.25rem;
  text-align: left;
  font-size: 0.8em;
}

.form .error-message {
  width: 100%;
  order: 3;
  border-radius: 0.25rem !important;
  text-wrap: pretty;
}
.form .error-message ul {
  list-style: none;
  padding: 0;
}
.form .error-message::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0.5rem;
  z-index: 1;
  width: 0.5rem;
  height: 0.5rem;
  border: 0.5rem solid transparent;
  border-bottom-color: red;
}
.form .error-message::after {
  content: "";
  position: absolute;
  top: calc((1rem - 1px) * -1);
  left: 0.5rem;
  z-index: 2;
  width: 0.5rem;
  height: 0.5rem;
  border: 0.5rem solid transparent;
  border-bottom-color: #ffbbbb;
}

label.error::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0.5rem;
  z-index: 1;
  width: 0.5rem;
  height: 0.5rem;
  border: 0.5rem solid transparent;
  border-bottom-color: red;
}
label.error::after {
  content: "";
  position: absolute;
  top: calc((1rem - 1px) * -1);
  left: 0.5rem;
  z-index: 2;
  width: 0.5rem;
  height: 0.5rem;
  border: 0.5rem solid transparent;
  border-bottom-color: #ffbbbb;
}

.input-group .btn:not(:focus) {
  box-shadow: none !important;
}
.input-group-text {
  border-radius: 0.5rem;
}

.color-box {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #eee;
  flex-wrap: wrap;
}
.color-box label:first-child {
  padding-left: 0.5rem;
}
.color-box .color-picker {
  width: 90px;
  box-sizing: content-box;
}

.form-color-picker {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid var(--ark-primary-lt);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-color-picker:focus {
  border-color: var(--ark-primary-dk);
  box-shadow: 0 0 0 0.25rem var(--ark-primary-lt);
  outline: 0;
}

.cp-color-picker {
  border-radius: 0.5rem !important;
  background-color: var(--ark-primary-lt) !important;
  padding: 0.25rem 0 0 0.25rem !important;
  display: flex;
  flex-direction: row-reverse;
  gap: 0.25rem;
  width: 128px !important;
  box-shadow: 0 2px 0.25rem 0 rgb(var(--ark-text-rgb)/0.6);
}
.cp-color-picker.right {
  border-top-left-radius: 0 !important;
}
.cp-color-picker.left {
  border-top-right-radius: 0 !important;
}

.cp-z-slider {
  margin-left: 0 !important;
  width: 1rem !important;
  height: 7.5rem !important;
  border-radius: 0 0.25rem 0.25rem 0;
}

.cp-xy-slider {
  margin-bottom: 0.25rem !important;
  width: 6.5rem !important;
  height: 7.5rem !important;
  border-radius: 0.25rem 0 0 0.25rem;
}

.ui-autocomplete .autocomplete-upload {
  display: block;
  width: 100%;
  text-align: left;
  font-style: italic;
  padding: 3px 1em 3px 0.4em;
}
.ui-autocomplete .autocomplete-upload:hover {
  background-color: var(--ark-secondary-lt);
}

option[data-default-account=false] {
  color: var(--ark-faded);
  font-style: italic;
}

.submit-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

/* = reCAPTCHA Disclaimer = */
.disclaimer {
  opacity: 0.5;
}
.disclaimer:hover {
  opacity: 1;
  cursor: default;
}

.grecaptcha-badge {
  display: none !important;
}

/* = Icons = */
svg.icon {
  fill: currentcolor;
}

.icon {
  font-size: 1.5em;
}
.icon-sm {
  font-size: 1em;
}
.icon-lg {
  font-size: 2em;
}
.icon-xl {
  font-size: 3em;
}
.icon.handle:hover {
  cursor: grabbing;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}
.social-icons a {
  display: block;
  border-radius: 100vmax;
  background-color: currentColor;
}
.social-icons a:hover {
  color: var(--ark-bg-color) !important;
}
.social-icons a.fb:hover {
  background-color: #1877f2;
}
.social-icons a.li:hover {
  background-color: #0a66c2;
}
.social-icons a.ig:hover {
  background-color: #c32aa3;
}
.social-icons a.tt:hover {
  background-color: #010101;
}
.social-icons a.yt:hover {
  background-color: #ff0000;
}
.social-icons a.tx:hover {
  background-color: #000000;
}
.social-icons a.gt:hover {
  background-color: #e60000;
}
.social-icons a.ma:hover {
  background-color: #6364ff;
}
.social-icons img {
  height: 5rem;
  width: 5rem;
}

.shopping-cart-icon {
  position: relative;
  padding-right: 0.5rem;
}
.shopping-cart-icon span {
  height: 1rem;
  width: 1rem;
  font-size: 0.5em;
  position: absolute;
  top: -0.5rem;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--ark-primary-dk);
  color: var(--ark-bg-color);
  border-radius: 100vmax;
  pointer-events: none;
}
.shopping-cart-icon:hover span {
  background-color: var(--ark-dark);
}

.attachments .icon-container {
  position: relative;
}
.attachments .icon-container .delete-attachment {
  position: absolute;
  top: 0;
  color: var(--ark-primary-dk);
  opacity: 0;
  z-index: 3;
  transition: all 500ms;
}
.attachments .icon-container:hover [class^=file] img {
  opacity: 0.5 !important;
}
.attachments .icon-container:hover [class^=file]::after {
  opacity: 1;
}
.attachments .icon-container:hover .delete-attachment {
  opacity: 1;
}
.attachments .icon-container:has([class*=sm]) {
  height: 3rem;
}
.attachments .icon-container:has([class*=sm]) .delete-attachment {
  font-size: 0.99rem;
  right: 0.15rem;
}
.attachments .icon-container:has([class*=md]) {
  height: 5rem;
}
.attachments .icon-container:has([class*=md]) .delete-attachment {
  font-size: 1.65rem;
  right: 0.25rem;
}
.attachments .icon-container:has([class*=lg]) {
  height: 8rem;
}
.attachments .icon-container:has([class*=lg]) .delete-attachment {
  font-size: 2.64rem;
  right: 0.4rem;
}
.attachments .icon-container:has([class*=xl]) {
  height: 16rem;
}
.attachments .icon-container:has([class*=xl]) .delete-attachment {
  font-size: 5.28rem;
  right: 0.8rem;
}
.attachments .icon-container [class^=file] {
  display: inline-block;
}
.attachments .icon-container [class^=file] img {
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: all 500ms;
}
.attachments .icon-container [class^=file]::after {
  transition: all 500ms;
  font-family: "Font Awesome 7 Free";
  line-height: 1;
  color: var(--ark-primary-dk);
  position: absolute;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}
.attachments .icon-container [class^=file].comments::after {
  content: "\f27a";
}
.attachments .icon-container [class^=file].tasks::after {
  content: "\f46d";
}
.attachments .icon-container [class^=file].tickets::after {
  content: "\f145";
}
.attachments .icon-container [class^=file]:is([class*=sm])::after {
  bottom: 0.3rem;
  left: 0.3rem;
}
.attachments .icon-container [class^=file][class*=sm] {
  font-size: 0.99rem;
}
.attachments .icon-container [class^=file][class*=sm][class*=image] {
  width: 3rem;
  height: 3rem;
  padding: 0 1px 1px;
}
.attachments .icon-container [class^=file][class*=sm][class*=image] img {
  background-color: var(--ark-bg-color);
  align-self: flex-start;
  justify-self: center;
  border-radius: 16.6666666667%;
  -o-object-fit: cover;
     object-fit: cover;
  width: calc(3rem - 2px);
  height: calc(3rem - 1px);
  box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.8);
}
.attachments .icon-container [class^=file]:is([class*=md])::after {
  bottom: 0.5rem;
  left: 0.5rem;
}
.attachments .icon-container [class^=file][class*=md] {
  font-size: 1.65rem;
}
.attachments .icon-container [class^=file][class*=md][class*=image] {
  width: 5rem;
  height: 5rem;
  padding: 0 2px 2px;
}
.attachments .icon-container [class^=file][class*=md][class*=image] img {
  background-color: var(--ark-bg-color);
  align-self: flex-start;
  justify-self: center;
  border-radius: 16.6666666667%;
  -o-object-fit: cover;
     object-fit: cover;
  width: calc(5rem - 4px);
  height: calc(5rem - 2px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
.attachments .icon-container [class^=file]:is([class*=lg])::after {
  bottom: 0.8rem;
  left: 0.8rem;
}
.attachments .icon-container [class^=file][class*=lg] {
  font-size: 2.64rem;
}
.attachments .icon-container [class^=file][class*=lg][class*=image] {
  width: 8rem;
  height: 8rem;
  padding: 0 3px 4px;
}
.attachments .icon-container [class^=file][class*=lg][class*=image] img {
  background-color: var(--ark-bg-color);
  align-self: flex-start;
  justify-self: center;
  border-radius: 16.6666666667%;
  -o-object-fit: cover;
     object-fit: cover;
  width: calc(8rem - 6px);
  height: calc(8rem - 4px);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.8);
}
.attachments .icon-container [class^=file]:is([class*=xl])::after {
  bottom: 1.6rem;
  left: 1.6rem;
}
.attachments .icon-container [class^=file][class*=xl] {
  font-size: 5.28rem;
}
.attachments .icon-container [class^=file][class*=xl][class*=image] {
  width: 16rem;
  height: 16rem;
  padding: 0 5px 7px;
}
.attachments .icon-container [class^=file][class*=xl][class*=image] img {
  background-color: var(--ark-bg-color);
  align-self: flex-start;
  justify-self: center;
  border-radius: 16.6666666667%;
  -o-object-fit: cover;
     object-fit: cover;
  width: calc(16rem - 10px);
  height: calc(16rem - 7px);
  box-shadow: 0 3.5px 5px rgba(0, 0, 0, 0.8);
}

/* = Login Dropdown = */
.login-dropdown {
  right: 2rem;
  top: 2rem;
}
@media (width <= 768px) {
  .login-dropdown {
    right: 1.5rem;
    top: 1.5rem;
  }
}
.login-dropdown .dropdown-toggle {
  font-size: 1.5em;
  align-items: center;
}
.login-dropdown .dropdown-toggle img {
  width: 2.25rem;
  border-radius: 100vmax;
  border: 4px solid var(--ark-bg-color);
}
@media (width >= 992px) {
  .login-dropdown .dropdown-toggle {
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  .login-dropdown .dropdown-toggle:hover {
    opacity: 1;
  }
}
.login-dropdown .dropdown-menu {
  right: 0 !important;
  left: auto !important;
  min-width: -moz-max-content;
  min-width: max-content;
  text-align: right;
  transform: scaleY(0);
}
.login-dropdown .dropdown-menu a {
  color: var(--ark-primary-dk);
  display: flex;
  justify-content: flex-end;
  align-content: center;
  padding: 0.5rem;
}
.login-dropdown .dropdown-menu a:hover {
  background-color: var(--ark-dark);
  color: var(--ark-bg-color);
}
.login-dropdown .dropdown-menu.profile {
  top: 1rem;
}
@media (width >= 992px) {
  .login-dropdown .dropdown-menu.profile {
    top: 3rem;
  }
}
@media (width <= 992px) {
  .login-dropdown .dropdown-menu.profile {
    position: relative !important;
  }
}
.login-dropdown .dropdown-menu.login {
  min-width: 20rem !important;
}
.login-dropdown .dropdown-menu.show {
  transform: scaleY(100%);
}
@media (width <= 992px) {
  .login-dropdown .dropdown-menu {
    min-width: 16rem !important;
    max-width: 18rem !important;
    top: -3.5rem !important;
  }
}

/* = Notes = */
.notes > * + * {
  margin: 1rem 0 0;
}
.notes > form:first-of-type {
  margin-top: 0;
}
.notes blockquote {
  border: 1px solid rgb(var(--ark-primary-dk-rgb)/0.33);
  border-radius: 0.5rem;
  padding: 2rem 0.75rem 0.375rem;
  position: relative;
}
.notes blockquote .actions {
  visibility: hidden;
}
.notes blockquote .actions a,
.notes blockquote .actions button {
  margin-left: 0.5rem;
}
.notes blockquote:hover .actions {
  visibility: visible;
}
.notes .meta,
.notes .author {
  display: flex;
}
.notes .meta {
  padding: 0.375rem 0.75rem 0;
  justify-content: space-between;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
}
.notes .author {
  justify-content: flex-end;
  gap: 0.25rem;
  opacity: 0.66;
}
.notes .author:hover {
  opacity: 1;
}
.notes .notes-textarea {
  padding: 2rem 0.75rem 0.375rem;
  position: relative;
  z-index: 0;
  overflow-y: hidden;
}
.notes form .meta {
  border-radius: 0.25rem 0.25rem 0 0;
  z-index: 2;
  overflow: hidden;
}
.notes form:focus-within .meta::after {
  display: none;
}
.notes form .meta::before, .notes form .meta::after {
  content: "";
  position: absolute;
  inset: 0;
}
.notes form .meta::before {
  z-index: -1;
  /*background: -moz-linear-gradient(
      top,
      rgb($bg-color-rgb / 1) 0%,
      rgb($bg-color-rgb / 1) 75%,
      rgb($bg-color-rgb / 0) 100%
  );
  background: -webkit-linear-gradient(
      top,
      rgb($bg-color-rgb / 1) 0%,
      rgb($bg-color-rgb / 1) 75%,
      rgb($bg-color-rgb / 0) 100%
  );
  background: -ms-linear-gradient(
      top,
      rgb($bg-color-rgb / 1) 0%,
      rgb($bg-color-rgb / 1) 75%,
      rgb($bg-color-rgb / 0) 100%
  );
  background: linear-gradient(
      to bottom,
      rgb($bg-color-rgb / 1) 0%,
      rgb($bg-color-rgb / 1) 75%,
      rgb($bg-color-rgb / 0) 100%
  );*/
}
.notes form .meta::after {
  --_color: rgb($primary-dark-rgb / 0.1);
  z-index: 1;
  /*background: -moz-linear-gradient(
      top,
      var(--_color) 0%,
      var(--_color) 75%,
      rgb($bg-color-rgb / 0) 100%
  );
  background: -webkit-linear-gradient(
      top,
      var(--_color) 0%,
      var(--_color) 75%,
      rgb($bg-color-rgb / 0) 100%
  );
  background: -ms-linear-gradient(
      top,
      var(--_color) 0%,
      var(--_color) 75%,
      rgb($bg-color-rgb / 0) 100%
  );
  background: linear-gradient(
      to bottom,
      var(--_color) 0%,
      var(--_color) 75%,
      rgb($bg-color-rgb / 0) 100%
  );*/
}

/* = Pagination = */
.page-item.active .page-link {
  color: var(--ark-bg-color);
  background-color: var(--ark-primary-dk);
  border-color: var(--ark-primary-dk);
}
.page-item.disabled .page-link {
  color: var(--ark-faded);
}

.page-link {
  color: var(--ark-primary-dk);
  background-color: var(--ark-bg-color);
  border-color: var(--ark-primary-lt);
}
.page-link:hover, .page-link:focus {
  color: var(--ark-primary-dk);
  background-color: var(--ark-primary-lt);
}
.page-link:hover {
  border-color: var(--ark-primary-lt);
}
.page-link:focus {
  border-color: var(--ark-primary-dk);
  box-shadow: 0 0 0 0.25rem var(--ark-primary-lt) !important;
}

/* Tables */
.table-responsive {
  margin-bottom: 1rem;
}

.table {
  margin-bottom: 0;
}
.table th {
  vertical-align: middle;
}
.table th:not(:first-child) {
  text-align: center;
}
.table th.adaptable {
  width: 1px;
  white-space: nowrap;
}
.table td {
  vertical-align: middle;
}
.table td:not(:first-child) {
  text-align: center;
}
.table td.adaptable {
  width: 1px;
  white-space: nowrap;
}
.table td.avatar {
  width: 5rem;
  padding: 0;
}
.table td.avatar img {
  width: 5rem;
  height: auto;
}
.table td.hero-shot {
  width: 8rem;
  text-align: center;
  text-wrap: balance;
  padding: 0;
}
.table td.hero-shot img {
  width: 100%;
  height: auto;
}
.table .email {
  font-size: 0.8em;
  word-break: break-all;
  width: 15rem;
}
.table .file {
  font-size: 0.8em;
  word-break: break-all;
  width: 15rem;
}
.table .tags {
  padding-block: 0.25rem;
}
.table .actions a,
.table .actions button,
.table .actions span {
  padding: 0;
  margin: 0.125rem 0.25rem;
}
.table .actions .icon {
  font-size: 1.5em;
}
.table .actions .d-grid {
  grid-template-columns: repeat(var(--_cols, 1), 1fr);
  gap: 0.5rem;
}
.table .actions .d-grid > * {
  grid-column: auto/span 2;
}
.table .actions:has(.g-col-2) {
  width: 5.5rem;
}
.table .actions:has(.g-col-3) {
  width: 8rem;
}
.table .actions.actions_2x2 {
  min-width: 5.5rem;
}
.table .actions .d-grid.g-col-2 {
  --_cols: 4;
}
.table .actions .d-grid.g-col-3 {
  --_cols: 6;
}
.table .actions .d-grid .o-1 {
  grid-column-start: 2;
}
.table .actions .d-grid .o-2 {
  grid-column-start: 3;
}
.table .actions .d-grid .o-3 {
  grid-column-start: 4;
}
.table .actions .d-grid a,
.table .actions .d-grid button,
.table .actions .d-grid span {
  margin: 0;
}
.table .featured td {
  position: relative;
  z-index: 9;
}
.table .featured td::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgb(var(--ark-secondary-dk-rgb)/0.2);
  z-index: -1;
}

.clients .table td {
  height: 4.5rem;
}

.inputs-row td {
  padding: 0.25rem 0 0.25rem 0.25rem;
}

/* = Threads = */
.thread > * + * {
  margin-top: 0.75rem;
}
.thread .card {
  border-radius: 0.5rem;
}
.thread .card .card-head a {
  display: inline-flex;
  align-items: center;
}

/* == Utilities == */
/* = Animations = */
.fadeOut {
  animation: fadeOut 1s;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.process-spinner {
  display: none;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border: 0.25rem solid rgb(var(--ark-primary-dk-rgb)/0.5);
  border-top: 0.25rem solid var(--ark-primary-dk);
  border-radius: 50%;
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 1.2s;
  -webkit-animation-name: rotate;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-transition-property: -moz-transform;
  -moz-animation-name: rotate;
  -moz-animation-duration: 1.2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  transition-property: transform;
  transition-duration: 1.2s;
  animation-name: rotate;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* = Grid = */
.g-col {
  grid-template-columns: repeat(var(--g-cols, 1), 1fr);
}

.g-col-2 {
  --g-cols: 2;
}

.colspan-2 {
  grid-column: span 2;
}

.rowspan-2 {
  grid-row: span 2;
}

.g-col-3 {
  --g-cols: 3;
}

.colspan-3 {
  grid-column: span 3;
}

.rowspan-3 {
  grid-row: span 3;
}

.g-col-4 {
  --g-cols: 4;
}

.colspan-4 {
  grid-column: span 4;
}

.rowspan-4 {
  grid-row: span 4;
}

.g-col-5 {
  --g-cols: 5;
}

.colspan-5 {
  grid-column: span 5;
}

.rowspan-5 {
  grid-row: span 5;
}

/* = Sizing = */
.w-33 {
  width: 33.3333333333%;
}

.ratio-2x1 {
  --bs-aspect-ratio: 50%;
}

/* == Sections == */
/* = Homepage Landing = */
.fullscreen-hero {
  background-size: cover;
  background-position: center;
  min-height: 100svh;
}
.fullscreen-hero .branding {
  left: 2rem;
  top: 2rem;
}
@media (width <= 768px) {
  .fullscreen-hero .branding {
    display: none;
  }
}

.home-titles {
  text-shadow: 2px 2px 1px var(--ark-dark), -2px 2px 1px var(--ark-dark), -2px -2px 1px var(--ark-dark), 2px -2px 1px var(--ark-dark);
}
.home-titles h1,
.home-titles h2 {
  text-align: center;
  color: var(--ark-bg-color);
}
.home-titles h1 {
  margin: 0;
  font-size: 10em;
  line-height: 1;
}
@media (width <= 992px) {
  .home-titles h1 {
    font-size: 6em;
  }
}
.home-titles h2 {
  margin-top: 0.5em;
}
.home-titles a {
  font-weight: 900;
  color: var(--ark-bg-color);
}
.home-titles a:hover {
  color: var(--ark-secondary-lt);
}

.dashboard-masonry .add-leads a {
  width: 50%;
  margin: 0 auto;
}
@media (width <= 1200px) {
  .dashboard-masonry .add-leads a {
    width: 100%;
  }
}
@media (width <= 992px) {
  .dashboard-masonry .add-leads a {
    width: 50%;
  }
}
@media (width <= 768px) {
  .dashboard-masonry .add-leads a {
    width: 100%;
  }
}

/* = Lists = */
/*.index .search-form {
    width: 100%;
}

@media (min-width: 992px) {
    .index .search-form {
        width: 50%;
    }
} */
@media (width <= 768px) {
  .index .search-form {
    flex-grow: 1;
  }
}
.index .counter {
  position: absolute;
  right: -0.25rem;
  bottom: 0;
  display: inline-flex;
  height: 1rem;
  padding: 0 0.33rem !important;
  justify-content: center;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 700;
  border-radius: 0.5rem;
  pointer-events: none;
}

@media (width >= 992px) {
  .leads .search-form {
    max-width: 50%;
  }
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.tasks .nav-tabs {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  bottom: -2px;
}
.tasks .nav-tabs.is-employee {
  grid-template-columns: repeat(4, 1fr);
}
.tasks .nav-tabs .nav-item .nav-link {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  color: var(--ark-text);
  background-color: rgb(var(--ark-faded-rgb)/0.5);
  border: 1px solid var(--ark-faded);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  font-weight: 700;
}
.tasks .nav-tabs .nav-item .nav-link:hover {
  border-color: var(--ark-faded);
  background-color: var(--ark-secondary-lt);
}
.tasks .nav-tabs .nav-item .nav-link.active {
  background-color: var(--ark-bg-color);
  border: 1px solid var(--ark-faded);
  border-bottom: 1px solid transparent;
  cursor: default;
}
.tasks .tab-content {
  background-color: var(--ark-bg-color);
  border: 1px solid var(--ark-faded);
  border-top: none;
  z-index: 2;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.tasks .tab-content .tracked-time {
  grid-template-columns: auto 1fr;
}
.tasks .tab-content .tracked-time dd {
  grid-column: span 1;
}
.tasks .tab-content .tracked-time .expand {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.tasks .tab-content .tracked-time .expand::after {
  content: "\f078";
  font-family: "Font Awesome 7 Free";
}
.tasks .tab-content .tracked-time .expand[aria-expanded=true]::after {
  content: "\f077";
}
.tasks.index > .actions .dropdown-menu {
  background-color: var(--ark-secondary-lt);
  margin-top: 0;
  width: 100%;
  min-width: auto;
  right: 0;
  left: auto;
  text-align: end;
}

.add-attachment {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px dashed currentColor;
  width: calc(3rem - 2px);
  height: calc(3rem - 1px);
  border-radius: 0.5rem;
  background-color: transparent;
}

/* = Time Tracker = */
.time-tracker-card .nav-tabs {
  grid-template-columns: auto repeat(7, 1fr) auto;
}
.time-tracker-card .nav-tabs .nav-link {
  color: var(--ark-primary-dk);
}
.time-tracker-card .nav-tabs .nav-link:hover {
  color: var(--ark-dark);
}
.time-tracker-card .tab-content {
  min-height: calc(100svh - (var(--ark-menu-height) + 13.5rem));
}
.time-tracker-card .tab-content blockquote {
  margin: 0;
  padding-block: 0.25rem;
}
.time-tracker-card .tab-content blockquote a {
  font-weight: 300;
  color: var(--ark-primary-dk);
  flex-grow: 0;
}
.time-tracker-card .tab-content blockquote a:hover {
  text-decoration: underline;
}
.time-tracker-card .tab-content blockquote[data-status=active] {
  background-color: rgb(var(--ark-primary-dk-rgb)/0.1);
}
.time-tracker-card .tab-content blockquote + blockquote {
  margin-top: 1rem;
}
.time-tracker-card .tab-content blockquote * + p {
  margin-top: 0.25em;
}

.hours blockquote {
  margin: 0;
  padding-block: 0.25rem;
}
.hours blockquote * + p {
  margin-top: 0.25em;
}

.total-hours .btn {
  align-items: stretch;
  padding: 0;
}
.total-hours .btn .range {
  font-weight: 700;
  flex-grow: 1;
  padding: 0.5rem 0.75rem;
  text-align: left;
}
.total-hours .btn .count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background-color: var(--ark-bg-color);
  border-color: var(--ark-primary-lt) !important;
  width: 4rem;
  transition: border 500ms ease-out;
}
.total-hours .btn:hover .count {
  border-color: var(--ark-primary-dk) !important;
}
.total-hours .btn-lg .range {
  padding: 0.75rem 1rem;
}
.total-hours .btn-lg .count {
  width: 5.5rem;
}

/* = Tickets = */
.ticket-reply .btn::after,
.ticket-reply .btn::before {
  font-size: 1.5em;
}
.ticket-reply .btn[aria-expanded=false]::before,
.ticket-reply .btn[aria-expanded=false]::after {
  content: "▼";
}
.ticket-reply .btn[aria-expanded=true]::before,
.ticket-reply .btn[aria-expanded=true]::after {
  content: "▲";
}

.ticket .countdown {
  padding: 0.375rem;
}
.ticket .countdown-counting {
  font-size: 2em;
}

.tickets-notes.notes .meta {
  top: auto;
  bottom: 0.25rem;
}

/* = Documents = */
.document .docu-wrapper {
  padding: 1rem;
  position: relative;
  display: none;
}
.document .docu-title {
  width: auto;
  font-size: 0.8em;
  line-height: 1;
  font-weight: 700;
  position: absolute;
  top: -0.5em;
  left: 1.5rem;
  padding: 0 0.5rem;
  margin-bottom: 0;
  color: var(--ark-primary-dk);
  background-color: var(--ark-bg-color);
  z-index: 9;
}
.document .document-terms {
  padding: 0.75rem 0;
}
.document .document-terms > div {
  padding: 0.75rem 1.5rem;
  aspect-ratio: 16/9;
  overflow-y: scroll;
  position: relative;
}
.document .document-terms::before, .document .document-terms::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5rem;
  pointer-events: none;
  z-index: 9;
}
.document .document-terms::before {
  border-radius: 1.5rem 1.5rem 0 0;
  top: 0.75rem;
  background: linear-gradient(to bottom, rgb(var(--ark-bg-color-rgb)/1) 0%, rgb(var(--ark-bg-color-rgb)/0) 100%);
}
.document .document-terms::after {
  border-radius: 0 0 1.5rem 1.5rem;
  bottom: 0.75rem;
  background: linear-gradient(to bottom, rgb(var(--ark-bg-color-rgb)/0) 0%, rgb(var(--ark-bg-color-rgb)/1) 100%);
}
.document .conditional-data {
  display: none;
}
.document .signature {
  max-width: 15rem;
}

.documents-related .signature {
  max-width: 25rem;
}

.signature {
  position: relative;
  width: 100%;
  box-shadow: inset 0 0 0.5rem rgb(var(--ark-primary-dk-rgb)/0.5);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 5/2;
}
.signature:not(.disabled-signature):hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/icons/icon-pen-fancy-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgb(var(--ark-text-rgb)/0.6);
  background-size: 25%;
  z-index: 9;
}

.signature-modal {
  display: block !important;
  visibility: hidden;
}

.drawing-board {
  width: 100%;
  max-width: 32rem;
  aspect-ratio: 5/2;
  box-shadow: inset 0 0 0.5rem rgb(var(--ark-primary-dk-rgb)/0.5);
}
.drawing-board canvas {
  touch-action: none;
  display: block;
  aspect-ratio: 5/2;
}

/* = Products = */
.products .masonry h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 68px;
}
.products .masonry h3 a {
  text-wrap: balance;
}
.products .masonry .summary {
  display: flex;
  justify-content: center;
  align-items: center;
  text-wrap: balance;
  min-height: 72px;
}

.online-order .product-name {
  line-height: 1;
}

/* = Customer Vault = */
.vault-profile .credit-cards {
  list-style: none;
  padding: 0 1.5rem;
}
.vault-profile .credit-cards .card,
.vault-profile .credit-cards .add-card {
  padding: 0.5rem;
  border-radius: 1rem;
}
.vault-profile .credit-cards .card {
  border: 1px solid var(--ark-primary-dk);
  margin-bottom: 1rem;
}
.vault-profile .credit-cards .card.primary {
  outline: 2px solid var(--ark-primary-dk);
}
.vault-profile .credit-cards .add-card {
  background-color: var(--ark-dark);
  border: 1px solid var(--ark-dark);
  color: var(--ark-bg-color);
  box-shadow: inset -0.125rem 0.125rem 0.25rem rgb(var(--ark-text-rgb)/0.3);
}
.vault-profile .credit-cards .card-img {
  display: inline-block;
  width: auto;
  height: 3em;
}
.vault-profile .credit-cards .actions {
  text-align: right;
}

.revere-payment-form iframe {
  min-height: 38px;
}

/* = Views = */
.view dl,
.form dl {
  display: grid;
  gap: 0.5rem 1.5rem;
  margin: 0;
}
.view dl h3,
.form dl h3 {
  grid-column: 1/-1;
}
@media (width >= 768px) {
  .view dl,
  .form dl {
    grid-template-columns: auto 1fr auto 1fr;
  }
}
.view dt,
.form dt {
  font-size: 1.15em;
}
@media (width >= 768px) {
  .view dd:not(.half),
  .form dd:not(.half) {
    grid-column: span 3;
  }
}
.view * + h3,
.form * + h3 {
  margin-top: 0.5em;
}/*# sourceMappingURL=styles.css.map */