@charset "UTF-8";
/* CSS Document */
/* == Base == */
/* = Elements = */
html {
  font-size: 16px;
  scrollbar-gutter: stable;
}

body {
  color: var(--ark-text);
  font-weight: 300;
  font-family: var(--ark-body-family);
}

h1,
h2,
h3,
h4 {
  font-family: var(--ark-header-family);
  font-weight: 700;
  text-wrap: balance;
}

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

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

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

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

p {
  margin-bottom: 0;
}

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

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

/* = Text Styles = */
.text-justify {
  text-align: justify;
}
.text-balance {
  text-wrap: balance;
}
.text-bold {
  font-weight: 700;
}
.text-italic {
  font-style: italic;
}
.text-underline {
  text-decoration: underline;
}
.text-lg {
  font-size: 1.25em;
}
.text-xl {
  font-size: 1.5em;
}
@media (width >= 768px) {
  .text-md-lg {
    font-size: 1.25em;
  }
}
.text-sm {
  font-size: 0.8em;
}
.text-xs {
  font-size: 0.66em;
}
.text-header {
  font-family: var(--ark-header-family);
}
.text-base {
  color: var(--ark-text) !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,
.text-light button {
  color: var(--ark-bg-color) !important;
}
.text-light a:hover,
.text-light button:hover {
  color: rgb(var(--ark-bg-color-rgb)/0.7) !important;
}
.text-bg {
  color: var(--ark-bg-color) !important;
}
.text-faded {
  color: var(--ark-faded) !important;
}
.text-bg-primary {
  background-color: rgb(var(--ark-primary-dk-rgb)/var(--bs-bg-opacity, 1)) !important;
}

strong {
  font-weight: 700;
}

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

/* == Layout == */
/* = 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: 99;
  top: 0;
}
.site-header .top-nav {
  gap: 1rem;
}
.site-header .top-nav-links {
  gap: 1rem;
}
.site-header .top-nav-links .menu-link {
  font-family: var(--ark-header-family);
  font-size: 1.25em;
}
.site-header .brand-logo {
  display: inline-block;
  max-width: 50%;
}
.site-header .brand-logo a {
  gap: 0.75rem;
}
.site-header .brand-logo a:hover {
  color: var(--ark-primary-dk);
}
.site-header .brand-logo img {
  height: 4rem;
}
.site-header .brand-logo a,
.site-header .brand-logo button {
  color: var(--ark-dark);
}
.site-header .brand-logo .tagline {
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--ark-header-family);
  text-wrap: balance;
  margin-top: 0.25em;
}
@media (width <= 1200px) {
  .site-header .brand-logo .tagline {
    font-size: 1.75rem;
  }
}
@media (width <= 992px) {
  .site-header .brand-logo .tagline {
    font-size: 1.5rem;
  }
}
@media (width <= 1200px) {
  .site-header .brand-logo {
    max-width: 45%;
  }
}
@media (width <= 992px) {
  .site-header .brand-logo {
    max-width: calc(100% - 10rem);
  }
}
.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: 0.25rem solid var(--ark-dark);
}
.site-header .dropdown-toggle:hover img {
  border-color: var(--ark-primary-dk);
}
.site-header .dropdown-menu {
  right: 0 !important;
  top: 2.5rem !important;
  left: auto !important;
  min-width: max-content;
  text-align: right;
  background-color: var(--ark-primary-lt);
  padding: 0.25rem;
  transform: scaleY(0);
}
.site-header .dropdown-menu.show {
  transform: scaleY(100%);
}
.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);
}
@media (width <= 992px) {
  .site-header .dropdown-menu {
    top: 1rem !important;
    position: relative !important;
  }
}

/* = General Content = */
.frontend,
.landing-page {
  background-color: var(--ark-bg-color);
  background-image: url("../img/snowflakes-pattern-03.png");
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: 300px;
}

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

iframe.fullscreen {
  display: block;
  height: 100vh;
  height: 100svh;
  width: 100%;
}

.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 * + p {
  margin-top: 0.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;
}

/* = Landing Pages = */
.viewport-screen {
  height: 100vh;
  height: 100svh;
  background-size: cover;
  background-position: center;
}
.viewport-screen .branding {
  max-height: 20vh;
  max-height: 20svh;
  margin-inline: auto;
  -webkit-filter: drop-shadow(-5px 5px 3px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(-5px 5px 3px rgba(0, 0, 0, 0.4));
}
@media (width <= 768px) {
  .viewport-screen .branding {
    max-height: 15vh;
    max-height: 15svh;
  }
}

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

.sidebar {
  padding: 1rem;
  top: 0;
}
.sidebar .actions * {
  padding: 0.25rem 0.5rem;
  line-height: 1;
}
.sidebar .actions *:first-child {
  padding-top: 0.5rem;
}
.sidebar .actions *:last-child {
  padding-bottom: 0.5rem;
}
.sidebar-wrapper {
  box-shadow: 0.25rem 0 0.5rem rgb(var(--ark-text-rgb)/0.15);
  width: 100%;
  z-index: 999;
  height: 100%;
}
.sidebar .active {
  cursor: default;
  position: relative;
}
.sidebar .active::before {
  content: "\f0da";
  font: var(--fa-font-solid);
  position: absolute;
  line-height: inherit;
  left: -0.85em;
}
@media (width >= 992px) {
  .sidebar {
    position: sticky !important;
  }
}

/* == Components == */
/* = Accordions = */
.accordion .accordion-item {
  border: none;
  box-shadow: -1px 1px 0.25rem rgb(var(--ark-text-rgb)/0.4);
  border-radius: 0.25rem;
  overflow: hidden;
}
.accordion .accordion-item .accordion-button {
  background-color: rgb(var(--ark-secondary-dk-rgb)/0.33);
  box-shadow: none;
  padding: 1rem;
}
.accordion .accordion-item .accordion-button::after {
  content: "▼";
  font-weight: 900;
  background-image: none !important;
}
.accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: rgb(var(--ark-secondary-dk-rgb)/0.66);
}
.accordion .accordion-item .accordion-body {
  padding: 1rem;
}
.accordion.faq {
  display: grid;
  gap: 0.5rem;
}

/* = Buttons = */
.btn {
  border-radius: 0.5rem;
  font-weight: bold;
  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;
  font-family: var(--ark-header-family);
  font-weight: 700;
  text-wrap: balance;
}
.btn:focus {
  box-shadow: 0 0 0 0.25rem var(--ark-primary-lt) !important;
}
.btn-primary {
  --bs-btn-color: var(--ark-dark);
  --bs-btn-bg: var(--ark-primary-lt);
  --bs-btn-border-color: var(--ark-primary-lt);
  --bs-btn-hover-color: var(--ark-bg-color);
  --bs-btn-hover-bg: var(--ark-primary-dk);
  --bs-btn-hover-border-color: var(--ark-primary-dk);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--ark-dark);
  --bs-btn-active-bg: var(--ark-primary-dk);
  --bs-btn-active-border-color: var(--ark-primary-dk);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--ark-dark);
  --bs-btn-disabled-bg: var(--ark-primary-lt);
  --bs-btn-disabled-border-color: var(--ark-primary-lt);
}
.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 {
  background-color: var(--ark-dark) !important;
  border-color: var(--ark-dark) !important;
}
.btn-dark:hover {
  background-color: rgb(var(--ark-dark-rgb)/0.5) !important;
  border-color: rgb(var(--ark-dark-rgb)/0.5) !important;
}
.btn-black: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-fullscreen {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
}
.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;
}

