:root {
  --brand-radius: 20px;
  --brand-radius-sm: 10px;
  --brand-red: #a4171b;
  --brand-red-rgb: 163, 23, 27;
  --brand-green: #119c41;
  --brand-green-rgb: 17, 156, 66;
  --brand-shade: rgba(120,120,120,0.05);
  --brand-light-rgb: 250,252,255;
  --brand-light: #f8fcff;
  --row-icon-width: 32px;

  --bs-body-font-size: 1em;
  --bs-body-color: #3a3a3a;
  --bs-body-color-rgb: 58, 58, 58;
  --bs-primary: var(--brand-green);
  --bs-secondary: var(--brand-red);
  --bs-primary-rgb: var(--brand-green-rgb);
  --bs-secondary-rgb: var(--brand-red-rgb);
  --bs-light-rgb: 246, 247, 248;
  --bs-light: #f6f5f8;
  --bs-tertiary-bg: #f8fafd;
  --bs-tertiary-bg-rgb: 250, 250, 255;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.055);
  --bs-border-color: rgba(0, 0, 0, 0.055);
  --bs-card-border-color: rgba(0, 0, 0, 0.055);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.055);
  --bs-link-color: #3a3a3a;
  --bs-btn-disabled-border-color: transparent;

  --fc-button-active-bg-color: #565e64;
  --fc-button-active-border-color: #565e64;
  --fc-button-hover-bg-color: #565e64;
  --fc-button-hover-border-color: #565e64;

  --fc-button-bg-color: #6c757d;
  --fc-button-border-color: #6c757d;
  --fc-small-font-size: 0.85em;
  --fc-font-size: 0.95em;
}

/* BOOTSTRAP OVERRIDES */

.offcanvas.offcanvas-bottom {
  height: auto;
  max-height: 96%;
  border-top-left-radius: var(--brand-radius);
  border-top-right-radius: var(--brand-radius);
}

.offcanvas {
  border: none !important;
  --bs-offcanvas-width: 300px;
  z-index: 2000;
}

#offcanvas_notifications.offcanvas {
  --bs-offcanvas-width: 100vw;
}

@media (min-width: 768px) {
  #offcanvas_notifications.offcanvas {
    --bs-offcanvas-width: 400px;
  }
}

.offcanvas-backdrop {
  z-index: 1060;
}

.nav-underline .nav-link.active,
.nav-underline .show>.nav-link {
  font-weight: 400;
}

.fw-regular {
  font-weight: 400 !important;
}

.fw-semibold {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 600 !important;
}

.fs-7 {
  font-size: 0.75rem;
}

.fs-8 {
  font-size: 0.5rem;
}

.fs-14px {
  font-size: 14px;
}

.nav-link {
  background-color: var(--bs-light);
}

