@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 */
/* line 4, app/assets/stylesheets/_variables.scss */
:root {
  --encore-primary: #00a3da;
  --encore-primary-hover: #007f9b;
  --encore-primary-light: rgba(0, 163, 218, 0.18);
  --encore-dark: #012970;
  --encore-navy: #003264;
  --encore-green: #326932;
  --encore-body-bg: #f6f9ff;
  --encore-body-color: #444444;
  --encore-card-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  --encore-header-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  --encore-border: #ebeef4;
  --encore-sidebar-bg: #fff;
  --encore-header-bg: #fff;
  --encore-heading-color: #012970;
  --encore-muted: #899bbd;
  --encore-link: #00a3da;
  --encore-link-hover: #007f9b;
  --encore-success: #48bb78;
  --encore-warning: #ffc107;
  --encore-danger: #f56565;
  --encore-info: #4299e1;
  --encore-pending: #4299e1;
  --encore-revise: #ed8936;
  --encore-branch-n: #20b166;
  --encore-branch-n-border: #329149;
  --encore-branch-se: #e65555;
  --encore-branch-se-border: #bb4e4e;
  --encore-branch-sw: #5596e6;
  --encore-branch-sw-border: #377dd3;
  --encore-branch-lv: #ffd700;
  --encore-branch-lv-border: #d3ce4a;
  --encore-branch-corp: #c2c2c2;
  --encore-branch-corp-border: #b1b1b1;
  --encore-li-proposed: #92e4c0;
  --encore-li-won: #48bb78;
  --encore-li-lost: #e16b6b;
  --encore-li-delivered: #f4dc5d;
  --encore-li-bidding: grey;
  --encore-li-error: #db00ff;
  --encore-table-highlight: #0CC8EF;
  --encore-table-light-bg: #f6f9ff;
  --encore-rotation-blue: #007bff;
  --encore-rotation-red: #dc3545;
  --encore-rotation-green: #28a745;
  --encore-rotation-yellow: #ffc107;
  --encore-rotation-purple: #6f42c1;
}

/**
* Template Name: NiceAdmin
* Template URL: https://bootstrapmade.com/nice-admin-bootstrap-admin-html-template/
* Updated: Apr 7 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* line 12, app/assets/stylesheets/style.scss */
:root {
  scroll-behavior: smooth;
}

/* line 16, app/assets/stylesheets/style.scss */
body {
  font-family: "Open Sans", sans-serif;
  background: var(--encore-body-bg);
  color: var(--encore-body-color);
}

/* line 22, app/assets/stylesheets/style.scss */
a {
  color: var(--encore-link);
  text-decoration: none;
}

/* line 27, app/assets/stylesheets/style.scss */
a:hover {
  color: var(--encore-link-hover);
  text-decoration: none;
}

/* line 32, app/assets/stylesheets/style.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
/* line 44, app/assets/stylesheets/style.scss */
#main {
  margin-top: 60px;
  padding: 20px 30px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  /* line 51, app/assets/stylesheets/style.scss */
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
/* line 59, app/assets/stylesheets/style.scss */
.pagetitle {
  margin-bottom: 10px;
}

/* line 63, app/assets/stylesheets/style.scss */
.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--encore-heading-color);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
/* line 73, app/assets/stylesheets/style.scss */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--encore-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

/* line 87, app/assets/stylesheets/style.scss */
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

/* line 93, app/assets/stylesheets/style.scss */
.back-to-top:hover {
  background: var(--encore-primary-hover);
  color: #fff;
}

/* line 98, app/assets/stylesheets/style.scss */
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
/* line 107, app/assets/stylesheets/style.scss */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

/* line 117, app/assets/stylesheets/style.scss */
.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

/* line 124, app/assets/stylesheets/style.scss */
.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

/* line 129, app/assets/stylesheets/style.scss */
.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

/* line 133, app/assets/stylesheets/style.scss */
.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

/* line 138, app/assets/stylesheets/style.scss */
.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

/* line 144, app/assets/stylesheets/style.scss */
.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

/* line 150, app/assets/stylesheets/style.scss */
.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  /* line 155, app/assets/stylesheets/style.scss */
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
/* line 184, app/assets/stylesheets/style.scss */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

/* line 189, app/assets/stylesheets/style.scss */
.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

/* line 194, app/assets/stylesheets/style.scss */
.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

/* line 199, app/assets/stylesheets/style.scss */
.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

/* line 204, app/assets/stylesheets/style.scss */
.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

/* line 209, app/assets/stylesheets/style.scss */
.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

/* line 214, app/assets/stylesheets/style.scss */
.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
/* line 220, app/assets/stylesheets/style.scss */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: var(--encore-card-shadow);
}

/* line 227, app/assets/stylesheets/style.scss */
.card-header,
.card-footer {
  padding: 15px;
}

/* line 235, app/assets/stylesheets/style.scss */
.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--encore-heading-color);
  font-family: "Poppins", sans-serif;
}

/* line 243, app/assets/stylesheets/style.scss */
.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

/* line 249, app/assets/stylesheets/style.scss */
.card-body {
  padding: 0 20px 20px 20px;
}

/* line 253, app/assets/stylesheets/style.scss */
.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
/* line 258, app/assets/stylesheets/style.scss */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

/* Close Button */
/* line 265, app/assets/stylesheets/style.scss */
.btn-close {
  background-size: 25%;
}

/* line 269, app/assets/stylesheets/style.scss */
.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
/* line 275, app/assets/stylesheets/style.scss */
.accordion-item {
  border: 1px solid #ebeef4;
}

/* line 279, app/assets/stylesheets/style.scss */
.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

/* line 284, app/assets/stylesheets/style.scss */
.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

/* line 289, app/assets/stylesheets/style.scss */
.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

/* line 295, app/assets/stylesheets/style.scss */
.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--encore-primary);
}

/* line 300, app/assets/stylesheets/style.scss */
.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
/* line 307, app/assets/stylesheets/style.scss */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #899bbd;
  font-weight: 600;
}

/* line 314, app/assets/stylesheets/style.scss */
.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

/* line 319, app/assets/stylesheets/style.scss */
.breadcrumb a:hover {
  color: #51678f;
}

/* line 323, app/assets/stylesheets/style.scss */
.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

/* line 327, app/assets/stylesheets/style.scss */
.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Bordered Tabs */
/* line 333, app/assets/stylesheets/style.scss */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

/* line 337, app/assets/stylesheets/style.scss */
.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

/* line 343, app/assets/stylesheets/style.scss */
.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: var(--encore-primary);
}

/* line 348, app/assets/stylesheets/style.scss */
.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: var(--encore-primary);
  border-bottom: 2px solid var(--encore-primary);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* line 357, app/assets/stylesheets/style.scss */
.logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  /* line 362, app/assets/stylesheets/style.scss */
  .logo {
    width: 280px;
  }
}

/* line 367, app/assets/stylesheets/style.scss */
.logo img {
  max-height: 26px;
  margin-right: 6px;
}

/* line 372, app/assets/stylesheets/style.scss */
.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "Nunito", sans-serif;
}

/* line 379, app/assets/stylesheets/style.scss */
.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  padding-left: 20px;
  /* Toggle Sidebar Button */
  /* Search Bar */
}

/* line 390, app/assets/stylesheets/style.scss */
.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: #012970;
}

/* line 397, app/assets/stylesheets/style.scss */
.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  /* line 403, app/assets/stylesheets/style.scss */
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }
  /* line 417, app/assets/stylesheets/style.scss */
  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

/* line 424, app/assets/stylesheets/style.scss */
.header .search-form {
  width: 100%;
}

/* line 428, app/assets/stylesheets/style.scss */
.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #012970;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

/* line 439, app/assets/stylesheets/style.scss */
.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

/* line 446, app/assets/stylesheets/style.scss */
.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

/* line 453, app/assets/stylesheets/style.scss */
.header .search-form button i {
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
/* line 460, app/assets/stylesheets/style.scss */
.header-nav ul {
  list-style: none;
}

/* line 464, app/assets/stylesheets/style.scss */
.header-nav > ul {
  margin: 0;
  padding: 0;
}

/* line 469, app/assets/stylesheets/style.scss */
.header-nav .nav-icon {
  font-size: 22px;
  color: #012970;
  margin-right: 25px;
  position: relative;
}

/* line 476, app/assets/stylesheets/style.scss */
.header-nav .nav-profile {
  color: #012970;
}

/* line 480, app/assets/stylesheets/style.scss */
.header-nav .nav-profile img {
  max-height: 36px;
}

/* line 484, app/assets/stylesheets/style.scss */
.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

/* line 489, app/assets/stylesheets/style.scss */
.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

/* line 497, app/assets/stylesheets/style.scss */
.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

/* line 501, app/assets/stylesheets/style.scss */
.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

/* line 508, app/assets/stylesheets/style.scss */
.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

/* line 513, app/assets/stylesheets/style.scss */
.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* line 519, app/assets/stylesheets/style.scss */
.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

/* line 525, app/assets/stylesheets/style.scss */
.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

/* line 529, app/assets/stylesheets/style.scss */
.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

/* line 533, app/assets/stylesheets/style.scss */
.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

/* line 538, app/assets/stylesheets/style.scss */
.header-nav .messages .message-item a {
  display: flex;
}

/* line 542, app/assets/stylesheets/style.scss */
.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

/* line 547, app/assets/stylesheets/style.scss */
.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

/* line 554, app/assets/stylesheets/style.scss */
.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

/* line 560, app/assets/stylesheets/style.scss */
.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

/* line 564, app/assets/stylesheets/style.scss */
.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

/* line 570, app/assets/stylesheets/style.scss */
.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

/* line 577, app/assets/stylesheets/style.scss */
.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

/* line 581, app/assets/stylesheets/style.scss */
.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

/* line 587, app/assets/stylesheets/style.scss */
.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

/* line 593, app/assets/stylesheets/style.scss */
.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
/* line 600, app/assets/stylesheets/style.scss */
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
}

@media (max-width: 1199px) {
  /* line 617, app/assets/stylesheets/style.scss */
  .sidebar {
    left: -300px;
  }
}

/* line 622, app/assets/stylesheets/style.scss */
.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

/* line 628, app/assets/stylesheets/style.scss */
.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width: 1200px) {
  /* line 634, app/assets/stylesheets/style.scss */
  #main,
#footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  /* line 641, app/assets/stylesheets/style.scss */
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {
  /* line 648, app/assets/stylesheets/style.scss */
  .toggle-sidebar #main,
.toggle-sidebar #footer {
    margin-left: 0;
  }
  /* line 653, app/assets/stylesheets/style.scss */
  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

/* line 658, app/assets/stylesheets/style.scss */
.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* line 664, app/assets/stylesheets/style.scss */
.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* line 670, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

/* line 674, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

/* line 682, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--encore-primary);
  transition: 0.3;
  background: var(--encore-body-bg);
  padding: 10px 15px;
  border-radius: 4px;
}

/* line 694, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: var(--encore-primary);
}

/* line 700, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-link.collapsed {
  color: #012970;
  background: #fff;
}

/* line 705, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-link.collapsed i {
  color: #899bbd;
}

/* line 709, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-link:hover {
  color: var(--encore-primary);
  background: var(--encore-body-bg);
}

/* line 714, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-link:hover i {
  color: var(--encore-primary);
}

/* line 718, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

/* line 723, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

/* line 727, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

/* line 733, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

/* line 744, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

/* line 751, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-content a i.nav-icon-lg {
  font-size: 14px;
  border-radius: 0;
}

/* line 756, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: var(--encore-primary);
}

/* line 761, app/assets/stylesheets/style.scss */
.sidebar-nav .nav-content a.active i {
  background-color: var(--encore-primary);
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
/* line 769, app/assets/stylesheets/style.scss */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

/* line 775, app/assets/stylesheets/style.scss */
.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

/* line 783, app/assets/stylesheets/style.scss */
.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #4154f1;
}

/* line 788, app/assets/stylesheets/style.scss */
.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

/* line 792, app/assets/stylesheets/style.scss */
.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

/* line 802, app/assets/stylesheets/style.scss */
.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
/* line 807, app/assets/stylesheets/style.scss */
.dashboard .info-card {
  padding-bottom: 10px;
}

/* line 811, app/assets/stylesheets/style.scss */
.dashboard .info-card h6 {
  font-size: 28px;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

/* line 819, app/assets/stylesheets/style.scss */
.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

/* line 828, app/assets/stylesheets/style.scss */
.dashboard .sales-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}

/* line 833, app/assets/stylesheets/style.scss */
.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

/* line 838, app/assets/stylesheets/style.scss */
.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

/* Activity */
/* line 844, app/assets/stylesheets/style.scss */
.dashboard .activity {
  font-size: 14px;
}

/* line 848, app/assets/stylesheets/style.scss */
.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

/* line 856, app/assets/stylesheets/style.scss */
.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

/* line 866, app/assets/stylesheets/style.scss */
.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

/* line 877, app/assets/stylesheets/style.scss */
.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

/* line 882, app/assets/stylesheets/style.scss */
.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

/* line 886, app/assets/stylesheets/style.scss */
.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* Recent Sales */
/* line 891, app/assets/stylesheets/style.scss */
.dashboard .recent-sales {
  font-size: 14px;
}

/* line 895, app/assets/stylesheets/style.scss */
.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

/* line 899, app/assets/stylesheets/style.scss */
.dashboard .recent-sales .table thead th {
  border: 0;
}

/* line 903, app/assets/stylesheets/style.scss */
.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

/* line 907, app/assets/stylesheets/style.scss */
.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
/* line 914, app/assets/stylesheets/style.scss */
.contact .info-box {
  padding: 28px 30px;
}

/* line 918, app/assets/stylesheets/style.scss */
.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

/* line 924, app/assets/stylesheets/style.scss */
.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

/* line 931, app/assets/stylesheets/style.scss */
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* line 942, app/assets/stylesheets/style.scss */
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

/* line 949, app/assets/stylesheets/style.scss */
.footer .copyright {
  text-align: center;
  color: #012970;
}

/* line 954, app/assets/stylesheets/style.scss */
.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: var(--encore-heading-color);
}

/* line 1, app/assets/stylesheets/custom.scss */
::placeholder {
  color: rgba(122, 119, 119, 0.7) !important;
}

/* line 9, app/assets/stylesheets/custom.scss */
body.visits-focused .visits-page-header {
  display: none;
}

/* line 19, app/assets/stylesheets/custom.scss */
body.visits-focused .branch-calendar-unscheduled-col,
body.branch-cal-panel-collapsed .branch-calendar-unscheduled-col {
  display: none;
}

/* line 24, app/assets/stylesheets/custom.scss */
body.visits-focused .branch-calendar-main-col,
body.branch-cal-panel-collapsed .branch-calendar-main-col {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

/* line 38, app/assets/stylesheets/custom.scss */
#offcanvasRightLarge:has(.visit-drawer) {
  width: 520px !important;
  max-width: 90vw !important;
}

/* line 60, app/assets/stylesheets/custom.scss */
#offcanvasRightLarge:has(.visit-drawer) > turbo-frame {
  display: block;
}

/* line 69, app/assets/stylesheets/custom.scss */
.visit-drawer turbo-frame:empty {
  display: none;
}