/* = Containers = */
.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);
}

.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 only screen and (min-width: 576px) {
  .headshot {
    width: 75%;
  }
}
.disabled:not(.form-control, .btn) {
  color: rgb(var(--ark-faded-rgb)/0.75) !important;
  cursor: not-allowed;
}

/* = 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 1rem;
}
.document .document-terms > div {
  padding: 2rem 0;
  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: 2.5rem;
  pointer-events: none;
  z-index: 9;
}
.document .document-terms::before {
  border-radius: 1.5rem 1.5rem 0 0;
  top: 0rem;
  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: 0rem;
  background: linear-gradient(to bottom, rgb(var(--ark-bg-color-rgb)/0) 0%, rgb(var(--ark-bg-color-rgb)/1) 100%);
}
.document .minor-data,
.document .conditional-data {
  display: none;
}
.document .signature {
  position: relative;
  width: 100%;
  max-width: 20rem;
  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;
}
.document .signature:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/icons/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;
}

#signatureModal {
  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;
}

/* = Forms = */
form .form-label {
  font-weight: 700;
}
form .form-label.required::after {
  content: "*";
  color: red;
}
form .form-control:is(textarea) {
  min-height: inherit;
  height: auto !important;
}
form .form-control:disabled, form .form-control[readonly] {
  background-color: rgb(var(--ark-faded-rgb)/0.33) !important;
}
form .form-control.w-4 {
  width: 4rem;
}
form .form-control.w-6 {
  width: 6rem;
}
form .form-control.w-8 {
  width: 8rem;
}
form .form-control.w-12 {
  max-width: 12rem;
}
form .form-control.w-16 {
  width: 16rem;
}
form .form-control.w-20 {
  width: 20rem;
}
form .form-control.w-24 {
  width: 24rem;
}
form .form-control, form .form-select, form .form-check-input {
  border-color: var(--ark-primary-lt) !important;
  background-color: rgb(var(--ark-primary-lt-rgb)/0.25) !important;
  border-radius: 0.5rem;
}
form .form-control:focus, form .form-select:focus, form .form-check-input:focus {
  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;
}
form .form-check-input:checked {
  background-color: var(--ark-primary-dk) !important;
  border-color: var(--ark-primary-dk) !important;
}
form .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 .form-color-picker:focus {
  border-color: var(--ark-primary-dk);
  box-shadow: 0 0 0 0.25rem var(--ark-primary-lt);
  outline: 0;
}
form .ck.ck-editor {
  border-color: var(--ark-primary-lt) !important;
  background-color: rgb(var(--ark-primary-lt-rgb)/0.25) !important;
  border-radius: 0.5rem;
}
form .ck.ck-editor__editable {
  box-shadow: none !important;
  padding: 0.375rem 0.75rem !important;
  border-color: var(--ark-primary-lt) !important;
  background-color: rgb(var(--ark-primary-lt-rgb)/0.25) !important;
  border-radius: 0.5rem;
}
form .ck.ck-editor__editable_inline > :first-child {
  margin-top: 0;
}
form .ck.ck-editor__editable_inline > :last-child {
  margin-bottom: 0;
}
form .ck.ck-editor__editable.ck-rounded-corners {
  border-radius: 0 0 0.5rem 0.5rem !important;
}
form .ck.ck-editor__editable.ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-toolbar {
  background-color: rgb(var(--ark-faded-rgb)/0.66);
  border-radius: 0.5rem 0.5rem 0 0 !important;
}
form .ck.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;
}
form .ck.ck-editor:has(.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;
}
form .ck.ck-editor:has(.ck-focused) .ck.ck-editor__top .ck-sticky-panel .ck-toolbar {
  border-color: var(--ark-primary-dk);
}
form .ck.ck-editor__top .ck-sticky-panel .ck-sticky-panel__content {
  border: none !important;
}
form .ck.ck-toolbar .ck.ck-toolbar__separator {
  background-color: var(--ck-color-text) !important;
}
form .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 {
  background-color: var(--ark-primary-lt);
  color: var(--ark-dark);
}
form .input {
  position: relative;
}
form .input-group .btn:not(:focus) {
  box-shadow: none !important;
}
form .input-group-text {
  border-radius: 0.5rem;
}
form input[type=submit]:active:focus {
  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;
}
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,
form 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::before,
form 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;
}
form .error-message::after,
form 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;
}

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