.nav-underline .nav-link {
  background-color: transparent;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

.accordion-button {
  --bs-accordion-btn-padding-x: 0.75rem;
}

.btn {
  --bs-btn-line-height: 1;
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-border-color: var(--bs-body-color);
  --bs-btn-hover-bg: var(--bs-body-color);
  --bs-btn-hover-border-color: var(--bs-body-color);
  --bs-btn-active-bg: var(--bs-body-color);
  --bs-btn-active-border-color: var(--bs-body-color);
  --bs-btn-disabled-color: var(--bs-body-color);
  --bs-btn-disabled-border-color: var(--bs-body-color);
  background-color: var(--bs-white);
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  border-color: transparent;
}

.btn-close:focus {
  box-shadow: none;
}

.btn.btn-outline-theme {
  background-color: transparent;
  border-color: rgba(0,0,0,0.15);
}
.btn.btn-outline-theme:hover {
  background-color: rgba(0,0,0,0.35);
  color: #fff;
}
.btn.btn-outline-theme.active {
  background-color: rgba(0,0,0,0.55);
  border-color: transparent;
  color: #fff;
}
.btn.btn-outline-theme:hover.active {
  background-color: rgba(0,0,0,0.85);
}

.btn-group-xs>.btn, .btn-xs {
    --bs-btn-padding-y: 0.15rem;
    --bs-btn-padding-x: 0.25rem;
    --bs-btn-font-size: 0.775rem;
    --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.text-bg-muted {
  background-color: #a1b0ab !important;
}

.text-bg-light {
  color: #3a3a3a !important;
}

.brand-light {
  background-color: var(--brand-light) !important;
}

.form-control,
.form-select {
  border-width: 2px;
  font-size: var(--bs-body-font-size);
}

.form-control:focus {
  box-shadow: none;
}

.placeholder {
  opacity: 0.1;
  border-radius: 4px;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.05;
  }
}

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

.tox-tinymce {
  border-radius: 0.375rem !important;
  border: 2px solid var(--bs-border-color) !important;
  height: 200px
}

.badge {
  --bs-badge-font-size: 0.7em;
}

.form-floating > label {
  padding: 1.25rem 0.75rem;
}

.text-strike .strickable,
.text-strike {
  text-decoration: line-through;
}

.ratio-custom {
  --bs-aspect-ratio: 60%;
}

@media (min-width: 768px) {
  .ratio-custom {
    --bs-aspect-ratio: 75%;
  }
}

.toast {
  --bs-toast-spacing: 1rem;
}

.spinner-border-sm {
    --bs-spinner-width: 0.75rem;
    --bs-spinner-height: 0.75rem;
    --bs-spinner-border-width: 0.1em;
}

.progress, .progress-stacked {
    --bs-progress-height: 5px;
}

/* FONTS */

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

:focus-visible {
  outline: none;
}

/* UTILITIES */
.min-w-50px {
  min-width: 50px;
}
.min-w-75px {
  min-width: 75px;
}
.min-w-100px {
  min-width: 100px;
}
.min-w-150px {
  min-width: 150px;
}

/* BRAND STYLES */

body {
  padding-top: 56px;
  font-family: Poppins, Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.menubar a {
  text-decoration: none;
  font-size: 16px;
  color: var(--bs-body-color);
  padding-right: 5px;
}

.menubar a:hover,
.menubar a.active,
.menubar .menu-group:hover,
.menubar .menu-group.active {
  text-decoration: none;
  color: var(--bs-body-color);
  background-color: #f9f9f9;
  border-top-right-radius: 50rem;
  border-bottom-right-radius: 50rem;
}

.menubar .las,
.menubar .hgi {
  font-size: 32px;
}

.menubar a:hover .menu-icon,
.menubar a.active .menu-icon {
  transform: scale(1);
  transform-origin: 50% 50%;
  color: var(--brand-green);
}

.menu-icon {
  transform: scale(0.85);
  width: 50px;
  height: 40px;
  transition: transform 0.15s ease-in-out;
  color: #b3b3b3;
}

.menu-label {
  width: 160px;
}

.pg-frame {
  margin-top: 60px;
}

.pg-header {
  padding-top: 40px;
  padding-bottom: 40px;
}

.fs-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 200px);
}

.fs-no-results .las,
.fs-no-results .hgi {
  font-size: 100px;
  color: var(--brand-green);
}

.icon-frame {
  background-color: #f9f9f9;
  border-radius: 50rem;
  padding: 40px;
}