@media print {
  /* line 74, app/assets/stylesheets/custom.scss */
  body {
    background-color: #ffffff !important;
  }
  /* line 78, app/assets/stylesheets/custom.scss */
  .card {
    box-shadow: none !important;
  }
  /* line 82, app/assets/stylesheets/custom.scss */
  .hide-print {
    display: none !important;
  }
  /* line 88, app/assets/stylesheets/custom.scss */
  .visit-card {
    page-break-inside: avoid;
    break-inside: avoid;
  }
  /* line 96, app/assets/stylesheets/custom.scss */
  .print-fluid {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* line 103, app/assets/stylesheets/custom.scss */
.cursor-pointer {
  cursor: pointer;
}

/* line 110, app/assets/stylesheets/custom.scss */
.visit-card.drop-before {
  box-shadow: inset 0 3px 0 0 var(--encore-primary, #00a3da);
}

/* line 113, app/assets/stylesheets/custom.scss */
.visit-card.drop-after {
  box-shadow: inset 0 -3px 0 0 var(--encore-primary, #00a3da);
}

/* line 118, app/assets/stylesheets/custom.scss */
.collapsible-chevron {
  display: inline-block;
  transition: transform 0.2s ease;
}

/* line 122, app/assets/stylesheets/custom.scss */
.collapsible-chevron.collapsed {
  transform: rotate(-90deg) !important;
}

/* line 127, app/assets/stylesheets/custom.scss */
.encore-blue {
  color: #00a3da !important;
}

/* line 131, app/assets/stylesheets/custom.scss */
.encore-blue-bg {
  background-color: #00a3da !important;
}

/* line 139, app/assets/stylesheets/custom.scss */
.btn-encore-blue {
  color: #fff;
  background-color: #00a3da;
  border-color: #00a3da;
}

/* line 144, app/assets/stylesheets/custom.scss */
.btn-encore-blue:hover {
  color: #fff;
  background-color: #007f9b;
  border-color: #007f9b;
}

/* line 151, app/assets/stylesheets/custom.scss */
.btn-xs {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 0.55rem;
  --bs-btn-border-radius: 0.2rem;
}

/* line 158, app/assets/stylesheets/custom.scss */
.btn-outline-purple {
  color: #6f42c1;
  border-color: #6f42c1;
}

/* line 162, app/assets/stylesheets/custom.scss */
.btn-outline-purple:hover {
  color: #fff;
  background-color: #6f42c1;
  border-color: #6f42c1;
}

/* line 169, app/assets/stylesheets/custom.scss */
.btn-outline-light-red {
  color: #e66769;
  border-color: #e66769;
}

/* line 173, app/assets/stylesheets/custom.scss */
.btn-outline-light-red:hover {
  color: #fff;
  background-color: #e66769;
  border-color: #e66769;
}

/* line 180, app/assets/stylesheets/custom.scss */
.logo img {
  max-height: none;
}

/* line 184, app/assets/stylesheets/custom.scss */
.logo {
  width: auto;
}

/* line 188, app/assets/stylesheets/custom.scss */
li.active {
  background-color: #f6f9ff;
}

/* line 192, app/assets/stylesheets/custom.scss */
.light-bg {
  background-color: #f6f9ff;
  --bs-table-bg: #f6f9ff;
}

/* line 197, app/assets/stylesheets/custom.scss */
.bg-table-total {
  background-color: #f6f9ff !important;
  font-size: larger;
}

/* line 202, app/assets/stylesheets/custom.scss */
.table-custom tbody tr:first-child td {
  border-top: none !important;
}

/* line 206, app/assets/stylesheets/custom.scss */
.smaller {
  font-size: smaller;
}

/* line 210, app/assets/stylesheets/custom.scss */
.budget-inline-notice {
  font-size: 0.8rem;
}

/* line 214, app/assets/stylesheets/custom.scss */
.table tr.highlight, .table td.highlight {
  background-color: #0CC8EF;
  --bs-table-bg: #0CC8EF;
}

/* line 219, app/assets/stylesheets/custom.scss */
th.border-right {
  border-right: 1px solid #dee2e6;
}

/* line 223, app/assets/stylesheets/custom.scss */
th.border-left {
  border-left: 1px solid #dee2e6;
}

/* line 227, app/assets/stylesheets/custom.scss */
th.border-top {
  border-top: 1px solid #dee2e6;
}

/* line 231, app/assets/stylesheets/custom.scss */
th.border-bottom {
  border-bottom: 1px solid #dee2e6;
}

/* line 235, app/assets/stylesheets/custom.scss */
th.no-bottom-border {
  border-bottom: none;
}

/* line 239, app/assets/stylesheets/custom.scss */
#alert-container {
  position: fixed;
  top: 70px;
  /* Adjust this value if your navbar height is different */
  right: 0;
  width: 40%;
  z-index: 1050;
  /* Ensure it's above other content */
  padding: 10px;
  pointer-events: none;
  /* Ensures it doesn’t block interaction with the page */
}

/* line 249, app/assets/stylesheets/custom.scss */
#alert-container .alert {
  margin-bottom: 0.5rem;
  pointer-events: auto;
  /* Allows interaction with the alerts themselves */
}

/* line 254, app/assets/stylesheets/custom.scss */
.bg-prev-year-col {
  background-color: #00a3da2e !important;
}

/* line 258, app/assets/stylesheets/custom.scss */
.dropdown-radius-fix {
  border-bottom-right-radius: 5px !important;
  border-top-right-radius: 5px !important;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

/* line 265, app/assets/stylesheets/custom.scss */
.superscript {
  position: relative;
  top: -0.5em;
  font-size: 70%;
}

/* line 271, app/assets/stylesheets/custom.scss */
.progress-label {
  margin-right: 10px;
  /* Space between the percentage and the progress bar */
  white-space: nowrap;
  /* Prevents wrapping of the percentage text */
}

/* line 276, app/assets/stylesheets/custom.scss */
.subtext {
  font-size: 0.8rem;
}

/* line 280, app/assets/stylesheets/custom.scss */
.subtext-sm {
  font-size: 0.7rem;
}

/* line 284, app/assets/stylesheets/custom.scss */
.disabled-input {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  color: #6c757d;
  /* Disabled text color */
  background-color: #e9ecef;
  /* Light gray background */
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  cursor: not-allowed;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 297, app/assets/stylesheets/custom.scss */
.border-danger-important {
  border: 1px solid #dc3545 !important;
}

/* line 301, app/assets/stylesheets/custom.scss */
.border-warn-important {
  border: 1px solid #ffc107 !important;
}

/* line 305, app/assets/stylesheets/custom.scss */
.branch-select {
  border-radius: 5px;
  padding: 2px 10px;
}

/* line 310, app/assets/stylesheets/custom.scss */
.n-bg {
  background-color: #20b166;
  border: 1px solid #329149;
  color: white;
}

/* line 316, app/assets/stylesheets/custom.scss */
.n-bg .form-check-input:checked {
  background-color: #0e590d;
  border-color: #179134;
}

/* line 321, app/assets/stylesheets/custom.scss */
.se-bg {
  background-color: #e65555;
  border: 1px solid #bb4e4e;
  color: white;
}

/* line 327, app/assets/stylesheets/custom.scss */
.se-bg .form-check-input:checked {
  background-color: #850a0a;
  border-color: #8d1f1f;
}

/* line 332, app/assets/stylesheets/custom.scss */
.sw-bg {
  background-color: #5596e6;
  border: 1px solid #377dd3;
  color: white;
}

/* line 338, app/assets/stylesheets/custom.scss */
.sw-bg .form-check-input:checked {
  background-color: #003c93;
}

/* line 342, app/assets/stylesheets/custom.scss */
.lv-bg {
  background-color: #ffd700;
  border: 1px solid #d3ce4a;
}

/* line 347, app/assets/stylesheets/custom.scss */
.lv-bg .form-check-input:checked {
  background-color: #6b5d10;
  border-color: #574c0d;
}

/* line 352, app/assets/stylesheets/custom.scss */
.corp-bg {
  background-color: #c2c2c2;
  border: 1px solid #b1b1b1;
}

/* line 357, app/assets/stylesheets/custom.scss */
.corp-bg .form-check-input:checked {
  background-color: #5d5d5d;
  border-color: #515151;
}

/* line 362, app/assets/stylesheets/custom.scss */
.phx-bg {
  background-color: #c2c2c2;
  border: 1px solid #b1b1b1;
}

/* line 367, app/assets/stylesheets/custom.scss */
.phx-bg .form-check-input:checked {
  background-color: #5d5d5d;
  border-color: #515151;
}

/* line 372, app/assets/stylesheets/custom.scss */
.accordion-button.budget-accordion-button:not(.collapsed) {
  background-color: #fffcc7;
  font-size: 1.2rem;
  font-weight: bold;
}

/* line 378, app/assets/stylesheets/custom.scss */
.accordion-button.budget-accordion-button:is(.collapsed) {
  background-color: #fffcc7;
  font-size: 1.2rem;
  font-weight: bold;
}

/* line 384, app/assets/stylesheets/custom.scss */
td.dropdown:hover {
  background-color: #f4f4f4;
}

/* line 388, app/assets/stylesheets/custom.scss */
.line-item-error {
  background-color: #db00ff;
}

/* line 392, app/assets/stylesheets/custom.scss */
.line-item-none {
  color: black;
}

/* line 396, app/assets/stylesheets/custom.scss */
.line-item-proposed {
  background-color: #92e4c0;
  color: black;
}

/* line 401, app/assets/stylesheets/custom.scss */
.line-item-bidding {
  background-color: grey;
  color: white;
}

/* line 406, app/assets/stylesheets/custom.scss */
.line-item-won {
  background-color: #48bb78;
  color: black;
}

/* line 411, app/assets/stylesheets/custom.scss */
.line-item-new {
  background-color: grey;
  color: white;
}

/* line 416, app/assets/stylesheets/custom.scss */
.line-item-lost {
  background-color: #e16b6b;
  color: black;
}

/* line 421, app/assets/stylesheets/custom.scss */
.line-item-delivered {
  background-color: #f4dc5d;
  color: black;
}

/* line 426, app/assets/stylesheets/custom.scss */
.line-item-approved {
  background-color: grey;
  color: white;
}

/* line 431, app/assets/stylesheets/custom.scss */
.line-item-pending-approval {
  background-color: grey;
  color: white;
}

/* line 436, app/assets/stylesheets/custom.scss */
.dropdown-submenu {
  position: relative;
}

/* line 440, app/assets/stylesheets/custom.scss */
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -5px;
  display: none;
  position: absolute;
}

/* line 448, app/assets/stylesheets/custom.scss */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* line 452, app/assets/stylesheets/custom.scss */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  /* Higher than Bootstrap modals */
}

/* line 465, app/assets/stylesheets/custom.scss */
.loading-text {
  text-align: center;
  color: white;
  font-size: 1.5rem;
}

/* line 471, app/assets/stylesheets/custom.scss */
#map {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 900px;
  min-width: 100px;
}

/* line 480, app/assets/stylesheets/custom.scss */
.vertex-count-control {
  background: yellow;
  padding: 15px 20px;
  border: 1px solid #ccc;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: bold;
}

/* line 489, app/assets/stylesheets/custom.scss */
.property-list {
  width: 30%;
  padding: 15px;
  overflow-y: auto;
  max-height: 80vh;
  background: #f8f9fa;
  border-right: 1px solid #ddd;
}

/* line 498, app/assets/stylesheets/custom.scss */
#todays-wt-map {
  width: 70%;
  height: 80vh;
  flex-grow: 1;
}

/* line 504, app/assets/stylesheets/custom.scss */
.property-item {
  cursor: pointer;
}

/* line 507, app/assets/stylesheets/custom.scss */
.property-item:hover {
  background-color: #00a3da;
  color: white;
}

/* line 513, app/assets/stylesheets/custom.scss */
.selected-property-route {
  background-color: #00a3da;
  color: white;
}

/* line 518, app/assets/stylesheets/custom.scss */
.general-topics, .bg-cyan-light {
  background-image: linear-gradient(90deg, #F8FFFF 0%, white 75%);
}

/* line 523, app/assets/stylesheets/custom.scss */
.discussion-topics {
  background-image: linear-gradient(90deg, #eff6ff 0%, white 75%);
  border: 1px solid #dbeafe;
  border-radius: 10px;
}

/* line 529, app/assets/stylesheets/custom.scss */
.bg-blue-light {
  background-color: #e0f2fe;
  border: 1px solid #bae6fd;
  border-left: 4px solid var(--encore-primary);
  border-radius: 6px;
}

/* line 536, app/assets/stylesheets/custom.scss */
.bg-navy-light {
  background-color: #e8eaf6;
  border: 1px solid #c5cae9;
  border-left: 4px solid var(--encore-dark);
  border-radius: 6px;
}

/* line 543, app/assets/stylesheets/custom.scss */
.bg-navy-light .accordion-button.collapsed {
  background-color: var(--encore-dark);
  color: #fff;
  border-radius: 6px;
}

/* line 550, app/assets/stylesheets/custom.scss */
.accordion-button .accordion-toggle-hint .hint-when-collapsed {
  display: none;
}

/* line 552, app/assets/stylesheets/custom.scss */
.accordion-button.collapsed .accordion-toggle-hint .hint-when-expanded {
  display: none;
}

/* line 553, app/assets/stylesheets/custom.scss */
.accordion-button.collapsed .accordion-toggle-hint .hint-when-collapsed {
  display: inline;
}

/* line 557, app/assets/stylesheets/custom.scss */
.action-items {
  background-image: linear-gradient(90deg, #f0fdf4 0%, white 75%);
  border: 1px solid #dcfce7;
  border-radius: 10px;
}

/* line 563, app/assets/stylesheets/custom.scss */
.bg-green-light {
  background-color: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-left: 4px solid var(--encore-green);
  border-radius: 6px;
}

/* line 570, app/assets/stylesheets/custom.scss */
.processes-procedures, .bg-yellow-light {
  background-image: linear-gradient(90deg, #f9f2ff 0%, white 75%);
  border: 1px solid #f3e8ff;
  border-radius: 10px;
}

/* line 577, app/assets/stylesheets/custom.scss */
.ideas-brainstorming, .bg-pink-light {
  background-image: linear-gradient(90deg, #FFFFEF 0%, white 75%);
  border: 1px solid #fef3c7;
  border-radius: 10px;
}

/* line 584, app/assets/stylesheets/custom.scss */
.btn-process-procedures {
  color: #7e22ce;
  border-color: #7f4db5;
}

/* line 588, app/assets/stylesheets/custom.scss */
.btn-process-procedures:hover {
  color: #fff;
  background-color: #9341d9;
  border-color: #7e22ce;
}

/* line 595, app/assets/stylesheets/custom.scss */
.ideas-brainstorming-header {
  color: #b45309;
}

/* line 599, app/assets/stylesheets/custom.scss */
.processes-procedures-header {
  color: #7e22ce;
}

/* line 603, app/assets/stylesheets/custom.scss */
.action-items-header {
  color: #15803d;
}

/* line 607, app/assets/stylesheets/custom.scss */
.discussion-topics-header {
  color: #1d4ed8;
}

/* line 611, app/assets/stylesheets/custom.scss */
select.ts-hidden-accessible {
  display: none !important;
}

/* line 615, app/assets/stylesheets/custom.scss */
.card-hover {
  transition: all 0.2s ease-in-out;
}

/* line 619, app/assets/stylesheets/custom.scss */
.card-hover:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  /* line 624, app/assets/stylesheets/custom.scss */
  .card-mobile {
    flex-direction: column;
    text-align: center;
  }
}

/* line 631, app/assets/stylesheets/custom.scss */
tr.crew-day-details .route-visits-container table.table {
  background-color: #f7f7f7 !important;
  --bs-table-bg: #f7f7f7 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* line 637, app/assets/stylesheets/custom.scss */
.accordion-button {
  font-size: 0.9rem;
  font-weight: 500;
}

/* line 642, app/assets/stylesheets/custom.scss */
.text-end.text-muted {
  font-size: 0.8rem;
}

/* line 646, app/assets/stylesheets/custom.scss */
.attachment-drawer.show {
  transform: translateX(0%) !important;
  z-index: 1055;
}

/* line 651, app/assets/stylesheets/custom.scss */
tr.clock-row {
  background-color: #f0f9ff !important;
  /* Light blue background */
}

/* line 655, app/assets/stylesheets/custom.scss */
tr.clock-row td {
  border-top: 2px dashed #ccc;
  border-bottom: 2px dashed #ccc;
  background-color: #f0f9ff;
}

/* line 661, app/assets/stylesheets/custom.scss */
.blue-rotation {
  background-color: #007bff !important;
  color: white;
  border: 1px solid #076fe1;
}

/* line 667, app/assets/stylesheets/custom.scss */
.red-rotation {
  background-color: #dc3545 !important;
  color: white;
  border: 1px solid #b12c39;
}

/* line 673, app/assets/stylesheets/custom.scss */
.green-rotation {
  background-color: #28a745 !important;
  color: white;
  border: 1px solid #208035;
}

/* line 679, app/assets/stylesheets/custom.scss */
.yellow-rotation {
  background-color: #ffc107 !important;
  border: 1px solid #c69508;
}

/* line 684, app/assets/stylesheets/custom.scss */
.purple-rotation {
  background-color: #6f42c1 !important;
  border: 1px solid #4e2e88;
}

/* line 689, app/assets/stylesheets/custom.scss */
.wide-tooltip .tooltip-inner {
  max-width: 350px;
  min-width: 280px;
  /* Ensures consistent width */
  text-align: left;
}

/* line 695, app/assets/stylesheets/custom.scss */
.current-month {
  background-color: #ebfdef !important;
}

/* line 699, app/assets/stylesheets/custom.scss */
.current-month-dark {
  background-color: #c5d7c9 !important;
}

/* line 703, app/assets/stylesheets/custom.scss */
.ytd-goal-badge {
  font-size: 0.85em;
}

/* line 707, app/assets/stylesheets/custom.scss */
.total-column {
  background-color: #f1f1f2 !important;
  white-space: nowrap;
  width: 1%;
}

/* line 713, app/assets/stylesheets/custom.scss */
.total-column-dark {
  background-color: #d5d5d5 !important;
  white-space: nowrap;
  width: 1%;
}

/* line 719, app/assets/stylesheets/custom.scss */
.status-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

/* line 725, app/assets/stylesheets/custom.scss */
.status-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 734, app/assets/stylesheets/custom.scss */
.status-dot:hover {
  transform: scale(1.2);
}

/* Status Colors */
/* line 739, app/assets/stylesheets/custom.scss */
.status-dot.inactive {
  background: #cbd5e0;
  opacity: 0.3;
}

/* line 744, app/assets/stylesheets/custom.scss */
.status-dot.approved {
  background: #48bb78;
}

/* line 748, app/assets/stylesheets/custom.scss */
.status-dot.pending {
  background: #4299e1;
}

/* line 752, app/assets/stylesheets/custom.scss */
.status-dot.rejected {
  background: #f56565;
}

/* line 756, app/assets/stylesheets/custom.scss */
.status-dot.revise {
  background: #ed8936;
}

/* Pulse animation for attention-needed statuses */
/* line 761, app/assets/stylesheets/custom.scss */
.status-dot.rejected,
.status-dot.revise {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 currentColor;
  }
  50% {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  }
}

/* line 775, app/assets/stylesheets/custom.scss */
.status-dot.with-badge {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  color: white;
}

/* line 786, app/assets/stylesheets/custom.scss */
.status-dot.with-badge.inactive {
  color: #718096;
}

/* line 790, app/assets/stylesheets/custom.scss */
.legend {
  margin-top: 5px;
  margin-left: 5px;
}

/* line 795, app/assets/stylesheets/custom.scss */
.legend h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #2d3748;
}

/* line 802, app/assets/stylesheets/custom.scss */
.legend-items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* line 808, app/assets/stylesheets/custom.scss */
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4a5568;
}

/* line 816, app/assets/stylesheets/custom.scss */
.legend-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  color: white;
}

/* line 828, app/assets/stylesheets/custom.scss */
.legend-dot.inactive {
  background: #cbd5e0;
  opacity: 0.3;
  color: #718096;
}

/* line 834, app/assets/stylesheets/custom.scss */
.masonry-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  gap: 1rem;
}