.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;
}
.ui-autocomplete .ui-menu-item div:hover {
  background-color: var(--ark-primary-lt);
  margin: 0 !important;
}
.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);
}

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

.date .form-control {
  max-width: 8rem;
}

.color-box {
  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;
}

.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: 8rem !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;
}

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;
}

fieldset {
  margin-block: 0.5rem 1rem;
  border: 1px solid rgb(var(--ark-text-rgb)/0.6);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem 0;
}
fieldset legend {
  display: inline-block;
  width: auto;
  margin-top: -1em;
  background-color: var(--ark-bg-color);
  padding-inline: 0.5rem;
}

.required-wrapper {
  position: relative;
}

.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;
  animation-name: rotate;
  transition-duration: 1.2s;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.process-spinner.light {
  border: 0.25rem solid rgb(var(--ark-bg-color-rgb)/0.5);
  border-top: 0.25rem solid var(--ark-bg-color);
}

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

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

/* = Hero Banners = */
#hero-banner {
  background-position: top center;
  background-size: cover;
}

.hero-banner {
  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);
}

/* = 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;
  justify-content: center;
  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);
}

ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}

ol.lower-roman {
  list-style: lower-roman;
}

/* = 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 {
  content: "●";
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 1.5rem;
  height: 1.5rem;
  font-size: 1rem;
  margin-right: 0.5rem;
  background-color: var(--ark-faded);
  color: var(--ark-bg-color);
  border-radius: 100vmax;
}
ul.checklist li.done span {
  text-decoration: line-through;
}
ul.checklist li.done::before {
  content: "✔";
  background-color: green;
}
ul.checklist li.pending::before {
  content: "⨉";
  background-color: red;
}

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

/* = Snowflakes = */
ul.snowflakes {
  list-style: none;
  padding: 0;
}
ul.snowflakes li {
  display: flex;
  align-items: top;
  line-height: 1.25;
  gap: 0.25em;
}
ul.snowflakes li * {
  margin-top: 0.1em;
}
ul.snowflakes li + li {
  margin-top: 0.75em;
}
ul.snowflakes li::before {
  content: "\f2dc";
  font: var(--fa-font-solid);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 1.5em;
  height: 1.5em;
  color: var(--ark-secondary-dk);
}