.main-navbar {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.main-navbar .form-control {
  border-color: #fff;
  --bs-border-radius: 50rem;
}

.main-navbar .btn {
  --bs-btn-border-radius: 50rem;
}

.navbar-pg-title {
  max-width: calc(100vw - 210px);
}

.navbar-pg-title a,
.navbar-pg-title a:focus,
.navbar-pg-title a:visited {
  color: var(--bs-body-color);
  text-decoration: none;
}

.navbar-pg-title a:hover {
  color: var(--bs-body-color);
}

.pagination .btn {
  min-width: 45px;
  margin-right: 6px;
}

.row-icon {
  width: var(--row-icon-width);
  font-size: 32px;
  padding: 5px 0 5px;
}

.row-content {
  width: calc(100% - var(--row-icon-width));
  box-sizing: border-box;
  overflow: hidden;
}

.row-content .form-switch {
  padding: 10px;
}

.user-circle {
  width: 28px;
  height: 28px;
  border-radius: 50rem;
  font-size: 12px;
  font-weight: 500;
  position: relative;
}

.user-circle + .user-circle {
  margin-left: 5px;
}

.user-circle .user-status {
  position: absolute;
  z-index: 100;
  width: 15px;
  height: 15px;
  background-color: #a0adb6;
  border-radius: 50rem;
  top: -6px;
  right: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  font-size: 9px;
}

.card {
  --bs-card-border-color: rgba(0, 0, 0, 0.015);
}

.card:hover,
.card:active {
  text-decoration: none;
}

.tiles .card {
  width: calc(50vw - 21px);
  display: inline-block;
}

@media (min-width: 768px) {
  .tiles .card {
    width: calc(33.333vw - 21px);
  }
}

@media (min-width: 992px) {
  .tiles .card {
    width: calc(25vw - 21px);
  }
}

@media (min-width: 1200px) {
  .tiles .card {
    width: calc(20vw - 16px);
  }
}

@media (min-width: 1400px) {
  .tiles .card {
    width: calc(16.6666vw - 15px);
  }
}

.tiles .column {
  display: inline;
}

.tiles .content {
  display: inline;
}

.tiles .card-header {
  flex-direction: column !important;
}

.tiles .card-header .text-nowrap {
  width: 100%;
  text-align: right;
}

.tiles .card-header-title-bar {
  align-items: start !important;
}

.tiles .card-header-title-bar .las,
.tiles .card-header-title-bar .hgi {
  display: none;
}

.swiper-note-image {
  display: block;
  height: 20vw;
  background-color: #f9f9f9;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: var(--brand-radius-sm);
  overflow: hidden;
  border: 1px solid var(--bs-border-color);
}

.swiper-lists .card-body {
  height: calc(100vh - 290px);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.swiper-lists .card::-webkit-scrollbar {
  display: none;
}

.notes-navbar {
  position: sticky;
  top: 52px;
  z-index: 999;
}

@media (min-width: 1024px) {
  .notes-navbar {
    top: 55px;
  }
}

.swiper-tabbar .swiper-slide {
  width: auto;
}

#noteComment {
  padding-top: 20px;
  height: calc(100vh - 100px);
}

.bg-color-pill {
  height: 6px;
  width: 50px;
  border-radius: 10px;
}

.note-header-image {
  aspect-ratio: 16 / 9;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-color: var(--bs-light);
  max-height: 350px;
}

.card-note:hover,
.card-board:hover {
  outline-color: #388bff;
  outline-width: 2px;
  outline-style: solid;
  outline-offset: -2px;
  opacity: 1;
}

.cursor-pointer {
  cursor: pointer;
}

.list-search {
  height: 44px;
}

.list-disc {
  width: 35px;
  height: 35px;
  min-width: 35px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon {
  margin-right: 10px;
  line-height: 1;
  font-size: 22px;
}

.form-disc {
  width: 60px;
  height: 60px;
  background-color: var(--bs-light);
  display: inline-block;
  text-decoration: none;
  color: var(--bs-body-color);
  text-align: center;
  padding: 16px;
  border: 2px solid transparent;
}

.form-disc:hover,
.form-disc:active {
  text-decoration: none;
  color: var(--bs-body-color);
  border: 2px solid var(--bs-body-color);
}

.form-disc.active {
  border: 2px solid var(--bs-body-color);
}
[data-bg-color="#FFFFFF"] {
  background-color: #ffffff;
}
[data-bg-color="#F8FCFF"] {
  background-color: #F8FCFF;
}
[data-bg-color="#EFEFF1"] {
  background-color: #efeff1;
}
[data-bg-color="#E9E3D4"] {
  background-color: #e9e3d4;
}
[data-bg-color="#F6E2DD"] {
  background-color: #f6e2dd;
}
[data-bg-color="#D3BFDB"] {
  background-color: #d3bfdb;
}
[data-bg-color="#D4E4ED"] {
  background-color: #d4e4ed;
}
[data-bg-color="#B4DDD3"] {
  background-color: #b4ddd3;
}
[data-bg-color="#E2F6D3"] {
  background-color: #e2f6d3;
}
[data-bg-color="#FFF8B8"] {
  background-color: #fff8b8;
}
[data-bg-color="#F39F76"] {
  background-color: #f39f76;
}
[data-bg-color="#FAAFA8"] {
  background-color: #faafa8;
}
[data-bg-color="#D7C95C"] {
  background-color: #d7c95c;
}
[data-bg-color="#7AEDDF"] {
  background-color: #7aeddf;
}
[data-bg-color="#90D5A7"] {
  background-color: #90d5a7;
}
[data-bg-color="#AAB2DC"] {
  background-color: #aab2dc;
}
[data-bg-color="#CD98BB"] {
  background-color: #cd98bb;
}
[data-bg-color="#CF4F4F"] {
  background-color: #cf4f4f;
}

#calendar {
  height: calc(100vh - 58px);
}

#calendar a {
  color: var(--bs-body-text);
  text-decoration: none;
}