/* line 841, app/assets/stylesheets/custom.scss */
.masonry-container .card {
  margin-bottom: 0 !important;
}

/* Make offcanvas panels full-width on mobile */
@media (max-width: 767.98px) {
  /* line 847, app/assets/stylesheets/custom.scss */
  .offcanvas.offcanvas-end {
    width: 100% !important;
  }
}

/* Fix offcanvas scrolling on mobile */
/* line 853, app/assets/stylesheets/custom.scss */
.offcanvas {
  display: flex;
  flex-direction: column;
}

/* line 858, app/assets/stylesheets/custom.scss */
.offcanvas .offcanvas-body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling on iOS */
}

/* Ensure turbo-frame doesn't break flex layout */
/* line 865, app/assets/stylesheets/custom.scss */
.offcanvas turbo-frame {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* line 871, app/assets/stylesheets/custom.scss */
.offcanvas turbo-frame > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* line 877, app/assets/stylesheets/custom.scss */
.offcanvas turbo-frame > .offcanvas-header {
  height: auto;
  flex: 0 0 auto;
}

/* Prevent body scroll when offcanvas is open on mobile */
/* line 883, app/assets/stylesheets/custom.scss */
body.offcanvas-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Fix modal z-index when opened from within offcanvas */
/* line 890, app/assets/stylesheets/custom.scss */
.modal {
  z-index: 1060 !important;
}

/* line 894, app/assets/stylesheets/custom.scss */
.modal-backdrop {
  z-index: 1055 !important;
}

/* Inline edit field styles */
/* line 900, app/assets/stylesheets/custom.scss */
[data-controller="property-inline-edit"] [data-property-inline-edit-target="display"]:hover {
  background-color: #f8f9fa;
}

/* line 906, app/assets/stylesheets/custom.scss */
.timeline-item {
  position: relative;
}

/* line 909, app/assets/stylesheets/custom.scss */
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 12px;
  top: 30px;
  height: 20px;
  width: 2px;
  background-color: #dee2e6;
}

/* line 921, app/assets/stylesheets/custom.scss */
.contact-detail-row {
  border-left: 3px solid var(--encore-primary);
}

/* line 924, app/assets/stylesheets/custom.scss */
.contact-detail-row:hover {
  background-color: #f0f0f0 !important;
}

@media (max-width: 1200px) {
  /* line 932, app/assets/stylesheets/custom.scss */
  .annual-overview-table th, .annual-overview-table td {
    font-size: 0.875rem;
    padding: 0.5rem 0.25rem;
  }
  /* line 937, app/assets/stylesheets/custom.scss */
  .annual-overview-table th:first-child, .annual-overview-table td:first-child {
    position: sticky;
    left: 0;
    background-color: white;
    z-index: 5;
  }
}

/* line 947, app/assets/stylesheets/custom.scss */
.badge.bg-success-subtle {
  background-color: rgba(25, 135, 84, 0.1) !important;
}

/* line 951, app/assets/stylesheets/custom.scss */
.badge.bg-warning-subtle {
  background-color: rgba(255, 193, 7, 0.1) !important;
}

/* line 955, app/assets/stylesheets/custom.scss */
.badge.bg-secondary-subtle {
  background-color: rgba(108, 117, 125, 0.1) !important;
}

/* line 959, app/assets/stylesheets/custom.scss */
.badge.bg-info-subtle {
  background-color: rgba(13, 202, 240, 0.1) !important;
}

/* line 963, app/assets/stylesheets/custom.scss */
.badge.bg-danger-subtle {
  background-color: rgba(220, 53, 69, 0.1) !important;
}

/* line 968, app/assets/stylesheets/custom.scss */
.transition-transform {
  transition: transform 0.2s ease;
}

/* line 972, app/assets/stylesheets/custom.scss */
.chevron-rotated {
  transform: rotate(90deg);
}

/* line 976, app/assets/stylesheets/custom.scss */
.client-row:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* line 981, app/assets/stylesheets/custom.scss */
th a.text-decoration-none:hover {
  color: var(--bs-primary) !important;
}

/* line 985, app/assets/stylesheets/custom.scss */
th a .bi-arrow-down-up {
  opacity: 0.3;
  transition: opacity 0.2s;
}

/* line 990, app/assets/stylesheets/custom.scss */
th a:hover .bi-arrow-down-up {
  opacity: 0.7;
}

/* line 994, app/assets/stylesheets/custom.scss */
.text-success-light {
  color: #98c179;
}

/* line 998, app/assets/stylesheets/custom.scss */
.text-warning-light {
  color: #f4c20d;
}

/* line 1002, app/assets/stylesheets/custom.scss */
.text-danger-light {
  color: #ff5757;
}

/* line 1008, app/assets/stylesheets/custom.scss */
.ts-wrapper.multi .ts-control {
  height: auto;
  min-height: 31px;
  max-height: 58px;
  overflow-y: auto;
}

/* line 1017, app/assets/stylesheets/custom.scss */
.ts-wrapper .ts-control > input {
  width: 100% !important;
  border: none !important;
}

/* line 1023, app/assets/stylesheets/custom.scss */
.btn-white-bg {
  background-color: #fff !important;
}

/* line 1025, app/assets/stylesheets/custom.scss */
.btn-white-bg:hover, .btn-white-bg:focus, .btn-white-bg:active, .btn-white-bg.active {
  background-color: var(--bs-btn-hover-bg) !important;
}

/* line 1031, app/assets/stylesheets/custom.scss */
.branch-filter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 2px solid #dee2e6;
  padding: 3px;
  text-decoration: none;
  background: white;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

/* line 1046, app/assets/stylesheets/custom.scss */
.branch-filter-icon.active,
.branch-filter-icon:hover {
  border-color: var(--encore-primary);
  background: rgba(var(--bs-primary-rgb), 0.08);
}

/* line 1053, app/assets/stylesheets/custom.scss */
.btn-outline-warning {
  --bs-btn-color: #c28b00;
  --bs-btn-border-color: #c28b00;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #c28b00;
  --bs-btn-hover-border-color: #c28b00;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a67700;
  --bs-btn-active-border-color: #a67700;
}

/* line 1069, app/assets/stylesheets/custom.scss */
.rotation-tooltip {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
  z-index: 1000;
}

/* line 1079, app/assets/stylesheets/custom.scss */
.rotation-tooltip-active {
  background-color: rgba(40, 167, 69, 0.95);
  color: white;
  border: 2px solid #28a745;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  z-index: 1000;
}

/* line 1090, app/assets/stylesheets/custom.scss */
.rotation-popup {
  font-size: 14px;
}

/* line 1093, app/assets/stylesheets/custom.scss */
.rotation-popup .badge {
  font-size: 11px;
}

/* line 1100, app/assets/stylesheets/custom.scss */
.leaflet-overlay-pane svg {
  pointer-events: auto;
}