/* = Hierarchical list = */
ol.levelled {
  padding-left: 2.25em;
}
ol.levelled > li {
  font-size: 1.6rem;
  font-family: var(--ark-header-family);
  font-weight: 700;
  color: var(--ark-dark);
}
ol.levelled > li > ol {
  list-style-type: lower-alpha;
}
ol.levelled > li > ol > li {
  font-size: 1.2rem;
  font-family: var(--ark-body-family);
  font-weight: 400;
  color: var(--ark-text);
}
ol.levelled > li > ol > li > ol {
  list-style-type: lower-roman;
}
ol.levelled > li > ol > li > ol > li {
  font-size: 1rem;
}
ol.levelled li + li {
  margin-top: 0.5em;
}

/* = 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: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 .actions a,
.notes .actions button {
  margin-left: 0.5rem;
}
.notes form .meta {
  border-radius: 0.25rem 0.25rem 0 0;
  border: 1px solid var(--ark-primary-lt);
  border-bottom: none;
  z-index: 2;
  overflow: hidden;
}
.notes form .meta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: -moz-linear-gradient(top, rgb(var(--md-bg-rgb)/1) 0%, rgb(var(--md-bg-rgb)/1) 75%, rgb(var(--md-bg-rgb)/0) 100%);
  background: -webkit-linear-gradient(top, rgb(var(--md-bg-rgb)/1) 0%, rgb(var(--md-bg-rgb)/1) 75%, rgb(var(--md-bg-rgb)/0) 100%);
  background: -ms-linear-gradient(top, rgb(var(--md-bg-rgb)/1) 0%, rgb(var(--md-bg-rgb)/1) 75%, rgb(var(--md-bg-rgb)/0) 100%);
  background: linear-gradient(to bottom, rgb(var(--md-bg-rgb)/1) 0%, rgb(var(--md-bg-rgb)/1) 75%, rgb(var(--md-bg-rgb)/0) 100%);
}
.notes form .meta::after {
  --_color: rgb(var(--ark-primary-dk-rgb) / 0.1);
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: -moz-linear-gradient(top, var(--_color) 0%, var(--_color) 75%, rgb(var(--md-bg-rgb)/0) 100%);
  background: -webkit-linear-gradient(top, var(--_color) 0%, var(--_color) 75%, rgb(var(--md-bg-rgb)/0) 100%);
  background: -ms-linear-gradient(top, var(--_color) 0%, var(--_color) 75%, rgb(var(--md-bg-rgb)/0) 100%);
  background: linear-gradient(to bottom, var(--_color) 0%, var(--_color) 75%, rgb(var(--md-bg-rgb)/0) 100%);
}
.notes form .note-textarea {
  padding: 2rem 0.75rem 0.375rem;
  position: relative;
  z-index: 0;
  overflow-y: hidden;
}
.notes form:focus-within .meta {
  border: 1px solid var(--ark-primary-dk);
  border-bottom: none;
}
.notes form:focus-within .meta::after {
  display: none;
}

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

.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);
}

/* = Select2 custom Styles = */
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 38px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 2rem;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  gap: 0.375rem;
  width: 100%;
  list-style: none;
  padding: 0;
}
.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 1.5rem;
  vertical-align: middle;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 0.5rem;
  padding-left: 20px;
}