.fc table {
  font-size: var(--fc-font-size);
}

.fc-header-toolbar {
  padding: 0 1rem;
}

.fc-theme-standard .fc-scrollgrid {
  border-color: transparent;
}

.fc .fc-toolbar-title {
  font-size: 1em;
}

.fc th {
  font-weight: 500;
  border-color: transparent;
  border-bottom: 1px solid var(--fc-border-color);
}

.fc .fc-daygrid-month-start {
  font-weight: 500;
  text-transform: uppercase;
  font-size: var(--fc-small-font-size);
}

.fc-daygrid-dot-event .fc-event-title {
  font-weight: 500;
}

.fc-event {
  overflow: hidden;
}

.fc-theme-standard td {
  background-color: #fff;
  border-color: #e6eaf4;
}

.fc-theme-standard th {
  border-color: #e6eaf4;
}

.fc .fc-button {
  border-radius: 50rem;
  line-height: 1;
  font-size: var(--fc-small-font-size);
}

.fc .fc-button .fc-icon {
  font-size: 1em;
}

.fc .fc-today-button {
  text-transform: capitalize;
}

.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 10px;
  margin-top: 10px;
  padding-right: calc(1.5em * 0.5);
  padding-left: calc(1.5em * 0.5);
}

.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
.fc .fc-button-primary:not(:disabled):active:focus {
  box-shadow: none;
}

.fc .fc-daygrid-day-number {
  font-size: var(--fc-small-font-size);
}

.fc-dayGridYear-view .fc-event-time {
  display: none;
}

.fc-v-event .fc-event-main {
  color: var(--bs-body-color) !important;
}

.dropdown-filters .dropdown-menu {
  width: 70vw;
}

@media (min-width: 768px) {
  .dropdown-filters .dropdown-menu {
    width: 40vw;
  }
}

.filter-item .la-check-circle,
.filter-item.active .la-plus-circle {
  display: none;
}

.filter-item.active .la-check-circle {
  display: inline;
}