/* line 1104, app/assets/stylesheets/custom.scss */
.leaflet-overlay-pane path {
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* line 1108, app/assets/stylesheets/custom.scss */
.active-rotation-glow {
  stroke-linejoin: round;
  stroke-linecap: round;
}

/*!
 * FilePond 4.32.5
 * Licensed under MIT, https://opensource.org/licenses/MIT/
 * Please visit https://pqina.nl/filepond/ for details.
 */
/* eslint-disable */
/* line 8, app/assets/stylesheets/filepond.scss */
.filepond--assistant {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* line 21, app/assets/stylesheets/filepond.scss */
.filepond--browser.filepond--browser {
  position: absolute;
  margin: 0;
  padding: 0;
  left: 1em;
  top: 1.75em;
  width: calc(100% - 2em);
  opacity: 0;
  font-size: 0;
}

/* line 32, app/assets/stylesheets/filepond.scss */
.filepond--data {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
  visibility: hidden;
  pointer-events: none;
  contain: strict;
}

/* line 44, app/assets/stylesheets/filepond.scss */
.filepond--drip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: .1;
  pointer-events: none;
  border-radius: .5em;
  background: rgba(0, 0, 0, 0.01);
}

/* line 57, app/assets/stylesheets/filepond.scss */
.filepond--drip-blob {
  -webkit-transform-origin: center center;
  transform-origin: center center;
  width: 8em;
  height: 8em;
  margin-left: -4em;
  margin-top: -4em;
  background: #292625;
  border-radius: 50%;
}

/* line 68, app/assets/stylesheets/filepond.scss */
.filepond--drip-blob, .filepond--drop-label {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform, opacity;
}

/* line 75, app/assets/stylesheets/filepond.scss */
.filepond--drop-label {
  right: 0;
  margin: 0;
  color: #4f4f4f;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 89, app/assets/stylesheets/filepond.scss */
.filepond--drop-label.filepond--drop-label label {
  display: block;
  margin: 0;
  padding: .5em;
}

/* line 95, app/assets/stylesheets/filepond.scss */
.filepond--drop-label label {
  cursor: default;
  font-size: .875em;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
}

/* line 103, app/assets/stylesheets/filepond.scss */
.filepond--label-action {
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  -webkit-text-decoration-color: #a7a4a4;
  text-decoration-color: #a7a4a4;
  cursor: pointer;
}

/* line 112, app/assets/stylesheets/filepond.scss */
.filepond--root[data-disabled] .filepond--drop-label label {
  opacity: .5;
}

/* line 116, app/assets/stylesheets/filepond.scss */
.filepond--file-action-button.filepond--file-action-button {
  font-size: 1em;
  width: 1.625em;
  height: 1.625em;
  font-family: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  will-change: transform, opacity;
}

/* line 129, app/assets/stylesheets/filepond.scss */
.filepond--file-action-button.filepond--file-action-button span {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* line 142, app/assets/stylesheets/filepond.scss */
.filepond--file-action-button.filepond--file-action-button svg {
  width: 100%;
  height: 100%;
}

/* line 147, app/assets/stylesheets/filepond.scss */
.filepond--file-action-button.filepond--file-action-button:after {
  position: absolute;
  left: -.75em;
  right: -.75em;
  top: -.75em;
  bottom: -.75em;
  content: "";
}

/* line 156, app/assets/stylesheets/filepond.scss */
.filepond--file-action-button {
  cursor: auto;
  color: #fff;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  transition: box-shadow .25s ease-in;
}

/* line 166, app/assets/stylesheets/filepond.scss */
.filepond--file-action-button:focus, .filepond--file-action-button:hover {
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.9);
}

/* line 170, app/assets/stylesheets/filepond.scss */
.filepond--file-action-button[disabled] {
  color: rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.25);
}

/* line 175, app/assets/stylesheets/filepond.scss */
.filepond--file-action-button[hidden] {
  display: none;
}

/* line 179, app/assets/stylesheets/filepond.scss */
.filepond--action-edit-item.filepond--action-edit-item {
  width: 2em;
  height: 2em;
  padding: .1875em;
}

/* line 185, app/assets/stylesheets/filepond.scss */
.filepond--action-edit-item.filepond--action-edit-item[data-align*=center] {
  margin-left: -.1875em;
}

/* line 189, app/assets/stylesheets/filepond.scss */
.filepond--action-edit-item.filepond--action-edit-item[data-align*=bottom] {
  margin-bottom: -.1875em;
}

/* line 193, app/assets/stylesheets/filepond.scss */
.filepond--action-edit-item-alt {
  border: none;
  line-height: inherit;
  background: transparent;
  font-family: inherit;
  color: inherit;
  outline: none;
  padding: 0;
  margin: 0 0 0 .25em;
  pointer-events: all;
  position: absolute;
}

/* line 206, app/assets/stylesheets/filepond.scss */
.filepond--action-edit-item-alt svg {
  width: 1.3125em;
  height: 1.3125em;
}

/* line 211, app/assets/stylesheets/filepond.scss */
.filepond--action-edit-item-alt span {
  font-size: 0;
  opacity: 0;
}

/* line 216, app/assets/stylesheets/filepond.scss */
.filepond--file-info {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  margin: 0 .5em 0 0;
  min-width: 0;
  will-change: transform, opacity;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 232, app/assets/stylesheets/filepond.scss */
.filepond--file-info * {
  margin: 0;
}

/* line 236, app/assets/stylesheets/filepond.scss */
.filepond--file-info .filepond--file-info-main {
  font-size: .75em;
  line-height: 1.2;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

/* line 245, app/assets/stylesheets/filepond.scss */
.filepond--file-info .filepond--file-info-sub {
  font-size: .625em;
  opacity: .5;
  transition: opacity .25s ease-in-out;
  white-space: nowrap;
}

/* line 252, app/assets/stylesheets/filepond.scss */
.filepond--file-info .filepond--file-info-sub:empty {
  display: none;
}

/* line 256, app/assets/stylesheets/filepond.scss */
.filepond--file-status {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0;
  min-width: 2.25em;
  text-align: right;
  will-change: transform, opacity;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 274, app/assets/stylesheets/filepond.scss */
.filepond--file-status * {
  margin: 0;
  white-space: nowrap;
}

/* line 279, app/assets/stylesheets/filepond.scss */
.filepond--file-status .filepond--file-status-main {
  font-size: .75em;
  line-height: 1.2;
}

/* line 284, app/assets/stylesheets/filepond.scss */
.filepond--file-status .filepond--file-status-sub {
  font-size: .625em;
  opacity: .5;
  transition: opacity .25s ease-in-out;
}

/* line 290, app/assets/stylesheets/filepond.scss */
.filepond--file-wrapper.filepond--file-wrapper {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  height: 100%;
}

/* line 298, app/assets/stylesheets/filepond.scss */
.filepond--file-wrapper.filepond--file-wrapper > legend {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* line 311, app/assets/stylesheets/filepond.scss */
.filepond--file {
  position: static;
  display: flex;
  height: 100%;
  align-items: flex-start;
  padding: .5625em;
  color: #fff;
  border-radius: .5em;
}

/* line 321, app/assets/stylesheets/filepond.scss */
.filepond--file .filepond--file-status {
  margin-left: auto;
  margin-right: 2.25em;
}

/* line 326, app/assets/stylesheets/filepond.scss */
.filepond--file .filepond--processing-complete-indicator {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 3;
}

/* line 335, app/assets/stylesheets/filepond.scss */
.filepond--file .filepond--file-action-button, .filepond--file .filepond--processing-complete-indicator, .filepond--file .filepond--progress-indicator {
  position: absolute;
}

/* line 339, app/assets/stylesheets/filepond.scss */
.filepond--file [data-align*=left] {
  left: .5625em;
}

/* line 343, app/assets/stylesheets/filepond.scss */
.filepond--file [data-align*=right] {
  right: .5625em;
}

/* line 347, app/assets/stylesheets/filepond.scss */
.filepond--file [data-align*=center] {
  left: calc(50% - .8125em);
}

/* line 351, app/assets/stylesheets/filepond.scss */
.filepond--file [data-align*=bottom] {
  bottom: 1.125em;
}

/* line 355, app/assets/stylesheets/filepond.scss */
.filepond--file [data-align=center] {
  top: calc(50% - .8125em);
}

/* line 359, app/assets/stylesheets/filepond.scss */
.filepond--file .filepond--progress-indicator {
  margin-top: .1875em;
}

/* line 363, app/assets/stylesheets/filepond.scss */
.filepond--file .filepond--progress-indicator[data-align*=right] {
  margin-right: .1875em;
}

/* line 367, app/assets/stylesheets/filepond.scss */
.filepond--file .filepond--progress-indicator[data-align*=left] {
  margin-left: .1875em;
}

/* line 371, app/assets/stylesheets/filepond.scss */
[data-filepond-item-state*=error] .filepond--file-info, [data-filepond-item-state*=invalid] .filepond--file-info, [data-filepond-item-state=cancelled] .filepond--file-info {
  margin-right: 2.25em;
}

/* line 375, app/assets/stylesheets/filepond.scss */
[data-filepond-item-state~=processing] .filepond--file-status-sub {
  opacity: 0;
}

/* line 379, app/assets/stylesheets/filepond.scss */
[data-filepond-item-state~=processing] .filepond--action-abort-item-processing ~ .filepond--file-status .filepond--file-status-sub {
  opacity: .5;
}

/* line 383, app/assets/stylesheets/filepond.scss */
[data-filepond-item-state=processing-error] .filepond--file-status-sub {
  opacity: 0;
}

/* line 387, app/assets/stylesheets/filepond.scss */
[data-filepond-item-state=processing-error] .filepond--action-retry-item-processing ~ .filepond--file-status .filepond--file-status-sub {
  opacity: .5;
}

/* line 391, app/assets/stylesheets/filepond.scss */
[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing svg {
  -webkit-animation: fall .5s linear .125s both;
  animation: fall .5s linear .125s both;
}

/* line 396, app/assets/stylesheets/filepond.scss */
[data-filepond-item-state=processing-complete] .filepond--file-status-sub {
  opacity: .5;
}

/* line 400, app/assets/stylesheets/filepond.scss */
[data-filepond-item-state=processing-complete] .filepond--file-info-sub, [data-filepond-item-state=processing-complete] .filepond--processing-complete-indicator:not([style*=hidden]) ~ .filepond--file-status .filepond--file-status-sub {
  opacity: 0;
}

/* line 404, app/assets/stylesheets/filepond.scss */
[data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing ~ .filepond--file-info .filepond--file-info-sub {
  opacity: .5;
}

/* line 408, app/assets/stylesheets/filepond.scss */
[data-filepond-item-state*=error] .filepond--file-wrapper, [data-filepond-item-state*=error] .filepond--panel, [data-filepond-item-state*=invalid] .filepond--file-wrapper, [data-filepond-item-state*=invalid] .filepond--panel {
  -webkit-animation: shake .65s linear both;
  animation: shake .65s linear both;
}

/* line 413, app/assets/stylesheets/filepond.scss */
[data-filepond-item-state*=busy] .filepond--progress-indicator svg {
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes shake {
  10%, 90% {
    -webkit-transform: translateX(-0.0625em);
    transform: translateX(-0.0625em);
  }
  20%, 80% {
    -webkit-transform: translateX(0.125em);
    transform: translateX(0.125em);
  }
  30%, 50%, 70% {
    -webkit-transform: translateX(-0.25em);
    transform: translateX(-0.25em);
  }
  40%, 60% {
    -webkit-transform: translateX(0.25em);
    transform: translateX(0.25em);
  }
}

@keyframes shake {
  10%, 90% {
    -webkit-transform: translateX(-0.0625em);
    transform: translateX(-0.0625em);
  }
  20%, 80% {
    -webkit-transform: translateX(0.125em);
    transform: translateX(0.125em);
  }
  30%, 50%, 70% {
    -webkit-transform: translateX(-0.25em);
    transform: translateX(-0.25em);
  }
  40%, 60% {
    -webkit-transform: translateX(0.25em);
    transform: translateX(0.25em);
  }
}

@-webkit-keyframes fall {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes fall {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

/* line 524, app/assets/stylesheets/filepond.scss */
.filepond--hopper[data-hopper-state=drag-over] > * {
  pointer-events: none;
}

/* line 528, app/assets/stylesheets/filepond.scss */
.filepond--hopper[data-hopper-state=drag-over]:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

/* line 538, app/assets/stylesheets/filepond.scss */
.filepond--progress-indicator {
  z-index: 103;
}

/* line 542, app/assets/stylesheets/filepond.scss */
.filepond--file-action-button {
  z-index: 102;
}

/* line 546, app/assets/stylesheets/filepond.scss */
.filepond--file-status {
  z-index: 101;
}

/* line 550, app/assets/stylesheets/filepond.scss */
.filepond--file-info {
  z-index: 100;
}

/* line 554, app/assets/stylesheets/filepond.scss */
.filepond--item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0;
  margin: .25em;
  will-change: transform, opacity;
  touch-action: auto;
}

/* line 566, app/assets/stylesheets/filepond.scss */
.filepond--item > .filepond--panel {
  z-index: -1;
}

/* line 570, app/assets/stylesheets/filepond.scss */
.filepond--item > .filepond--panel .filepond--panel-bottom {
  box-shadow: 0 0.0625em 0.125em -0.0625em rgba(0, 0, 0, 0.25);
}

/* line 574, app/assets/stylesheets/filepond.scss */
.filepond--item > .filepond--file-wrapper, .filepond--item > .filepond--panel {
  transition: opacity .15s ease-out;
}

/* line 578, app/assets/stylesheets/filepond.scss */
.filepond--item[data-drag-state] {
  cursor: -webkit-grab;
  cursor: grab;
}

/* line 583, app/assets/stylesheets/filepond.scss */
.filepond--item[data-drag-state] > .filepond--panel {
  transition: box-shadow .125s ease-in-out;
  box-shadow: 0 0 0 transparent;
}

/* line 588, app/assets/stylesheets/filepond.scss */
.filepond--item[data-drag-state=drag] {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* line 593, app/assets/stylesheets/filepond.scss */
.filepond--item[data-drag-state=drag] > .filepond--panel {
  box-shadow: 0 0.125em 0.3125em rgba(0, 0, 0, 0.325);
}

/* line 597, app/assets/stylesheets/filepond.scss */
.filepond--item[data-drag-state]:not([data-drag-state=idle]) {
  z-index: 2;
}

/* line 601, app/assets/stylesheets/filepond.scss */
.filepond--item-panel {
  background-color: #64605e;
}

/* line 605, app/assets/stylesheets/filepond.scss */
[data-filepond-item-state=processing-complete] .filepond--item-panel {
  background-color: #369763;
}

/* line 609, app/assets/stylesheets/filepond.scss */
[data-filepond-item-state*=error] .filepond--item-panel, [data-filepond-item-state*=invalid] .filepond--item-panel {
  background-color: #c44e47;
}

/* line 613, app/assets/stylesheets/filepond.scss */
.filepond--item-panel {
  border-radius: .5em;
  transition: background-color .25s;
}

/* line 618, app/assets/stylesheets/filepond.scss */
.filepond--list-scroller {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  will-change: transform;
}

/* line 627, app/assets/stylesheets/filepond.scss */
.filepond--list-scroller[data-state=overflow] .filepond--list {
  bottom: 0;
  right: 0;
}

/* line 632, app/assets/stylesheets/filepond.scss */
.filepond--list-scroller[data-state=overflow] {
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-mask: linear-gradient(180deg, #000 calc(100% - .5em), transparent);
  mask: linear-gradient(180deg, #000 calc(100% - .5em), transparent);
}

/* line 640, app/assets/stylesheets/filepond.scss */
.filepond--list-scroller::-webkit-scrollbar {
  background: transparent;
}

/* line 644, app/assets/stylesheets/filepond.scss */
.filepond--list-scroller::-webkit-scrollbar:vertical {
  width: 1em;
}

/* line 648, app/assets/stylesheets/filepond.scss */
.filepond--list-scroller::-webkit-scrollbar:horizontal {
  height: 0;
}

/* line 652, app/assets/stylesheets/filepond.scss */
.filepond--list-scroller::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 99999px;
  border: .3125em solid transparent;
  background-clip: content-box;
}

/* line 659, app/assets/stylesheets/filepond.scss */
.filepond--list.filepond--list {
  position: absolute;
  top: 0;
  margin: 0;
  padding: 0;
  list-style-type: none;
  will-change: transform;
}

/* line 668, app/assets/stylesheets/filepond.scss */
.filepond--list {
  left: .75em;
  right: .75em;
}

/* line 673, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=integrated] {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
}

/* line 680, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root, .filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root {
  border-radius: 0;
}

/* line 684, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=circle] .filepond--panel-root > *, .filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root > * {
  display: none;
}

/* line 688, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=circle] .filepond--drop-label, .filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label {
  bottom: 0;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 7;
}

/* line 697, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=circle] .filepond--item-panel, .filepond--root[data-style-panel-layout~=integrated] .filepond--item-panel {
  display: none;
}

/* line 701, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=compact] .filepond--list-scroller, .filepond--root[data-style-panel-layout~=integrated] .filepond--list-scroller {
  overflow: hidden;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

/* line 708, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=compact] .filepond--list, .filepond--root[data-style-panel-layout~=integrated] .filepond--list {
  left: 0;
  right: 0;
  height: 100%;
}

/* line 714, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=compact] .filepond--item, .filepond--root[data-style-panel-layout~=integrated] .filepond--item {
  margin: 0;
}

/* line 718, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=compact] .filepond--file-wrapper, .filepond--root[data-style-panel-layout~=integrated] .filepond--file-wrapper {
  height: 100%;
}

/* line 722, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=compact] .filepond--drop-label, .filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label {
  z-index: 7;
}

/* line 726, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=circle] {
  border-radius: 99999rem;
  overflow: hidden;
}

/* line 731, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=circle] > .filepond--panel {
  border-radius: inherit;
}

/* line 735, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=circle] > .filepond--panel > * {
  display: none;
}

/* line 739, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=circle] .filepond--file-info, .filepond--root[data-style-panel-layout~=circle] .filepond--file-status {
  display: none;
}

/* line 743, app/assets/stylesheets/filepond.scss */
.filepond--root[data-style-panel-layout~=circle] .filepond--action-edit-item {
  opacity: 1 !important;
  visibility: visible !important;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    /* line 750, app/assets/stylesheets/filepond.scss */
    .filepond--root[data-style-panel-layout~=circle] {
      will-change: transform;
    }
  }
}

/* line 756, app/assets/stylesheets/filepond.scss */
.filepond--panel-root {
  border-radius: .5em;
  background-color: #f1f0ef;
}

/* line 761, app/assets/stylesheets/filepond.scss */
.filepond--panel {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: 0;
  height: 100% !important;
  pointer-events: none;
}

/* line 771, app/assets/stylesheets/filepond.scss */
.filepond-panel:not([data-scalable=false]) {
  height: auto !important;
}

/* line 775, app/assets/stylesheets/filepond.scss */
.filepond--panel[data-scalable=false] > div {
  display: none;
}

/* line 779, app/assets/stylesheets/filepond.scss */
.filepond--panel[data-scalable=true] {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  background-color: transparent !important;
  border: none !important;
}

/* line 786, app/assets/stylesheets/filepond.scss */
.filepond--panel-bottom, .filepond--panel-center, .filepond--panel-top {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
}

/* line 795, app/assets/stylesheets/filepond.scss */
.filepond--panel-bottom, .filepond--panel-top {
  height: .5em;
}

/* line 799, app/assets/stylesheets/filepond.scss */
.filepond--panel-top {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom: none !important;
}

/* line 805, app/assets/stylesheets/filepond.scss */
.filepond--panel-top:after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: -1px;
  background-color: inherit;
}

/* line 815, app/assets/stylesheets/filepond.scss */
.filepond--panel-bottom, .filepond--panel-center {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translate3d(0, 0.5em, 0);
  transform: translate3d(0, 0.5em, 0);
}

/* line 825, app/assets/stylesheets/filepond.scss */
.filepond--panel-bottom {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-top: none !important;
}

/* line 831, app/assets/stylesheets/filepond.scss */
.filepond--panel-bottom:before {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  top: -1px;
  background-color: inherit;
}

/* line 841, app/assets/stylesheets/filepond.scss */
.filepond--panel-center {
  height: 100px !important;
  border-top: none !important;
  border-bottom: none !important;
  border-radius: 0 !important;
}

/* line 848, app/assets/stylesheets/filepond.scss */
.filepond--panel-center:not([style]) {
  visibility: hidden;
}

/* line 852, app/assets/stylesheets/filepond.scss */
.filepond--progress-indicator {
  position: static;
  width: 1.25em;
  height: 1.25em;
  color: #fff;
  margin: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

/* line 862, app/assets/stylesheets/filepond.scss */
.filepond--progress-indicator svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  transform-box: fill-box;
}

/* line 869, app/assets/stylesheets/filepond.scss */
.filepond--progress-indicator path {
  fill: none;
  stroke: currentColor;
}

/* line 874, app/assets/stylesheets/filepond.scss */
.filepond--list-scroller {
  z-index: 6;
}

/* line 878, app/assets/stylesheets/filepond.scss */
.filepond--drop-label {
  z-index: 5;
}

/* line 882, app/assets/stylesheets/filepond.scss */
.filepond--drip {
  z-index: 3;
}

/* line 886, app/assets/stylesheets/filepond.scss */
.filepond--root > .filepond--panel {
  z-index: 2;
}

/* line 890, app/assets/stylesheets/filepond.scss */
.filepond--browser {
  z-index: 1;
}

/* line 894, app/assets/stylesheets/filepond.scss */
.filepond--root {
  box-sizing: border-box;
  position: relative;
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: normal;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: 450;
  text-align: left;
  text-rendering: optimizeLegibility;
  direction: ltr;
  contain: layout style size;
}

/* line 908, app/assets/stylesheets/filepond.scss */
.filepond--root * {
  box-sizing: inherit;
  line-height: inherit;
}

/* line 913, app/assets/stylesheets/filepond.scss */
.filepond--root :not(text) {
  font-size: inherit;
}

/* line 917, app/assets/stylesheets/filepond.scss */
.filepond--root[data-disabled] {
  pointer-events: none;
}

/* line 921, app/assets/stylesheets/filepond.scss */
.filepond--root[data-disabled] .filepond--list-scroller {
  pointer-events: all;
}

/* line 925, app/assets/stylesheets/filepond.scss */
.filepond--root[data-disabled] .filepond--list {
  pointer-events: none;
}

/* line 929, app/assets/stylesheets/filepond.scss */
.filepond--root .filepond--drop-label {
  min-height: 4.75em;
}

/* line 933, app/assets/stylesheets/filepond.scss */
.filepond--root .filepond--list-scroller {
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 938, app/assets/stylesheets/filepond.scss */
.filepond--root .filepond--credits {
  position: absolute;
  right: 0;
  opacity: .4;
  line-height: .85;
  font-size: 11px;
  color: inherit;
  text-decoration: none;
  z-index: 3;
  bottom: -14px;
}

/* line 950, app/assets/stylesheets/filepond.scss */
.filepond--root .filepond--credits[style] {
  top: 0;
  bottom: auto;
  margin-top: 14px;
}

/* line 1, app/assets/stylesheets/mobile.scss */
.glowing-red-border {
  -webkit-box-shadow: 0px 3px 5px 1px rgba(220, 53, 69, 0.9);
  -moz-box-shadow: 0px 3px 5px 1px rgba(220, 53, 69, 0.9);
  box-shadow: 0px 3px 5px 1px rgba(220, 53, 69, 0.9);
}

/* line 7, app/assets/stylesheets/mobile.scss */
.card .card-header.no-border {
  border: 0;
}

/* line 11, app/assets/stylesheets/mobile.scss */
.card .card-header {
  background: none;
  padding: 0 0.9375rem;
  font-weight: 500;
}

/* line 20, app/assets/stylesheets/mobile.scss */
.card-header:first-child {
  border-radius: calc(8px - 1px) calc(8px - 1px) 0 0;
}

/* line 32, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-date-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #edf1fc;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

/* line 43, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-date-secondary .mobile-card-date-day {
  color: #4e73e5;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

/* line 50, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-date-secondary .mobile-card-date-month {
  color: #4e73e5;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

/* line 60, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-date-success {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #e8faf8;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

/* line 71, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-date-success .mobile-card-date-day {
  color: #17d1bd;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

/* line 78, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-date-success .mobile-card-date-month {
  color: #17d1bd;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

/* line 88, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-date-warning .mobile-card-date-day {
  color: #ffa868;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

/* line 95, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-date-warning .mobile-card-date-month {
  color: #ffa868;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

/* line 102, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-date-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: floralwhite;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

/* line 116, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-date-danger .mobile-card-date-day {
  color: #F95062;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}

/* line 123, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-date-danger .mobile-card-date-month {
  color: #F95062;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
}

/* line 130, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-date-danger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #feeeef;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

/* line 145, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-meeting-info {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
}

/* line 151, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-meeting-info .mobile-card-pro-title {
  color: #3c4142;
  font-size: 14px;
}

/* line 156, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-title-wrapper .mobile-card-meeting-info .mobile-card-meeting-time {
  color: #B1BAC5;
  font-size: 13px;
}

/* line 161, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-meeting-points {
  font-weight: 400;
  font-size: 13px;
  margin-top: .5rem;
}

/* line 167, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-meeting-points .mobile-card-meeting-item {
  display: list-item;
  color: #727686;
}

/* line 172, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-meeting-points .mobile-card-meeting-item span {
  margin-left: .5rem;
}

/* line 176, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-meeting-action {
  text-align: right;
}

/* line 180, app/assets/stylesheets/mobile.scss */
.mobile-card .mobile-card-meeting-action a {
  text-transform: uppercase;
}

/* required styles */
/* line 3, app/assets/stylesheets/leaflet.scss */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

/* line 18, app/assets/stylesheets/leaflet.scss */
.leaflet-container {
  overflow: hidden;
}

/* line 22, app/assets/stylesheets/leaflet.scss */
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  user-select: none;
  -webkit-user-drag: none;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
/* line 30, app/assets/stylesheets/leaflet.scss */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
/* line 35, app/assets/stylesheets/leaflet.scss */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

/* line 41, app/assets/stylesheets/leaflet.scss */
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
/* line 48, app/assets/stylesheets/leaflet.scss */
.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
  max-height: none !important;
}

/* line 53, app/assets/stylesheets/leaflet.scss */
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
  width: auto;
  padding: 0;
}

/* line 64, app/assets/stylesheets/leaflet.scss */
.leaflet-container img.leaflet-tile {
  /* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
  mix-blend-mode: plus-lighter;
}

/* line 69, app/assets/stylesheets/leaflet.scss */
.leaflet-container.leaflet-touch-zoom {
  touch-action: pan-x pan-y;
}

/* line 73, app/assets/stylesheets/leaflet.scss */
.leaflet-container.leaflet-touch-drag {
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}

/* line 79, app/assets/stylesheets/leaflet.scss */
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  touch-action: none;
}

/* line 83, app/assets/stylesheets/leaflet.scss */
.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}

/* line 87, app/assets/stylesheets/leaflet.scss */
.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

/* line 91, app/assets/stylesheets/leaflet.scss */
.leaflet-tile {
  visibility: hidden;
}

/* line 95, app/assets/stylesheets/leaflet.scss */
.leaflet-tile-loaded {
  visibility: inherit;
}

/* line 99, app/assets/stylesheets/leaflet.scss */
.leaflet-zoom-box {
  width: 0;
  height: 0;
  box-sizing: border-box;
  z-index: 800;
}

/* line 106, app/assets/stylesheets/leaflet.scss */
.leaflet-pane {
  z-index: 400;
}

/* line 110, app/assets/stylesheets/leaflet.scss */
.leaflet-tile-pane {
  z-index: 200;
}

/* line 114, app/assets/stylesheets/leaflet.scss */
.leaflet-overlay-pane {
  z-index: 400;
}

/* line 118, app/assets/stylesheets/leaflet.scss */
.leaflet-shadow-pane {
  z-index: 500;
}

/* line 122, app/assets/stylesheets/leaflet.scss */
.leaflet-marker-pane {
  z-index: 600;
}

/* line 126, app/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-pane {
  z-index: 650;
}

/* line 130, app/assets/stylesheets/leaflet.scss */
.leaflet-popup-pane {
  z-index: 700;
}

/* line 134, app/assets/stylesheets/leaflet.scss */
.leaflet-map-pane canvas {
  z-index: 100;
}

/* line 138, app/assets/stylesheets/leaflet.scss */
.leaflet-map-pane svg {
  z-index: 200;
}

/* control positioning */
/* line 145, app/assets/stylesheets/leaflet.scss */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: auto;
}

/* line 151, app/assets/stylesheets/leaflet.scss */
.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

/* line 158, app/assets/stylesheets/leaflet.scss */
.leaflet-top {
  top: 0;
}

/* line 162, app/assets/stylesheets/leaflet.scss */
.leaflet-right {
  right: 0;
}

/* line 166, app/assets/stylesheets/leaflet.scss */
.leaflet-bottom {
  bottom: 0;
}

/* line 170, app/assets/stylesheets/leaflet.scss */
.leaflet-left {
  left: 0;
}

/* line 174, app/assets/stylesheets/leaflet.scss */
.leaflet-control {
  float: left;
  clear: both;
}

/* line 179, app/assets/stylesheets/leaflet.scss */
.leaflet-right .leaflet-control {
  float: right;
}

/* line 183, app/assets/stylesheets/leaflet.scss */
.leaflet-top .leaflet-control {
  margin-top: 10px;
}

/* line 187, app/assets/stylesheets/leaflet.scss */
.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

/* line 191, app/assets/stylesheets/leaflet.scss */
.leaflet-left .leaflet-control {
  margin-left: 10px;
}

/* line 195, app/assets/stylesheets/leaflet.scss */
.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */
/* line 202, app/assets/stylesheets/leaflet.scss */
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  transition: opacity 0.2s linear;
}

/* line 207, app/assets/stylesheets/leaflet.scss */
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

/* line 211, app/assets/stylesheets/leaflet.scss */
.leaflet-zoom-animated {
  transform-origin: 0 0;
}

/* line 215, app/assets/stylesheets/leaflet.scss */
svg.leaflet-zoom-animated {
  will-change: transform;
}

/* line 219, app/assets/stylesheets/leaflet.scss */
.leaflet-zoom-anim .leaflet-zoom-animated {
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

/* line 223, app/assets/stylesheets/leaflet.scss */
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  transition: none;
}

/* line 228, app/assets/stylesheets/leaflet.scss */
.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
/* line 235, app/assets/stylesheets/leaflet.scss */
.leaflet-interactive {
  cursor: pointer;
}

/* line 239, app/assets/stylesheets/leaflet.scss */
.leaflet-grab {
  cursor: grab;
}

/* line 243, app/assets/stylesheets/leaflet.scss */
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

/* line 248, app/assets/stylesheets/leaflet.scss */
.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

/* line 253, app/assets/stylesheets/leaflet.scss */
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: grabbing;
}

/* marker & overlays interactivity */
/* line 260, app/assets/stylesheets/leaflet.scss */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

/* line 268, app/assets/stylesheets/leaflet.scss */
.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: auto;
}

/* visual tweaks */
/* line 277, app/assets/stylesheets/leaflet.scss */
.leaflet-container {
  background: #ddd;
  outline-offset: 1px;
}

/* line 282, app/assets/stylesheets/leaflet.scss */
.leaflet-container a {
  color: #0078A8;
}

/* prevent showing outline-box on Chromium when clicking on a vector with a tooltip */
/* line 287, app/assets/stylesheets/leaflet.scss */
path.leaflet-interactive:focus:not(:focus-visible) {
  outline: 0;
}

/* line 291, app/assets/stylesheets/leaflet.scss */
.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
/* line 298, app/assets/stylesheets/leaflet.scss */
.leaflet-container {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* general toolbar styles */
/* line 308, app/assets/stylesheets/leaflet.scss */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

/* line 313, app/assets/stylesheets/leaflet.scss */
.leaflet-bar a {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

/* line 325, app/assets/stylesheets/leaflet.scss */
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

/* line 332, app/assets/stylesheets/leaflet.scss */
.leaflet-bar a:hover,
.leaflet-bar a:focus {
  background-color: #f4f4f4;
}

/* line 337, app/assets/stylesheets/leaflet.scss */
.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 342, app/assets/stylesheets/leaflet.scss */
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

/* line 348, app/assets/stylesheets/leaflet.scss */
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

/* line 354, app/assets/stylesheets/leaflet.scss */
.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* line 360, app/assets/stylesheets/leaflet.scss */
.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

/* line 365, app/assets/stylesheets/leaflet.scss */
.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */
/* line 372, app/assets/stylesheets/leaflet.scss */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px;
}

/* line 378, app/assets/stylesheets/leaflet.scss */
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */
/* line 385, app/assets/stylesheets/leaflet.scss */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}

/* line 391, app/assets/stylesheets/leaflet.scss */
.leaflet-control-layers-toggle {
  background-image: url(/images/layers.png);
  width: 36px;
  height: 36px;
}

/* line 397, app/assets/stylesheets/leaflet.scss */
.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(/images/layers-2x.png);
  background-size: 26px 26px;
}

/* line 402, app/assets/stylesheets/leaflet.scss */
.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

/* line 407, app/assets/stylesheets/leaflet.scss */
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

/* line 412, app/assets/stylesheets/leaflet.scss */
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

/* line 417, app/assets/stylesheets/leaflet.scss */
.leaflet-control-layers-list {
  border: 0;
  margin: 0;
  padding: 0;
}

/* line 423, app/assets/stylesheets/leaflet.scss */
.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

/* line 429, app/assets/stylesheets/leaflet.scss */
.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}

/* line 435, app/assets/stylesheets/leaflet.scss */
.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

/* line 441, app/assets/stylesheets/leaflet.scss */
.leaflet-control-layers label {
  display: block;
  font-size: 13px;
  font-size: 1.08333em;
}

/* line 447, app/assets/stylesheets/leaflet.scss */
.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
/* line 454, app/assets/stylesheets/leaflet.scss */
.leaflet-default-icon-path {
  /* used only in path-guessing heuristic, see L.Icon.Default */
  background-image: url(/images/marker-icon.png);
}

/* attribution and scale controls */
/* line 461, app/assets/stylesheets/leaflet.scss */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* line 467, app/assets/stylesheets/leaflet.scss */
.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
  line-height: 1.4;
}