.table .select2-container {
  display: block;
}

.select2-dropdown {
  background-color: var(--ark-bg-color);
  border: 1px solid var(--ark-primary-lt);
  overflow: hidden;
  border-radius: 0.5rem;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
  box-shadow: -0.125rem 0.25rem 0.5rem rgb(var(--ark-text-rgb)/0.15) !important;
}

.select2-results {
  --option-height: 2rem;
  display: block;
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}
.select2-results__option {
  line-height: var(--option-height);
  padding-inline: 6px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 0 0 0.25rem var(--ark-primary-lt) !important;
}

.select2-search--dropdown {
  display: block;
  padding: 0.5rem;
}
.select2-search--dropdown .select2-search__field {
  padding: 0.25rem;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  cursor: text;
  position: relative;
}
.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 1.5rem;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 0.25rem;
  position: absolute;
  right: 0;
  padding: 1px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: var(--ark-secondary-lt);
  border: 1px solid var(--ark-secondary-dk);
  border-radius: 0.25rem;
  box-sizing: border-box;
  display: inline-block;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice.has-primary {
  background-color: var(--ark-primary-lt);
  border-color: var(--ark-primary-dk);
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid var(--ark-secondary-dk);
  color: var(--ark-secondary-dk);
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: var(--ark-secondary-dk);
  color: var(--ark-bg-color);
  outline: none;
}
.select2-container--default .select2-selection--multiple .has-primary .select2-selection__choice__remove {
  color: var(--ark-primary-dk);
}
.select2-container--default .select2-selection--multiple .has-primary .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .has-primary .select2-selection__choice__remove:focus {
  background-color: var(--ark-primary-dk);
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
  box-shadow: 0 0 0 0.25rem var(--ark-primary-lt);
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--above .select2-selection--single, .select2-container--default.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--ark-primary-lt);
  border-radius: 0.25rem;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
  outline: transparent;
  box-shadow: 0 0 0 0.25rem var(--ark-primary-lt) !important;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: calc(8 * var(--option-height));
  overflow-y: auto;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-inline: 0.75em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--group {
  padding: 0;
}
.select2-container--default .select2-results__option--disabled {
  color: #999;
}
.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--ark-primary-dk) !important;
  color: var(--ark-bg-color);
}
.select2-container--default .select2-results__option--selectable.has-primary {
  background-color: var(--ark-primary-lt);
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

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

.fixed-thead {
  max-height: calc(100svh - 26.5rem);
  box-shadow: inset -0.25rem -0.125rem 0.25rem rgb(var(--ark-text-rgb)/0.075);
}

.table {
  margin-bottom: 0;
}

.table th,
.table td {
  vertical-align: middle;
}

.table th:not(:first-child),
.table td:not(:first-child) {
  text-align: center;
}

.table .actions a,
.table .actions button,
.table .actions span {
  padding: 0;
  margin: 0.125rem 0.25rem;
}

.table .actions:has(.d-grid) {
  min-width: 4rem;
}

.table .actions:has(.g-col-2) {
  width: 5.5rem;
}

.table .actions:has(.g-col-3) {
  width: 8rem;
}

.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 .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 .actions .icon {
  font-size: 1.5em;
}

.table .tags {
  padding-block: 0.25rem;
}

.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.33);
  z-index: -1;
}

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

