@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
/* line 3, app/assets/stylesheets/layout/variables.scss */
:root {
  font-size: 16px;
  --sera-button-height: 42px;
  --sera-border-radius: 0.5rem !important;
  --sera-color-text-links: rgb(26,86,219) !important;
  /* bg-blue-700 */
  --sera-main-padding: 1.5rem;
}

/* line 11, app/assets/stylesheets/layout/variables.scss */
sera-checkbox {
  --sera-border-radius: 0.25rem !important;
  --sera-color-drop-shadows-white: rgb(243,244,246) !important;
  /* bg-gray-100 */
}

/* line 135, app/assets/stylesheets/layout/variables.scss */
:root {
  --text-color-ss: #353a3b;
  --cobalt-blue: #0f3b95;
  --primary-color-contrast: #ffffff;
  --secondary-color: #9ca4aa;
  --secondary-color-contrast: #000000;
  --marketing-yellow-color: yellow;
  --marketing-lime-green-color: #1BDA27;
  --medium-color-shade: #babdbf;
  --medium-color-tint: #d7dbdd;
  --light-color-shade: #d7d8da;
  --light-color-tint: #f5f6f9;
  --light-gray-border: #dee2e6;
  --dark-gray-border: #6d767d;
  --success-color: #00ae0b;
  --danger-dark-color: #a30000;
  --angel-blue: #ecf2fd;
  --border-light-color: #ededed;
  --border-dark-color: #e0e0e0;
  --border-gray-color: #dcdfe1;
  --pale-blue: #f3f7ff;
  --separator-gray: #cbd1df;
  --primary-accent-color: #7e8fb4;
  --primary-light-accent-color: #cbd1df;
  --angel-blue: #ecf2fd;
  --background-gradient: linear-gradient(0deg, #fff 0%, #d3d7d9 100%);
  --breakfast-orange: #f1911b;
  --background-task-enqueued: #9ca4aa;
  --background-task-processing: #f1911b;
  --background-task-ready: #00ae0b;
  --background-task-failed: #cc0000;
  --box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.15);
  --danger-color-shade: #f7e5e5;
  --danger-color: #de0000;
  --darkblue: #2e4462;
  --field-error-border-color: #dc3545;
  --field-error-background-color: #f7e5e5;
  --field-success: #42DA4C;
  --font-color: #353a3b;
  --font-body-color: #6F767B;
  --font-title-color: #353A3B;
  --gold: #a38500;
  --gray-border-color: #d3d7d9;
  --gray: #6c757d;
  --light-color: #f4f5f5;
  --light-coral: #ff8585;
  --light-gray: #f2f4f6;
  --lightblue: #027db4;
  --pure-red: #de0000;
  --medium-color: #d3d7d9;
  --neutral-gray: #F4F5F5;
  --neutral-gray-100: #F4F5F5;
  --neutral-gray-400: #E1E2E3;
  --neutral-gray-600: #9CA4AA;
  --neutral-gray-700: #6F767B;
  --organic-green: #00ae0b;
  --pakistan-green: #006607;
  --pastelblue: #e2eeff;
  --primary-accent: #7e8fb4;
  --primary-color: #125AEB;
  --primary-light-accent: #cbd1df;
  --rufous: #a30000;
  --secondary-color: #9ca4aa;
  --shadow-color: #b9b9b9;
  --tertiary-color: #0f3b95;
  --text-links: #125AEB;
  --font-title-color: #353A3B;
  --uranian-blue: #bce3ff;
  --warning-yellow: #ffec99;
  --white: #ffffff;
  --yellow-crayola: #ffec99;
  --table-row-selected: #ccddff;
  --primary-shade-color: #bce3ff;
  --warning-color: #ffe15b;
  --sera-color-neutral-gray-light-gray-200: #F3F6F7;
  --sera-color-neutral-gray-light-gray-500: #838383;
}

/* line 4, app/assets/stylesheets/layout/general.scss */
*:not(:defined) {
  display: none;
}

/* line 6, app/assets/stylesheets/layout/general.scss */
html {
  height: 100%;
}

/* line 9, app/assets/stylesheets/layout/general.scss */
body {
  font-size: 14px;
  font-family: "Inter", -apple-system, "Helvetica Neue", "Roboto";
  height: 100%;
  background-color: #f2f4f6;
  transition: opacity .3s ease-in;
}

/* line 16, app/assets/stylesheets/layout/general.scss */
body.application-layout {
  opacity: 0;
}

/* line 19, app/assets/stylesheets/layout/general.scss */
body.opacity-1 {
  opacity: 1 !important;
}

/* line 24, app/assets/stylesheets/layout/general.scss */
body.login-body {
  background-image: linear-gradient(0deg, #fff 0%, #d3d7d9 100%);
  font-family: "Inter", -apple-system, "Helvetica Neue", "Roboto";
}

/* line 29, app/assets/stylesheets/layout/general.scss */
.wrapper {
  width: 100%;
  min-height: 100%;
  position: relative;
}

/* line 33, app/assets/stylesheets/layout/general.scss */
.wrapper .content {
  min-height: 100%;
  width: calc(100% - 150px);
  padding-top: 20px;
  position: relative;
  transition: border 250ms ease;
  background: var(--sera-color-neutral-gray-light-gray-300);
  color: #353a3b;
}

/* line 41, app/assets/stylesheets/layout/general.scss */
.wrapper .content.full {
  width: 100%;
}

/* line 47, app/assets/stylesheets/layout/general.scss */
#application-wrapper.with-env-bar {
  top: 30px;
}

@media (max-width: 750px) {
  /* line 52, app/assets/stylesheets/layout/general.scss */
  .wrapper .content.full {
    border-left: none;
  }
}

/* TODO: Possibly move into ssui? */
/* line 58, app/assets/stylesheets/layout/general.scss */
.break-long-word {
  word-break: break-word;
}