/* line 474, app/assets/stylesheets/leaflet.scss */
.leaflet-control-attribution a {
  text-decoration: none;
}

/* line 478, app/assets/stylesheets/leaflet.scss */
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
  text-decoration: underline;
}

/* line 483, app/assets/stylesheets/leaflet.scss */
.leaflet-attribution-flag {
  display: inline !important;
  vertical-align: baseline !important;
  width: 1em;
  height: 0.6669em;
  margin-right: 0.277em;
}

/* line 491, app/assets/stylesheets/leaflet.scss */
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

/* line 495, app/assets/stylesheets/leaflet.scss */
.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

/* line 499, app/assets/stylesheets/leaflet.scss */
.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  white-space: nowrap;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px #fff;
}

/* line 510, app/assets/stylesheets/leaflet.scss */
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

/* line 516, app/assets/stylesheets/leaflet.scss */
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

/* line 520, app/assets/stylesheets/leaflet.scss */
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}

/* line 526, app/assets/stylesheets/leaflet.scss */
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */
/* line 535, app/assets/stylesheets/leaflet.scss */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

/* line 541, app/assets/stylesheets/leaflet.scss */
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

/* line 547, app/assets/stylesheets/leaflet.scss */
.leaflet-popup-content {
  margin: 13px 24px 13px 20px;
  line-height: 1.3;
  font-size: 13px;
  font-size: 1.08333em;
  min-height: 1px;
}

/* line 555, app/assets/stylesheets/leaflet.scss */
.leaflet-popup-content p {
  margin: 17px 0;
  margin: 1.3em 0;
}

/* line 560, app/assets/stylesheets/leaflet.scss */
.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-top: -1px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

/* line 571, app/assets/stylesheets/leaflet.scss */
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  pointer-events: auto;
  transform: rotate(45deg);
}

/* line 582, app/assets/stylesheets/leaflet.scss */
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

/* line 589, app/assets/stylesheets/leaflet.scss */
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-align: center;
  width: 24px;
  height: 24px;
  font: 16px/24px Tahoma, Verdana, sans-serif;
  color: #757575;
  text-decoration: none;
  background: transparent;
}