.inputs-row td:has(input, select) {
  padding: 0.25rem 0 0.25rem 0.25rem;
}

th.adaptable,
td.adaptable {
  width: 1px;
  white-space: nowrap;
}

td.avatar {
  width: 5rem;
  padding: 0;
}

td.avatar img {
  width: 5rem;
  height: auto;
}

td.hero-shot {
  width: 8rem;
  text-align: center;
  text-wrap: balance;
  padding: 0;
}

td.hero-shot img {
  width: 100%;
  height: auto;
}

.index .email {
  font-size: 0.8em;
  word-break: break-all;
  width: 15rem;
}

.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;
}

.index .search-form {
  width: 100%;
}

@media (min-width: 992px) {
  .index .search-form {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .index .search-form {
    flex-grow: 1;
  }
}
.filter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.square-success::before {
  content: "∎";
  display: inline-block;
  color: var(--bs-success);
}

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

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

/* == Sections == */
/* = Customer Vault = */
.vault-profile .credit-cards {
  list-style: none;
  padding: 0 1.5rem;
}
.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,
.vault-profile .credit-cards .add-card {
  padding: 0.5rem;
  border-radius: 1rem;
}
.vault-profile .credit-cards .actions {
  text-align: right;
}

.credit-cards .card-img {
  display: inline-block;
  width: auto;
  height: 3em;
}

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

/* = Images Gallery = */
.gallery .images {
  display: flex;
  flex-direction: column;
  align-items: start;
  flex-wrap: wrap;
}
.gallery .images .selected-images {
  margin-top: 0;
}
.gallery .images .selected-images .gallery-image-item {
  position: relative;
}
.gallery .images .selected-images .gallery-image-item img {
  width: 100%;
  border-radius: 0.5rem;
  background-color: rgb(var(--ark-faded-rgb)/0.2);
  box-shadow: 0 0 0.5rem rgb(var(--ark-text-rgb)/0.3);
}
.gallery .images .selected-images .gallery-image-item .item-controls {
  position: absolute;
  display: flex;
  gap: 0.5rem;
  top: 0.5rem;
  right: 0.5rem;
}
.gallery .images .selected-images .gallery-image-item .item-controls .drag-handle {
  cursor: grab;
}
.gallery .images .selected-images .gallery-image-item.sortable-chosen .drag-handle {
  cursor: grabbing !important;
}
.gallery .images .buttons {
  margin-top: 1rem;
  gap: 1rem;
}
.gallery .images .buttons button {
  gap: 0.25rem;
  padding: 0.5rem 1.25rem;
}

.gallery-images-selector .add-image-container .btn {
  background-color: var(--bs-btn-bg);
  box-shadow: none !important;
}
.gallery-images-selector .add-image-container .btn:hover {
  background-color: var(--bs-btn-hover-bg);
}
.gallery-images-selector .attachment-picker {
  cursor: pointer;
  transition: 0.15s ease;
  opacity: 0.66;
  margin: 0;
}
.gallery-images-selector .attachment-picker:hover {
  transform: scale(1.03);
}
.gallery-images-selector .attachment-picker[data-selected=true] {
  outline: 0.25rem solid var(--ark-primary-dk);
  outline-offset: -0.25rem;
  opacity: 1;
}

/* = 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;
}

/* = Reserves = */
.reserves-window {
  --_menu-height: 3rem;
  height: calc(100svh - (5rem + var(--_menu-height)));
}
@media (width >= 992px) {
  .reserves-window {
    --_menu-height: 4.25rem;
  }
}

@media (width >= 768px) {
  .filter-reserves {
    width: 75%;
  }
}
@media (width >= 992px) {
  .filter-reserves {
    width: 50%;
  }
}

.surveys {
  list-style: none;
  padding: 0;
}

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

/* == Utilities == */
/* = Animations = */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeOut {
  animation: fadeOut 1s;
  opacity: 0;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* = Background Color = */
.bg-primary {
  background-color: rgb(var(--ark-primary-dk-rgb)/var(--bs-bg-opacity, 1)) !important;
}
.bg-secondary {
  background-color: rgb(var(--ark-secondary-dk-rgb)/var(--bs-bg-opacity, 1)) !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;
}
.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);
}