/* TODO: Discuss spacing and how we can standardize */
/* line 64, app/assets/stylesheets/layout/general.scss */
.section-spacing-25 > * {
  margin-bottom: 25px !important;
}

/* line 66, app/assets/stylesheets/layout/general.scss */
.section-spacing-25 > *:last-child {
  margin-bottom: 0 !important;
}

/* line 72, app/assets/stylesheets/layout/general.scss */
.section-spacing-20 > * {
  margin-bottom: 20px !important;
}

/* line 74, app/assets/stylesheets/layout/general.scss */
.section-spacing-20 > *:last-child {
  margin-bottom: 0 !important;
}

/* line 80, app/assets/stylesheets/layout/general.scss */
.section-spacing-15 > * {
  margin-bottom: 15px !important;
}

/* line 82, app/assets/stylesheets/layout/general.scss */
.section-spacing-15 > *:last-child {
  margin-bottom: 0 !important;
}

/* line 88, app/assets/stylesheets/layout/general.scss */
.section-spacing-10 > * {
  margin-bottom: 10px !important;
}

/* line 90, app/assets/stylesheets/layout/general.scss */
.section-spacing-10 > *:last-child {
  margin-bottom: 0 !important;
}

/* line 96, app/assets/stylesheets/layout/general.scss */
.section-spacing-5 > * {
  margin-bottom: 5px !important;
}

/* line 98, app/assets/stylesheets/layout/general.scss */
.section-spacing-5 > *:last-child {
  margin-bottom: 0 !important;
}

/* line 103, app/assets/stylesheets/layout/general.scss */
.strike-through {
  text-decoration: line-through;
}

/* line 105, app/assets/stylesheets/layout/general.scss */
.strike-through:hover {
  text-decoration: line-through !important;
}

/* line 109, app/assets/stylesheets/layout/general.scss */
.map-responsive {
  overflow: hidden;
  position: absolute;
  height: calc(100% - 96px);
  width: 100%;
}

/* line 114, app/assets/stylesheets/layout/general.scss */
.map-responsive.coverage-area {
  display: none;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

/* line 120, app/assets/stylesheets/layout/general.scss */
.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* line 129, app/assets/stylesheets/layout/general.scss */
.invisible {
  opacity: 0;
}

/* line 133, app/assets/stylesheets/layout/general.scss */
.large-text {
  font-size: 20px;
}

/* line 137, app/assets/stylesheets/layout/general.scss */
.daterange {
  width: 173px;
}

/* line 141, app/assets/stylesheets/layout/general.scss */
.main-background {
  background-color: #2e4462;
}

@media (max-width: 1200px) {
  /* line 146, app/assets/stylesheets/layout/general.scss */
  .scrolleable {
    overflow-y: visible;
    overflow-x: scroll;
  }
}

/* line 152, app/assets/stylesheets/layout/general.scss */
.clickeable {
  cursor: pointer;
}

/* line 156, app/assets/stylesheets/layout/general.scss */
.center-vertical {
  align-items: center;
  display: flex;
  justify-content: center;
}

/* line 162, app/assets/stylesheets/layout/general.scss */
.full-page-height {
  min-height: 90vh;
}

/* line 166, app/assets/stylesheets/layout/general.scss */
.large-daterange-filter {
  width: 250px;
}

/* line 170, app/assets/stylesheets/layout/general.scss */
dl {
  color: #353a3b;
}

/* line 172, app/assets/stylesheets/layout/general.scss */
dl dt {
  font-weight: bold;
}

/* line 175, app/assets/stylesheets/layout/general.scss */
dl dd {
  font-size: 1.1em;
}

/* line 181, app/assets/stylesheets/layout/general.scss */
.dataTables_wrapper table tr td {
  vertical-align: middle;
}

/* line 187, app/assets/stylesheets/layout/general.scss */
input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  background-color: #f7e5e5 !important;
  border: 2px solid #de0000 !important;
  color: #495057 !important;
}

/* line 195, app/assets/stylesheets/layout/general.scss */
.calendar-filter-date,
.jobs-filter-date,
.archived-calls-filter-date,
.availability-calendar-date,
.datatable-filter-date {
  opacity: 0;
  height: 0;
  width: 0;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background-color: white;
}

/* line 210, app/assets/stylesheets/layout/general.scss */
.flex-1 {
  flex: 1;
}

/* line 214, app/assets/stylesheets/layout/general.scss */
.full-width {
  width: 100% !important;
}

/* line 218, app/assets/stylesheets/layout/general.scss */
.full-height {
  height: 100% !important;
}

/* line 222, app/assets/stylesheets/layout/general.scss */
.half-width {
  width: 50% !important;
}

/* line 226, app/assets/stylesheets/layout/general.scss */
.elevation-1 {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12) !important;
}

/* line 231, app/assets/stylesheets/layout/general.scss */
.no-display {
  display: none !important;
}

/* line 235, app/assets/stylesheets/layout/general.scss */
.page-content {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

/* line 242, app/assets/stylesheets/layout/general.scss */
.help-block {
  margin-top: 4px;
  color: #de0000;
  font-size: 12px;
  line-height: 15px;
  font-style: normal;
  font-weight: 600;
  padding-left: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='12' width='12' viewBox='0 0 512 512'%3E%3C!--!Font Awesome Pro 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2024 Fonticons, Inc.--%3E%3Cpath fill='%23DE0000' d='M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c-13.3 0-24 10.7-24 24l0 112c0 13.3 10.7 24 24 24s24-10.7 24-24l0-112c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z'/%3E%3C/svg%3E");
  background-position: left 0px center;
  background-repeat: no-repeat;
}

/* line 255, app/assets/stylesheets/layout/general.scss */
#error_messages {
  color: #dc3545;
}