/* line 603, app/assets/stylesheets/leaflet.scss */
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
  color: #585858;
}

/* line 608, app/assets/stylesheets/leaflet.scss */
.leaflet-popup-scrolled {
  overflow: auto;
}

/* div icon */
/* line 614, app/assets/stylesheets/leaflet.scss */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
/* line 622, app/assets/stylesheets/leaflet.scss */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* line 635, app/assets/stylesheets/leaflet.scss */
.leaflet-tooltip.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto;
}

/* line 640, app/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Directions */
/* line 653, app/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}

/* line 657, app/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-top {
  margin-top: -6px;
}

/* line 661, app/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}

/* line 667, app/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}

/* line 673, app/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}

/* line 680, app/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-left {
  margin-left: -6px;
}

/* line 684, app/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-right {
  margin-left: 6px;
}

/* line 688, app/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}

/* line 694, app/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}

/* line 700, app/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

/* Printing */
@media print {
  /* Prevent printers from removing background-images of controls. */
  /* line 710, app/assets/stylesheets/leaflet.scss */
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* ================================================================== */
/* Toolbars
/* ================================================================== */
/* line 5, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-section {
  position: relative;
}

/* line 9, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar {
  margin-top: 12px;
}

/* line 13, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar-top {
  margin-top: 0;
}

/* line 17, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar-notop a:first-child {
  border-top-right-radius: 0;
}

/* line 21, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar-nobottom a:last-child {
  border-bottom-right-radius: 0;
}

/* line 25, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar a {
  background-image: url(/assets/maps/spritesheet-e2fc43233c9759a9f044b4a44bfe0a9009c33ec02ba883fa922ae23458ac5a7c.png);
  background-image: linear-gradient(transparent, transparent), url(/assets/maps/spritesheet-cbdec0a664b20d64258225bac57cb3c458765011b70ad93f6450d533c11d01bc.svg);
  background-repeat: no-repeat;
  background-size: 300px 30px;
  background-clip: padding-box;
}

/* line 34, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-retina .leaflet-draw-toolbar a {
  background-image: url(/assets/maps/spritesheet-2x-08c4c3f218afc68bd7d9307da6770813c49b6daa6db828853840b2e5bbb33b62.png);
  background-image: linear-gradient(transparent, transparent), url(/assets/maps/spritesheet-cbdec0a664b20d64258225bac57cb3c458765011b70ad93f6450d533c11d01bc.svg);
}

/* line 40, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw a {
  display: block;
  text-align: center;
  text-decoration: none;
}

/* line 46, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw a .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ================================================================== */
/* Toolbar actions menu
/* ================================================================== */
/* line 61, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-actions {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 26px;
  /* leaflet-draw-toolbar.left + leaflet-draw-toolbar.width */
  top: 0;
  white-space: nowrap;
}

/* line 72, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-touch .leaflet-draw-actions {
  left: 32px;
}

/* line 76, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-right .leaflet-draw-actions {
  right: 26px;
  left: auto;
}

/* line 81, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-touch .leaflet-right .leaflet-draw-actions {
  right: 32px;
  left: auto;
}

/* line 86, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-actions li {
  display: inline-block;
}

/* line 90, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-actions li:first-child a {
  border-left: none;
}

/* line 94, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-actions li:last-child a {
  -webkit-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

/* line 99, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-right .leaflet-draw-actions li:last-child a {
  -webkit-border-radius: 0;
  border-radius: 0;
}

/* line 104, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-right .leaflet-draw-actions li:first-child a {
  -webkit-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}

/* line 109, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-actions a {
  background-color: #919187;
  border-left: 1px solid #AAA;
  color: #FFF;
  font: 11px/19px "Helvetica Neue", Arial, Helvetica, sans-serif;
  line-height: 28px;
  text-decoration: none;
  padding-left: 10px;
  padding-right: 10px;
  height: 28px;
}

/* line 121, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-touch .leaflet-draw-actions a {
  font-size: 12px;
  line-height: 30px;
  height: 30px;
}

/* line 127, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-actions-bottom {
  margin-top: 0;
}

/* line 131, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-actions-top {
  margin-top: 1px;
}

/* line 135, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-actions-top a,
.leaflet-draw-actions-bottom a {
  height: 27px;
  line-height: 27px;
}

/* line 141, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-actions a:hover {
  background-color: #A0A098;
}

/* line 145, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-actions-top.leaflet-draw-actions-bottom a {
  height: 26px;
  line-height: 26px;
}

/* ================================================================== */
/* Draw toolbar
/* ================================================================== */
/* line 154, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar .leaflet-draw-draw-polyline {
  background-position: -2px -2px;
}

/* line 158, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline {
  background-position: 0 -1px;
}

/* line 162, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar .leaflet-draw-draw-polygon {
  background-position: -31px -2px;
}

/* line 166, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon {
  background-position: -29px -1px;
}

/* line 170, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar .leaflet-draw-draw-rectangle {
  background-position: -62px -2px;
}

/* line 174, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle {
  background-position: -60px -1px;
}

/* line 178, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar .leaflet-draw-draw-circle {
  background-position: -92px -2px;
}

/* line 182, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle {
  background-position: -90px -1px;
}

/* line 186, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar .leaflet-draw-draw-marker {
  background-position: -122px -2px;
}

/* line 190, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker {
  background-position: -120px -1px;
}

/* line 194, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker {
  background-position: -273px -2px;
}

/* line 198, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker {
  background-position: -271px -1px;
}

/* ================================================================== */
/* Edit toolbar
/* ================================================================== */
/* line 206, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar .leaflet-draw-edit-edit {
  background-position: -152px -2px;
}

/* line 210, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit {
  background-position: -150px -1px;
}

/* line 214, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar .leaflet-draw-edit-remove {
  background-position: -182px -2px;
}

/* line 218, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove {
  background-position: -180px -1px;
}

/* line 222, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled {
  background-position: -212px -2px;
}

/* line 226, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled {
  background-position: -210px -1px;
}

/* line 230, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled {
  background-position: -242px -2px;
}

/* line 234, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled {
  background-position: -240px -2px;
}

/* ================================================================== */
/* Drawing styles
/* ================================================================== */
/* line 242, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-mouse-marker {
  background-color: #fff;
  cursor: crosshair;
}

/* line 247, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-tooltip {
  background: #363636;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid transparent;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  color: #fff;
  font: 12px/18px "Helvetica Neue", Arial, Helvetica, sans-serif;
  margin-left: 20px;
  margin-top: -21px;
  padding: 4px 8px;
  position: absolute;
  visibility: hidden;
  white-space: nowrap;
  z-index: 6;
}

/* line 264, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-tooltip:before {
  border-right: 6px solid black;
  border-right-color: rgba(0, 0, 0, 0.5);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  content: "";
  position: absolute;
  top: 7px;
  left: -7px;
}

/* line 275, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-error-draw-tooltip {
  background-color: #F2DEDE;
  border: 1px solid #E6B6BD;
  color: #B94A48;
}

/* line 281, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-error-draw-tooltip:before {
  border-right-color: #E6B6BD;
}

/* line 285, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-tooltip-single {
  margin-top: -12px;
}

/* line 289, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-tooltip-subtext {
  color: #f8d5e4;
}

/* line 293, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-draw-guide-dash {
  font-size: 1%;
  opacity: 0.6;
  position: absolute;
  width: 5px;
  height: 5px;
}

/* ================================================================== */
/* Edit styles
/* ================================================================== */
/* line 305, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-edit-marker-selected {
  background-color: rgba(254, 87, 161, 0.1);
  border: 4px dashed rgba(254, 87, 161, 0.6);
  -webkit-border-radius: 4px;
  border-radius: 4px;
  box-sizing: content-box;
}

/* line 313, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-edit-move {
  cursor: move;
}

/* line 317, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-edit-resize {
  cursor: pointer;
}

/* ================================================================== */
/* Old IE styles
/* ================================================================== */
/* line 325, app/assets/stylesheets/leaflet.draw.scss */
.leaflet-oldie .leaflet-draw-toolbar {
  border: 1px solid #999;
}

/* line 1, app/assets/stylesheets/duration_bar.scss */
.duration-bar-container {
  width: 100%;
  padding: 4px 0;
}

/* line 6, app/assets/stylesheets/duration_bar.scss */
.duration-value {
  font-weight: bold;
  margin-bottom: 4px;
}

/* line 11, app/assets/stylesheets/duration_bar.scss */
.duration-bar {
  position: relative;
  width: 100%;
}

/* line 16, app/assets/stylesheets/duration_bar.scss */
.duration-bar-background {
  position: relative;
  height: 12px;
  background-color: #f0f0f0;
  border-radius: 6px;
  overflow: hidden;
}

/* line 24, app/assets/stylesheets/duration_bar.scss */
.duration-segments {
  display: flex;
  width: 100%;
  height: 100%;
}

/* line 30, app/assets/stylesheets/duration_bar.scss */
.segment {
  height: 100%;
}

/* line 34, app/assets/stylesheets/duration_bar.scss */
.segment.green {
  background-color: #4caf50;
}

/* line 38, app/assets/stylesheets/duration_bar.scss */
.segment.yellow {
  background-color: #ffc107;
}

/* line 42, app/assets/stylesheets/duration_bar.scss */
.segment.red {
  background-color: #f44336;
}

/* line 46, app/assets/stylesheets/duration_bar.scss */
.min-marker, .avg-marker, .max-marker, .current-marker {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
}

/* line 52, app/assets/stylesheets/duration_bar.scss */
.marker-label {
  position: absolute;
  bottom: 16px;
  transform: translateX(-50%);
  font-size: 10px;
  color: #666;
  white-space: nowrap;
}

/* line 61, app/assets/stylesheets/duration_bar.scss */
.min-marker::after, .avg-marker::after, .max-marker::after {
  content: '';
  display: block;
  width: 2px;
  height: 6px;
  background-color: #666;
}

/* line 69, app/assets/stylesheets/duration_bar.scss */
.current-marker {
  z-index: 5;
}

/* line 73, app/assets/stylesheets/duration_bar.scss */
.marker-indicator {
  width: 12px;
  height: 12px;
  background-color: #2196f3;
  border-radius: 50%;
  border: 2px solid white;
}

/* app/assets/stylesheets/tag_input.css */
/* line 3, app/assets/stylesheets/custom_tag_input.scss */
.tag-input-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  min-height: 38px;
  background-color: #fff;
  width: 100%;
}

/* line 16, app/assets/stylesheets/custom_tag_input.scss */
.tag-input-container:focus-within {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: 0;
}

/* line 22, app/assets/stylesheets/custom_tag_input.scss */
.tag-item {
  display: inline-flex;
  align-items: center;
  background: #e9ecef;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  margin: 2px;
  border: 1px solid #ced4da;
}

/* line 33, app/assets/stylesheets/custom_tag_input.scss */
.tag-remove {
  background: none;
  border: none;
  padding: 0;
  margin-left: 6px;
  cursor: pointer;
  font-size: 16px;
  color: #6c757d;
  line-height: 1;
}

/* line 44, app/assets/stylesheets/custom_tag_input.scss */
.tag-remove:hover {
  color: #dc3545;
}

/* line 48, app/assets/stylesheets/custom_tag_input.scss */
.tag-input {
  flex: 1;
  border: none;
  outline: none;
  min-width: 120px;
  padding: 4px;
  font-size: 14px;
  background: transparent;
}

/* app/assets/stylesheets/property_card_map.css */
/* Property card container */
/* line 4, app/assets/stylesheets/property_card_map.scss */
.property-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
}

/* Map background styles */
/* line 11, app/assets/stylesheets/property_card_map.scss */
.property-card-map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
  /* Adjust opacity as needed */
}

/* Content overlay */
/* line 22, app/assets/stylesheets/property_card_map.scss */
.property-card-overlay {
  color: white;
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.79);
  /* Semi-transparent white background */
  border-radius: 0.25rem;
  margin: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-height: 150px;
}

/* Improve readability of text on map */
/* line 34, app/assets/stylesheets/property_card_map.scss */
.property-card h5,
.property-card p {
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

/* Create a subtle border for the map */
/* line 40, app/assets/stylesheets/property_card_map.scss */
.property-card-map-bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0.125);
  pointer-events: none;
}

/* line 8, app/assets/stylesheets/palm_calendar.scss */
tr.table-danger-subtle {
  --bs-table-bg: #fcebec;
}

/* line 12, app/assets/stylesheets/palm_calendar.scss */
.palm-calendar-cell {
  min-width: 50px;
  white-space: nowrap;
}

/* line 17, app/assets/stylesheets/palm_calendar.scss */
.palm-calendar-due-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  position: relative;
}

/* line 24, app/assets/stylesheets/palm_calendar.scss */
.palm-calendar-due-badge {
  font-size: 0.75rem;
  margin-left: -2px;
}

/* line 29, app/assets/stylesheets/palm_calendar.scss */
.palm-calendar-th {
  background-color: #243b6a !important;
  color: #fff !important;
  vertical-align: middle !important;
}

/* line 34, app/assets/stylesheets/palm_calendar.scss */
.palm-calendar-th a,
.palm-calendar-th a:hover,
.palm-calendar-th .text-muted,
.palm-calendar-th .text-dark {
  color: #fff !important;
}

/* line 44, app/assets/stylesheets/palm_calendar.scss */
tbody.collapse.show,
tbody.collapsing {
  display: table-row-group !important;
}

/* line 49, app/assets/stylesheets/palm_calendar.scss */
.palm-calendar-detail-row td {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  font-size: 0.85rem;
}

/* line 55, app/assets/stylesheets/palm_calendar.scss */
.palm-calendar-chevron {
  transition: transform 0.2s ease;
  display: inline-block;
}

/* line 60, app/assets/stylesheets/palm_calendar.scss */
[aria-expanded="true"] .palm-calendar-chevron {
  transform: rotate(90deg);
}

/* line 3, app/assets/stylesheets/green_pulsing_dot.scss */
.pulsing-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border-radius: 50%;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

/* line 13, app/assets/stylesheets/green_pulsing_dot.scss */
.pulsing-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #60c986;
  border-radius: 50%;
  opacity: 0.7;
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* line 53, app/assets/stylesheets/green_pulsing_dot.scss */
.ring-container {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
}

/* line 60, app/assets/stylesheets/green_pulsing_dot.scss */
.circle {
  width: 8px;
  height: 8px;
  background-color: #62bd19;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 71, app/assets/stylesheets/green_pulsing_dot.scss */
.ringring {
  border: 2px solid #62bd19;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulsate 1s ease-out infinite;
  opacity: 0;
}

@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* line 3, app/assets/stylesheets/_public.scss */
.public-layout {
  background-color: #f8f9fa;
  min-height: 100vh;
}

/* line 7, app/assets/stylesheets/_public.scss */
.public-layout .navbar-brand img {
  max-height: 40px;
}

/* line 11, app/assets/stylesheets/_public.scss */
.public-layout .hero-section {
  background: linear-gradient(135deg, var(--encore-primary) 0%, #0077a3 100%);
  color: white;
  padding: 3rem 0;
}

/* line 17, app/assets/stylesheets/_public.scss */
.public-layout .card {
  border: none;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* line 22, app/assets/stylesheets/_public.scss */
.public-layout .card-header.bg-primary {
  background-color: var(--encore-navy) !important;
}

/* line 26, app/assets/stylesheets/_public.scss */
.public-layout .btn-encore {
  background-color: var(--encore-green);
  border-color: var(--encore-green);
  color: white;
}

/* line 31, app/assets/stylesheets/_public.scss */
.public-layout .btn-encore:hover {
  background-color: color-mix(in srgb, var(--encore-green) 85%, black);
  border-color: color-mix(in srgb, var(--encore-green) 85%, black);
  color: white;
}

/* line 38, app/assets/stylesheets/_public.scss */
.public-layout .footer {
  background-color: #343a40;
  color: #adb5bd;
  padding: 2rem 0;
  margin-top: auto;
}

/* line 45, app/assets/stylesheets/_public.scss */
.public-layout .language-switcher .dropdown-toggle::after {
  display: none;
}

/* line 1, app/assets/stylesheets/lightbox.scss */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 14, app/assets/stylesheets/lightbox.scss */
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
}

/* line 22, app/assets/stylesheets/lightbox.scss */
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  opacity: 0.8;
  z-index: 1;
  line-height: 1;
  padding: 4px 8px;
}

/* line 36, app/assets/stylesheets/lightbox.scss */
.lightbox-close:hover {
  opacity: 1;
}

/* line 39, app/assets/stylesheets/lightbox.scss */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 48px;
  cursor: pointer;
  opacity: 0.7;
  padding: 8px 16px;
  z-index: 1;
  line-height: 1;
}