/* = Borders = */
.rounded-5 {
  border-radius: 0.5rem !important;
}
.rounded-6 {
  border-radius: 1rem;
}
.rounded-7 {
  border-radius: 2rem;
}

.border-primary {
  border-color: var(--ark-primary-dk) !important;
}
.border-secondary {
  border-color: var(--ark-secondary-dk) !important;
}

/* = Grid utilities = */
.colspan-2 {
  grid-column: span 2;
}

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

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

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

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

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

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

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

/* = Navigation = */
.anchor {
  scroll-margin-top: var(--ark-menu-height);
}

.scrollbar-none {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.scrollbar-none::-webkit-scrollbar {
  /* Hide scrollbar for Chrome, Safari and Opera */
  display: none;
}

.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;
}

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

body.processing * {
  cursor: progress !important;
}

/* = Positioning = */
.top-0 {
  top: 0;
}

.float-left,
.float-right {
  --float-margin: 1.5rem;
}
@media (width <= 768px) {
  .float-left,
  .float-right {
    --float-margin: 1.25rem;
  }
}
@media (width <= 576px) {
  .float-left,
  .float-right {
    --float-margin: 1rem;
  }
}

.float-left {
  float: left;
  margin: 0 var(--float-margin) var(--float-margin) 0;
}

.float-right {
  float: right;
  margin: 0 0 var(--float-margin) var(--float-margin);
}

/* = Responsive Styles = */
@media (width <= 576px) {
  .hide-on-mobile {
    display: none;
  }
}
/* = Sizing = */
.w-33 {
  width: 33.3333333333%;
}

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

.mh-auto {
  max-height: inherit !important;
}

@media (width >= 768px) {
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-33 {
    width: 33.3333333333% !important;
  }
}
@media (width >= 992px) {
  .w-lg-33 {
    width: 33.3333333333% !important;
  }
}
/* = Custom Swiper styles = */
.swiper-button-next svg,
.swiper-button-prev svg {
  display: none;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font: var(--fa-font-solid);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--ark-primary-lt);
  text-shadow: 0 0.25rem 0.5rem rgb(var(--ark-text-rgb)/0.15);
}
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: var(--ark-primary-dk);
  text-shadow: 0 0.25rem 0.5rem rgb(var(--ark-text-rgb)/0.3);
}
.swiper-button-next:active::after,
.swiper-button-prev:active::after {
  color: var(--ark-dark);
  text-shadow: 0 0.25rem 0.5rem rgb(var(--ark-text-rgb)/0.45);
}

.swiper-button-prev::after,
.swiper-rtl .swiper-button-next:after {
  content: "\f053";
}

.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
  content: "\f054";
}/*# sourceMappingURL=styles.css.map */