/* line 259, app/assets/stylesheets/layout/general.scss */
.sortable-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* line 265, app/assets/stylesheets/layout/general.scss */
.sort-handle {
  cursor: pointer;
}

/* line 269, app/assets/stylesheets/layout/general.scss */
.tooltip-helper {
  background: #ffffff;
  color: #353a3b;
  border-radius: 5px;
  padding: 5px 10px;
  position: relative;
  font-size: 0.9em;
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.15);
}

/* line 279, app/assets/stylesheets/layout/general.scss */
.red-text {
  color: #9ca4aa;
}

/* line 283, app/assets/stylesheets/layout/general.scss */
.copyright-notice {
  position: absolute;
  bottom: 0;
  right: 25.5px;
  font-size: 0.8em;
}

/* line 290, app/assets/stylesheets/layout/general.scss */
.block {
  display: block;
}

/* line 295, app/assets/stylesheets/layout/general.scss */
.flex-evenly * {
  flex: 1;
}

/* line 300, app/assets/stylesheets/layout/general.scss */
.justify-content-evenly {
  justify-content: space-evenly !important;
}

/* line 304, app/assets/stylesheets/layout/general.scss */
.text-blue, .text-primary {
  color: #125AEB !important;
}

/* line 308, app/assets/stylesheets/layout/general.scss */
.text-link {
  color: #125AEB !important;
}

/* line 312, app/assets/stylesheets/layout/general.scss */
.text-bold {
  font-weight: bold;
}

/* line 316, app/assets/stylesheets/layout/general.scss */
.text-bold {
  font-weight: bold;
}

/* line 320, app/assets/stylesheets/layout/general.scss */
.text-medium {
  color: #d3d7d9;
}

/* line 324, app/assets/stylesheets/layout/general.scss */
.text-light {
  color: #f4f5f5;
}

/* line 328, app/assets/stylesheets/layout/general.scss */
.link {
  color: #125AEB !important;
  cursor: pointer;
}

/* line 331, app/assets/stylesheets/layout/general.scss */
.link:hover {
  color: #0e48bc !important;
  text-decoration: underline;
}

/* line 337, app/assets/stylesheets/layout/general.scss */
i.link {
  text-decoration: none !important;
}

/* line 341, app/assets/stylesheets/layout/general.scss */
.header-link {
  color: #125AEB !important;
  cursor: pointer;
}

/* line 344, app/assets/stylesheets/layout/general.scss */
.header-link:hover {
  text-decoration: underline;
}

/* line 349, app/assets/stylesheets/layout/general.scss */
.truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  display: inline-block;
}

/* line 357, app/assets/stylesheets/layout/general.scss */
.manual-truncated-text {
  max-width: 65%;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 363, app/assets/stylesheets/layout/general.scss */
.manual-truncated-text:hover {
  white-space: normal;
}

/* line 368, app/assets/stylesheets/layout/general.scss */
.modal-title {
  flex-shrink: 1;
}

/* line 372, app/assets/stylesheets/layout/general.scss */
.modal-header {
  display: flex;
  align-items: center;
}

/* line 377, app/assets/stylesheets/layout/general.scss */
.modal-header,
.modal-footer {
  padding: 1rem;
  background: none !important;
}

/* line 383, app/assets/stylesheets/layout/general.scss */
.light-background {
  background-color: #ffffff;
}

/* line 387, app/assets/stylesheets/layout/general.scss */
.card {
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.15);
  border-color: #d3d7d9;
}

/* line 391, app/assets/stylesheets/layout/general.scss */
.card .card-header:first-child {
  border-radius: 0.5rem;
}

/* line 396, app/assets/stylesheets/layout/general.scss */
.card .card,
.modal .card,
.flyout-panel .card {
  box-shadow: none !important;
}

/* line 402, app/assets/stylesheets/layout/general.scss */
.card .card.dataTables_processing {
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.15) !important;
}