/* line 54, app/assets/stylesheets/lightbox.scss */
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

/* line 57, app/assets/stylesheets/lightbox.scss */
.lightbox-prev {
  left: 16px;
}

/* line 58, app/assets/stylesheets/lightbox.scss */
.lightbox-next {
  right: 16px;
}

/* line 60, app/assets/stylesheets/lightbox.scss */
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* line 69, app/assets/stylesheets/lightbox.scss */
.lightbox-review-controls {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

/* line 77, app/assets/stylesheets/lightbox.scss */
.lightbox-review-controls .btn-group .btn {
  min-width: 110px;
}

/* line 81, app/assets/stylesheets/lightbox.scss */
.lightbox-review-controls input {
  width: 320px;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}

/* line 88, app/assets/stylesheets/lightbox.scss */
.lightbox-review-controls .lightbox-status-indicator {
  color: rgba(255, 255, 255, 0.85);
  min-height: 1em;
}

/* line 2, app/assets/stylesheets/trix.scss */
trix-editor {
  border: 1px solid #bbb;
  border-radius: 3px;
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none;
}

/* line 11, app/assets/stylesheets/trix.scss */
trix-toolbar * {
  box-sizing: border-box;
}

/* line 14, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
}

/* line 20, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button-group {
  display: flex;
  margin-bottom: 10px;
  border: 1px solid #bbb;
  border-top-color: #ccc;
  border-bottom-color: #888;
  border-radius: 3px;
}

/* line 28, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button-group:not(:first-child) {
  margin-left: 1.5vw;
}

@media (max-width: 768px) {
  /* line 32, app/assets/stylesheets/trix.scss */
  trix-toolbar .trix-button-group:not(:first-child) {
    margin-left: 0;
  }
}

/* line 36, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button-group-spacer {
  flex-grow: 1;
}

@media (max-width: 768px) {
  /* line 40, app/assets/stylesheets/trix.scss */
  trix-toolbar .trix-button-group-spacer {
    display: none;
  }
}

/* line 44, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button {
  position: relative;
  float: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5em;
  margin: 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
}

/* line 59, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}

/* line 62, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button.trix-active {
  background: #cbeefa;
  color: black;
}

/* line 66, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button:not(:disabled) {
  cursor: pointer;
}

/* line 69, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button:disabled {
  color: rgba(0, 0, 0, 0.125);
}

@media (max-width: 768px) {
  /* line 73, app/assets/stylesheets/trix.scss */
  trix-toolbar .trix-button {
    letter-spacing: -0.01em;
    padding: 0 0.3em;
  }
}

/* line 78, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon {
  font-size: inherit;
  width: 2.6em;
  height: 1.6em;
  max-width: calc(0.8em + 4vw);
  text-indent: -9999px;
}

@media (max-width: 768px) {
  /* line 86, app/assets/stylesheets/trix.scss */
  trix-toolbar .trix-button--icon {
    height: 2em;
    max-width: calc(0.8em + 3.5vw);
  }
}

/* line 91, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 768px) {
  /* line 105, app/assets/stylesheets/trix.scss */
  trix-toolbar .trix-button--icon::before {
    right: 6%;
    left: 6%;
  }
}

/* line 110, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon.trix-active::before {
  opacity: 1;
}

/* line 113, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon:disabled::before {
  opacity: 0.125;
}

/* line 116, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon-attach::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.5%2018V7.5c0-2.25%203-2.25%203%200V18c0%204.125-6%204.125-6%200V7.5c0-6.375%209-6.375%209%200V18%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  top: 8%;
  bottom: 4%;
}

/* line 121, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon-bold::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.522%2019.242a.5.5%200%200%201-.5-.5V5.35a.5.5%200%200%201%20.5-.5h5.783c1.347%200%202.46.345%203.24.982.783.64%201.216%201.562%201.216%202.683%200%201.13-.587%202.129-1.476%202.71a.35.35%200%200%200%20.049.613c1.259.56%202.101%201.742%202.101%203.22%200%201.282-.483%202.334-1.363%203.063-.876.726-2.132%201.12-3.66%201.12h-5.89ZM9.27%207.347v3.362h1.97c.766%200%201.347-.17%201.733-.464.38-.291.587-.716.587-1.27%200-.53-.183-.928-.513-1.198-.334-.273-.838-.43-1.505-.43H9.27Zm0%205.606v3.791h2.389c.832%200%201.448-.177%201.853-.497.399-.315.614-.786.614-1.423%200-.62-.22-1.077-.63-1.385-.418-.313-1.053-.486-1.905-.486H9.27Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 124, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon-italic::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9%205h6.5v2h-2.23l-2.31%2010H13v2H6v-2h2.461l2.306-10H9V5Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 127, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon-link::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.948%205.258a4.337%204.337%200%200%200-6.108%200L11.217%206.87a.993.993%200%200%200%200%201.41c.392.39%201.027.39%201.418%200l1.623-1.613a2.323%202.323%200%200%201%203.271%200%202.29%202.29%200%200%201%200%203.251l-2.393%202.38a3.021%203.021%200%200%201-4.255%200l-.05-.049a1.007%201.007%200%200%200-1.418%200%20.993.993%200%200%200%200%201.41l.05.049a5.036%205.036%200%200%200%207.091%200l2.394-2.38a4.275%204.275%200%200%200%200-6.072Zm-13.683%2013.6a4.337%204.337%200%200%200%206.108%200l1.262-1.255a.993.993%200%200%200%200-1.41%201.007%201.007%200%200%200-1.418%200L9.954%2017.45a2.323%202.323%200%200%201-3.27%200%202.29%202.29%200%200%201%200-3.251l2.344-2.331a2.579%202.579%200%200%201%203.631%200c.392.39%201.027.39%201.419%200a.993.993%200%200%200%200-1.41%204.593%204.593%200%200%200-6.468%200l-2.345%202.33a4.275%204.275%200%200%200%200%206.072Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 130, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon-strike::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6%2014.986c.088%202.647%202.246%204.258%205.635%204.258%203.496%200%205.713-1.728%205.713-4.463%200-.275-.02-.536-.062-.781h-3.461c.398.293.573.654.573%201.123%200%201.035-1.074%201.787-2.646%201.787-1.563%200-2.773-.762-2.91-1.924H6ZM6.432%2010h3.763c-.632-.314-.914-.715-.914-1.273%200-1.045.977-1.739%202.432-1.739%201.475%200%202.52.723%202.617%201.914h2.764c-.05-2.548-2.11-4.238-5.39-4.238-3.145%200-5.392%201.719-5.392%204.316%200%20.363.04.703.12%201.02ZM4%2011a1%201%200%201%200%200%202h15a1%201%200%201%200%200-2H4Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 133, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon-quote::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.581%208.471c.44-.5%201.056-.834%201.758-.995C8.074%207.17%209.201%207.822%2010%208.752c1.354%201.578%201.33%203.555.394%205.277-.941%201.731-2.788%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.121-.49.16-.764.294-.286.567-.566.791-.835.222-.266.413-.54.524-.815.113-.28.156-.597.026-.908-.128-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.674-2.7c0-.905.283-1.59.72-2.088Zm9.419%200c.44-.5%201.055-.834%201.758-.995%201.734-.306%202.862.346%203.66%201.276%201.355%201.578%201.33%203.555.395%205.277-.941%201.731-2.789%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.122-.49.16-.764.294-.286.567-.566.791-.835.222-.266.412-.54.523-.815.114-.28.157-.597.026-.908-.127-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.672-2.701c0-.905.283-1.59.72-2.088Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 136, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon-heading-1::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21.5%207.5v-3h-12v3H14v13h3v-13h4.5ZM9%2013.5h3.5v-3h-10v3H6v7h3v-7Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 139, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon-code::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.293%2011.293a1%201%200%200%200%200%201.414l4%204a1%201%200%201%200%201.414-1.414L5.414%2012l3.293-3.293a1%201%200%200%200-1.414-1.414l-4%204Zm13.414%205.414%204-4a1%201%200%200%200%200-1.414l-4-4a1%201%200%201%200-1.414%201.414L18.586%2012l-3.293%203.293a1%201%200%200%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 142, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon-bullet-list::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%207.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203ZM8%206a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-2.5-5a1.5%201.5%200%201%201-3%200%201.5%201.5%200%200%201%203%200ZM5%2019.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 145, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon-number-list::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%204h2v4H4V5H3V4Zm5%202a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-3.5-7H6v1l-1.5%202H6v1H3v-1l1.667-2H3v-1h2.5ZM3%2017v-1h3v4H3v-1h2v-.5H4v-1h1V17H3Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 148, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon-undo::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%2014a1%201%200%200%200%201%201h6a1%201%200%201%200%200-2H6.257c2.247-2.764%205.151-3.668%207.579-3.264%202.589.432%204.739%202.356%205.174%205.405a1%201%200%200%200%201.98-.283c-.564-3.95-3.415-6.526-6.825-7.095C11.084%207.25%207.63%208.377%205%2011.39V8a1%201%200%200%200-2%200v6Zm2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 151, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon-redo::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21%2014a1%201%200%200%201-1%201h-6a1%201%200%201%201%200-2h3.743c-2.247-2.764-5.151-3.668-7.579-3.264-2.589.432-4.739%202.356-5.174%205.405a1%201%200%200%201-1.98-.283c.564-3.95%203.415-6.526%206.826-7.095%203.08-.513%206.534.614%209.164%203.626V8a1%201%200%201%201%202%200v6Zm-2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 154, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon-decrease-nesting-level::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-3.707-5.707a1%201%200%200%200%200%201.414l2%202a1%201%200%201%200%201.414-1.414L4.414%2012l1.293-1.293a1%201%200%200%200-1.414-1.414l-2%202Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 157, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--icon-increase-nesting-level::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-2.293-2.293%202-2a1%201%200%200%200%200-1.414l-2-2a1%201%200%201%200-1.414%201.414L3.586%2012l-1.293%201.293a1%201%200%201%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 160, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-dialogs {
  position: relative;
}

/* line 163, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.75em;
  padding: 15px 10px;
  background: #fff;
  box-shadow: 0 0.3em 1em #ccc;
  border-top: 2px solid #888;
  border-radius: 5px;
  z-index: 5;
}

/* line 176, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-input--dialog {
  font-size: inherit;
  font-weight: normal;
  padding: 0.5em 0.8em;
  margin: 0 10px 0 0;
  border-radius: 3px;
  border: 1px solid #bbb;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* line 189, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-input--dialog.validate:invalid {
  box-shadow: #F00 0px 0px 1.5px 1px;
}

/* line 192, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-button--dialog {
  font-size: inherit;
  padding: 0.5em;
  border-bottom: none;
}

/* line 197, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-dialog--link {
  max-width: 600px;
}

/* line 200, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-dialog__link-fields {
  display: flex;
  align-items: baseline;
}

/* line 204, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-dialog__link-fields .trix-input {
  flex: 1;
}

/* line 207, app/assets/stylesheets/trix.scss */
trix-toolbar .trix-dialog__link-fields .trix-button-group {
  flex: 0 0 content;
  margin: 0;
}

/* line 212, app/assets/stylesheets/trix.scss */
trix-editor [data-trix-mutable]:not(.attachment__caption-editor) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 219, app/assets/stylesheets/trix.scss */
trix-editor [data-trix-mutable] ::-moz-selection, trix-editor [data-trix-mutable]::-moz-selection,
trix-editor [data-trix-cursor-target]::-moz-selection {
  background: none;
}

/* line 223, app/assets/stylesheets/trix.scss */
trix-editor [data-trix-mutable] ::selection, trix-editor [data-trix-mutable]::selection,
trix-editor [data-trix-cursor-target]::selection {
  background: none;
}

/* line 228, app/assets/stylesheets/trix.scss */
trix-editor .attachment__caption-editor[data-trix-mutable]:focus::-moz-selection {
  background: highlight;
}

/* line 231, app/assets/stylesheets/trix.scss */
trix-editor .attachment__caption-editor[data-trix-mutable]:focus::selection {
  background: highlight;
}

/* line 235, app/assets/stylesheets/trix.scss */
trix-editor .attachment.attachment--file[data-trix-mutable] {
  box-shadow: 0 0 0 2px highlight;
  border-color: transparent;
}

/* line 239, app/assets/stylesheets/trix.scss */
trix-editor .attachment[data-trix-mutable] img {
  box-shadow: 0 0 0 2px highlight;
}

/* line 242, app/assets/stylesheets/trix.scss */
trix-editor .attachment {
  position: relative;
}

/* line 245, app/assets/stylesheets/trix.scss */
trix-editor .attachment:hover {
  cursor: default;
}

/* line 248, app/assets/stylesheets/trix.scss */
trix-editor .attachment--preview .attachment__caption:hover {
  cursor: text;
}

/* line 251, app/assets/stylesheets/trix.scss */
trix-editor .attachment__progress {
  position: absolute;
  z-index: 1;
  height: 20px;
  top: calc(50% - 10px);
  left: 5%;
  width: 90%;
  opacity: 0.9;
  transition: opacity 200ms ease-in;
}

/* line 261, app/assets/stylesheets/trix.scss */
trix-editor .attachment__progress[value="100"] {
  opacity: 0;
}

/* line 264, app/assets/stylesheets/trix.scss */
trix-editor .attachment__caption-editor {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  vertical-align: top;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* line 280, app/assets/stylesheets/trix.scss */
trix-editor .attachment__toolbar {
  position: absolute;
  z-index: 1;
  top: -0.9em;
  left: 0;
  width: 100%;
  text-align: center;
}

/* line 288, app/assets/stylesheets/trix.scss */
trix-editor .trix-button-group {
  display: inline-flex;
}

/* line 291, app/assets/stylesheets/trix.scss */
trix-editor .trix-button {
  position: relative;
  float: left;
  color: #666;
  white-space: nowrap;
  font-size: 80%;
  padding: 0 0.8em;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent;
}

/* line 304, app/assets/stylesheets/trix.scss */
trix-editor .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}

/* line 307, app/assets/stylesheets/trix.scss */
trix-editor .trix-button.trix-active {
  background: #cbeefa;
}

/* line 310, app/assets/stylesheets/trix.scss */
trix-editor .trix-button:not(:disabled) {
  cursor: pointer;
}

/* line 313, app/assets/stylesheets/trix.scss */
trix-editor .trix-button--remove {
  text-indent: -9999px;
  display: inline-block;
  padding: 0;
  outline: none;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid highlight;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}

/* line 326, app/assets/stylesheets/trix.scss */
trix-editor .trix-button--remove::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.41%2017.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}

/* line 340, app/assets/stylesheets/trix.scss */
trix-editor .trix-button--remove:hover {
  border-color: #333;
}

/* line 343, app/assets/stylesheets/trix.scss */
trix-editor .trix-button--remove:hover::before {
  opacity: 1;
}

/* line 346, app/assets/stylesheets/trix.scss */
trix-editor .attachment__metadata-container {
  position: relative;
}