.filter-item.active .btn {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.note-action-trigger,
.note-offcanvas-trigger {
  position: absolute;
  top: 10px;
  right: 8px;
}

.note-date-check {
  padding: 5px;
  top: 2px;
  right: 25px;
  position: absolute;
  transform: scale(0.85);
  transform-origin: 50% 50%;
  transition: transform 0.1s ease-in;
}

@media (min-width: 992px) {
  .note-date-check {
    top: 10px;
    right: 30px;
  }

  .note-action-trigger {
    position: absolute;
    top: 15px;
    right: 8px;
  }
}

.note-date-check:hover {
  transform: scale(1);
}

.note-date-check svg {
  width: 24px;
  height: 24px;
}

.note-date-check .tick {
  display: none;
}

.note-date-check.active .tick,
.note-date-check:hover .tick {
  display: inline;
}

.card-tile-title {
  margin-right: 45px;
  line-height: 1.3em;
}

.notification-comment p:last-child {
  margin-bottom: 0;
}

.modal-grip {
  width: 50px;
  height: 5px;
  border-radius: 50rem;
  background-color: #626466;
  margin: 10px auto 5px;
}

.collapse-toggle:not(.collapsed) .la-chevron-down {
  display: none;
}

.collapse-toggle.collapsed .la-chevron-up {
  display: none;
}

.list-move-link {
  display: none;
}

.list-management:hover .list-move-link {
  display: inline;
}

.list-management {
  margin-left: -0.35em;
}

.list-management .badge:hover {
  background-color: #3a3a3a !important;
  color: #fff !important;
}

.list-management .badge i {
  font-size: 1em !important;
}

.masonry-view.list .grid-item {
  position: static !important;
  width: 100% !important;
}

.chat-badge,
.modified-badge {
  font-weight: 500;
  padding: 0 4px;
  min-width: 16px;
  height: 16px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute !important;
  top: 0 !important;
  right: 0;
  font-size: 11px;
}

.login-icon {
  max-width: 200px;
}

.menu-label-colour {
  border-radius: 10px;
  width: 5px;
  height: 20px;
  background-color: #f2f2f2;
  margin-right: 5px;
}

.section-home.show-welcome .main-navbar,
.section-home.show-welcome .dashboard-due-dates,
.section-home.show-welcome .page-tool-bar {
  display: none;
}

.dropdown-menu-scroll {
  overflow: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 100px);
}

.product-tile {
  width: 80px;
  height: 80px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

@media print {
  .container {
    max-width: none !important;
    width: 100% !important;
  }

  .shadow-sm {
    box-shadow: none !important;
  }

  #header {
    display: none;
  }

  /* Hide footer */
  #footer {
    display: none;
  }
}

@page { size: auto;  margin: 0mm 15mm;}

.kanban-container.rows {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  padding-right: calc(var(--bs-gutter-x)* .5);
  padding-left: calc(var(--bs-gutter-x)* .5);
  margin-right: auto;
  margin-left: auto;
}

.kanban-container.rows .swiper-wrapper {
  display: block;
  transform: none !important;
}

.kanban-container.rows .swiper-slide {
  display: block;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
}

.kanban-container.rows .swiper-slide .card-body{
  display: none;
}

.kanban-container.rows .swiper-slide .card-header {
  align-items: center !important;
}

.kanban-container.rows .swiper-slide .card-header-options {
  align-items: center !important;
  display: flex;
}

.button-loading {
  display: flex;
  align-items: center;
}

.button-loading span {
  margin-right: 5px;
}

[data-bs-toggle="collapse"].collapsed .hide {
  display: none;
}

[data-bs-toggle="collapse"]:not(.collapsed) .show {
  display: none;
}

.disc {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50rem;
}

.table {
  --bs-table-hover-bg: var(--brand-light);
}

.form-check-input {
  border: 2px solid rgba(0, 0, 0, 0.155);
}

.form-check-input:disabled {
  border-width: 1px;
  background-color: #eaeaea;
}

.disabled {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  opacity: 0.5;
}

.payee.opacity-50 th:first-child:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 8px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='48' height='48' color='%23dc3545' fill='none'%3E%3Cpath d='M5.32171 9.6829C7.73539 5.41196 8.94222 3.27648 10.5983 2.72678C11.5093 2.42437 12.4907 2.42437 13.4017 2.72678C15.0578 3.27648 16.2646 5.41196 18.6783 9.6829C21.092 13.9538 22.2988 16.0893 21.9368 17.8293C21.7376 18.7866 21.2469 19.6548 20.535 20.3097C19.241 21.5 16.8274 21.5 12 21.5C7.17265 21.5 4.75897 21.5 3.46496 20.3097C2.75308 19.6548 2.26239 18.7866 2.06322 17.8293C1.70119 16.0893 2.90803 13.9538 5.32171 9.6829Z' stroke='currentColor' stroke-width='1.5' /%3E%3Cpath d='M11.992 16H12.001' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3Cpath d='M12 13L12 8.99997' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
}