/* line 406, app/assets/stylesheets/layout/general.scss */
.btn,
.btn-sm {
  box-shadow: none;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 415, app/assets/stylesheets/layout/general.scss */
.btn-plain {
  padding: 0;
  box-shadow: none;
}

/* line 418, app/assets/stylesheets/layout/general.scss */
.btn-plain:hover {
  box-shadow: none;
}

/* line 423, app/assets/stylesheets/layout/general.scss */
.btn-light {
  border-color: #ced4da;
}

/* line 427, app/assets/stylesheets/layout/general.scss */
button.btn,
a.btn,
span.btn,
input.btn {
  font-size: 1em;
  border-radius: 0.5rem;
  border-width: 2px;
}

/* line 436, app/assets/stylesheets/layout/general.scss */
.btn-sm {
  padding: 0.25rem 0.75rem;
}

/* line 440, app/assets/stylesheets/layout/general.scss */
.btn-ml {
  margin-left: 75px;
}

/* line 444, app/assets/stylesheets/layout/general.scss */
.toggle-item {
  box-shadow: none !important;
}

/* line 448, app/assets/stylesheets/layout/general.scss */
.map-date-arrows,
.prev-date,
.next-date {
  padding: 0.25rem 0.5rem;
  background-color: #ffffff;
}

/* line 453, app/assets/stylesheets/layout/general.scss */
.map-date-arrows i,
.prev-date i,
.next-date i {
  color: #125AEB;
}

/* line 456, app/assets/stylesheets/layout/general.scss */
.map-date-arrows:hover,
.prev-date:hover,
.next-date:hover {
  background-color: #125AEB;
}

/* line 458, app/assets/stylesheets/layout/general.scss */
.map-date-arrows:hover i,
.prev-date:hover i,
.next-date:hover i {
  color: #ffffff !important;
}

/* line 464, app/assets/stylesheets/layout/general.scss */
.form-wrapper {
  width: 100%;
  max-width: 600px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 472, app/assets/stylesheets/layout/general.scss */
.basic-box {
  border-radius: 5px;
  border: 1px solid #ced4da;
}

/* line 477, app/assets/stylesheets/layout/general.scss */
.error-text {
  font-size: 0.7rem;
}

/* line 481, app/assets/stylesheets/layout/general.scss */
.ml-7rem {
  margin-left: 7rem;
}

/* line 485, app/assets/stylesheets/layout/general.scss */
.d-flex-inline {
  display: inline-flex !important;
}

/* line 489, app/assets/stylesheets/layout/general.scss */
.hidden {
  display: none;
}

/* line 493, app/assets/stylesheets/layout/general.scss */
.table-fixed {
  table-layout: fixed;
}

/* line 498, app/assets/stylesheets/layout/general.scss */
.task-picker .task-row .upgrade-addon-card {
  box-shadow: none;
}

/* line 501, app/assets/stylesheets/layout/general.scss */
.task-picker .task-row .add-task-button {
  box-shadow: none !important;
}

/* line 506, app/assets/stylesheets/layout/general.scss */
.shrink-0 {
  flex-shrink: 0 !important;
}

/* line 511, app/assets/stylesheets/layout/general.scss */
.small-modal .modal-dialog {
  max-width: 500px;
}

/* line 516, app/assets/stylesheets/layout/general.scss */
.modal.show {
  display: flex !important;
}

/* line 519, app/assets/stylesheets/layout/general.scss */
.modal-dialog {
  margin: auto;
  flex-grow: 1;
}

/* line 523, app/assets/stylesheets/layout/general.scss */
.modal-content {
  background: #ffffff;
  box-shadow: 0 6px 16px 0px rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
}

/* line 529, app/assets/stylesheets/layout/general.scss */
.horizontal-form-field {
  display: flex;
  align-items: center;
}

/* line 532, app/assets/stylesheets/layout/general.scss */
.horizontal-form-field .label {
  width: 120px;
  flex-shrink: 0;
  font-weight: bold;
}

/* line 538, app/assets/stylesheets/layout/general.scss */
.horizontal-form-field.half-label .label {
  width: 50px;
  padding-right: 10px;
  box-sizing: content-box;
}

/* line 547, app/assets/stylesheets/layout/general.scss */
.form__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* line 553, app/assets/stylesheets/layout/general.scss */
.form__attributes {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--sera-color-neutral-gray-med-gray-500);
  border-radius: 8px;
}

/* line 563, app/assets/stylesheets/layout/general.scss */
.form__fields {
  display: flex;
  flex-direction: column;
}

/* line 567, app/assets/stylesheets/layout/general.scss */
.form__fields > * {
  margin-bottom: 16px;
}

/* line 570, app/assets/stylesheets/layout/general.scss */
.form__fields > *:last-child {
  margin-bottom: 0px;
}

/* line 575, app/assets/stylesheets/layout/general.scss */
.form__note {
  font-size: 12px;
  opacity: 75%;
}

/* line 580, app/assets/stylesheets/layout/general.scss */
.form__card-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 586, app/assets/stylesheets/layout/general.scss */
.form__field-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 592, app/assets/stylesheets/layout/general.scss */
.form__settings-list {
  display: flex;
  flex-direction: column;
  background: var(--sera-color-neutral-gray-light-gray-50);
  padding: 8px 16px;
}

/* line 599, app/assets/stylesheets/layout/general.scss */
.form__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--sera-color-text-titles);
  margin-bottom: 4px;
}

/* line 607, app/assets/stylesheets/layout/general.scss */
.form label {
  margin-bottom: 4px;
}

/* line 611, app/assets/stylesheets/layout/general.scss */
.form__label-group {
  display: flex;
  gap: 8px;
  margin-bottom: -8px;
  padding-right: 24px;
}

/* line 617, app/assets/stylesheets/layout/general.scss */
.form__label-group:last-child {
  display: none;
}

/* line 622, app/assets/stylesheets/layout/general.scss */
.form__field-group {
  display: flex;
  gap: 8px;
}

/* line 627, app/assets/stylesheets/layout/general.scss */
.form__field-group-delete {
  width: 16px;
  padding-top: 8px;
  flex-shrink: 0;
}

/* line 633, app/assets/stylesheets/layout/general.scss */
.form__setting {
  display: flex;
  align-items: center;
  padding: 8px 0px;
}

/* line 638, app/assets/stylesheets/layout/general.scss */
.form__setting label {
  margin: 0;
  margin-right: auto;
  font-weight: 600;
}

/* line 644, app/assets/stylesheets/layout/general.scss */
.form__setting + .form__warning {
  display: none;
}

/* line 648, app/assets/stylesheets/layout/general.scss */
.form__setting--on + .form__warning {
  display: block;
}

/* line 653, app/assets/stylesheets/layout/general.scss */
.form__warning {
  margin-bottom: 8px;
}

/* line 657, app/assets/stylesheets/layout/general.scss */
.form__footer {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 32px;
}

/* line 665, app/assets/stylesheets/layout/general.scss */
.attribute {
  font-size: 14px;
}

/* line 668, app/assets/stylesheets/layout/general.scss */
.attribute__label {
  font-weight: 600;
}

/* line 676, app/assets/stylesheets/layout/general.scss */
.attribute__note {
  font-size: 12px;
}

/* line 695, app/assets/stylesheets/layout/general.scss */
.datatable-error-field {
  background-color: var(--warning-yellow);
}

/* line 699, app/assets/stylesheets/layout/general.scss */
.pointer {
  cursor: pointer;
}

/* line 703, app/assets/stylesheets/layout/general.scss */
.is-invalid {
  background-color: #f7e5e5;
  border-width: 2px;
}

/* line 708, app/assets/stylesheets/layout/general.scss */
.voided-row td:not(td:has(.actions-menu)) {
  text-decoration: line-through !important;
  font-style: italic;
  color: var(--gray) !important;
}