/* line 349, app/assets/stylesheets/trix.scss */
trix-editor .attachment__metadata {
  position: absolute;
  left: 50%;
  top: 2em;
  transform: translate(-50%, 0);
  max-width: 90%;
  padding: 0.1em 0.6em;
  font-size: 0.8em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
}

/* line 361, app/assets/stylesheets/trix.scss */
trix-editor .attachment__metadata .attachment__name {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 369, app/assets/stylesheets/trix.scss */
trix-editor .attachment__metadata .attachment__size {
  margin-left: 0.2em;
  white-space: nowrap;
}

/* line 374, app/assets/stylesheets/trix.scss */
.trix-content {
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* line 379, app/assets/stylesheets/trix.scss */
.trix-content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 384, app/assets/stylesheets/trix.scss */
.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
}

/* line 388, app/assets/stylesheets/trix.scss */
.trix-content blockquote {
  border: 0 solid #ccc;
  border-left-width: 0.3em;
  margin-left: 0.3em;
  padding-left: 0.6em;
}

/* line 394, app/assets/stylesheets/trix.scss */
.trix-content [dir=rtl] blockquote,
.trix-content blockquote[dir=rtl] {
  border-width: 0;
  border-right-width: 0.3em;
  margin-right: 0.3em;
  padding-right: 0.6em;
}

/* line 401, app/assets/stylesheets/trix.scss */
.trix-content li {
  margin-left: 1em;
}

/* line 404, app/assets/stylesheets/trix.scss */
.trix-content [dir=rtl] li {
  margin-right: 1em;
}

/* line 407, app/assets/stylesheets/trix.scss */
.trix-content pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.5em;
  white-space: pre;
  background-color: #eee;
  overflow-x: auto;
}

/* line 418, app/assets/stylesheets/trix.scss */
.trix-content img {
  max-width: 100%;
  height: auto;
}

/* line 422, app/assets/stylesheets/trix.scss */
.trix-content .attachment {
  display: inline-block;
  position: relative;
  max-width: 100%;
}

/* line 427, app/assets/stylesheets/trix.scss */
.trix-content .attachment a {
  color: inherit;
  text-decoration: none;
}

/* line 431, app/assets/stylesheets/trix.scss */
.trix-content .attachment a:hover, .trix-content .attachment a:visited:hover {
  color: inherit;
}

/* line 434, app/assets/stylesheets/trix.scss */
.trix-content .attachment__caption {
  text-align: center;
}

/* line 437, app/assets/stylesheets/trix.scss */
.trix-content .attachment__caption .attachment__name + .attachment__size::before {
  content: " •";
}

/* line 440, app/assets/stylesheets/trix.scss */
.trix-content .attachment--preview {
  width: 100%;
  text-align: center;
}

/* line 444, app/assets/stylesheets/trix.scss */
.trix-content .attachment--preview .attachment__caption {
  color: #666;
  font-size: 0.9em;
  line-height: 1.2;
}

/* line 449, app/assets/stylesheets/trix.scss */
.trix-content .attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 2px;
  padding: 0.4em 1em;
  border: 1px solid #bbb;
  border-radius: 5px;
}

/* line 457, app/assets/stylesheets/trix.scss */
.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

/* line 462, app/assets/stylesheets/trix.scss */
.trix-content .attachment-gallery .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

/* line 467, app/assets/stylesheets/trix.scss */
.trix-content .attachment-gallery.attachment-gallery--2 .attachment, .trix-content .attachment-gallery.attachment-gallery--4 .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

/*
 * We need to override trix.css’s image gallery styles to accommodate the
 * <action-text-attachment> element we wrap around attachments. Otherwise,
 * images in galleries will be squished by the max-width: 33%; rule.
*/
/* line 6, app/assets/stylesheets/actiontext.scss */
.trix-content .attachment-gallery > action-text-attachment,
.trix-content .attachment-gallery > .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

/* line 13, app/assets/stylesheets/actiontext.scss */
.trix-content .attachment-gallery.attachment-gallery--2 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--2 > .attachment, .trix-content .attachment-gallery.attachment-gallery--4 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--4 > .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

/* line 20, app/assets/stylesheets/actiontext.scss */
.trix-content action-text-attachment .attachment {
  padding: 0 !important;
  max-width: 100% !important;
}

/* line 5, app/assets/stylesheets/announcements.scss */
.admin-banner-wrapper {
  position: fixed;
  top: 60px;
  left: 300px;
  right: 0;
  z-index: 999;
  transition: left 0.3s;
}

@media (max-width: 1199px) {
  /* line 5, app/assets/stylesheets/announcements.scss */
  .admin-banner-wrapper {
    left: 0;
  }
}

/* line 19, app/assets/stylesheets/announcements.scss */
.toggle-sidebar .admin-banner-wrapper {
  left: 0;
}

/* line 25, app/assets/stylesheets/announcements.scss */
#main.has-banner {
  padding-top: 58px;
}

/* line 30, app/assets/stylesheets/announcements.scss */
.announcement-banner {
  overflow: hidden;
  white-space: nowrap;
  background: var(--encore-primary, #0d6efd);
  color: #fff;
  position: relative;
}

/* line 37, app/assets/stylesheets/announcements.scss */
.announcement-banner.banner-urgent {
  background: #dc3545;
}

/* line 40, app/assets/stylesheets/announcements.scss */
.announcement-banner.banner-high {
  background: #fd7e14;
}

/* line 43, app/assets/stylesheets/announcements.scss */
.announcement-banner.banner-normal {
  background: #0d6efd;
}

/* line 46, app/assets/stylesheets/announcements.scss */
.announcement-banner.banner-low {
  background: #6c757d;
}

/* line 51, app/assets/stylesheets/announcements.scss */
.announcement-banner-track {
  display: inline-flex;
  gap: 4rem;
  animation: marquee-scroll var(--marquee-duration, 30s) linear infinite;
  padding-left: 100%;
}

/* line 57, app/assets/stylesheets/announcements.scss */
.announcement-banner-track:hover {
  animation-play-state: paused;
}

/* line 62, app/assets/stylesheets/announcements.scss */
.announcement-banner-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
  padding: 0.4rem 0;
}

/* line 70, app/assets/stylesheets/announcements.scss */
.announcement-banner-item .trix-content {
  display: inline;
  color: inherit;
}

/* line 74, app/assets/stylesheets/announcements.scss */
.announcement-banner-item .trix-content p, .announcement-banner-item .trix-content div {
  display: inline;
  margin: 0;
}

/* line 80, app/assets/stylesheets/announcements.scss */
.announcement-banner-item .dismiss-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 0.25rem;
  font-size: 0.85rem;
  cursor: pointer;
  line-height: 1;
}

/* line 89, app/assets/stylesheets/announcements.scss */
.announcement-banner-item .dismiss-btn:hover {
  color: #fff;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* line 105, app/assets/stylesheets/announcements.scss */
.announcement-card-item {
  border-left: 3px solid transparent;
  transition: background-color 0.15s ease;
}

/* line 109, app/assets/stylesheets/announcements.scss */
.announcement-card-item.priority-urgent {
  border-left-color: #dc3545;
}

/* line 110, app/assets/stylesheets/announcements.scss */
.announcement-card-item.priority-high {
  border-left-color: #fd7e14;
}

/* line 111, app/assets/stylesheets/announcements.scss */
.announcement-card-item.priority-normal {
  border-left-color: #0d6efd;
}

/* line 112, app/assets/stylesheets/announcements.scss */
.announcement-card-item.priority-low {
  border-left-color: #6c757d;
}

/* line 114, app/assets/stylesheets/announcements.scss */
.announcement-card-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* line 119, app/assets/stylesheets/announcements.scss */
.announcement-card-item .announcement-summary .trix-content {
  display: inline;
}

/* line 121, app/assets/stylesheets/announcements.scss */
.announcement-card-item .announcement-summary .trix-content p, .announcement-card-item .announcement-summary .trix-content div {
  display: inline;
  margin: 0;
}

/* line 129, app/assets/stylesheets/announcements.scss */
.trix-content:not(trix-editor) .attachment--file {
  display: block;
  max-width: 100%;
  margin: 0.75rem 0;
  padding: 0 !important;
  border: 1px solid #dee2e6 !important;
  border-radius: 0.5rem;
  background: #fff;
  overflow: hidden;
  transition: all 0.15s ease;
}

/* line 140, app/assets/stylesheets/announcements.scss */
.trix-content:not(trix-editor) .attachment--file a {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  text-decoration: none !important;
  color: #212529 !important;
}

/* line 150, app/assets/stylesheets/announcements.scss */
.trix-content:not(trix-editor) .attachment--file .attachment__file-icon {
  font-size: 1.5rem;
  color: #0d6efd;
  flex-shrink: 0;
}

/* line 157, app/assets/stylesheets/announcements.scss */
.trix-content:not(trix-editor) .attachment--file .attachment__download-icon {
  font-size: 1rem;
  color: #6c757d;
  flex-shrink: 0;
  margin-left: auto;
}

/* line 165, app/assets/stylesheets/announcements.scss */
.trix-content:not(trix-editor) .attachment--file .attachment__caption-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

/* line 173, app/assets/stylesheets/announcements.scss */
.trix-content:not(trix-editor) .attachment--file .attachment__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #212529;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

/* line 183, app/assets/stylesheets/announcements.scss */
.trix-content:not(trix-editor) .attachment--file .attachment__size {
  font-size: 0.75rem;
  color: #6c757d;
  display: block;
}

/* line 188, app/assets/stylesheets/announcements.scss */
.trix-content:not(trix-editor) .attachment--file .attachment__size::before {
  content: "" !important;
}

/* line 193, app/assets/stylesheets/announcements.scss */
.trix-content:not(trix-editor) .attachment--file:hover {
  border-color: #0d6efd !important;
  background-color: #f8f9ff;
  box-shadow: 0 2px 4px rgba(13, 110, 253, 0.08);
}

/* line 198, app/assets/stylesheets/announcements.scss */
.trix-content:not(trix-editor) .attachment--file:hover .attachment__download-icon {
  color: #0d6efd;
}

/* line 207, app/assets/stylesheets/announcements.scss */
.crew-announcement-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}

/* line 214, app/assets/stylesheets/announcements.scss */
.crew-announcement-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* line 219, app/assets/stylesheets/announcements.scss */
.crew-announcement-header {
  display: flex;
  align-items: stretch;
  padding: 0;
  color: #212529;
  cursor: pointer;
}

/* line 226, app/assets/stylesheets/announcements.scss */
.crew-announcement-header:hover {
  background-color: #f8f9fa;
}

/* line 231, app/assets/stylesheets/announcements.scss */
.crew-announcement-header[aria-expanded="true"] .crew-announcement-chevron i {
  transform: rotate(180deg);
}

/* line 237, app/assets/stylesheets/announcements.scss */
.crew-announcement-priority-bar {
  width: 4px;
  flex-shrink: 0;
}

/* line 242, app/assets/stylesheets/announcements.scss */
.crew-announcement-meta {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
}

/* line 248, app/assets/stylesheets/announcements.scss */
.crew-announcement-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #212529;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 258, app/assets/stylesheets/announcements.scss */
.crew-announcement-subline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 264, app/assets/stylesheets/announcements.scss */
.crew-announcement-subline .badge {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* line 273, app/assets/stylesheets/announcements.scss */
.crew-announcement-chevron {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: #6c757d;
}

/* line 279, app/assets/stylesheets/announcements.scss */
.crew-announcement-chevron i {
  transition: transform 0.2s ease;
  font-size: 0.9rem;
}

/* line 285, app/assets/stylesheets/announcements.scss */
.crew-announcement-body {
  padding: 1rem 1.25rem 1.25rem 1.25rem;
  border-top: 1px solid #f1f3f5;
  background: #fafbfc;
}

/* line 291, app/assets/stylesheets/announcements.scss */
.crew-announcement-summary {
  padding: 0.75rem 1rem;
  background: #fff;
  border-left: 3px solid #0d6efd;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #495057;
}

/* line 301, app/assets/stylesheets/announcements.scss */
.crew-announcement-summary .trix-content p:last-child, .crew-announcement-summary .trix-content div:last-child {
  margin-bottom: 0;
}

/* line 305, app/assets/stylesheets/announcements.scss */
.crew-announcement-full {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #212529;
}

/* line 310, app/assets/stylesheets/announcements.scss */
.crew-announcement-full p, .crew-announcement-full div {
  margin-bottom: 0.75rem;
}

/* line 313, app/assets/stylesheets/announcements.scss */
.crew-announcement-full p:last-child, .crew-announcement-full div:last-child {
  margin-bottom: 0;
}

/* line 321, app/assets/stylesheets/announcements.scss */
.admin-announcement-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}

/* line 328, app/assets/stylesheets/announcements.scss */
.admin-announcement-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* line 332, app/assets/stylesheets/announcements.scss */
.admin-announcement-card.admin-announcement-card--read {
  background: #fafbfc;
  border-color: #f0f2f4;
}

/* line 338, app/assets/stylesheets/announcements.scss */
.admin-announcement-header {
  display: flex;
  align-items: stretch;
  padding: 0;
  color: #212529;
  cursor: pointer;
}

/* line 345, app/assets/stylesheets/announcements.scss */
.admin-announcement-header:hover {
  background-color: #f8f9fa;
}

/* line 350, app/assets/stylesheets/announcements.scss */
.admin-announcement-header[aria-expanded="true"] .admin-announcement-chevron i {
  transform: rotate(180deg);
}

/* line 356, app/assets/stylesheets/announcements.scss */
.admin-announcement-priority-bar {
  width: 4px;
  flex-shrink: 0;
}

/* line 361, app/assets/stylesheets/announcements.scss */
.admin-announcement-meta {
  flex: 1;
  min-width: 0;
  padding: 0.875rem 0.75rem 0.875rem 1.125rem;
}

/* line 367, app/assets/stylesheets/announcements.scss */
.admin-announcement-title {
  font-weight: 600;
  font-size: 0.975rem;
  color: #212529;
  margin-bottom: 0.3rem;
}

/* line 374, app/assets/stylesheets/announcements.scss */
.admin-announcement-subline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

/* line 382, app/assets/stylesheets/announcements.scss */
.admin-announcement-chevron {
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  color: #6c757d;
}

/* line 388, app/assets/stylesheets/announcements.scss */
.admin-announcement-chevron i {
  transition: transform 0.2s ease;
  font-size: 0.9rem;
}

/* line 394, app/assets/stylesheets/announcements.scss */
.admin-announcement-body {
  padding: 1.125rem 1.25rem 1.25rem 1.25rem;
  border-top: 1px solid #f1f3f5;
  background: #fafbfc;
}

/* line 400, app/assets/stylesheets/announcements.scss */
.admin-announcement-summary {
  padding: 0.75rem 1rem;
  background: #fff;
  border-left: 3px solid #0d6efd;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  color: #495057;
}

/* line 409, app/assets/stylesheets/announcements.scss */
.admin-announcement-summary .trix-content p:last-child, .admin-announcement-summary .trix-content div:last-child {
  margin-bottom: 0;
}

/* line 413, app/assets/stylesheets/announcements.scss */
.admin-announcement-full {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #212529;
}

/* line 418, app/assets/stylesheets/announcements.scss */
.admin-announcement-full p:last-child, .admin-announcement-full div:last-child {
  margin-bottom: 0;
}

/* line 422, app/assets/stylesheets/announcements.scss */
.crew-announcement-body .trix-content:not(trix-editor) .attachment--file {
  margin: 0.5rem 0;
}

/* line 425, app/assets/stylesheets/announcements.scss */
.crew-announcement-body .trix-content:not(trix-editor) .attachment--file a {
  padding: 0.625rem 0.875rem;
}

/* line 429, app/assets/stylesheets/announcements.scss */
.crew-announcement-body .trix-content:not(trix-editor) .attachment--file .attachment__file-icon {
  font-size: 1.25rem;
}