/* line 712, app/assets/stylesheets/layout/general.scss */
.voided-row td:not(td:has(.actions-menu)):hover {
  text-decoration: line-through !important;
}

/* line 716, app/assets/stylesheets/layout/general.scss */
.voided-row td:not(td:has(.actions-menu)) a, .voided-row td:not(td:has(.actions-menu)) a * {
  text-decoration: line-through !important;
}

/* line 721, app/assets/stylesheets/layout/general.scss */
.dataTable td.text-center sera-modal * {
  text-align: initial;
}

/* line 734, app/assets/stylesheets/layout/general.scss */
table.dataTable td.th-no-text {
  cursor: pointer;
  position: relative;
}

/* line 744, app/assets/stylesheets/layout/general.scss */
table.dataTable td.th-no-text > .vue-component {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 752, app/assets/stylesheets/layout/general.scss */
table.dataTable td.th-no-text .vue-component > div,
table.dataTable td.th-no-text .vue-component > div > div,
table.dataTable td.th-no-text .actions-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

/* line 764, app/assets/stylesheets/layout/general.scss */
.chart-spinner {
  justify-content: center;
  font-size: 1.2em;
  height: 100%;
}

/* line 770, app/assets/stylesheets/layout/general.scss */
.relative {
  position: relative;
}

/* line 774, app/assets/stylesheets/layout/general.scss */
.no-results-message {
  color: var(--gray);
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

/* line 782, app/assets/stylesheets/layout/general.scss */
.no-results-message i {
  font-size: 3.8em;
  margin-bottom: 10px;
}

/* line 788, app/assets/stylesheets/layout/general.scss */
.menu-icon {
  color: #125AEB !important;
  cursor: pointer;
}

/* line 795, app/assets/stylesheets/layout/general.scss */
.tippy-tooltip {
  background-color: #353a3b;
  padding: 10px !important;
  border-radius: 5px;
}

/* line 799, app/assets/stylesheets/layout/general.scss */
.tippy-tooltip .tippy-content {
  background-color: var(--font-color);
  color: var(--white);
  border-radius: 5px;
  padding: 0 !important;
}

/* line 805, app/assets/stylesheets/layout/general.scss */
.tippy-tooltip .tippy-arrow {
  pointer-events: none;
}

/* line 811, app/assets/stylesheets/layout/general.scss */
.tippy-tooltip.tooltip-standard-size .tippy-content {
  width: 145px;
}

/* line 816, app/assets/stylesheets/layout/general.scss */
.tippy-tooltip.light-theme {
  color: inherit !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* line 820, app/assets/stylesheets/layout/general.scss */
.tippy-tooltip.light-theme .tippy-content {
  background-color: #FFF !important;
}

/* line 824, app/assets/stylesheets/layout/general.scss */
.tippy-tooltip.actions-menu-theme,
.tippy-box.tippy-box[data-theme~=actions-menu][data-theme~=light] {
  padding: 0 !important;
  box-shadow: none;
}

/* line 828, app/assets/stylesheets/layout/general.scss */
.tippy-tooltip.actions-menu-theme .tippy-content,
.tippy-box.tippy-box[data-theme~=actions-menu][data-theme~=light] .tippy-content {
  min-width: 190px;
  box-shadow: none !important;
  border: none !important;
  background-color: #ffffff !important;
}

/* line 836, app/assets/stylesheets/layout/general.scss */
.tippy-tooltip.pre-line-theme > .tippy-content {
  white-space: pre-line;
}

@media (min-width: 852px) {
  /* line 841, app/assets/stylesheets/layout/general.scss */
  .tippy-tooltip {
    max-width: none !important;
  }
}

/* line 846, app/assets/stylesheets/layout/general.scss */
.table-actions-menu {
  display: flex;
  flex-direction: column;
}

/* line 850, app/assets/stylesheets/layout/general.scss */
.table-actions-menu__link {
  height: 36px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f2f4f6;
  color: #125AEB;
  text-decoration: none;
  width: 100%;
  cursor: pointer;
}

/* line 860, app/assets/stylesheets/layout/general.scss */
.table-actions-menu__link:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

/* line 865, app/assets/stylesheets/layout/general.scss */
.table-actions-menu__link:last-child {
  border-bottom: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* line 871, app/assets/stylesheets/layout/general.scss */
.table-actions-menu__link button {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  outline: none;
  cursor: pointer;
}

/* line 885, app/assets/stylesheets/layout/general.scss */
.table-actions-menu i {
  margin: 0px 8px;
}

/* line 890, app/assets/stylesheets/layout/general.scss */
.hint-label {
  color: #626262;
  font-style: italic;
}

/* line 895, app/assets/stylesheets/layout/general.scss */
.badge-positional-container {
  position: relative;
  left: -15px;
}

/* line 900, app/assets/stylesheets/layout/general.scss */
.progress-billing-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-left: 4px;
  min-width: 20px;
  height: 18px;
  padding: 0 3px;
  border-radius: 3px;
  background-color: #2e4462;
  color: #fff;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1;
}

/* line 917, app/assets/stylesheets/layout/general.scss */
.invoice-number-link,
.invoice-number-link__badges {
  display: inline-flex;
  align-items: center;
}

/* line 923, app/assets/stylesheets/layout/general.scss */
.invoice-number-link__badges {
  gap: 4px;
  margin-left: 5px;
}

/* line 927, app/assets/stylesheets/layout/general.scss */
.invoice-number-link__badges .progress-billing-indicator {
  margin-left: 0;
}

/* line 932, app/assets/stylesheets/layout/general.scss */
.credit-memo-badge {
  background-color: #2e4462;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 0.9em;
  padding: 0 2px;
}

/* line 942, app/assets/stylesheets/layout/general.scss */
.whitespace-nowrap {
  white-space: nowrap;
}

/* line 945, app/assets/stylesheets/layout/general.scss */
.whitespace-nowrap-important {
  white-space: nowrap !important;
}

/* line 948, app/assets/stylesheets/layout/general.scss */
.whitespace-normal {
  white-space: normal;
}

/* line 951, app/assets/stylesheets/layout/general.scss */
.whitespace-pre-line, .pre-line {
  white-space: pre-line !important;
}

/* line 954, app/assets/stylesheets/layout/general.scss */
.wrap-options .select-options .option span {
  white-space: normal !important;
}

/* line 958, app/assets/stylesheets/layout/general.scss */
.form-container {
  padding: 10px;
  border: 1px solid var(--gray-border-color);
  background: #fff;
}

/* line 964, app/assets/stylesheets/layout/general.scss */
.hint-text {
  font-style: italic;
  color: var(--gray);
}

/* line 969, app/assets/stylesheets/layout/general.scss */
.label,
.modal-title {
  font-weight: bold;
}

/* line 974, app/assets/stylesheets/layout/general.scss */
h1 {
  font-size: 1.75rem;
}

/* line 976, app/assets/stylesheets/layout/general.scss */
h1 .title-hint-text {
  font-size: 0.87rem;
}

/* line 981, app/assets/stylesheets/layout/general.scss */
h2 {
  font-size: 1.5rem;
}

/* line 983, app/assets/stylesheets/layout/general.scss */
h2 .title-hint-text {
  font-size: 0.75rem;
}

/* line 988, app/assets/stylesheets/layout/general.scss */
h3 {
  font-size: 1.25rem;
}

/* line 990, app/assets/stylesheets/layout/general.scss */
h3 .title-hint-text {
  font-size: 0.8rem;
}

/* line 995, app/assets/stylesheets/layout/general.scss */
h4 {
  font-size: 1.125rem;
}

/* line 997, app/assets/stylesheets/layout/general.scss */
h4 .title-hint-text {
  font-size: 0.53rem;
}

/* line 1002, app/assets/stylesheets/layout/general.scss */
h5 {
  font-size: 1rem;
}

/* line 1004, app/assets/stylesheets/layout/general.scss */
h5 .title-hint-text {
  font-size: 0.48rem;
  font-weight: normal;
}

/* line 1010, app/assets/stylesheets/layout/general.scss */
h1, h2, h3, h4, h5 {
  font-weight: bold;
  margin-bottom: 0 !important;
}

/* line 1013, app/assets/stylesheets/layout/general.scss */
h1 .title-hint-text, h2 .title-hint-text, h3 .title-hint-text, h4 .title-hint-text, h5 .title-hint-text {
  font-weight: normal;
}

/* line 1018, app/assets/stylesheets/layout/general.scss */
.light-icon {
  color: white !important;
}

/* line 1022, app/assets/stylesheets/layout/general.scss */
.rounded-corners {
  border-radius: 25px;
}

/* line 1026, app/assets/stylesheets/layout/general.scss */
.overflow-scroll {
  overflow: scroll;
}

/* line 1031, app/assets/stylesheets/layout/general.scss */
.tech-crew-card .card-body {
  padding-top: 0px !important;
}

/* line 1034, app/assets/stylesheets/layout/general.scss */
.tech-crew-card .crew-info-row {
  display: inline-flex;
  justify-content: space-between;
  gap: 10px;
}

/* line 1038, app/assets/stylesheets/layout/general.scss */
.tech-crew-card .crew-info-row span {
  font-weight: normal;
}

/* line 1044, app/assets/stylesheets/layout/general.scss */
.form-group > label,
.form-control > label {
  font-weight: bold;
}

/* line 1049, app/assets/stylesheets/layout/general.scss */
.form-control-label {
  margin-bottom: 3px;
}

/* line 1054, app/assets/stylesheets/layout/general.scss */
.mx-calendar-content .cell.active {
  background-color: #125AEB !important;
}

/* line 1058, app/assets/stylesheets/layout/general.scss */
.mx-calendar-content .cell.in-range {
  background-color: #bce3ff !important;
}

/* line 1062, app/assets/stylesheets/layout/general.scss */
.mx-btn:hover {
  border-color: #125AEB !important;
  color: #125AEB !important;
}

/* line 1067, app/assets/stylesheets/layout/general.scss */
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current {
  background: #125AEB !important;
  box-shadow: #125AEB 0 1px 3px 0 inset !important;
  color: #ffffff;
  font-weight: 700;
}

/* line 1072, app/assets/stylesheets/layout/general.scss */
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current:hover {
  background: #0e48bc !important;
  box-shadow: #0e48bc 0 1px 3px 0 inset !important;
}

/* line 1078, app/assets/stylesheets/layout/general.scss */
.responsive-circle {
  width: 100%;
  display: block;
  margin: 0 auto;
  position: relative;
}

/* line 1083, app/assets/stylesheets/layout/general.scss */
.responsive-circle:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

/* line 1090, app/assets/stylesheets/layout/general.scss */
.z3 {
  z-index: 3;
}

/* line 1094, app/assets/stylesheets/layout/general.scss */
.z2 {
  z-index: 2;
}

/* line 1098, app/assets/stylesheets/layout/general.scss */
.z1 {
  z-index: 1;
}

/* line 1102, app/assets/stylesheets/layout/general.scss */
.bg-medium {
  background-color: #d3d7d9;
}

/* line 1106, app/assets/stylesheets/layout/general.scss */
.box-shadow {
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.15);
}

/* line 1109, app/assets/stylesheets/layout/general.scss */
.font-sm {
  font-size: 0.8em;
}

/* line 1114, app/assets/stylesheets/layout/general.scss */
.scrollable-datatable .dataTables_wrapper .row:nth-child(2) {
  overflow-x: scroll;
}

/* line 1118, app/assets/stylesheets/layout/general.scss */
.erase-pill-icon {
  pointer-events: all !important;
}

/* line 1122, app/assets/stylesheets/layout/general.scss */
.select-field-label {
  font-weight: bold;
  margin: 0 0 3px 2px;
}

/* line 1126, app/assets/stylesheets/layout/general.scss */
.font-normal {
  font-weight: normal;
}

/* line 1129, app/assets/stylesheets/layout/general.scss */
.mb-20 {
  margin-bottom: 20px;
}

/* line 1132, app/assets/stylesheets/layout/general.scss */
.text-body {
  color: #6F767B;
}

/* line 1135, app/assets/stylesheets/layout/general.scss */
.text-title {
  font-weight: bold;
  color: #353A3B;
}

/* line 1139, app/assets/stylesheets/layout/general.scss */
.font-title {
  font-size: 16px;
}

/* line 1142, app/assets/stylesheets/layout/general.scss */
.font-semibold {
  font-weight: 600;
}

/* line 1145, app/assets/stylesheets/layout/general.scss */
.text-titles {
  color: var(--sera-color-text-titles);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 166.667% */
  letter-spacing: -0.36px;
}

/* line 1155, app/assets/stylesheets/layout/general.scss */
.slideout-panel .slideout-panel-bg {
  z-index: 9999 !important;
}

/* line 1159, app/assets/stylesheets/layout/general.scss */
.slideout-wrapper .slideout {
  z-index: 9999 !important;
}

/* line 1169, app/assets/stylesheets/layout/general.scss */
companycam-ext {
  display: contents !important;
}

/* line 1173, app/assets/stylesheets/layout/general.scss */
.shortcut-label {
  font-style: italic;
  margin-top: 10px;
  color: #6c757d;
  font-size: 0.8em;
}

/* line 1181, app/assets/stylesheets/layout/general.scss */
.toggles {
  border-bottom: 1px solid #ccc;
}

/* line 1183, app/assets/stylesheets/layout/general.scss */
.toggles .toggle {
  padding: 5px 20px;
  cursor: pointer;
  transition: all 250ms ease;
}

/* line 1187, app/assets/stylesheets/layout/general.scss */
.toggles .toggle.active {
  box-shadow: 0 -4px 0 #125AEB inset;
  color: #125AEB;
}

/* line 1191, app/assets/stylesheets/layout/general.scss */
.toggles .toggle:hover {
  color: #125AEB;
}

@media screen and (max-width: 574px) {
  /* line 1197, app/assets/stylesheets/layout/general.scss */
  .mb-xs-2 {
    margin-bottom: .5rem !important;
  }
  /* line 1200, app/assets/stylesheets/layout/general.scss */
  .overflow-xs-scroll {
    overflow: scroll;
  }
}

@media screen and (max-width: 900px) {
  /* line 1205, app/assets/stylesheets/layout/general.scss */
  .mb-md-2 {
    margin-bottom: .5rem !important;
  }
}

/* line 1210, app/assets/stylesheets/layout/general.scss */
.select-box {
  box-shadow: none !important;
}

/* line 1213, app/assets/stylesheets/layout/general.scss */
.select-box.disabled {
  opacity: 1 !important;
}

/* line 1216, app/assets/stylesheets/layout/general.scss */
.select-box.disabled input {
  background: #F4F5F5;
}

/* line 1219, app/assets/stylesheets/layout/general.scss */
.select-box.disabled .chevron-icon {
  color: #9CA4AA;
}

/* line 1223, app/assets/stylesheets/layout/general.scss */
.select-box input {
  height: 36px;
}

/* line 1227, app/assets/stylesheets/layout/general.scss */
.products .select-options .truncated-text,
.pricebook_products .select-options .truncated-text {
  white-space: normal !important;
}

/* line 1231, app/assets/stylesheets/layout/general.scss */
.product-name-column, .vendor-name-column {
  white-space: normal !important;
  min-width: 250px;
  max-width: 500px;
}

/* line 1236, app/assets/stylesheets/layout/general.scss */
.inventory-count-column {
  min-width: 110px;
}

/* line 1239, app/assets/stylesheets/layout/general.scss */
.inventory-category-filter {
  width: 232px;
}

/* line 1242, app/assets/stylesheets/layout/general.scss */
.inventory-category-filter .pill {
  width: 190px;
}

/* line 1248, app/assets/stylesheets/layout/general.scss */
.ss-input-field:not(.body-filters *), .form-control:not(.body-filters *), .admin-select-box:not(.body-filters *) {
  box-shadow: none !important;
  border-color: var(--sera-color-fields-border, #9CA4AA);
  border-width: 1.5px !important;
}

/* line 1255, app/assets/stylesheets/layout/general.scss */
.category-card {
  box-shadow: none !important;
}

/* line 1258, app/assets/stylesheets/layout/general.scss */
.gap-3 {
  gap: 5px;
}

/* line 1261, app/assets/stylesheets/layout/general.scss */
.gap-3 {
  gap: 10px;
}

/* line 1264, app/assets/stylesheets/layout/general.scss */
.gap-3 {
  gap: 15px;
}

/* line 1267, app/assets/stylesheets/layout/general.scss */
.gap-30 {
  gap: 30px;
}

/* line 1270, app/assets/stylesheets/layout/general.scss */
:root {
  scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

/* line 1274, app/assets/stylesheets/layout/general.scss */
::-moz-scrollbar-button:decrement,
::-moz-scrollbar-button:increment,
::-webkit-scrollbar-button:decrement,
::-webkit-scrollbar-button:increment {
  width: 0px;
}

/* line 1280, app/assets/stylesheets/layout/general.scss */
.sera-ui-dropdown__wrapper {
  position: relative;
}

/* line 1283, app/assets/stylesheets/layout/general.scss */
.sera-ui-dropdown__label {
  line-height: 1.2;
}

/* line 1286, app/assets/stylesheets/layout/general.scss */
.sera-ui-dropdown__sublabel {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2;
  opacity: 75%;
}

/* line 1292, app/assets/stylesheets/layout/general.scss */
.sera-ui-dropdown__icon {
  position: absolute;
  top: 5px;
  right: 0;
}

/* line 1297, app/assets/stylesheets/layout/general.scss */
.sera-ui-dropdown__icon.fa-circle-check {
  color: var(--sera-color-accents-green-600);
}

/* line 1300, app/assets/stylesheets/layout/general.scss */
.sera-ui-dropdown__icon.fa-circle-minus {
  color: var(--sera-color-neutral-gray-med-gray-600);
}

/* line 1303, app/assets/stylesheets/layout/general.scss */
.sera-ui-dropdown__icon.fa-triangle-exclamation {
  color: var(--sera-color-accents-yellow-900);
}

/* line 1308, app/assets/stylesheets/layout/general.scss */
body.slide-panel-open, body.flowbite-modal-open {
  overflow: hidden !important;
}

/* line 1312, app/assets/stylesheets/layout/general.scss */
.slide-panel {
  position: fixed;
  width: 660px;
  top: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  box-shadow: var(--box-shadow);
  z-index: 1032;
  transform: translateX(100%);
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 32px;
  overflow-y: auto;
}

/* line 1326, app/assets/stylesheets/layout/general.scss */
.slide-panel--open {
  transform: translateX(0%);
}

/* line 1330, app/assets/stylesheets/layout/general.scss */
.slide-panel__header {
  display: flex;
  align-items: center;
  font-size: 21px;
  font-weight: 700;
}

/* line 1336, app/assets/stylesheets/layout/general.scss */
.slide-panel__close-icon {
  margin-left: auto;
  color: var(--primary-color);
}

/* line 1340, app/assets/stylesheets/layout/general.scss */
.slide-panel__content {
  margin-top: 32px;
}

@media (max-width: 676px) {
  /* line 1346, app/assets/stylesheets/layout/general.scss */
  .slide-panel {
    width: auto;
    left: 8px;
  }
}

/* line 1352, app/assets/stylesheets/layout/general.scss */
.slide-panel-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1031;
  background: rgba(0, 0, 0, 0.5);
}

/* line 1362, app/assets/stylesheets/layout/general.scss */
.sera-input-fluid {
  --sera-input-width: auto;
  --sera-input-min-width: 50px;
}

/* line 1367, app/assets/stylesheets/layout/general.scss */
.sera-input-width-140 {
  width: 140px;
  flex-shrink: 0;
  --sera-input-width: 140px;
}

/* line 1374, app/assets/stylesheets/layout/general.scss */
.product-location__message {
  color: #de0000;
  display: none;
}

/* line 1379, app/assets/stylesheets/layout/general.scss */
.product-location--will-delete {
  background-color: #F4F5F5;
}

/* line 1382, app/assets/stylesheets/layout/general.scss */
.product-location--will-delete .product-location__message {
  display: block;
}

/* line 1386, app/assets/stylesheets/layout/general.scss */
.product-location--will-delete i.fa-trash-alt {
  display: none;
}

/* line 1391, app/assets/stylesheets/layout/general.scss */
.product-location:not(.product-location--will-delete) i.fa-trash-undo {
  display: none;
}

/* line 1398, app/assets/stylesheets/layout/general.scss */
.sera-input-group sera-input {
  --sera-input-border-radius: 0 0 0 0;
  --sera-input-container-box-shadow: none;
}

/* line 1403, app/assets/stylesheets/layout/general.scss */
.sera-input-group sera-input:first-child {
  --sera-input-border-radius: 4px 0 0 4px;
}

/* line 1407, app/assets/stylesheets/layout/general.scss */
.sera-input-group sera-input:last-child {
  --sera-input-border-radius: 0 4px 4px 0;
  margin-left: -2px;
}

/* line 1413, app/assets/stylesheets/layout/general.scss */
.flex-grow-1 {
  flex-grow: 1;
}

/* line 1417, app/assets/stylesheets/layout/general.scss */
.label-required-mark {
  color: #de0000;
}

/* line 1421, app/assets/stylesheets/layout/general.scss */
table.dataTable td, table.dataTable th {
  box-sizing: border-box !important;
}

/* line 1424, app/assets/stylesheets/layout/general.scss */
.dataTables_length select {
  width: 150px !important;
}

/* line 1427, app/assets/stylesheets/layout/general.scss */
.dataTables_paginate ul.pagination li.paginate_button:active {
  background-color: transparent;
}

/* line 1430, app/assets/stylesheets/layout/general.scss */
#dt_rails_actions {
  display: none;
}

/* line 1435, app/assets/stylesheets/layout/general.scss */
::marker {
  content: none;
}

/* line 1439, app/assets/stylesheets/layout/general.scss */
.page-length-select .ss-input-field {
  border-color: #E5E7EB !important;
}

/* line 1448, app/assets/stylesheets/layout/general.scss */
.table-responsive table:not(.technician-schedule-calendar, .lineItemTable) tr.dt-selected-row,
table.table:not(.technician-schedule-calendar, .lineItemTable) tr.dt-selected-row,
.datatable-v3 table:not(.technician-schedule-calendar, .lineItemTable) tr.dt-selected-row {
  background-color: var(--table-row-selected) !important;
}

@media screen and (prefers-reduced-motion: reduce), (update: slow) {
  /* line 1458, app/assets/stylesheets/layout/general.scss */
  * {
    -webkit-animation-duration: 0.001ms !important;
            animation-duration: 0.001ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    /* Hat tip Nick/cssremedy (https://css-tricks.com/revisiting-prefers-reduced-motion-the-reduced-motion-media-query/#comment-1700170) */
    transition-duration: 0.001ms !important;
  }
}
