/*!
 * Cropper.js v1.6.2
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2024-04-21T07:43:02.731Z
 */
.cropper-container {
  -ms-touch-action: none;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
}

.cropper-container img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-orientation: 0deg;
  width: 100%;
  height: 100%;
  display: block;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
}

.cropper-wrap-box, .cropper-canvas, .cropper-drag-box, .cropper-crop-box, .cropper-modal {
  position: absolute;
  inset: 0;
}

.cropper-wrap-box, .cropper-canvas {
  overflow: hidden;
}

.cropper-drag-box {
  opacity: 0;
  background-color: #fff;
}

.cropper-modal {
  opacity: .5;
  background-color: #000;
}

.cropper-view-box {
  outline: 1px solid #3399ffbf;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.cropper-dashed {
  opacity: .5;
  border: 0 dashed #eee;
  display: block;
  position: absolute;
}

.cropper-dashed.dashed-h {
  border-top-width: 1px;
  border-bottom-width: 1px;
  width: 100%;
  height: 33.3333%;
  top: 33.3333%;
  left: 0;
}

.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  width: 33.3333%;
  height: 100%;
  top: 0;
  left: 33.3333%;
}

.cropper-center {
  opacity: .75;
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}

.cropper-center:before, .cropper-center:after {
  content: " ";
  background-color: #eee;
  display: block;
  position: absolute;
}

.cropper-center:before {
  width: 7px;
  height: 1px;
  top: 0;
  left: -3px;
}

.cropper-center:after {
  width: 1px;
  height: 7px;
  top: -3px;
  left: 0;
}

.cropper-face, .cropper-line, .cropper-point {
  opacity: .1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}

.cropper-face {
  background-color: #fff;
  top: 0;
  left: 0;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
  cursor: ew-resize;
  width: 5px;
  top: 0;
  right: -3px;
}

.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  top: -3px;
  left: 0;
}

.cropper-line.line-w {
  cursor: ew-resize;
  width: 5px;
  top: 0;
  left: -3px;
}

.cropper-line.line-s {
  cursor: ns-resize;
  height: 5px;
  bottom: -3px;
  left: 0;
}

.cropper-point {
  opacity: .75;
  background-color: #39f;
  width: 5px;
  height: 5px;
}

.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  top: 50%;
  right: -3px;
}

.cropper-point.point-n {
  cursor: ns-resize;
  margin-left: -3px;
  top: -3px;
  left: 50%;
}

.cropper-point.point-w {
  cursor: ew-resize;
  margin-top: -3px;
  top: 50%;
  left: -3px;
}

.cropper-point.point-s {
  cursor: s-resize;
  margin-left: -3px;
  bottom: -3px;
  left: 50%;
}

.cropper-point.point-ne {
  cursor: nesw-resize;
  top: -3px;
  right: -3px;
}

.cropper-point.point-nw {
  cursor: nwse-resize;
  top: -3px;
  left: -3px;
}

.cropper-point.point-sw {
  cursor: nesw-resize;
  bottom: -3px;
  left: -3px;
}

.cropper-point.point-se {
  cursor: nwse-resize;
  opacity: 1;
  width: 20px;
  height: 20px;
  bottom: -3px;
  right: -3px;
}

@media (width >= 768px) {
  .cropper-point.point-se {
    width: 15px;
    height: 15px;
  }
}

@media (width >= 992px) {
  .cropper-point.point-se {
    width: 10px;
    height: 10px;
  }
}

@media (width >= 1200px) {
  .cropper-point.point-se {
    opacity: .75;
    width: 5px;
    height: 5px;
  }
}

.cropper-point.point-se:before {
  content: " ";
  opacity: 0;
  background-color: #39f;
  width: 200%;
  height: 200%;
  display: block;
  position: absolute;
  bottom: -50%;
  right: -50%;
}

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
}

.cropper-hide {
  width: 0;
  height: 0;
  display: block;
  position: absolute;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box, .cropper-disabled .cropper-face, .cropper-disabled .cropper-line, .cropper-disabled .cropper-point {
  cursor: not-allowed;
}

.rbc-btn {
  color: inherit;
  font: inherit;
  margin: 0;
}

button.rbc-btn {
  text-transform: none;
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
  overflow: visible;
}

button[disabled].rbc-btn {
  cursor: not-allowed;
}

button.rbc-input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.rbc-calendar {
  box-sizing: border-box;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.rbc-m-b-negative-3 {
  margin-bottom: -3px;
}

.rbc-h-full {
  height: 100%;
}

.rbc-calendar *, .rbc-calendar :before, .rbc-calendar :after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.rbc-abs-full, .rbc-row-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.rbc-ellipsis, .rbc-show-more, .rbc-row-segment .rbc-event-content, .rbc-event-label {
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}

.rbc-rtl {
  direction: rtl;
}

.rbc-off-range {
  color: #999;
}

.rbc-off-range-bg {
  background: #e6e6e6;
}

.rbc-header {
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
  flex: 1 0;
  min-height: 0;
  padding: 0 3px;
  font-size: 90%;
  font-weight: bold;
  overflow: hidden;
}

.rbc-header + .rbc-header {
  border-left: 1px solid #ddd;
}

.rbc-rtl .rbc-header + .rbc-header {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}

.rbc-header > a, .rbc-header > a:active, .rbc-header > a:visited {
  color: inherit;
  text-decoration: none;
}

.rbc-button-link {
  color: inherit;
  cursor: pointer;
  -webkit-user-select: text;
  user-select: text;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}

.rbc-row-content {
  -webkit-user-select: none;
  user-select: none;
  z-index: 4;
  position: relative;
}

.rbc-row-content-scrollable {
  flex-direction: column;
  height: 100%;
  display: flex;
}

.rbc-row-content-scrollable .rbc-row-content-scroll-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 100%;
  overflow-y: scroll;
}

.rbc-row-content-scrollable .rbc-row-content-scroll-container::-webkit-scrollbar {
  display: none;
}

.rbc-today {
  background-color: #eaf6ff;
}

.rbc-toolbar {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
}

.rbc-toolbar .rbc-toolbar-label {
  text-align: center;
  flex-grow: 1;
  padding: 0 10px;
}

.rbc-toolbar button {
  color: #373a3c;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  background: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0;
  padding: .375rem 1rem;
  line-height: normal;
  display: inline-block;
}

.rbc-toolbar button:active, .rbc-toolbar button.rbc-active {
  background-color: #e6e6e6;
  background-image: none;
  border-color: #adadad;
  box-shadow: inset 0 3px 5px #00000020;
}

.rbc-toolbar button:active:hover, .rbc-toolbar button:active:focus, .rbc-toolbar button.rbc-active:hover, .rbc-toolbar button.rbc-active:focus {
  color: #373a3c;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

.rbc-toolbar button:focus, .rbc-toolbar button:hover {
  color: #373a3c;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.rbc-btn-group {
  white-space: nowrap;
  display: inline-block;
}

.rbc-btn-group > button:first-child:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.rbc-btn-group > button:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.rbc-rtl .rbc-btn-group > button:first-child:not(:last-child) {
  border-radius: 0 4px 4px 0;
}

.rbc-rtl .rbc-btn-group > button:last-child:not(:first-child) {
  border-radius: 4px 0 0 4px;
}

.rbc-btn-group > button:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.rbc-btn-group button + button {
  margin-left: -1px;
}

.rbc-rtl .rbc-btn-group button + button {
  margin-left: 0;
  margin-right: -1px;
}

.rbc-btn-group + .rbc-btn-group, .rbc-btn-group + button {
  margin-left: 10px;
}

@media (width <= 767px) {
  .rbc-toolbar {
    flex-direction: column;
  }
}

.rbc-event, .rbc-day-slot .rbc-background-event {
  box-sizing: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  text-align: left;
  background-color: #3174ad;
  border: none;
  border-radius: 5px;
  width: 100%;
  margin: 0;
  padding: 2px 5px;
}

.rbc-slot-selecting .rbc-event, .rbc-slot-selecting .rbc-day-slot .rbc-background-event, .rbc-day-slot .rbc-slot-selecting .rbc-background-event {
  cursor: inherit;
  pointer-events: none;
}

.rbc-event.rbc-selected, .rbc-day-slot .rbc-selected.rbc-background-event {
  background-color: #265985;
}

.rbc-event:focus, .rbc-day-slot .rbc-background-event:focus {
  outline: 5px auto #3b99fc;
}

.rbc-event-label {
  font-size: 80%;
}

.rbc-event-overlaps {
  box-shadow: -1px 1px 5px #33333380;
}

.rbc-event-continues-prior {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.rbc-event-continues-after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.rbc-event-continues-earlier {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.rbc-event-continues-later {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.rbc-row {
  flex-direction: row;
  display: flex;
}

.rbc-row-segment {
  padding: 0 1px 1px;
}

.rbc-selected-cell {
  background-color: #0000001a;
}

.rbc-show-more {
  z-index: 4;
  color: #3174ad;
  background-color: #ffffff4d;
  height: auto;
  font-size: 85%;
  font-weight: bold;
  line-height: normal;
}

.rbc-show-more:hover, .rbc-show-more:focus {
  color: #265985;
}

.rbc-month-view {
  -webkit-user-select: none;
  user-select: none;
  border: 1px solid #ddd;
  flex-direction: column;
  flex: 1 0 0;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.rbc-month-header {
  flex-direction: row;
  display: flex;
}

.rbc-month-row {
  flex-direction: column;
  flex: 1 0 0;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.rbc-month-row + .rbc-month-row {
  border-top: 1px solid #ddd;
}

.rbc-date-cell {
  text-align: right;
  flex: 1 1 0;
  min-width: 0;
  padding-right: 5px;
}

.rbc-date-cell.rbc-now {
  font-weight: bold;
}

.rbc-date-cell > a, .rbc-date-cell > a:active, .rbc-date-cell > a:visited {
  color: inherit;
  text-decoration: none;
}

.rbc-row-bg {
  flex-direction: row;
  flex: 1 0 0;
  display: flex;
  right: 1px;
  overflow: hidden;
}

.rbc-day-bg {
  flex: 1 0;
}

.rbc-day-bg + .rbc-day-bg {
  border-left: 1px solid #ddd;
}

.rbc-rtl .rbc-day-bg + .rbc-day-bg {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}

.rbc-overlay {
  z-index: 5;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  padding: 10px;
  position: absolute;
  box-shadow: 0 5px 15px #00000040;
}

.rbc-overlay > * + * {
  margin-top: 1px;
}

.rbc-overlay-header {
  border-bottom: 1px solid #e5e5e5;
  margin: -10px -10px 5px;
  padding: 2px 10px;
}

.rbc-agenda-view {
  flex-direction: column;
  flex: 1 0 0;
  display: flex;
  overflow: auto;
}

.rbc-agenda-view table.rbc-agenda-table {
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid #ddd;
  width: 100%;
}

.rbc-agenda-view table.rbc-agenda-table tbody > tr > td {
  vertical-align: top;
  padding: 5px 10px;
}

.rbc-agenda-view table.rbc-agenda-table .rbc-agenda-time-cell {
  text-transform: lowercase;
  padding-left: 15px;
  padding-right: 15px;
}

.rbc-agenda-view table.rbc-agenda-table tbody > tr > td + td {
  border-left: 1px solid #ddd;
}

.rbc-rtl .rbc-agenda-view table.rbc-agenda-table tbody > tr > td + td {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}

.rbc-agenda-view table.rbc-agenda-table tbody > tr + tr {
  border-top: 1px solid #ddd;
}

.rbc-agenda-view table.rbc-agenda-table thead > tr > th {
  text-align: left;
  border-bottom: 1px solid #ddd;
  padding: 3px 5px;
}

.rbc-rtl .rbc-agenda-view table.rbc-agenda-table thead > tr > th {
  text-align: right;
}

.rbc-agenda-time-cell {
  text-transform: lowercase;
}

.rbc-agenda-time-cell .rbc-continues-after:after {
  content: " »";
}

.rbc-agenda-time-cell .rbc-continues-prior:before {
  content: "« ";
}

.rbc-agenda-date-cell, .rbc-agenda-time-cell {
  white-space: nowrap;
}

.rbc-agenda-event-cell {
  width: 100%;
}

.rbc-time-column {
  flex-direction: column;
  min-height: 100%;
  display: flex;
}

.rbc-time-column .rbc-timeslot-group {
  flex: 1;
}

.rbc-timeslot-group {
  border-bottom: 1px solid #ddd;
  flex-flow: column;
  min-height: 40px;
  display: flex;
}

.rbc-time-gutter, .rbc-header-gutter {
  flex: none;
}

.rbc-label {
  padding: 0 5px;
}

.rbc-day-slot {
  position: relative;
}

.rbc-day-slot .rbc-events-container {
  margin-right: 10px;
  position: absolute;
  inset: 0;
}

.rbc-day-slot .rbc-events-container.rbc-rtl {
  left: 10px;
  right: 0;
}

.rbc-day-slot .rbc-event, .rbc-day-slot .rbc-background-event {
  border: 1px solid #265985;
  flex-flow: column wrap;
  align-items: flex-start;
  min-height: 20px;
  max-height: 100%;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.rbc-day-slot .rbc-background-event {
  opacity: .75;
}

.rbc-day-slot .rbc-event-label {
  flex: none;
  width: auto;
  padding-right: 5px;
}

.rbc-day-slot .rbc-event-content {
  word-wrap: break-word;
  flex: 1 1 0;
  width: 100%;
  height: 100%;
  min-height: 1em;
  line-height: 1;
}

.rbc-day-slot .rbc-time-slot {
  border-top: 1px solid #f7f7f7;
}

.rbc-time-view-resources .rbc-time-gutter, .rbc-time-view-resources .rbc-time-header-gutter {
  z-index: 10;
  background-color: #fff;
  border-right: 1px solid #ddd;
  margin-right: -1px;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
}

.rbc-time-view-resources .rbc-time-header {
  overflow: hidden;
}

.rbc-time-view-resources .rbc-time-header-content {
  flex: 1 0 0;
  min-width: auto;
}

.rbc-time-view-resources .rbc-time-header-cell-single-day {
  display: none;
}

.rbc-time-view-resources .rbc-day-slot {
  min-width: 140px;
}

.rbc-time-view-resources .rbc-header, .rbc-time-view-resources .rbc-day-bg {
  flex: 1 1 0;
  -ms-flex-preferred-size: 0 px;
  flex-basis: 0 px;
  width: 140px;
}

.rbc-time-header-content + .rbc-time-header-content {
  margin-left: -1px;
}

.rbc-time-slot {
  flex: 1 0 0;
}

.rbc-time-slot.rbc-now {
  font-weight: bold;
}

.rbc-day-header {
  text-align: center;
}

.rbc-slot-selection {
  z-index: 10;
  color: #fff;
  background-color: #00000080;
  width: 100%;
  padding: 3px;
  font-size: 75%;
  position: absolute;
}

.rbc-slot-selecting {
  cursor: move;
}

.rbc-time-view {
  border: 1px solid #ddd;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 0;
  display: flex;
}

.rbc-time-view .rbc-time-gutter {
  white-space: nowrap;
  text-align: right;
}

.rbc-time-view .rbc-allday-cell {
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  position: relative;
}

.rbc-time-view .rbc-allday-cell + .rbc-allday-cell {
  border-left: 1px solid #ddd;
}

.rbc-time-view .rbc-allday-events {
  z-index: 4;
  position: relative;
}

.rbc-time-view .rbc-row {
  box-sizing: border-box;
  min-height: 20px;
}

.rbc-time-header {
  flex-direction: row;
  flex: none;
  display: flex;
}

.rbc-time-header.rbc-overflowing {
  border-right: 1px solid #ddd;
}

.rbc-rtl .rbc-time-header.rbc-overflowing {
  border-left: 1px solid #ddd;
  border-right-width: 0;
}

.rbc-time-header > .rbc-row:first-child, .rbc-time-header > .rbc-row.rbc-row-resource {
  border-bottom: 1px solid #ddd;
}

.rbc-time-header-cell-single-day {
  display: none;
}

.rbc-time-header-content {
  border-left: 1px solid #ddd;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}

.rbc-rtl .rbc-time-header-content {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}

.rbc-time-header-content > .rbc-row.rbc-row-resource {
  border-bottom: 1px solid #ddd;
  flex-shrink: 0;
}

.rbc-time-content {
  border-top: 2px solid #ddd;
  flex: 1 0;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
  overflow-y: auto;
}

.rbc-time-content > .rbc-time-gutter {
  flex: none;
}

.rbc-time-content > * + * > * {
  border-left: 1px solid #ddd;
}

.rbc-rtl .rbc-time-content > * + * > * {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}

.rbc-time-content > .rbc-day-slot {
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.rbc-current-time-indicator {
  z-index: 3;
  pointer-events: none;
  background-color: #74ad31;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
}

.rbc-resource-grouping.rbc-time-header-content {
  flex-direction: column;
  display: flex;
}

.rbc-resource-grouping .rbc-row .rbc-header {
  width: 141px;
}

.rbc-addons-dnd .rbc-addons-dnd-row-body {
  position: relative;
}

.rbc-addons-dnd .rbc-addons-dnd-drag-row {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.rbc-addons-dnd .rbc-addons-dnd-over {
  background-color: #0000004d;
}

.rbc-addons-dnd .rbc-event {
  transition: opacity .15s;
}

.rbc-addons-dnd .rbc-event:hover .rbc-addons-dnd-resize-ns-icon, .rbc-addons-dnd .rbc-event:hover .rbc-addons-dnd-resize-ew-icon {
  display: block;
}

.rbc-addons-dnd .rbc-addons-dnd-dragged-event {
  opacity: 0;
}

.rbc-addons-dnd.rbc-addons-dnd-is-dragging .rbc-event:not(.rbc-addons-dnd-dragged-event):not(.rbc-addons-dnd-drag-preview) {
  opacity: .5;
}

.rbc-addons-dnd .rbc-addons-dnd-resizable {
  width: 100%;
  height: 100%;
  position: relative;
}

.rbc-addons-dnd .rbc-addons-dnd-resize-ns-anchor {
  text-align: center;
  width: 100%;
  position: absolute;
}

.rbc-addons-dnd .rbc-addons-dnd-resize-ns-anchor:first-child {
  top: 0;
}

.rbc-addons-dnd .rbc-addons-dnd-resize-ns-anchor:last-child {
  bottom: 0;
}

.rbc-addons-dnd .rbc-addons-dnd-resize-ns-anchor .rbc-addons-dnd-resize-ns-icon {
  cursor: ns-resize;
  border-top: 3px double;
  width: 10px;
  margin: 0 auto;
  display: none;
}

.rbc-addons-dnd .rbc-addons-dnd-resize-ew-anchor {
  position: absolute;
  top: 4px;
  bottom: 0;
}

.rbc-addons-dnd .rbc-addons-dnd-resize-ew-anchor:first-child {
  left: 0;
}

.rbc-addons-dnd .rbc-addons-dnd-resize-ew-anchor:last-child {
  right: 0;
}

.rbc-addons-dnd .rbc-addons-dnd-resize-ew-anchor .rbc-addons-dnd-resize-ew-icon {
  cursor: ew-resize;
  border-left: 3px double;
  height: 10px;
  margin-top: auto;
  margin-bottom: auto;
  display: none;
}

:root {
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  font-variation-settings: normal;
  --font-family: Inter var, sans-serif;
  --font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  --surface-a: #fff;
  --surface-b: #f9fafb;
  --surface-c: #f3f4f6;
  --surface-d: #e5e7eb;
  --surface-e: #fff;
  --surface-f: #fff;
  --text-color: #4b5563;
  --text-color-secondary: #6b7280;
  --primary-color: #6366f1;
  --primary-color-text: #fff;
  --surface-0: #fff;
  --surface-50: #f9fafb;
  --surface-100: #f3f4f6;
  --surface-200: #e5e7eb;
  --surface-300: #d1d5db;
  --surface-400: #9ca3af;
  --surface-500: #6b7280;
  --surface-600: #4b5563;
  --surface-700: #374151;
  --surface-800: #1f2937;
  --surface-900: #111827;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --content-padding: 1.25rem;
  --inline-spacing: .5rem;
  --border-radius: 6px;
  --surface-ground: #f9fafb;
  --surface-section: #fff;
  --surface-card: #fff;
  --surface-overlay: #fff;
  --surface-border: #dfe7ef;
  --surface-hover: #f6f9fc;
  --focus-ring: 0 0 0 .2rem #c7d2fe;
  --maskbg: #0006;
  --highlight-bg: #eef2ff;
  --highlight-text-color: #4338ca;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
}

@font-face {
  font-family: Inter var;
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
  font-named-instance: "Regular";
  src: url("InterVariable.e6ec8b96.woff2") format("woff2");
}

@font-face {
  font-family: Inter var;
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
  font-named-instance: "Italic";
  src: url("InterVariable-Italic.e0a5e81d.woff2") format("woff2");
}

:root {
  --blue-50: #f5f9ff;
  --blue-100: #d0e1fd;
  --blue-200: #abc9fb;
  --blue-300: #85b2f9;
  --blue-400: #609af8;
  --blue-500: #3b82f6;
  --blue-600: #326fd1;
  --blue-700: #295bac;
  --blue-800: #204887;
  --blue-900: #183462;
  --green-50: #f4fcf7;
  --green-100: #caf1d8;
  --green-200: #a0e6ba;
  --green-300: #76db9b;
  --green-400: #4cd07d;
  --green-500: #22c55e;
  --green-600: #1da750;
  --green-700: #188a42;
  --green-800: #136c34;
  --green-900: #0e4f26;
  --yellow-50: #fefbf3;
  --yellow-100: #faedc4;
  --yellow-200: #f6de95;
  --yellow-300: #f2d066;
  --yellow-400: #eec137;
  --yellow-500: #eab308;
  --yellow-600: #c79807;
  --yellow-700: #a47d06;
  --yellow-800: #816204;
  --yellow-900: #5e4803;
  --cyan-50: #f3fbfd;
  --cyan-100: #c3edf5;
  --cyan-200: #94e0ed;
  --cyan-300: #65d2e4;
  --cyan-400: #35c4dc;
  --cyan-500: #06b6d4;
  --cyan-600: #059bb4;
  --cyan-700: #047f94;
  --cyan-800: #036475;
  --cyan-900: #024955;
  --pink-50: #fef6fa;
  --pink-100: #fad3e7;
  --pink-200: #f7b0d3;
  --pink-300: #f38ec0;
  --pink-400: #f06bac;
  --pink-500: #ec4899;
  --pink-600: #c93d82;
  --pink-700: #a5326b;
  --pink-800: #822854;
  --pink-900: #5e1d3d;
  --indigo-50: #f7f7fe;
  --indigo-100: #dadafc;
  --indigo-200: #bcbdf9;
  --indigo-300: #9ea0f6;
  --indigo-400: #8183f4;
  --indigo-500: #6366f1;
  --indigo-600: #5457cd;
  --indigo-700: #4547a9;
  --indigo-800: #363885;
  --indigo-900: #282960;
  --teal-50: #f3fbfb;
  --teal-100: #c7eeea;
  --teal-200: #9ae0d9;
  --teal-300: #6dd3c8;
  --teal-400: #41c5b7;
  --teal-500: #14b8a6;
  --teal-600: #119c8d;
  --teal-700: #0e8174;
  --teal-800: #0b655b;
  --teal-900: #084a42;
  --orange-50: #fff8f3;
  --orange-100: #feddc7;
  --orange-200: #fcc39b;
  --orange-300: #fba86f;
  --orange-400: #fa8e42;
  --orange-500: #f97316;
  --orange-600: #d46213;
  --orange-700: #ae510f;
  --orange-800: #893f0c;
  --orange-900: #642e09;
  --bluegray-50: #f7f8f9;
  --bluegray-100: #dadee3;
  --bluegray-200: #bcc3cd;
  --bluegray-300: #9fa9b7;
  --bluegray-400: #818ea1;
  --bluegray-500: #64748b;
  --bluegray-600: #556376;
  --bluegray-700: #465161;
  --bluegray-800: #37404c;
  --bluegray-900: #282e38;
  --purple-50: #fbf7ff;
  --purple-100: #ead6fd;
  --purple-200: #dab6fc;
  --purple-300: #c996fa;
  --purple-400: #b975f9;
  --purple-500: #a855f7;
  --purple-600: #8f48d2;
  --purple-700: #763cad;
  --purple-800: #5c2f88;
  --purple-900: #432263;
  --red-50: #fff5f5;
  --red-100: #ffd0ce;
  --red-200: #ffaca7;
  --red-300: #ff8780;
  --red-400: #ff6259;
  --red-500: #ff3d32;
  --red-600: #d9342b;
  --red-700: #b32b23;
  --red-800: #8c221c;
  --red-900: #661814;
  --primary-50: #f7f7fe;
  --primary-100: #dadafc;
  --primary-200: #bcbdf9;
  --primary-300: #9ea0f6;
  --primary-400: #8183f4;
  --primary-500: #6366f1;
  --primary-600: #5457cd;
  --primary-700: #4547a9;
  --primary-800: #363885;
  --primary-900: #282960;
}

.p-editor-container .p-editor-toolbar {
  background: #f9fafb;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.p-editor-container .p-editor-toolbar.ql-snow {
  border: 1px solid #e5e7eb;
}

.p-editor-container .p-editor-toolbar.ql-snow .ql-stroke {
  stroke: #6b7280;
}

.p-editor-container .p-editor-toolbar.ql-snow .ql-fill {
  fill: #6b7280;
}

.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label {
  color: #6b7280;
  border: 0;
}

.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover {
  color: #4b5563;
}

.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-stroke {
  stroke: #4b5563;
}

.p-editor-container .p-editor-toolbar.ql-snow .ql-picker .ql-picker-label:hover .ql-fill {
  fill: #4b5563;
}

.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #4b5563;
}

.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #4b5563;
}

.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #4b5563;
}

.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  background: #fff;
  border: 0;
  border-radius: 6px;
  padding: .75rem 0;
  box-shadow: 0 2px 12px #0000001a;
}

.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item {
  color: #4b5563;
}

.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item:hover {
  color: #4b5563;
  background: #f3f4f6;
}

.p-editor-container .p-editor-toolbar.ql-snow .ql-picker.ql-expanded:not(.ql-icon-picker) .ql-picker-item {
  padding: .75rem 1.25rem;
}

.p-editor-container .p-editor-content {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.p-editor-container .p-editor-content.ql-snow {
  border: 1px solid #e5e7eb;
}

.p-editor-container .p-editor-content .ql-editor {
  color: #4b5563;
  background: #fff;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.p-editor-container .ql-snow.ql-toolbar button:hover, .p-editor-container .ql-snow.ql-toolbar button:focus {
  color: #4b5563;
}

.p-editor-container .ql-snow.ql-toolbar button:hover .ql-stroke, .p-editor-container .ql-snow.ql-toolbar button:focus .ql-stroke {
  stroke: #4b5563;
}

.p-editor-container .ql-snow.ql-toolbar button:hover .ql-fill, .p-editor-container .ql-snow.ql-toolbar button:focus .ql-fill {
  fill: #4b5563;
}

.p-editor-container .ql-snow.ql-toolbar button.ql-active, .p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active, .p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected {
  color: #6366f1;
}

.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-stroke, .p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke, .p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke {
  stroke: #6366f1;
}

.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-fill, .p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill, .p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill {
  fill: #6366f1;
}

.p-editor-container .ql-snow.ql-toolbar button.ql-active .ql-picker-label, .p-editor-container .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-picker-label, .p-editor-container .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-picker-label {
  color: #6366f1;
}

@layer primereact {
  * {
    box-sizing: border-box;
  }

  .p-component {
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature-settings, normal);
    font-size: 1rem;
    font-weight: normal;
  }

  .p-component-overlay {
    background-color: #0006;
    transition-duration: .2s;
  }

  .p-disabled, .p-component:disabled {
    opacity: .6;
  }

  .p-error {
    color: #e24c4c;
  }

  .p-text-secondary {
    color: #6b7280;
  }

  .pi {
    font-size: 1rem;
  }

  .p-icon {
    width: 1rem;
    height: 1rem;
  }

  .p-link {
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature-settings, normal);
    border-radius: 6px;
    font-size: 1rem;
  }

  .p-link:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-component-overlay-enter {
    animation: .15s forwards p-component-overlay-enter-animation;
  }

  .p-component-overlay-leave {
    animation: .15s forwards p-component-overlay-leave-animation;
  }

  @keyframes p-component-overlay-enter-animation {
    from {
      background-color: #0000;
    }

    to {
      background-color: var(--maskbg);
    }
  }

  @keyframes p-component-overlay-leave-animation {
    from {
      background-color: var(--maskbg);
    }

    to {
      background-color: #0000;
    }
  }

  .p-autocomplete .p-autocomplete-loader {
    right: .75rem;
  }

  .p-autocomplete.p-autocomplete-dd .p-autocomplete-loader {
    right: 3.75rem;
  }

  .p-autocomplete .p-autocomplete-multiple-container {
    gap: .5rem;
    padding: .375rem .75rem;
  }

  .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled):hover {
    border-color: #6366f1;
  }

  .p-autocomplete .p-autocomplete-multiple-container:not(.p-disabled).p-focus {
    outline-offset: 0;
    border-color: #6366f1;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-input-token {
    padding: .375rem 0;
  }

  .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-input-token input {
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature-settings, normal);
    color: #4b5563;
    margin: 0;
    padding: 0;
    font-size: 1rem;
  }

  .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token {
    color: #4338ca;
    background: #eef2ff;
    border-radius: 6px;
    margin-right: .5rem;
    padding: .375rem .75rem;
  }

  .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token .p-autocomplete-token-icon {
    margin-left: .5rem;
  }

  .p-autocomplete.p-invalid.p-component > .p-inputtext {
    border-color: #e24c4c;
  }

  .p-autocomplete-panel {
    color: #4b5563;
    background: #fff;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-autocomplete-panel .p-autocomplete-items {
    padding: .75rem 0;
  }

  .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item {
    color: #4b5563;
    background: none;
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: .75rem 1.25rem;
    transition: box-shadow .2s;
  }

  .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item:hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-autocomplete-panel .p-autocomplete-items .p-autocomplete-item-group {
    color: #374151;
    background: #fff;
    margin: 0;
    padding: .75rem 1.25rem;
    font-weight: 700;
  }

  .p-calendar.p-invalid.p-component > .p-inputtext {
    border-color: #e24c4c;
  }

  .p-calendar:not(.p-calendar-disabled).p-focus > .p-inputtext {
    outline-offset: 0;
    border-color: #6366f1;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-datepicker {
    color: #4b5563;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: .5rem;
  }

  .p-datepicker:not(.p-datepicker-inline) {
    background: #fff;
    border: 0;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-datepicker:not(.p-datepicker-inline) .p-datepicker-header {
    background: #fff;
  }

  .p-datepicker .p-datepicker-header {
    color: #4b5563;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin: 0;
    padding: .5rem;
    font-weight: 600;
  }

  .p-datepicker .p-datepicker-header .p-datepicker-prev, .p-datepicker .p-datepicker-header .p-datepicker-next {
    color: #6b7280;
    background: none;
    border: 0;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-datepicker .p-datepicker-header .p-datepicker-prev:enabled:hover, .p-datepicker .p-datepicker-header .p-datepicker-next:enabled:hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-datepicker .p-datepicker-header .p-datepicker-prev:focus-visible, .p-datepicker .p-datepicker-header .p-datepicker-next:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-datepicker .p-datepicker-header .p-datepicker-title {
    line-height: 2rem;
  }

  .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year, .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month {
    color: #4b5563;
    padding: .5rem;
    font-weight: 600;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover, .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover {
    color: #6366f1;
  }

  .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month {
    margin-right: .5rem;
  }

  .p-datepicker table {
    margin: .5rem 0;
    font-size: 1rem;
  }

  .p-datepicker table th {
    padding: .5rem;
  }

  .p-datepicker table th > span {
    width: 2.5rem;
    height: 2.5rem;
  }

  .p-datepicker table td {
    padding: .5rem;
  }

  .p-datepicker table td > span {
    border: 1px solid #0000;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    transition: box-shadow .2s;
  }

  .p-datepicker table td > span.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-datepicker table td > span:focus {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-datepicker table td.p-datepicker-today > span {
    color: #4b5563;
    background: #d1d5db;
    border-color: #0000;
  }

  .p-datepicker table td.p-datepicker-today > span.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-datepicker .p-datepicker-buttonbar {
    border-top: 1px solid #e5e7eb;
    padding: 1rem 0;
  }

  .p-datepicker .p-datepicker-buttonbar .p-button {
    width: auto;
  }

  .p-datepicker .p-timepicker {
    border-top: 1px solid #e5e7eb;
    padding: .5rem;
  }

  .p-datepicker .p-timepicker button {
    color: #6b7280;
    background: none;
    border: 0;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-datepicker .p-timepicker button:enabled:hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-datepicker .p-timepicker button:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-datepicker .p-timepicker button:last-child {
    margin-top: .2em;
  }

  .p-datepicker .p-timepicker span {
    font-size: 1.25rem;
  }

  .p-datepicker .p-timepicker > div {
    padding: 0 .5rem;
  }

  .p-datepicker.p-datepicker-timeonly .p-timepicker {
    border-top: 0;
  }

  .p-datepicker .p-monthpicker {
    margin: .5rem 0;
  }

  .p-datepicker .p-monthpicker .p-monthpicker-month {
    border-radius: 6px;
    padding: .5rem;
    transition: box-shadow .2s;
  }

  .p-datepicker .p-monthpicker .p-monthpicker-month.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-datepicker .p-yearpicker {
    margin: .5rem 0;
  }

  .p-datepicker .p-yearpicker .p-yearpicker-year {
    border-radius: 6px;
    padding: .5rem;
    transition: box-shadow .2s;
  }

  .p-datepicker .p-yearpicker .p-yearpicker-year.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-datepicker.p-datepicker-multiple-month .p-datepicker-group {
    border-left: 1px solid #e5e7eb;
    padding: 0 .5rem;
  }

  .p-datepicker.p-datepicker-multiple-month .p-datepicker-group:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
    padding-right: 0;
  }

  .p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
    background: #f3f4f6;
  }

  .p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):focus {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover {
    background: #f3f4f6;
  }

  .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover {
    background: #f3f4f6;
  }

  .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  @media screen and (width <= 769px) {
    .p-datepicker table th, .p-datepicker table td {
      padding: 0;
    }
  }

  .p-cascadeselect {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    outline-color: #0000;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-cascadeselect:not(.p-disabled):hover {
    border-color: #6366f1;
  }

  .p-cascadeselect:not(.p-disabled).p-focus {
    outline-offset: 0;
    border-color: #6366f1;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-cascadeselect.p-variant-filled, .p-cascadeselect.p-variant-filled:enabled:hover {
    background-color: #f3f4f6;
  }

  .p-cascadeselect.p-variant-filled:enabled:focus {
    background-color: #fff;
  }

  .p-cascadeselect .p-cascadeselect-label {
    background: none;
    border: 0;
    padding: .75rem;
  }

  .p-cascadeselect .p-cascadeselect-label.p-placeholder {
    color: #6b7280;
  }

  .p-cascadeselect .p-cascadeselect-label:enabled:focus {
    box-shadow: none;
    outline: 0;
  }

  .p-cascadeselect .p-cascadeselect-trigger {
    color: #6b7280;
    background: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    width: 3rem;
  }

  .p-cascadeselect.p-invalid.p-component {
    border-color: #e24c4c;
  }

  .p-cascadeselect-panel {
    color: #4b5563;
    background: #fff;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-cascadeselect-panel .p-cascadeselect-items {
    padding: .75rem 0;
  }

  .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item {
    color: #4b5563;
    background: none;
    border: 0;
    border-radius: 0;
    margin: 0;
    transition: box-shadow .2s;
  }

  .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:first-child {
    margin-top: 0;
  }

  .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:last-child {
    margin-bottom: 0;
  }

  .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item.p-highlight.p-focus {
    background: #6366f13d;
  }

  .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item:not(.p-highlight):not(.p-disabled).p-focus {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-item-content {
    padding: .75rem 1.25rem;
  }

  .p-cascadeselect-panel .p-cascadeselect-items .p-cascadeselect-item .p-cascadeselect-group-icon {
    font-size: .875rem;
  }

  .p-checkbox-input {
    -webkit-appearance: none;
    appearance: none;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
    outline: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
  }

  .p-checkbox {
    width: 22px;
    height: 22px;
  }

  .p-checkbox .p-checkbox-input {
    border: 2px solid #d1d5db;
    border-radius: 6px;
  }

  .p-checkbox .p-checkbox-box {
    color: #4b5563;
    background: #fff;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    outline-color: #0000;
    width: 22px;
    height: 22px;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-checkbox .p-checkbox-box .p-checkbox-icon {
    color: #fff;
    font-size: 14px;
    transition-duration: .2s;
  }

  .p-checkbox .p-checkbox-box .p-checkbox-icon.p-icon {
    width: 14px;
    height: 14px;
  }

  .p-checkbox.p-highlight .p-checkbox-box {
    background: #6366f1;
    border-color: #6366f1;
  }

  .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box {
    border-color: #6366f1;
  }

  .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box {
    color: #fff;
    background: #4338ca;
    border-color: #4338ca;
  }

  .p-checkbox:not(.p-disabled):has(.p-checkbox-input:focus-visible) .p-checkbox-box {
    outline-offset: 0;
    border-color: #6366f1;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-checkbox.p-invalid > .p-checkbox-box {
    border-color: #e24c4c;
  }

  .p-checkbox.p-variant-filled .p-checkbox-box {
    background-color: #f3f4f6;
  }

  .p-checkbox.p-variant-filled.p-highlight .p-checkbox-box {
    background: #6366f1;
  }

  .p-checkbox.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box {
    background-color: #f3f4f6;
  }

  .p-checkbox.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box {
    background: #4338ca;
  }

  .p-input-filled .p-checkbox .p-checkbox-box {
    background-color: #f3f4f6;
  }

  .p-input-filled .p-checkbox.p-highlight .p-checkbox-box {
    background: #6366f1;
  }

  .p-input-filled .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box {
    background-color: #f3f4f6;
  }

  .p-input-filled .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box {
    background: #4338ca;
  }

  .p-checkbox {
    -webkit-user-select: none;
    user-select: none;
    vertical-align: bottom;
    display: inline-flex;
    position: relative;
  }

  .p-checkbox-input {
    cursor: pointer;
  }

  .p-checkbox-box {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .p-tristatecheckbox.p-variant-filled .p-checkbox-box {
    background-color: #f3f4f6;
  }

  .p-tristatecheckbox.p-variant-filled.p-highlight .p-checkbox-box {
    background: #6366f1;
  }

  .p-tristatecheckbox.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box {
    background-color: #f3f4f6;
  }

  .p-tristatecheckbox.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box {
    background: #4338ca;
  }

  .p-chips {
    display: inline-flex;
  }

  .p-chips-multiple-container {
    cursor: text;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    overflow: hidden;
  }

  .p-chips-token {
    cursor: default;
    flex: none;
    align-items: center;
    display: inline-flex;
  }

  .p-chips-input-token {
    flex: auto;
    display: inline-flex;
  }

  .p-chips-token-icon {
    cursor: pointer;
  }

  .p-chips-input-token input {
    box-shadow: none;
    background-color: #0000;
    border: 0;
    border-radius: 0;
    outline: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .p-fluid .p-chips {
    display: flex;
  }

  .p-chips:not(.p-disabled):hover .p-chips-multiple-container {
    border-color: #6366f1;
  }

  .p-chips:not(.p-disabled).p-focus .p-chips-multiple-container {
    outline-offset: 0;
    border-color: #6366f1;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-chips .p-chips-multiple-container {
    outline-color: #0000;
    padding: .375rem .75rem;
  }

  .p-chips .p-chips-multiple-container .p-chips-token {
    color: #4b5563;
    background: #e5e7eb;
    border-radius: 16px;
    margin-right: .5rem;
    padding: .375rem .75rem;
  }

  .p-chips .p-chips-multiple-container .p-chips-token.p-focus {
    color: #4b5563;
    background: #e5e7eb;
  }

  .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon {
    margin-left: .5rem;
  }

  .p-chips .p-chips-multiple-container .p-chips-input-token {
    padding: .375rem 0;
  }

  .p-chips .p-chips-multiple-container .p-chips-input-token input {
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature-settings, normal);
    color: #4b5563;
    margin: 0;
    padding: 0;
    font-size: 1rem;
  }

  .p-chips.p-invalid.p-component > .p-inputtext {
    border-color: #e24c4c;
  }

  .p-colorpicker-preview {
    width: 2rem;
    height: 2rem;
  }

  .p-colorpicker-panel {
    background: #323232;
    border: 1px solid #191919;
  }

  .p-colorpicker-panel .p-colorpicker-color-handle, .p-colorpicker-panel .p-colorpicker-hue-handle {
    border-color: #fff;
  }

  .p-colorpicker-overlay-panel {
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-dropdown {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    display: inline-flex;
    position: relative;
  }

  .p-dropdown-clear-icon {
    margin-top: -.5rem;
    position: absolute;
    top: 50%;
  }

  .p-dropdown-trigger {
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .p-dropdown-label {
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    flex: auto;
    width: 1%;
    display: block;
    overflow: hidden;
  }

  .p-dropdown-label-empty {
    opacity: 0;
    overflow: hidden;
  }

  input.p-dropdown-label {
    cursor: default;
  }

  .p-dropdown .p-dropdown-panel {
    min-width: 100%;
  }

  .p-dropdown-panel {
    position: absolute;
    top: 0;
    left: 0;
  }

  .p-dropdown-items-wrapper {
    overflow: auto;
  }

  .p-dropdown-item {
    cursor: pointer;
    white-space: nowrap;
    align-items: center;
    font-weight: normal;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .p-dropdown-item-group {
    cursor: auto;
  }

  .p-dropdown-items {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

  .p-dropdown-filter {
    width: 100%;
  }

  .p-dropdown-filter-container {
    position: relative;
  }

  .p-dropdown-filter-icon {
    margin-top: -.5rem;
    position: absolute;
    top: 50%;
  }

  .p-fluid .p-dropdown {
    display: flex;
  }

  .p-fluid .p-dropdown .p-dropdown-label {
    width: 1%;
  }

  .p-dropdown {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    outline-color: #0000;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-dropdown:not(.p-disabled):hover {
    border-color: #6366f1;
  }

  .p-dropdown:not(.p-disabled).p-focus {
    outline-offset: 0;
    border-color: #6366f1;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-dropdown.p-variant-filled {
    background: #f3f4f6;
  }

  .p-dropdown.p-variant-filled:not(.p-disabled):hover {
    background-color: #f3f4f6;
  }

  .p-dropdown.p-variant-filled:not(.p-disabled).p-focus {
    background-color: #fff;
  }

  .p-dropdown.p-variant-filled:not(.p-disabled).p-focus .p-inputtext {
    background-color: #0000;
  }

  .p-dropdown.p-dropdown-clearable .p-dropdown-label {
    padding-right: 1.75rem;
  }

  .p-dropdown .p-dropdown-label {
    background: none;
    border: 0;
  }

  .p-dropdown .p-dropdown-label.p-placeholder {
    color: #6b7280;
  }

  .p-dropdown .p-dropdown-label:focus, .p-dropdown .p-dropdown-label:enabled:focus {
    box-shadow: none;
    outline: 0;
  }

  .p-dropdown .p-dropdown-trigger {
    color: #6b7280;
    background: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    width: 3rem;
  }

  .p-dropdown .p-dropdown-clear-icon {
    color: #6b7280;
    right: 3rem;
  }

  .p-dropdown.p-invalid.p-component {
    border-color: #e24c4c;
  }

  .p-dropdown-panel {
    color: #4b5563;
    background: #fff;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-dropdown-panel .p-dropdown-header {
    color: #374151;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin: 0;
    padding: .75rem 1.25rem;
  }

  .p-dropdown-panel .p-dropdown-header .p-dropdown-filter {
    margin-right: -1.75rem;
    padding-right: 1.75rem;
  }

  .p-dropdown-panel .p-dropdown-header .p-dropdown-filter-icon {
    color: #6b7280;
    right: .75rem;
  }

  .p-dropdown-panel .p-dropdown-items {
    padding: .75rem 0;
  }

  .p-dropdown-panel .p-dropdown-items .p-dropdown-item {
    color: #4b5563;
    background: none;
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: .75rem 1.25rem;
    transition: box-shadow .2s;
  }

  .p-dropdown-panel .p-dropdown-items .p-dropdown-item:first-child {
    margin-top: 0;
  }

  .p-dropdown-panel .p-dropdown-items .p-dropdown-item:last-child {
    margin-bottom: 0;
  }

  .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-dropdown-panel .p-dropdown-items .p-dropdown-item.p-highlight.p-focus {
    background: #6366f13d;
  }

  .p-dropdown-panel .p-dropdown-items .p-dropdown-item:not(.p-highlight):not(.p-disabled).p-focus {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-dropdown-panel .p-dropdown-items .p-dropdown-item .p-dropdown-check-icon {
    margin-left: -.5rem;
    margin-right: .5rem;
    position: relative;
  }

  .p-dropdown-panel .p-dropdown-items .p-dropdown-item-group {
    color: #374151;
    background: #fff;
    margin: 0;
    padding: .75rem 1.25rem;
    font-weight: 700;
  }

  .p-dropdown-panel .p-dropdown-items .p-dropdown-empty-message {
    color: #4b5563;
    background: none;
    padding: .75rem 1.25rem;
  }

  .p-inputgroup-addon {
    color: #6b7280;
    background: #f3f4f6;
    border-top: 1px solid #d1d5db;
    border-bottom: 1px solid #d1d5db;
    border-left: 1px solid #d1d5db;
    min-width: 3rem;
    padding: .75rem;
  }

  .p-inputgroup-addon:last-child {
    border-right: 1px solid #d1d5db;
  }

  .p-inputgroup > .p-component, .p-inputgroup > .p-inputwrapper > .p-inputtext, .p-inputgroup > .p-float-label > .p-component {
    border-radius: 0;
    margin: 0;
  }

  .p-inputgroup > .p-component + .p-inputgroup-addon, .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon, .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon {
    border-left: 0;
  }

  .p-inputgroup > .p-component:focus, .p-inputgroup > .p-inputwrapper > .p-inputtext:focus, .p-inputgroup > .p-float-label > .p-component:focus, .p-inputgroup > .p-component:focus ~ label, .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label, .p-inputgroup > .p-float-label > .p-component:focus ~ label {
    z-index: 1;
  }

  .p-inputgroup-addon:first-child, .p-inputgroup button:first-child, .p-inputgroup input:first-child, .p-inputgroup > .p-inputwrapper:first-child, .p-inputgroup > .p-inputwrapper:first-child > .p-inputtext, .p-inputgroup .p-float-label:first-child input {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }

  .p-inputgroup-addon:last-child, .p-inputgroup button:last-child, .p-inputgroup input:last-child, .p-inputgroup > .p-inputwrapper:last-child, .p-inputgroup > .p-inputwrapper:last-child > .p-inputtext, .p-inputgroup .p-float-label:last-child input {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }

  .p-fluid .p-inputgroup .p-button {
    width: auto;
  }

  .p-fluid .p-inputgroup .p-button.p-button-icon-only {
    width: 3rem;
  }

  .p-inputnumber.p-invalid.p-component > .p-inputtext {
    border-color: #e24c4c;
  }

  .p-inputswitch {
    display: inline-block;
    position: relative;
  }

  .p-inputswitch-input {
    -webkit-appearance: none;
    appearance: none;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
    outline: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
  }

  .p-inputswitch-slider {
    cursor: pointer;
    border: 1px solid #0000;
    position: absolute;
    inset: 0;
  }

  .p-inputswitch-slider:before {
    content: "";
    position: absolute;
    top: 50%;
  }

  .p-inputswitch {
    width: 3rem;
    height: 1.75rem;
  }

  .p-inputswitch .p-inputswitch-input {
    border-radius: 30px;
  }

  .p-inputswitch .p-inputswitch-slider {
    background: #d1d5db;
    border-radius: 30px;
    outline-color: #0000;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-inputswitch .p-inputswitch-slider:before {
    background: #fff;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: -.625rem;
    transition-duration: .2s;
    left: .25rem;
  }

  .p-inputswitch.p-highlight .p-inputswitch-slider {
    background: #6366f1;
  }

  .p-inputswitch.p-highlight .p-inputswitch-slider:before {
    background: #fff;
    transform: translateX(1.25rem);
  }

  .p-inputswitch:not(.p-disabled):has(.p-inputswitch-input:hover) .p-inputswitch-slider {
    background: #b7bcc5;
  }

  .p-inputswitch:not(.p-disabled):has(.p-inputswitch-input:hover).p-highlight .p-inputswitch-slider {
    background: #4f46e5;
  }

  .p-inputswitch:not(.p-disabled):has(.p-inputswitch-input:focus-visible) .p-inputswitch-slider {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-inputswitch.p-invalid > .p-inputswitch-slider {
    border-color: #e24c4c;
  }

  .p-inputtext {
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature-settings, normal);
    color: #4b5563;
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    outline-color: #0000;
    padding: .75rem;
    font-size: 1rem;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-inputtext:enabled:hover {
    border-color: #6366f1;
  }

  .p-inputtext:enabled:focus {
    outline-offset: 0;
    border-color: #6366f1;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-inputtext.p-invalid.p-component {
    border-color: #e24c4c;
  }

  .p-inputtext.p-variant-filled, .p-inputtext.p-variant-filled:enabled:hover {
    background-color: #f3f4f6;
  }

  .p-inputtext.p-variant-filled:enabled:focus {
    background-color: #fff;
  }

  .p-inputtext.p-inputtext-sm {
    padding: .65625rem;
    font-size: .875rem;
  }

  .p-inputtext.p-inputtext-lg {
    padding: .9375rem;
    font-size: 1.25rem;
  }

  .p-float-label > label {
    color: #6b7280;
    transition-duration: .2s;
    left: .75rem;
  }

  .p-float-label > .p-invalid + label {
    color: #e24c4c;
  }

  .p-icon-field-left > .p-inputtext {
    padding-left: 2.5rem;
  }

  .p-icon-field-left.p-float-label > label {
    left: 2.5rem;
  }

  .p-icon-field-right > .p-inputtext {
    padding-right: 2.5rem;
  }

  ::-webkit-input-placeholder {
    color: #6b7280;
  }

  :-moz-placeholder {
    color: #6b7280;
  }

  ::-moz-placeholder {
    color: #6b7280;
  }

  :-ms-input-placeholder {
    color: #6b7280;
  }

  .p-input-filled .p-inputtext, .p-input-filled .p-inputtext:enabled:hover {
    background-color: #f3f4f6;
  }

  .p-input-filled .p-inputtext:enabled:focus {
    background-color: #fff;
  }

  .p-inputtext-sm .p-inputtext {
    padding: .65625rem;
    font-size: .875rem;
  }

  .p-inputtext-lg .p-inputtext {
    padding: .9375rem;
    font-size: 1.25rem;
  }

  .p-icon-field {
    position: relative;
  }

  .p-icon-field > .p-input-icon {
    margin-top: -.5rem;
    position: absolute;
    top: 50%;
  }

  .p-fluid .p-icon-field-left, .p-fluid .p-icon-field-right {
    width: 100%;
  }

  .p-icon-field-left > .p-input-icon:first-of-type {
    color: #6b7280;
    left: .75rem;
  }

  .p-icon-field-right > .p-input-icon:last-of-type {
    color: #6b7280;
    right: .75rem;
  }

  .p-inputotp {
    align-items: center;
    gap: .5rem;
    display: flex;
  }

  .p-inputotp-input {
    text-align: center;
    width: 2.5rem;
  }

  .p-listbox-list-wrapper {
    overflow: auto;
  }

  .p-listbox-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

  .p-listbox-item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .p-listbox-item-group {
    cursor: auto;
  }

  .p-listbox-filter-container {
    position: relative;
  }

  .p-listbox-filter-icon {
    margin-top: -.5rem;
    position: absolute;
    top: 50%;
  }

  .p-listbox-filter {
    width: 100%;
  }

  .p-listbox {
    color: #4b5563;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    outline-color: #0000;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-listbox .p-listbox-header {
    color: #374151;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin: 0;
    padding: .75rem 1.25rem;
  }

  .p-listbox .p-listbox-header .p-listbox-filter {
    padding-right: 1.75rem;
  }

  .p-listbox .p-listbox-header .p-listbox-filter-icon {
    color: #6b7280;
    right: .75rem;
  }

  .p-listbox .p-listbox-list {
    outline: 0;
    padding: .75rem 0;
  }

  .p-listbox .p-listbox-list .p-listbox-item {
    color: #4b5563;
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: .75rem 1.25rem;
    transition: box-shadow .2s;
  }

  .p-listbox .p-listbox-list .p-listbox-item:first-child {
    margin-top: 0;
  }

  .p-listbox .p-listbox-list .p-listbox-item:last-child {
    margin-bottom: 0;
  }

  .p-listbox .p-listbox-list .p-listbox-item.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-listbox .p-listbox-list .p-listbox-item-group {
    color: #374151;
    background: #fff;
    margin: 0;
    padding: .75rem 1.25rem;
    font-weight: 700;
  }

  .p-listbox .p-listbox-list .p-listbox-empty-message {
    color: #4b5563;
    background: none;
    padding: .75rem 1.25rem;
  }

  .p-listbox:not(.p-disabled) .p-listbox-item.p-highlight.p-focus {
    background: #6366f13d;
  }

  .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled).p-focus, .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover, .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover.p-focus {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-listbox.p-focus {
    outline-offset: 0;
    border-color: #6366f1;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-listbox.p-invalid {
    border-color: #e24c4c;
  }

  .p-mention-panel {
    color: #4b5563;
    background: #fff;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-mention-panel .p-mention-items {
    padding: .75rem 0;
  }

  .p-mention-panel .p-mention-items .p-mention-item {
    color: #4b5563;
    background: none;
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: .75rem 1.25rem;
    transition: box-shadow .2s;
  }

  .p-mention-panel .p-mention-items .p-mention-item:hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-mention-panel .p-mention-items .p-mention-item.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-multiselect {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    display: inline-flex;
  }

  .p-multiselect-trigger {
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .p-multiselect-label-container {
    cursor: pointer;
    flex: auto;
    overflow: hidden;
  }

  .p-multiselect-label {
    white-space: nowrap;
    cursor: pointer;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
  }

  .p-multiselect-label-empty {
    visibility: hidden;
    overflow: hidden;
  }

  .p-multiselect-token {
    cursor: default;
    flex: none;
    align-items: center;
    display: inline-flex;
  }

  .p-multiselect-token-icon {
    cursor: pointer;
  }

  .p-multiselect .p-multiselect-panel {
    min-width: 100%;
  }

  .p-multiselect-items-wrapper {
    overflow: auto;
  }

  .p-multiselect-items {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

  .p-multiselect-item {
    cursor: pointer;
    white-space: nowrap;
    align-items: center;
    font-weight: normal;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .p-multiselect-item-group {
    cursor: auto;
  }

  .p-multiselect-header {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .p-multiselect-filter-container {
    flex: auto;
    position: relative;
  }

  .p-multiselect-filter-icon {
    margin-top: -.5rem;
    position: absolute;
    top: 50%;
  }

  .p-multiselect-filter-container .p-inputtext {
    width: 100%;
  }

  .p-multiselect-close {
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .p-fluid .p-multiselect {
    display: flex;
  }

  .p-multiselect {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    outline-color: #0000;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-multiselect:not(.p-disabled):hover {
    border-color: #6366f1;
  }

  .p-multiselect:not(.p-disabled).p-focus {
    outline-offset: 0;
    border-color: #6366f1;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-multiselect.p-variant-filled {
    background: #f3f4f6;
  }

  .p-multiselect.p-variant-filled:not(.p-disabled):hover {
    background-color: #f3f4f6;
  }

  .p-multiselect.p-variant-filled:not(.p-disabled).p-focus {
    background-color: #fff;
  }

  .p-multiselect .p-multiselect-label {
    padding: .75rem;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-multiselect .p-multiselect-label.p-placeholder {
    color: #6b7280;
  }

  .p-multiselect.p-multiselect-chip .p-multiselect-token {
    color: #4b5563;
    background: #e5e7eb;
    border-radius: 16px;
    margin-right: .5rem;
    padding: .375rem .75rem;
  }

  .p-multiselect.p-multiselect-chip .p-multiselect-token .p-multiselect-token-icon {
    margin-left: .5rem;
  }

  .p-multiselect .p-multiselect-trigger {
    color: #6b7280;
    background: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    width: 3rem;
  }

  .p-multiselect.p-invalid.p-component {
    border-color: #e24c4c;
  }

  .p-inputwrapper-filled.p-multiselect.p-multiselect-chip .p-multiselect-label {
    padding: .375rem .75rem;
  }

  .p-multiselect-panel {
    color: #4b5563;
    background: #fff;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-multiselect-panel .p-multiselect-header {
    color: #374151;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin: 0;
    padding: .75rem 1.25rem;
  }

  .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-inputtext {
    padding-right: 1.75rem;
  }

  .p-multiselect-panel .p-multiselect-header .p-multiselect-filter-container .p-multiselect-filter-icon {
    color: #6b7280;
    right: .75rem;
  }

  .p-multiselect-panel .p-multiselect-header .p-checkbox {
    margin-right: .5rem;
  }

  .p-multiselect-panel .p-multiselect-header .p-multiselect-close {
    color: #6b7280;
    background: none;
    border: 0;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    margin-left: .5rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-multiselect-panel .p-multiselect-header .p-multiselect-close:enabled:hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-multiselect-panel .p-multiselect-header .p-multiselect-close:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-multiselect-panel .p-multiselect-items {
    padding: .75rem 0;
  }

  .p-multiselect-panel .p-multiselect-items .p-multiselect-item {
    color: #4b5563;
    background: none;
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: .75rem 1.25rem;
    transition: box-shadow .2s;
  }

  .p-multiselect-panel .p-multiselect-items .p-multiselect-item:first-child {
    margin-top: 0;
  }

  .p-multiselect-panel .p-multiselect-items .p-multiselect-item:last-child {
    margin-bottom: 0;
  }

  .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight.p-focus {
    background: #6366f13d;
  }

  .p-multiselect-panel .p-multiselect-items .p-multiselect-item:not(.p-highlight):not(.p-disabled).p-focus {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-multiselect-panel .p-multiselect-items .p-multiselect-item .p-checkbox {
    margin-right: .5rem;
  }

  .p-multiselect-panel .p-multiselect-items .p-multiselect-item-group {
    color: #374151;
    background: #fff;
    margin: 0;
    padding: .75rem 1.25rem;
    font-weight: 700;
  }

  .p-multiselect-panel .p-multiselect-items .p-multiselect-empty-message {
    color: #4b5563;
    background: none;
    padding: .75rem 1.25rem;
  }

  .p-password.p-invalid.p-component > .p-inputtext {
    border-color: #e24c4c;
  }

  .p-password-panel {
    color: #4b5563;
    background: #fff;
    border: 0;
    border-radius: 6px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-password-panel .p-password-meter {
    background: #e5e7eb;
    margin-bottom: .5rem;
  }

  .p-password-panel .p-password-meter .p-password-strength.weak {
    background: #ea5455;
  }

  .p-password-panel .p-password-meter .p-password-strength.medium {
    background: #ff9f42;
  }

  .p-password-panel .p-password-meter .p-password-strength.strong {
    background: #29c76f;
  }

  .p-radiobutton {
    -webkit-user-select: none;
    user-select: none;
    vertical-align: bottom;
    display: inline-flex;
    position: relative;
  }

  .p-radiobutton-input {
    cursor: pointer;
  }

  .p-radiobutton-box {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .p-radiobutton-icon {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    visibility: hidden;
    border-radius: 50%;
    transform: translateZ(0)scale(.1);
  }

  .p-radiobutton.p-highlight .p-radiobutton-icon {
    visibility: visible;
    transform: translateZ(0)scale(1);
  }

  .p-radiobutton {
    width: 22px;
    height: 22px;
  }

  .p-radiobutton .p-radiobutton-input {
    -webkit-appearance: none;
    appearance: none;
    opacity: 0;
    z-index: 1;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    outline: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
  }

  .p-radiobutton .p-radiobutton-box {
    color: #4b5563;
    background: #fff;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    outline-color: #0000;
    width: 22px;
    height: 22px;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-radiobutton .p-radiobutton-box .p-radiobutton-icon {
    background-color: #fff;
    width: 12px;
    height: 12px;
    transition-duration: .2s;
  }

  .p-radiobutton.p-highlight .p-radiobutton-box {
    background: #6366f1;
    border-color: #6366f1;
  }

  .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover) .p-radiobutton-box {
    border-color: #6366f1;
  }

  .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box {
    background: #4338ca;
    border-color: #4338ca;
  }

  .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box .p-radiobutton-icon {
    background-color: #fff;
  }

  .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:focus-visible) .p-radiobutton-box {
    outline-offset: 0;
    border-color: #6366f1;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-radiobutton.p-invalid > .p-radiobutton-box {
    border-color: #e24c4c;
  }

  .p-radiobutton.p-variant-filled .p-radiobutton-box {
    background-color: #f3f4f6;
  }

  .p-radiobutton.p-variant-filled.p-highlight .p-radiobutton-box {
    background: #6366f1;
  }

  .p-radiobutton.p-variant-filled:not(.p-disabled):has(.p-radiobutton-input:hover) .p-radiobutton-box {
    background-color: #f3f4f6;
  }

  .p-radiobutton.p-variant-filled:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box {
    background: #4338ca;
  }

  .p-input-filled .p-radiobutton .p-radiobutton-box {
    background-color: #f3f4f6;
  }

  .p-input-filled .p-radiobutton.p-highlight .p-radiobutton-box {
    background: #6366f1;
  }

  .p-input-filled .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover) .p-radiobutton-box {
    background-color: #f3f4f6;
  }

  .p-input-filled .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box {
    background: #4338ca;
  }

  .p-rating {
    align-items: center;
    display: flex;
    position: relative;
  }

  .p-rating-item {
    cursor: pointer;
    align-items: center;
    display: inline-flex;
  }

  .p-rating.p-readonly .p-rating-item {
    cursor: default;
  }

  .p-rating {
    gap: .5rem;
  }

  .p-rating .p-rating-item {
    border-radius: 50%;
    outline-color: #0000;
  }

  .p-rating .p-rating-item .p-rating-icon {
    color: #4b5563;
    font-size: 1.143rem;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-rating .p-rating-item .p-rating-icon.p-icon {
    width: 1.143rem;
    height: 1.143rem;
  }

  .p-rating .p-rating-item .p-rating-icon.p-rating-cancel {
    color: #ea5455;
  }

  .p-rating .p-rating-item.p-focus {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-rating .p-rating-item.p-rating-item-active .p-rating-icon, .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon {
    color: #6366f1;
  }

  .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel {
    color: #e73d3e;
  }

  .p-selectbutton .p-button {
    color: #4b5563;
    background: #fff;
    border: 1px solid #d1d5db;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-selectbutton .p-button .p-button-icon-left, .p-selectbutton .p-button .p-button-icon-right {
    color: #6b7280;
  }

  .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover {
    color: #4b5563;
    background: #f3f4f6;
    border-color: #d1d5db;
  }

  .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left, .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right {
    color: #374151;
  }

  .p-selectbutton .p-button.p-highlight {
    color: #fff;
    background: #6366f1;
    border-color: #6366f1;
  }

  .p-selectbutton .p-button.p-highlight .p-button-icon-left, .p-selectbutton .p-button.p-highlight .p-button-icon-right {
    color: #fff;
  }

  .p-selectbutton .p-button.p-highlight:hover {
    color: #fff;
    background: #4f46e5;
    border-color: #4f46e5;
  }

  .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left, .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right {
    color: #fff;
  }

  .p-selectbutton.p-invalid > .p-button {
    border-color: #e24c4c;
  }

  .p-slider {
    background: #e5e7eb;
    border: 0;
    border-radius: 6px;
  }

  .p-slider.p-slider-horizontal {
    height: .286rem;
  }

  .p-slider.p-slider-horizontal .p-slider-handle {
    margin-top: -.5715rem;
    margin-left: -.5715rem;
  }

  .p-slider.p-slider-vertical {
    width: .286rem;
  }

  .p-slider.p-slider-vertical .p-slider-handle {
    margin-bottom: -.5715rem;
    margin-left: -.5715rem;
  }

  .p-slider .p-slider-handle {
    background: #fff;
    border: 2px solid #6366f1;
    border-radius: 50%;
    width: 1.143rem;
    height: 1.143rem;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-slider .p-slider-handle:focus {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-slider .p-slider-range {
    background: #6366f1;
  }

  .p-slider:not(.p-disabled) .p-slider-handle:hover {
    background: #6366f1;
    border-color: #6366f1;
  }

  .p-treeselect {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-treeselect:not(.p-disabled):hover {
    border-color: #6366f1;
  }

  .p-treeselect:not(.p-disabled).p-focus {
    outline-offset: 0;
    border-color: #6366f1;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-treeselect.p-treeselect-clearable .p-treeselect-label {
    padding-right: 1.75rem;
  }

  .p-treeselect.p-variant-filled {
    background: #f3f4f6;
  }

  .p-treeselect.p-variant-filled:not(.p-disabled):hover {
    background-color: #f3f4f6;
  }

  .p-treeselect.p-variant-filled:not(.p-disabled).p-focus {
    background-color: #fff;
  }

  .p-treeselect .p-treeselect-label {
    padding: .75rem;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-treeselect .p-treeselect-label.p-placeholder {
    color: #6b7280;
  }

  .p-treeselect.p-treeselect-chip .p-treeselect-token {
    color: #4b5563;
    background: #e5e7eb;
    border-radius: 16px;
    margin-right: .5rem;
    padding: .375rem .75rem;
  }

  .p-treeselect .p-treeselect-trigger {
    color: #6b7280;
    background: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    width: 3rem;
  }

  .p-treeselect .p-treeselect-clear-icon {
    color: #6b7280;
    right: 3rem;
  }

  .p-treeselect.p-invalid.p-component {
    border-color: #e24c4c;
  }

  .p-inputwrapper-filled.p-treeselect.p-treeselect-chip .p-treeselect-label {
    padding: .375rem .75rem;
  }

  .p-treeselect-panel {
    color: #4b5563;
    background: #fff;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-treeselect-panel .p-treeselect-header {
    color: #374151;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin: 0;
    padding: .75rem 1.25rem;
  }

  .p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container {
    margin-right: .5rem;
  }

  .p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container .p-treeselect-filter {
    padding-right: 1.75rem;
  }

  .p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container .p-treeselect-filter-icon {
    color: #6b7280;
    right: .75rem;
  }

  .p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container.p-treeselect-clearable-filter .p-treeselect-filter {
    padding-right: 3.5rem;
  }

  .p-treeselect-panel .p-treeselect-header .p-treeselect-filter-container.p-treeselect-clearable-filter .p-treeselect-filter-clear-icon {
    right: 2.5rem;
  }

  .p-treeselect-panel .p-treeselect-header .p-treeselect-close {
    color: #6b7280;
    background: none;
    border: 0;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-treeselect-panel .p-treeselect-header .p-treeselect-close:enabled:hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-treeselect-panel .p-treeselect-header .p-treeselect-close:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-treeselect-panel .p-treeselect-items-wrapper .p-tree {
    border: 0;
  }

  .p-treeselect-panel .p-treeselect-items-wrapper .p-treeselect-empty-message {
    color: #4b5563;
    background: none;
    padding: .75rem 1.25rem;
  }

  .p-input-filled .p-treeselect {
    background: #f3f4f6;
  }

  .p-input-filled .p-treeselect:not(.p-disabled):hover {
    background-color: #f3f4f6;
  }

  .p-input-filled .p-treeselect:not(.p-disabled).p-focus {
    background-color: #fff;
  }

  .p-togglebutton {
    -webkit-user-select: none;
    user-select: none;
    vertical-align: bottom;
    display: inline-flex;
    position: relative;
  }

  .p-togglebutton-input {
    cursor: pointer;
  }

  .p-togglebutton .p-button {
    flex: auto;
  }

  .p-togglebutton .p-togglebutton-input {
    -webkit-appearance: none;
    appearance: none;
    opacity: 0;
    z-index: 1;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    outline: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
  }

  .p-togglebutton .p-button {
    color: #4b5563;
    background: #fff;
    border: 1px solid #d1d5db;
    outline-color: #0000;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-togglebutton .p-button .p-button-icon-left, .p-togglebutton .p-button .p-button-icon-right {
    color: #6b7280;
  }

  .p-togglebutton.p-highlight .p-button {
    color: #fff;
    background: #6366f1;
    border-color: #6366f1;
  }

  .p-togglebutton.p-highlight .p-button .p-button-icon-left, .p-togglebutton.p-highlight .p-button .p-button-icon-right {
    color: #fff;
  }

  .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover):not(.p-highlight) .p-button {
    color: #4b5563;
    background: #f3f4f6;
    border-color: #d1d5db;
  }

  .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover):not(.p-highlight) .p-button .p-button-icon-left, .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover):not(.p-highlight) .p-button .p-button-icon-right {
    color: #374151;
  }

  .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover).p-highlight .p-button {
    color: #fff;
    background: #4f46e5;
    border-color: #4f46e5;
  }

  .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover).p-highlight .p-button .p-button-icon-left, .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover).p-highlight .p-button .p-button-icon-right {
    color: #fff;
  }

  .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:focus-visible) .p-button {
    outline-offset: 0;
    border-color: #6366f1;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-togglebutton.p-invalid > .p-button {
    border-color: #e24c4c;
  }

  .p-button {
    color: #fff;
    background: #6366f1;
    border: 1px solid #6366f1;
    border-radius: 6px;
    padding: .75rem 1.25rem;
    font-size: 1rem;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-button:not(:disabled):hover {
    color: #fff;
    background: #4f46e5;
    border-color: #4f46e5;
  }

  .p-button:not(:disabled):active {
    color: #fff;
    background: #4338ca;
    border-color: #4338ca;
  }

  .p-button.p-button-outlined {
    color: #6366f1;
    background-color: #0000;
    border: 1px solid;
  }

  .p-button.p-button-outlined:not(:disabled):hover {
    color: #6366f1;
    background: #6366f10a;
    border: 1px solid;
  }

  .p-button.p-button-outlined:not(:disabled):active {
    color: #6366f1;
    background: #6366f129;
    border: 1px solid;
  }

  .p-button.p-button-outlined.p-button-plain {
    color: #6b7280;
    border-color: #6b7280;
  }

  .p-button.p-button-outlined.p-button-plain:not(:disabled):hover {
    color: #6b7280;
    background: #f3f4f6;
  }

  .p-button.p-button-outlined.p-button-plain:not(:disabled):active {
    color: #6b7280;
    background: #e5e7eb;
  }

  .p-button.p-button-text {
    color: #6366f1;
    background-color: #0000;
    border-color: #0000;
  }

  .p-button.p-button-text:not(:disabled):hover {
    color: #6366f1;
    background: #6366f10a;
    border-color: #0000;
  }

  .p-button.p-button-text:not(:disabled):active {
    color: #6366f1;
    background: #6366f129;
    border-color: #0000;
  }

  .p-button.p-button-text.p-button-plain {
    color: #6b7280;
  }

  .p-button.p-button-text.p-button-plain:not(:disabled):hover {
    color: #6b7280;
    background: #f3f4f6;
  }

  .p-button.p-button-text.p-button-plain:not(:disabled):active {
    color: #6b7280;
    background: #e5e7eb;
  }

  .p-button:focus {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-button .p-button-label {
    transition-duration: .2s;
  }

  .p-button .p-button-icon-left {
    margin-right: .5rem;
  }

  .p-button .p-button-icon-right {
    margin-left: .5rem;
  }

  .p-button .p-button-icon-bottom {
    margin-top: .5rem;
  }

  .p-button .p-button-icon-top {
    margin-bottom: .5rem;
  }

  .p-button .p-badge {
    color: #6366f1;
    background-color: #fff;
    min-width: 1rem;
    height: 1rem;
    margin-left: .5rem;
    line-height: 1rem;
  }

  .p-button.p-button-raised {
    box-shadow: 0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #0000001f;
  }

  .p-button.p-button-rounded {
    border-radius: 2rem;
  }

  .p-button.p-button-icon-only {
    width: 3rem;
    padding: .75rem 0;
  }

  .p-button.p-button-icon-only .p-button-icon-left, .p-button.p-button-icon-only .p-button-icon-right {
    margin: 0;
  }

  .p-button.p-button-icon-only.p-button-rounded {
    border-radius: 50%;
    height: 3rem;
  }

  .p-button.p-button-sm {
    padding: .65625rem 1.09375rem;
    font-size: .875rem;
  }

  .p-button.p-button-sm .p-button-icon {
    font-size: .875rem;
  }

  .p-button.p-button-lg {
    padding: .9375rem 1.5625rem;
    font-size: 1.25rem;
  }

  .p-button.p-button-lg .p-button-icon {
    font-size: 1.25rem;
  }

  .p-button.p-button-loading-label-only.p-button-loading-left .p-button-label {
    margin-left: .5rem;
  }

  .p-button.p-button-loading-label-only.p-button-loading-right .p-button-label {
    margin-right: .5rem;
  }

  .p-button.p-button-loading-label-only.p-button-loading-top .p-button-label {
    margin-top: .5rem;
  }

  .p-button.p-button-loading-label-only.p-button-loading-bottom .p-button-label {
    margin-bottom: .5rem;
  }

  .p-button.p-button-loading-label-only .p-button-loading-icon {
    margin: 0;
  }

  .p-fluid .p-button {
    width: 100%;
  }

  .p-fluid .p-button-icon-only {
    width: 3rem;
  }

  .p-fluid .p-button-group {
    display: flex;
  }

  .p-fluid .p-button-group .p-button {
    flex: 1;
  }

  .p-button.p-button-secondary, .p-button-group.p-button-secondary > .p-button, .p-splitbutton.p-button-secondary > .p-button, .p-fileupload-choose.p-button-secondary {
    color: #fff;
    background: #64748b;
    border: 1px solid #64748b;
  }

  .p-button.p-button-secondary:not(:disabled):hover, .p-button-group.p-button-secondary > .p-button:not(:disabled):hover, .p-splitbutton.p-button-secondary > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-secondary:not(:disabled):hover {
    color: #fff;
    background: #475569;
    border-color: #475569;
  }

  .p-button.p-button-secondary:not(:disabled):focus, .p-button-group.p-button-secondary > .p-button:not(:disabled):focus, .p-splitbutton.p-button-secondary > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-secondary:not(:disabled):focus {
    box-shadow: 0 0 0 .2rem #e2e8f0;
  }

  .p-button.p-button-secondary:not(:disabled):active, .p-button-group.p-button-secondary > .p-button:not(:disabled):active, .p-splitbutton.p-button-secondary > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-secondary:not(:disabled):active {
    color: #fff;
    background: #334155;
    border-color: #334155;
  }

  .p-button.p-button-secondary.p-button-outlined, .p-button-group.p-button-secondary > .p-button.p-button-outlined, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined, .p-fileupload-choose.p-button-secondary.p-button-outlined {
    color: #64748b;
    background-color: #0000;
    border: 1px solid;
  }

  .p-button.p-button-secondary.p-button-outlined:not(:disabled):hover, .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-secondary.p-button-outlined:not(:disabled):hover {
    color: #64748b;
    background: #64748b0a;
    border: 1px solid;
  }

  .p-button.p-button-secondary.p-button-outlined:not(:disabled):active, .p-button-group.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-secondary > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-secondary.p-button-outlined:not(:disabled):active {
    color: #64748b;
    background: #64748b29;
    border: 1px solid;
  }

  .p-button.p-button-secondary.p-button-text, .p-button-group.p-button-secondary > .p-button.p-button-text, .p-splitbutton.p-button-secondary > .p-button.p-button-text, .p-fileupload-choose.p-button-secondary.p-button-text {
    color: #64748b;
    background-color: #0000;
    border-color: #0000;
  }

  .p-button.p-button-secondary.p-button-text:not(:disabled):hover, .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-secondary.p-button-text:not(:disabled):hover {
    color: #64748b;
    background: #64748b0a;
    border-color: #0000;
  }

  .p-button.p-button-secondary.p-button-text:not(:disabled):active, .p-button-group.p-button-secondary > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-secondary > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-secondary.p-button-text:not(:disabled):active {
    color: #64748b;
    background: #64748b29;
    border-color: #0000;
  }

  .p-button.p-button-info, .p-button-group.p-button-info > .p-button, .p-splitbutton.p-button-info > .p-button, .p-fileupload-choose.p-button-info {
    color: #fff;
    background: #0ea5e9;
    border: 1px solid #0ea5e9;
  }

  .p-button.p-button-info:not(:disabled):hover, .p-button-group.p-button-info > .p-button:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-info:not(:disabled):hover {
    color: #fff;
    background: #0284c7;
    border-color: #0284c7;
  }

  .p-button.p-button-info:not(:disabled):focus, .p-button-group.p-button-info > .p-button:not(:disabled):focus, .p-splitbutton.p-button-info > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-info:not(:disabled):focus {
    box-shadow: 0 0 0 .2rem #bfdbfe;
  }

  .p-button.p-button-info:not(:disabled):active, .p-button-group.p-button-info > .p-button:not(:disabled):active, .p-splitbutton.p-button-info > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-info:not(:disabled):active {
    color: #fff;
    background: #0369a1;
    border-color: #0369a1;
  }

  .p-button.p-button-info.p-button-outlined, .p-button-group.p-button-info > .p-button.p-button-outlined, .p-splitbutton.p-button-info > .p-button.p-button-outlined, .p-fileupload-choose.p-button-info.p-button-outlined {
    color: #0ea5e9;
    background-color: #0000;
    border: 1px solid;
  }

  .p-button.p-button-info.p-button-outlined:not(:disabled):hover, .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-info.p-button-outlined:not(:disabled):hover {
    color: #0ea5e9;
    background: #0ea5e90a;
    border: 1px solid;
  }

  .p-button.p-button-info.p-button-outlined:not(:disabled):active, .p-button-group.p-button-info > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-info.p-button-outlined:not(:disabled):active {
    color: #0ea5e9;
    background: #0ea5e929;
    border: 1px solid;
  }

  .p-button.p-button-info.p-button-text, .p-button-group.p-button-info > .p-button.p-button-text, .p-splitbutton.p-button-info > .p-button.p-button-text, .p-fileupload-choose.p-button-info.p-button-text {
    color: #0ea5e9;
    background-color: #0000;
    border-color: #0000;
  }

  .p-button.p-button-info.p-button-text:not(:disabled):hover, .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-info.p-button-text:not(:disabled):hover {
    color: #0ea5e9;
    background: #0ea5e90a;
    border-color: #0000;
  }

  .p-button.p-button-info.p-button-text:not(:disabled):active, .p-button-group.p-button-info > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-info > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-info.p-button-text:not(:disabled):active {
    color: #0ea5e9;
    background: #0ea5e929;
    border-color: #0000;
  }

  .p-button.p-button-success, .p-button-group.p-button-success > .p-button, .p-splitbutton.p-button-success > .p-button, .p-fileupload-choose.p-button-success {
    color: #fff;
    background: #22c55e;
    border: 1px solid #22c55e;
  }

  .p-button.p-button-success:not(:disabled):hover, .p-button-group.p-button-success > .p-button:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-success:not(:disabled):hover {
    color: #fff;
    background: #16a34a;
    border-color: #16a34a;
  }

  .p-button.p-button-success:not(:disabled):focus, .p-button-group.p-button-success > .p-button:not(:disabled):focus, .p-splitbutton.p-button-success > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-success:not(:disabled):focus {
    box-shadow: 0 0 0 .2rem #bbf7d0;
  }

  .p-button.p-button-success:not(:disabled):active, .p-button-group.p-button-success > .p-button:not(:disabled):active, .p-splitbutton.p-button-success > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-success:not(:disabled):active {
    color: #fff;
    background: #15803d;
    border-color: #15803d;
  }

  .p-button.p-button-success.p-button-outlined, .p-button-group.p-button-success > .p-button.p-button-outlined, .p-splitbutton.p-button-success > .p-button.p-button-outlined, .p-fileupload-choose.p-button-success.p-button-outlined {
    color: #22c55e;
    background-color: #0000;
    border: 1px solid;
  }

  .p-button.p-button-success.p-button-outlined:not(:disabled):hover, .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-success.p-button-outlined:not(:disabled):hover {
    color: #22c55e;
    background: #22c55e0a;
    border: 1px solid;
  }

  .p-button.p-button-success.p-button-outlined:not(:disabled):active, .p-button-group.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-success.p-button-outlined:not(:disabled):active {
    color: #22c55e;
    background: #22c55e29;
    border: 1px solid;
  }

  .p-button.p-button-success.p-button-text, .p-button-group.p-button-success > .p-button.p-button-text, .p-splitbutton.p-button-success > .p-button.p-button-text, .p-fileupload-choose.p-button-success.p-button-text {
    color: #22c55e;
    background-color: #0000;
    border-color: #0000;
  }

  .p-button.p-button-success.p-button-text:not(:disabled):hover, .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-success.p-button-text:not(:disabled):hover {
    color: #22c55e;
    background: #22c55e0a;
    border-color: #0000;
  }

  .p-button.p-button-success.p-button-text:not(:disabled):active, .p-button-group.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-success > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-success.p-button-text:not(:disabled):active {
    color: #22c55e;
    background: #22c55e29;
    border-color: #0000;
  }

  .p-button.p-button-warning, .p-button-group.p-button-warning > .p-button, .p-splitbutton.p-button-warning > .p-button, .p-fileupload-choose.p-button-warning {
    color: #fff;
    background: #f97316;
    border: 1px solid #f97316;
  }

  .p-button.p-button-warning:not(:disabled):hover, .p-button-group.p-button-warning > .p-button:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-warning:not(:disabled):hover {
    color: #fff;
    background: #ea580c;
    border-color: #ea580c;
  }

  .p-button.p-button-warning:not(:disabled):focus, .p-button-group.p-button-warning > .p-button:not(:disabled):focus, .p-splitbutton.p-button-warning > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-warning:not(:disabled):focus {
    box-shadow: 0 0 0 .2rem #fde68a;
  }

  .p-button.p-button-warning:not(:disabled):active, .p-button-group.p-button-warning > .p-button:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-warning:not(:disabled):active {
    color: #fff;
    background: #c2410c;
    border-color: #c2410c;
  }

  .p-button.p-button-warning.p-button-outlined, .p-button-group.p-button-warning > .p-button.p-button-outlined, .p-splitbutton.p-button-warning > .p-button.p-button-outlined, .p-fileupload-choose.p-button-warning.p-button-outlined {
    color: #f97316;
    background-color: #0000;
    border: 1px solid;
  }

  .p-button.p-button-warning.p-button-outlined:not(:disabled):hover, .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-warning.p-button-outlined:not(:disabled):hover {
    color: #f97316;
    background: #f973160a;
    border: 1px solid;
  }

  .p-button.p-button-warning.p-button-outlined:not(:disabled):active, .p-button-group.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-warning.p-button-outlined:not(:disabled):active {
    color: #f97316;
    background: #f9731629;
    border: 1px solid;
  }

  .p-button.p-button-warning.p-button-text, .p-button-group.p-button-warning > .p-button.p-button-text, .p-splitbutton.p-button-warning > .p-button.p-button-text, .p-fileupload-choose.p-button-warning.p-button-text {
    color: #f97316;
    background-color: #0000;
    border-color: #0000;
  }

  .p-button.p-button-warning.p-button-text:not(:disabled):hover, .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-warning.p-button-text:not(:disabled):hover {
    color: #f97316;
    background: #f973160a;
    border-color: #0000;
  }

  .p-button.p-button-warning.p-button-text:not(:disabled):active, .p-button-group.p-button-warning > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-warning > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-warning.p-button-text:not(:disabled):active {
    color: #f97316;
    background: #f9731629;
    border-color: #0000;
  }

  .p-button.p-button-help, .p-button-group.p-button-help > .p-button, .p-splitbutton.p-button-help > .p-button, .p-fileupload-choose.p-button-help {
    color: #fff;
    background: #a855f7;
    border: 1px solid #a855f7;
  }

  .p-button.p-button-help:not(:disabled):hover, .p-button-group.p-button-help > .p-button:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-help:not(:disabled):hover {
    color: #fff;
    background: #9333ea;
    border-color: #9333ea;
  }

  .p-button.p-button-help:not(:disabled):focus, .p-button-group.p-button-help > .p-button:not(:disabled):focus, .p-splitbutton.p-button-help > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-help:not(:disabled):focus {
    box-shadow: 0 0 0 .2rem #e9d5ff;
  }

  .p-button.p-button-help:not(:disabled):active, .p-button-group.p-button-help > .p-button:not(:disabled):active, .p-splitbutton.p-button-help > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-help:not(:disabled):active {
    color: #fff;
    background: #7e22ce;
    border-color: #7e22ce;
  }

  .p-button.p-button-help.p-button-outlined, .p-button-group.p-button-help > .p-button.p-button-outlined, .p-splitbutton.p-button-help > .p-button.p-button-outlined, .p-fileupload-choose.p-button-help.p-button-outlined {
    color: #a855f7;
    background-color: #0000;
    border: 1px solid;
  }

  .p-button.p-button-help.p-button-outlined:not(:disabled):hover, .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-help.p-button-outlined:not(:disabled):hover {
    color: #a855f7;
    background: #a855f70a;
    border: 1px solid;
  }

  .p-button.p-button-help.p-button-outlined:not(:disabled):active, .p-button-group.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-help.p-button-outlined:not(:disabled):active {
    color: #a855f7;
    background: #a855f729;
    border: 1px solid;
  }

  .p-button.p-button-help.p-button-text, .p-button-group.p-button-help > .p-button.p-button-text, .p-splitbutton.p-button-help > .p-button.p-button-text, .p-fileupload-choose.p-button-help.p-button-text {
    color: #a855f7;
    background-color: #0000;
    border-color: #0000;
  }

  .p-button.p-button-help.p-button-text:not(:disabled):hover, .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-help.p-button-text:not(:disabled):hover {
    color: #a855f7;
    background: #a855f70a;
    border-color: #0000;
  }

  .p-button.p-button-help.p-button-text:not(:disabled):active, .p-button-group.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-help > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-help.p-button-text:not(:disabled):active {
    color: #a855f7;
    background: #a855f729;
    border-color: #0000;
  }

  .p-button.p-button-danger, .p-button-group.p-button-danger > .p-button, .p-splitbutton.p-button-danger > .p-button, .p-fileupload-choose.p-button-danger {
    color: #fff;
    background: #ef4444;
    border: 1px solid #ef4444;
  }

  .p-button.p-button-danger:not(:disabled):hover, .p-button-group.p-button-danger > .p-button:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button:not(:disabled):hover, .p-fileupload-choose.p-button-danger:not(:disabled):hover {
    color: #fff;
    background: #dc2626;
    border-color: #dc2626;
  }

  .p-button.p-button-danger:not(:disabled):focus, .p-button-group.p-button-danger > .p-button:not(:disabled):focus, .p-splitbutton.p-button-danger > .p-button:not(:disabled):focus, .p-fileupload-choose.p-button-danger:not(:disabled):focus {
    box-shadow: 0 0 0 .2rem #fecaca;
  }

  .p-button.p-button-danger:not(:disabled):active, .p-button-group.p-button-danger > .p-button:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button:not(:disabled):active, .p-fileupload-choose.p-button-danger:not(:disabled):active {
    color: #fff;
    background: #b91c1c;
    border-color: #b91c1c;
  }

  .p-button.p-button-danger.p-button-outlined, .p-button-group.p-button-danger > .p-button.p-button-outlined, .p-splitbutton.p-button-danger > .p-button.p-button-outlined, .p-fileupload-choose.p-button-danger.p-button-outlined {
    color: #ef4444;
    background-color: #0000;
    border: 1px solid;
  }

  .p-button.p-button-danger.p-button-outlined:not(:disabled):hover, .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):hover, .p-fileupload-choose.p-button-danger.p-button-outlined:not(:disabled):hover {
    color: #ef4444;
    background: #ef44440a;
    border: 1px solid;
  }

  .p-button.p-button-danger.p-button-outlined:not(:disabled):active, .p-button-group.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-outlined:not(:disabled):active, .p-fileupload-choose.p-button-danger.p-button-outlined:not(:disabled):active {
    color: #ef4444;
    background: #ef444429;
    border: 1px solid;
  }

  .p-button.p-button-danger.p-button-text, .p-button-group.p-button-danger > .p-button.p-button-text, .p-splitbutton.p-button-danger > .p-button.p-button-text, .p-fileupload-choose.p-button-danger.p-button-text {
    color: #ef4444;
    background-color: #0000;
    border-color: #0000;
  }

  .p-button.p-button-danger.p-button-text:not(:disabled):hover, .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):hover, .p-fileupload-choose.p-button-danger.p-button-text:not(:disabled):hover {
    color: #ef4444;
    background: #ef44440a;
    border-color: #0000;
  }

  .p-button.p-button-danger.p-button-text:not(:disabled):active, .p-button-group.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-danger > .p-button.p-button-text:not(:disabled):active, .p-fileupload-choose.p-button-danger.p-button-text:not(:disabled):active {
    color: #ef4444;
    background: #ef444429;
    border-color: #0000;
  }

  .p-button.p-button-contrast, .p-button-group.p-button-contrast > .p-button, .p-splitbutton.p-button-contrast > .p-button {
    color: #fff;
    background: #1f2937;
    border: 1px solid #1f2937;
  }

  .p-button.p-button-contrast:not(:disabled):hover, .p-button-group.p-button-contrast > .p-button:not(:disabled):hover, .p-splitbutton.p-button-contrast > .p-button:not(:disabled):hover {
    color: #fff;
    background: #374151;
    border-color: #374151;
  }

  .p-button.p-button-contrast:not(:disabled):focus, .p-button-group.p-button-contrast > .p-button:not(:disabled):focus, .p-splitbutton.p-button-contrast > .p-button:not(:disabled):focus {
    box-shadow: none;
  }

  .p-button.p-button-contrast:not(:disabled):active, .p-button-group.p-button-contrast > .p-button:not(:disabled):active, .p-splitbutton.p-button-contrast > .p-button:not(:disabled):active {
    color: #fff;
    background: #4b5563;
    border-color: #4b5563;
  }

  .p-button.p-button-contrast.p-button-outlined, .p-button-group.p-button-contrast > .p-button.p-button-outlined, .p-splitbutton.p-button-contrast > .p-button.p-button-outlined {
    color: #1f2937;
    background-color: #0000;
    border: 1px solid;
  }

  .p-button.p-button-contrast.p-button-outlined:not(:disabled):hover, .p-button-group.p-button-contrast > .p-button.p-button-outlined:not(:disabled):hover, .p-splitbutton.p-button-contrast > .p-button.p-button-outlined:not(:disabled):hover {
    color: #1f2937;
    background: #1f29370a;
    border: 1px solid;
  }

  .p-button.p-button-contrast.p-button-outlined:not(:disabled):active, .p-button-group.p-button-contrast > .p-button.p-button-outlined:not(:disabled):active, .p-splitbutton.p-button-contrast > .p-button.p-button-outlined:not(:disabled):active {
    color: #1f2937;
    background: #1f293729;
    border: 1px solid;
  }

  .p-button.p-button-contrast.p-button-text, .p-button-group.p-button-contrast > .p-button.p-button-text, .p-splitbutton.p-button-contrast > .p-button.p-button-text {
    color: #1f2937;
    background-color: #0000;
    border-color: #0000;
  }

  .p-button.p-button-contrast.p-button-text:not(:disabled):hover, .p-button-group.p-button-contrast > .p-button.p-button-text:not(:disabled):hover, .p-splitbutton.p-button-contrast > .p-button.p-button-text:not(:disabled):hover {
    color: #1f2937;
    background: #1f29370a;
    border-color: #0000;
  }

  .p-button.p-button-contrast.p-button-text:not(:disabled):active, .p-button-group.p-button-contrast > .p-button.p-button-text:not(:disabled):active, .p-splitbutton.p-button-contrast > .p-button.p-button-text:not(:disabled):active {
    color: #1f2937;
    background: #1f293729;
    border-color: #0000;
  }

  .p-button.p-button-link {
    color: #4338ca;
    background: none;
    border: #0000;
  }

  .p-button.p-button-link:not(:disabled):hover {
    color: #4338ca;
    background: none;
    border-color: #0000;
  }

  .p-button.p-button-link:not(:disabled):hover .p-button-label {
    text-decoration: underline;
  }

  .p-button.p-button-link:not(:disabled):focus {
    background: none;
    border-color: #0000;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-button.p-button-link:not(:disabled):active {
    color: #4338ca;
    background: none;
    border-color: #0000;
  }

  .p-splitbutton {
    border-radius: 6px;
  }

  .p-splitbutton.p-button-outlined > .p-button {
    color: #6366f1;
    background-color: #0000;
    border: 1px solid;
  }

  .p-splitbutton.p-button-outlined > .p-button:not(:disabled):hover {
    color: #6366f1;
    background: #6366f10a;
  }

  .p-splitbutton.p-button-outlined > .p-button:not(:disabled):active {
    color: #6366f1;
    background: #6366f129;
  }

  .p-splitbutton.p-button-outlined.p-button-plain > .p-button {
    color: #6b7280;
    border-color: #6b7280;
  }

  .p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):hover {
    color: #6b7280;
    background: #f3f4f6;
  }

  .p-splitbutton.p-button-outlined.p-button-plain > .p-button:not(:disabled):active {
    color: #6b7280;
    background: #e5e7eb;
  }

  .p-splitbutton.p-button-text > .p-button {
    color: #6366f1;
    background-color: #0000;
    border-color: #0000;
  }

  .p-splitbutton.p-button-text > .p-button:not(:disabled):hover {
    color: #6366f1;
    background: #6366f10a;
    border-color: #0000;
  }

  .p-splitbutton.p-button-text > .p-button:not(:disabled):active {
    color: #6366f1;
    background: #6366f129;
    border-color: #0000;
  }

  .p-splitbutton.p-button-text.p-button-plain > .p-button {
    color: #6b7280;
  }

  .p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):hover {
    color: #6b7280;
    background: #f3f4f6;
  }

  .p-splitbutton.p-button-text.p-button-plain > .p-button:not(:disabled):active {
    color: #6b7280;
    background: #e5e7eb;
  }

  .p-splitbutton.p-button-raised {
    box-shadow: 0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #0000001f;
  }

  .p-splitbutton.p-button-rounded, .p-splitbutton.p-button-rounded > .p-button {
    border-radius: 2rem;
  }

  .p-splitbutton.p-button-sm > .p-button {
    padding: .65625rem 1.09375rem;
    font-size: .875rem;
  }

  .p-splitbutton.p-button-sm > .p-button .p-button-icon {
    font-size: .875rem;
  }

  .p-splitbutton.p-button-lg > .p-button {
    padding: .9375rem 1.5625rem;
    font-size: 1.25rem;
  }

  .p-splitbutton.p-button-lg > .p-button.p-button-icon-only {
    width: auto;
  }

  .p-splitbutton.p-button-lg > .p-button .p-button-icon {
    font-size: 1.25rem;
  }

  .p-splitbutton .p-splitbutton-menubutton, .p-splitbutton .p-splitbutton.p-button-rounded > .p-splitbutton-menubutton.p-button, .p-splitbutton .p-splitbutton.p-button-outlined > .p-splitbutton-menubutton.p-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .p-splitbutton.p-button-secondary.p-button-outlined > .p-button {
    color: #64748b;
    background-color: #0000;
    border: 1px solid;
  }

  .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):hover {
    color: #64748b;
    background: #64748b0a;
  }

  .p-splitbutton.p-button-secondary.p-button-outlined > .p-button:not(:disabled):active {
    color: #64748b;
    background: #64748b29;
  }

  .p-splitbutton.p-button-secondary.p-button-text > .p-button {
    color: #64748b;
    background-color: #0000;
    border-color: #0000;
  }

  .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):hover {
    color: #64748b;
    background: #64748b0a;
    border-color: #0000;
  }

  .p-splitbutton.p-button-secondary.p-button-text > .p-button:not(:disabled):active {
    color: #64748b;
    background: #64748b29;
    border-color: #0000;
  }

  .p-splitbutton.p-button-info.p-button-outlined > .p-button {
    color: #0ea5e9;
    background-color: #0000;
    border: 1px solid;
  }

  .p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):hover {
    color: #0ea5e9;
    background: #0ea5e90a;
  }

  .p-splitbutton.p-button-info.p-button-outlined > .p-button:not(:disabled):active {
    color: #0ea5e9;
    background: #0ea5e929;
  }

  .p-splitbutton.p-button-info.p-button-text > .p-button {
    color: #0ea5e9;
    background-color: #0000;
    border-color: #0000;
  }

  .p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):hover {
    color: #0ea5e9;
    background: #0ea5e90a;
    border-color: #0000;
  }

  .p-splitbutton.p-button-info.p-button-text > .p-button:not(:disabled):active {
    color: #0ea5e9;
    background: #0ea5e929;
    border-color: #0000;
  }

  .p-splitbutton.p-button-success.p-button-outlined > .p-button {
    color: #22c55e;
    background-color: #0000;
    border: 1px solid;
  }

  .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):hover {
    color: #22c55e;
    background: #22c55e0a;
  }

  .p-splitbutton.p-button-success.p-button-outlined > .p-button:not(:disabled):active {
    color: #22c55e;
    background: #22c55e29;
  }

  .p-splitbutton.p-button-success.p-button-text > .p-button {
    color: #22c55e;
    background-color: #0000;
    border-color: #0000;
  }

  .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):hover {
    color: #22c55e;
    background: #22c55e0a;
    border-color: #0000;
  }

  .p-splitbutton.p-button-success.p-button-text > .p-button:not(:disabled):active {
    color: #22c55e;
    background: #22c55e29;
    border-color: #0000;
  }

  .p-splitbutton.p-button-warning.p-button-outlined > .p-button {
    color: #f97316;
    background-color: #0000;
    border: 1px solid;
  }

  .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):hover {
    color: #f97316;
    background: #f973160a;
  }

  .p-splitbutton.p-button-warning.p-button-outlined > .p-button:not(:disabled):active {
    color: #f97316;
    background: #f9731629;
  }

  .p-splitbutton.p-button-warning.p-button-text > .p-button {
    color: #f97316;
    background-color: #0000;
    border-color: #0000;
  }

  .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):hover {
    color: #f97316;
    background: #f973160a;
    border-color: #0000;
  }

  .p-splitbutton.p-button-warning.p-button-text > .p-button:not(:disabled):active {
    color: #f97316;
    background: #f9731629;
    border-color: #0000;
  }

  .p-splitbutton.p-button-help.p-button-outlined > .p-button {
    color: #a855f7;
    background-color: #0000;
    border: 1px solid;
  }

  .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):hover {
    color: #a855f7;
    background: #a855f70a;
  }

  .p-splitbutton.p-button-help.p-button-outlined > .p-button:not(:disabled):active {
    color: #a855f7;
    background: #a855f729;
  }

  .p-splitbutton.p-button-help.p-button-text > .p-button {
    color: #a855f7;
    background-color: #0000;
    border-color: #0000;
  }

  .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):hover {
    color: #a855f7;
    background: #a855f70a;
    border-color: #0000;
  }

  .p-splitbutton.p-button-help.p-button-text > .p-button:not(:disabled):active {
    color: #a855f7;
    background: #a855f729;
    border-color: #0000;
  }

  .p-splitbutton.p-button-danger.p-button-outlined > .p-button {
    color: #ef4444;
    background-color: #0000;
    border: 1px solid;
  }

  .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):hover {
    color: #ef4444;
    background: #ef44440a;
  }

  .p-splitbutton.p-button-danger.p-button-outlined > .p-button:not(:disabled):active {
    color: #ef4444;
    background: #ef444429;
  }

  .p-splitbutton.p-button-danger.p-button-text > .p-button {
    color: #ef4444;
    background-color: #0000;
    border-color: #0000;
  }

  .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):hover {
    color: #ef4444;
    background: #ef44440a;
    border-color: #0000;
  }

  .p-splitbutton.p-button-danger.p-button-text > .p-button:not(:disabled):active {
    color: #ef4444;
    background: #ef444429;
    border-color: #0000;
  }

  .p-speeddial-button.p-button.p-button-icon-only {
    width: 4rem;
    height: 4rem;
  }

  .p-speeddial-button.p-button.p-button-icon-only .p-button-icon {
    font-size: 1.3rem;
  }

  .p-speeddial-button.p-button.p-button-icon-only .p-button-icon.p-icon {
    width: 1.3rem;
    height: 1.3rem;
  }

  .p-speeddial-list {
    outline: 0;
  }

  .p-speeddial-action {
    color: #fff;
    background: #4b5563;
    width: 3rem;
    height: 3rem;
  }

  .p-speeddial-action:hover {
    color: #fff;
    background: #022354;
  }

  .p-speeddial-direction-up .p-speeddial-item {
    margin: .25rem;
  }

  .p-speeddial-direction-up .p-speeddial-item:first-child {
    margin-bottom: .5rem;
  }

  .p-speeddial-direction-down .p-speeddial-item {
    margin: .25rem;
  }

  .p-speeddial-direction-down .p-speeddial-item:first-child {
    margin-top: .5rem;
  }

  .p-speeddial-direction-left .p-speeddial-item {
    margin: 0 .25rem;
  }

  .p-speeddial-direction-left .p-speeddial-item:first-child {
    margin-right: .5rem;
  }

  .p-speeddial-direction-right .p-speeddial-item {
    margin: 0 .25rem;
  }

  .p-speeddial-direction-right .p-speeddial-item:first-child {
    margin-left: .5rem;
  }

  .p-speeddial-circle .p-speeddial-item, .p-speeddial-semi-circle .p-speeddial-item, .p-speeddial-quarter-circle .p-speeddial-item, .p-speeddial-circle .p-speeddial-item:first-child, .p-speeddial-circle .p-speeddial-item:last-child, .p-speeddial-semi-circle .p-speeddial-item:first-child, .p-speeddial-semi-circle .p-speeddial-item:last-child, .p-speeddial-quarter-circle .p-speeddial-item:first-child, .p-speeddial-quarter-circle .p-speeddial-item:last-child {
    margin: 0;
  }

  .p-speeddial-mask {
    background-color: #0006;
    border-radius: 6px;
  }

  .p-carousel .p-carousel-content .p-carousel-prev, .p-carousel .p-carousel-content .p-carousel-next {
    color: #6b7280;
    background: none;
    border: 0;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover, .p-carousel .p-carousel-content .p-carousel-next:enabled:hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-carousel .p-carousel-content .p-carousel-prev:focus-visible, .p-carousel .p-carousel-content .p-carousel-next:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-carousel .p-carousel-content .p-carousel-prev, .p-carousel .p-carousel-content .p-carousel-next {
    margin: .5rem;
  }

  .p-carousel .p-carousel-indicators {
    padding: 1rem;
  }

  .p-carousel .p-carousel-indicators .p-carousel-indicator {
    margin-bottom: .5rem;
    margin-right: .5rem;
  }

  .p-carousel .p-carousel-indicators .p-carousel-indicator button {
    background-color: #d1d5db;
    border-radius: 0;
    width: 2rem;
    height: .5rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-carousel .p-carousel-indicators .p-carousel-indicator button:hover {
    background: #9ca3af;
  }

  .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-datatable .p-paginator-top, .p-datatable .p-paginator-bottom {
    border-width: 0 0 1px;
    border-radius: 0;
  }

  .p-datatable .p-datatable-header {
    color: #374151;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-width: 1px 0;
    padding: 1rem;
    font-weight: 700;
  }

  .p-datatable .p-datatable-footer {
    color: #374151;
    background: #f9fafb;
    border: 0 solid #e5e7eb;
    border-bottom-width: 1px;
    padding: 1rem;
    font-weight: 700;
  }

  .p-datatable .p-datatable-thead > tr > th {
    text-align: left;
    color: #374151;
    background: #f9fafb;
    border: 0 solid #e5e7eb;
    border-bottom-width: 1px;
    padding: 1rem;
    font-weight: 700;
    transition: box-shadow .2s;
  }

  .p-datatable .p-datatable-tfoot > tr > td {
    text-align: left;
    color: #374151;
    background: #f9fafb;
    border: 0 solid #e5e7eb;
    border-bottom-width: 1px;
    padding: 1rem;
    font-weight: 700;
  }

  .p-datatable .p-sortable-column .p-sortable-column-icon {
    color: #374151;
    margin-left: .5rem;
  }

  .p-datatable .p-sortable-column .p-sortable-column-badge {
    color: #4338ca;
    background: #eef2ff;
    border-radius: 50%;
    min-width: 1.143rem;
    height: 1.143rem;
    margin-left: .5rem;
    line-height: 1.143rem;
  }

  .p-datatable .p-sortable-column:not(.p-highlight):not(.p-sortable-disabled):hover {
    color: #374151;
    background: #f3f4f6;
  }

  .p-datatable .p-sortable-column:not(.p-highlight):not(.p-sortable-disabled):hover .p-sortable-column-icon {
    color: #374151;
  }

  .p-datatable .p-sortable-column.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-datatable .p-sortable-column.p-highlight .p-sortable-column-icon {
    color: #4338ca;
  }

  .p-datatable .p-sortable-column.p-highlight:not(.p-sortable-disabled):hover {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-datatable .p-sortable-column.p-highlight:not(.p-sortable-disabled):hover .p-sortable-column-icon {
    color: #4338ca;
  }

  .p-datatable .p-sortable-column:focus-visible {
    outline: 0;
    box-shadow: inset 0 0 0 .15rem #c7d2fe;
  }

  .p-datatable .p-datatable-tbody > tr {
    color: #4b5563;
    background: #fff;
    transition: box-shadow .2s;
  }

  .p-datatable .p-datatable-tbody > tr > td {
    text-align: left;
    border: 0 solid #e5e7eb;
    border-bottom-width: 1px;
    padding: 1rem;
  }

  .p-datatable .p-datatable-tbody > tr > td .p-row-toggler, .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init, .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save, .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel {
    color: #6b7280;
    background: none;
    border: 0;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:enabled:hover, .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:enabled:hover, .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:enabled:hover, .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:enabled:hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-datatable .p-datatable-tbody > tr > td .p-row-toggler:focus-visible, .p-datatable .p-datatable-tbody > tr > td .p-row-editor-init:focus-visible, .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save:focus-visible, .p-datatable .p-datatable-tbody > tr > td .p-row-editor-cancel:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-datatable .p-datatable-tbody > tr > td .p-row-editor-save {
    margin-right: .5rem;
  }

  .p-datatable .p-datatable-tbody > tr > td > .p-column-title {
    font-weight: 700;
  }

  .p-datatable .p-datatable-tbody > tr > td.p-highlight, .p-datatable .p-datatable-tbody > tr.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-datatable .p-datatable-tbody > tr.p-highlight-contextmenu {
    outline-offset: -.15rem;
    outline: .15rem solid #c7d2fe;
  }

  .p-datatable.p-datatable-selectable .p-datatable-tbody > tr.p-selectable-row:not(.p-highlight):not(.p-datatable-emptymessage):hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-datatable.p-datatable-selectable .p-datatable-tbody > tr.p-selectable-row:focus-visible {
    outline-offset: -.15rem;
    outline: .15rem solid #c7d2fe;
  }

  .p-datatable.p-datatable-selectable-cell .p-datatable-tbody > tr.p-selectable-row > td.p-selectable-cell:not(.p-highlight):hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-datatable.p-datatable-selectable-cell .p-datatable-tbody > tr.p-selectable-row > td.p-selectable-cell:focus-visible {
    outline-offset: -.15rem;
    outline: .15rem solid #c7d2fe;
  }

  .p-datatable.p-datatable-hoverable-rows .p-datatable-tbody > tr:not(.p-highlight):not(.p-datatable-emptymessage):hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-datatable .p-column-resizer-helper {
    background: #6366f1;
  }

  .p-datatable .p-datatable-scrollable-header, .p-datatable .p-datatable-scrollable-footer {
    background: #f9fafb;
  }

  .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-thead, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-datatable-table > .p-datatable-tfoot, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-virtualscroller > .p-datatable-table > .p-datatable-thead, .p-datatable.p-datatable-scrollable > .p-datatable-wrapper > .p-virtualscroller > .p-datatable-table > .p-datatable-tfoot {
    background-color: #f9fafb;
  }

  .p-datatable .p-datatable-loading-icon {
    font-size: 2rem;
  }

  .p-datatable .p-datatable-loading-icon.p-icon {
    width: 2rem;
    height: 2rem;
  }

  .p-datatable.p-datatable-gridlines .p-datatable-header {
    border-width: 1px 1px 0;
  }

  .p-datatable.p-datatable-gridlines .p-datatable-footer {
    border-width: 0 1px 1px;
  }

  .p-datatable.p-datatable-gridlines .p-paginator-top {
    border-width: 0 1px;
  }

  .p-datatable.p-datatable-gridlines .p-paginator-bottom {
    border-width: 0 1px 1px;
  }

  .p-datatable.p-datatable-gridlines .p-datatable-thead > tr > th {
    border-width: 1px 0 1px 1px;
  }

  .p-datatable.p-datatable-gridlines .p-datatable-thead > tr > th:last-child {
    border-width: 1px;
  }

  .p-datatable.p-datatable-gridlines .p-datatable-tbody > tr > td {
    border-width: 1px 0 0 1px;
  }

  .p-datatable.p-datatable-gridlines .p-datatable-tbody > tr > td:last-child {
    border-width: 1px 1px 0;
  }

  .p-datatable.p-datatable-gridlines .p-datatable-tbody > tr:last-child > td {
    border-width: 1px 0 1px 1px;
  }

  .p-datatable.p-datatable-gridlines .p-datatable-tbody > tr:last-child > td:last-child {
    border-width: 1px;
  }

  .p-datatable.p-datatable-gridlines .p-datatable-tfoot > tr > td {
    border-width: 1px 0 1px 1px;
  }

  .p-datatable.p-datatable-gridlines .p-datatable-tfoot > tr > td:last-child {
    border-width: 1px;
  }

  .p-datatable.p-datatable-gridlines .p-datatable-thead + .p-datatable-tfoot > tr > td {
    border-width: 0 0 1px 1px;
  }

  .p-datatable.p-datatable-gridlines .p-datatable-thead + .p-datatable-tfoot > tr > td:last-child {
    border-width: 0 1px 1px;
  }

  .p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody > tr > td {
    border-width: 0 0 1px 1px;
  }

  .p-datatable.p-datatable-gridlines:has(.p-datatable-thead):has(.p-datatable-tbody) .p-datatable-tbody > tr > td:last-child {
    border-width: 0 1px 1px;
  }

  .p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody > tr:last-child > td {
    border-width: 0 0 0 1px;
  }

  .p-datatable.p-datatable-gridlines:has(.p-datatable-tbody):has(.p-datatable-tfoot) .p-datatable-tbody > tr:last-child > td:last-child {
    border-width: 0 1px;
  }

  .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd {
    background: #f8f8fa;
  }

  .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight .p-row-toggler, .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd.p-highlight .p-row-toggler:hover {
    color: #4338ca;
  }

  .p-datatable.p-datatable-striped .p-datatable-tbody > tr.p-row-odd + .p-row-expanded {
    background: #f8f8fa;
  }

  .p-datatable.p-datatable-sm .p-datatable-header, .p-datatable.p-datatable-sm .p-datatable-thead > tr > th, .p-datatable.p-datatable-sm .p-datatable-tbody > tr > td, .p-datatable.p-datatable-sm .p-datatable-tfoot > tr > td, .p-datatable.p-datatable-sm .p-datatable-footer {
    padding: .5rem;
  }

  .p-datatable.p-datatable-lg .p-datatable-header, .p-datatable.p-datatable-lg .p-datatable-thead > tr > th, .p-datatable.p-datatable-lg .p-datatable-tbody > tr > td, .p-datatable.p-datatable-lg .p-datatable-tfoot > tr > td, .p-datatable.p-datatable-lg .p-datatable-footer {
    padding: 1.25rem;
  }

  .p-datatable-drag-selection-helper {
    background: #6366f129;
  }

  .p-dataview .p-paginator-top, .p-dataview .p-paginator-bottom {
    border-width: 0 0 1px;
    border-radius: 0;
  }

  .p-dataview .p-dataview-header {
    color: #374151;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-width: 1px 0;
    padding: 1rem;
    font-weight: 700;
  }

  .p-dataview .p-dataview-content {
    color: #4b5563;
    background: #fff;
    border: 0;
    padding: 0;
  }

  .p-dataview .p-dataview-footer {
    color: #374151;
    background: #f9fafb;
    border: 0 solid #e5e7eb;
    border-bottom-width: 1px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    padding: 1rem;
    font-weight: 700;
  }

  .p-dataview .p-dataview-loading-icon {
    font-size: 2rem;
  }

  .p-dataview .p-dataview-loading-icon.p-icon {
    width: 2rem;
    height: 2rem;
  }

  .p-datascroller .p-paginator-top, .p-datascroller .p-paginator-bottom {
    border-width: 0 0 1px;
    border-radius: 0;
  }

  .p-datascroller .p-datascroller-header {
    color: #374151;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-width: 1px 0;
    padding: 1rem;
    font-weight: 700;
  }

  .p-datascroller .p-datascroller-content {
    color: #4b5563;
    background: #fff;
    border: 0;
    padding: 0;
  }

  .p-datascroller.p-datascroller-inline .p-datascroller-list > li {
    border: 0 solid #e5e7eb;
    border-bottom-width: 1px;
  }

  .p-datascroller .p-datascroller-footer {
    color: #374151;
    background: #f9fafb;
    border: 0 solid #e5e7eb;
    border-bottom-width: 1px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    padding: 1rem;
    font-weight: 700;
  }

  .p-column-filter-row .p-column-filter-menu-button, .p-column-filter-row .p-column-filter-clear-button {
    margin-left: .5rem;
  }

  .p-column-filter-menu-button {
    color: #6b7280;
    background: none;
    border: 0;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-column-filter-menu-button:hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-column-filter-menu-button.p-column-filter-menu-button-open, .p-column-filter-menu-button.p-column-filter-menu-button-open:hover {
    color: #374151;
    background: #f3f4f6;
  }

  .p-column-filter-menu-button.p-column-filter-menu-button-active, .p-column-filter-menu-button.p-column-filter-menu-button-active:hover {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-column-filter-menu-button:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-column-filter-clear-button {
    color: #6b7280;
    background: none;
    border: 0;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-column-filter-clear-button:hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-column-filter-clear-button:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-column-filter-overlay {
    color: #4b5563;
    background: #fff;
    border: 0;
    border-radius: 6px;
    min-width: 12.5rem;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-column-filter-overlay .p-column-filter-row-items {
    padding: .75rem 0;
  }

  .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item {
    color: #4b5563;
    background: none;
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: .75rem 1.25rem;
    transition: box-shadow .2s;
  }

  .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:not(.p-highlight):not(.p-disabled):hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-row-item:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: inset 0 0 0 .15rem #c7d2fe;
  }

  .p-column-filter-overlay .p-column-filter-row-items .p-column-filter-separator {
    border-top: 1px solid #e5e7eb;
    margin: .25rem 0;
  }

  .p-column-filter-overlay-menu .p-column-filter-operator {
    color: #374151;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin: 0;
    padding: .75rem 1.25rem;
  }

  .p-column-filter-overlay-menu .p-column-filter-constraint {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem;
  }

  .p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-matchmode-dropdown {
    margin-bottom: .5rem;
  }

  .p-column-filter-overlay-menu .p-column-filter-constraint .p-column-filter-remove-button {
    margin-top: .5rem;
  }

  .p-column-filter-overlay-menu .p-column-filter-constraint:last-child {
    border-bottom: 0;
  }

  .p-column-filter-overlay-menu .p-column-filter-add-rule {
    padding: .75rem 1.25rem;
  }

  .p-column-filter-overlay-menu .p-column-filter-buttonbar, .p-orderlist .p-orderlist-controls {
    padding: 1.25rem;
  }

  .p-orderlist .p-orderlist-controls .p-button {
    margin-bottom: .5rem;
  }

  .p-orderlist .p-orderlist-header {
    color: #374151;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-bottom: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 1.25rem;
    font-weight: 700;
  }

  .p-orderlist .p-orderlist-filter-container {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-bottom: 0;
    padding: 1.25rem;
  }

  .p-orderlist .p-orderlist-filter-container .p-orderlist-filter-input {
    padding-right: 1.75rem;
  }

  .p-orderlist .p-orderlist-filter-container .p-orderlist-filter-icon {
    color: #6b7280;
    right: .75rem;
  }

  .p-orderlist .p-orderlist-list {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    outline: 0;
    padding: .75rem 0;
  }

  .p-orderlist .p-orderlist-list .p-orderlist-item {
    color: #4b5563;
    background: none;
    border: 0;
    margin: 0;
    padding: .75rem 1.25rem;
    transition: transform .2s, box-shadow .2s;
  }

  .p-orderlist .p-orderlist-list .p-orderlist-item:not(.p-highlight):hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-orderlist .p-orderlist-list .p-orderlist-item.p-focus {
    color: #4b5563;
    background: #e5e7eb;
  }

  .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-orderlist .p-orderlist-list .p-orderlist-item.p-highlight.p-focus {
    background: #6366f13d;
  }

  .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(2n) {
    background: #f8f8fa;
  }

  .p-orderlist.p-orderlist-striped .p-orderlist-list .p-orderlist-item:nth-child(2n):hover {
    background: #f3f4f6;
  }

  .p-organizationchart .p-organizationchart-node-content.p-organizationchart-selectable-node:not(.p-highlight):hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-organizationchart .p-organizationchart-node-content.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-organizationchart .p-organizationchart-node-content.p-highlight .p-node-toggler i {
    color: #6f91ff;
  }

  .p-organizationchart .p-organizationchart-line-down {
    background: #e5e7eb;
  }

  .p-organizationchart .p-organizationchart-line-left {
    border-color: #e5e7eb;
    border-right-style: solid;
    border-right-width: 1px;
  }

  .p-organizationchart .p-organizationchart-line-top {
    border-color: #e5e7eb;
    border-top-style: solid;
    border-top-width: 1px;
  }

  .p-organizationchart .p-organizationchart-node-content {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 1.25rem;
  }

  .p-organizationchart .p-organizationchart-node-content .p-node-toggler {
    background: inherit;
    color: inherit;
    border-radius: 50%;
  }

  .p-organizationchart .p-organizationchart-node-content .p-node-toggler:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-paginator {
    color: #6b7280;
    background: #fff;
    border: 0 solid #f3f4f6;
    border-radius: 6px;
    padding: .5rem 1rem;
  }

  .p-paginator .p-paginator-first, .p-paginator .p-paginator-prev, .p-paginator .p-paginator-next, .p-paginator .p-paginator-last {
    color: #6b7280;
    background-color: #0000;
    border: 0;
    border-radius: 50%;
    min-width: 3rem;
    height: 3rem;
    margin: .143rem;
    transition: box-shadow .2s;
  }

  .p-paginator .p-paginator-first:not(.p-disabled):not(.p-highlight):hover, .p-paginator .p-paginator-prev:not(.p-disabled):not(.p-highlight):hover, .p-paginator .p-paginator-next:not(.p-disabled):not(.p-highlight):hover, .p-paginator .p-paginator-last:not(.p-disabled):not(.p-highlight):hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-paginator .p-paginator-first {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
  }

  .p-paginator .p-paginator-last {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
  }

  .p-paginator .p-dropdown {
    height: 3rem;
    margin-left: .5rem;
  }

  .p-paginator .p-dropdown .p-dropdown-label {
    padding-right: 0;
  }

  .p-paginator .p-paginator-page-input {
    margin-left: .5rem;
    margin-right: .5rem;
  }

  .p-paginator .p-paginator-page-input .p-inputtext {
    max-width: 3rem;
  }

  .p-paginator .p-paginator-current {
    color: #6b7280;
    background-color: #0000;
    border: 0;
    min-width: 3rem;
    height: 3rem;
    margin: .143rem;
    padding: 0 .5rem;
  }

  .p-paginator .p-paginator-pages .p-paginator-page {
    color: #6b7280;
    background-color: #0000;
    border: 0;
    border-radius: 50%;
    min-width: 3rem;
    height: 3rem;
    margin: .143rem;
    transition: box-shadow .2s;
  }

  .p-paginator .p-paginator-pages .p-paginator-page.p-highlight {
    color: #4338ca;
    background: #eef2ff;
    border-color: #eef2ff;
  }

  .p-paginator .p-paginator-pages .p-paginator-page:not(.p-highlight):hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-picklist .p-picklist-buttons {
    padding: 1.25rem;
  }

  .p-picklist .p-picklist-buttons .p-button {
    margin-bottom: .5rem;
  }

  .p-picklist .p-picklist-header {
    color: #374151;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-bottom: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 1.25rem;
    font-weight: 700;
  }

  .p-picklist .p-picklist-filter-container {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-bottom: 0;
    padding: 1.25rem;
  }

  .p-picklist .p-picklist-filter-container .p-picklist-filter-input {
    padding-right: 1.75rem;
  }

  .p-picklist .p-picklist-filter-container .p-picklist-filter-icon {
    color: #6b7280;
    right: .75rem;
  }

  .p-picklist .p-picklist-list {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    outline: 0;
    padding: .75rem 0;
  }

  .p-picklist .p-picklist-list .p-picklist-item {
    color: #4b5563;
    background: none;
    border: 0;
    margin: 0;
    padding: .75rem 1.25rem;
    transition: transform .2s, box-shadow .2s;
  }

  .p-picklist .p-picklist-list .p-picklist-item:not(.p-highlight):hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-picklist .p-picklist-list .p-picklist-item.p-focus {
    color: #4b5563;
    background: #e5e7eb;
  }

  .p-picklist .p-picklist-list .p-picklist-item.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-picklist .p-picklist-list .p-picklist-item.p-highlight.p-focus {
    background: #6366f13d;
  }

  .p-tree-container {
    margin: 0;
    padding: 0;
    list-style-type: none;
    overflow: auto;
  }

  .p-treenode-children {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

  .p-treenode-selectable {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
  }

  .p-tree-toggler {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    position: relative;
    overflow: hidden;
  }

  .p-treenode-leaf > .p-treenode-content .p-tree-toggler {
    visibility: hidden;
  }

  .p-treenode-content {
    align-items: center;
    display: flex;
  }

  .p-tree-filter {
    width: 100%;
  }

  .p-tree-filter-container {
    width: 100%;
    display: block;
    position: relative;
  }

  .p-tree-filter-icon {
    margin-top: -.5rem;
    position: absolute;
    top: 50%;
  }

  .p-tree-loading {
    min-height: 4rem;
    position: relative;
  }

  .p-tree .p-tree-loading-overlay {
    z-index: 1;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
  }

  .p-tree {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 1.25rem;
  }

  .p-tree .p-tree-container .p-treenode {
    outline: 0;
    padding: .143rem;
  }

  .p-tree .p-tree-container .p-treenode:focus > .p-treenode-content {
    outline-offset: 0;
    outline: 0;
    box-shadow: inset 0 0 0 .15rem #c7d2fe;
  }

  .p-tree .p-tree-container .p-treenode .p-treenode-content {
    border-radius: 6px;
    padding: .5rem;
    transition: box-shadow .2s;
  }

  .p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler {
    color: #6b7280;
    background: none;
    border: 0;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    margin-right: .5rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:enabled:hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-tree .p-tree-container .p-treenode .p-treenode-content .p-tree-toggler:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-tree .p-tree-container .p-treenode .p-treenode-content .p-treenode-icon {
    color: #6b7280;
    margin-right: .5rem;
  }

  .p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox {
    margin-right: .5rem;
  }

  .p-tree .p-tree-container .p-treenode .p-treenode-content .p-checkbox.p-indeterminate .p-checkbox-icon {
    color: #4b5563;
  }

  .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler, .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon, .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-tree-toggler:hover, .p-tree .p-tree-container .p-treenode .p-treenode-content.p-highlight .p-treenode-icon:hover {
    color: #4338ca;
  }

  .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-selectable:not(.p-highlight):hover, .p-tree .p-tree-container .p-treenode .p-treenode-content.p-treenode-dragover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-tree .p-tree-filter-container {
    margin-bottom: .5rem;
  }

  .p-tree .p-tree-filter-container .p-tree-filter {
    width: 100%;
    padding-right: 1.75rem;
  }

  .p-tree .p-tree-filter-container .p-tree-filter-icon {
    color: #6b7280;
    right: .75rem;
  }

  .p-tree .p-treenode-children {
    padding: 0 0 0 1rem;
  }

  .p-tree .p-tree-loading-icon {
    font-size: 2rem;
  }

  .p-tree .p-tree-loading-icon.p-icon {
    width: 2rem;
    height: 2rem;
  }

  .p-tree .p-treenode-droppoint {
    height: .5rem;
  }

  .p-tree .p-treenode-droppoint.p-treenode-droppoint-active {
    background: #8ba7ff;
  }

  .p-treetable {
    position: relative;
  }

  .p-treetable > .p-treetable-wrapper {
    overflow: auto;
  }

  .p-treetable table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
  }

  .p-treetable .p-sortable-column {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
  }

  .p-treetable-selectable .p-treetable-tbody > tr {
    cursor: pointer;
  }

  .p-treetable-toggler {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    vertical-align: middle;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    position: relative;
    overflow: hidden;
  }

  .p-treetable-toggler + .p-checkbox, .p-treetable-toggler + .p-checkbox + span {
    vertical-align: middle;
  }

  .p-treetable-resizable > .p-treetable-wrapper {
    overflow-x: auto;
  }

  .p-treetable-resizable .p-treetable-thead > tr > th, .p-treetable-resizable .p-treetable-tfoot > tr > td, .p-treetable-resizable .p-treetable-tbody > tr > td {
    overflow: hidden;
  }

  .p-treetable-resizable .p-resizable-column {
    background-clip: padding-box;
    position: relative;
  }

  .p-treetable-resizable-fit .p-resizable-column:last-child .p-column-resizer {
    display: none;
  }

  .p-treetable .p-column-resizer {
    cursor: col-resize;
    border: 1px solid #0000;
    width: .5rem;
    height: 100%;
    margin: 0;
    padding: 0;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }

  .p-treetable .p-column-resizer-helper {
    z-index: 10;
    width: 1px;
    display: none;
    position: absolute;
  }

  .p-treetable-scrollable-wrapper {
    position: relative;
  }

  .p-treetable-scrollable-header, .p-treetable-scrollable-footer {
    border: 0;
    overflow: hidden;
  }

  .p-treetable-scrollable-body {
    position: relative;
    overflow: auto;
  }

  .p-treetable-virtual-table {
    position: absolute;
  }

  .p-treetable-frozen-view .p-treetable-scrollable-body {
    overflow: hidden;
  }

  .p-treetable-unfrozen-view {
    position: absolute;
    top: 0;
    left: 0;
  }

  .p-treetable-reorder-indicator-up, .p-treetable-reorder-indicator-down {
    display: none;
    position: absolute;
  }

  .p-treetable .p-treetable-loading-overlay {
    z-index: 2;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
  }

  .p-treetable .p-treetable-thead > tr > th.p-align-left > .p-column-header-content, .p-treetable .p-treetable-tbody > tr > td.p-align-left, .p-treetable .p-treetable-tfoot > tr > td.p-align-left {
    text-align: left;
    justify-content: flex-start;
  }

  .p-treetable .p-treetable-thead > tr > th.p-align-right > .p-column-header-content, .p-treetable .p-treetable-tbody > tr > td.p-align-right, .p-treetable .p-treetable-tfoot > tr > td.p-align-right {
    text-align: right;
    justify-content: flex-end;
  }

  .p-treetable .p-treetable-thead > tr > th.p-align-center > .p-column-header-content, .p-treetable .p-treetable-tbody > tr > td.p-align-center, .p-treetable .p-treetable-tfoot > tr > td.p-align-center {
    text-align: center;
    justify-content: center;
  }

  .p-treetable .p-paginator-top, .p-treetable .p-paginator-bottom {
    border-width: 0 0 1px;
    border-radius: 0;
  }

  .p-treetable .p-treetable-header {
    color: #374151;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-width: 1px 0;
    padding: 1rem;
    font-weight: 700;
  }

  .p-treetable .p-treetable-footer {
    color: #374151;
    background: #f9fafb;
    border: 0 solid #e5e7eb;
    border-bottom-width: 1px;
    padding: 1rem;
    font-weight: 700;
  }

  .p-treetable .p-treetable-thead > tr > th {
    text-align: left;
    color: #374151;
    background: #f9fafb;
    border: 0 solid #e5e7eb;
    border-bottom-width: 1px;
    padding: 1rem;
    font-weight: 700;
    transition: box-shadow .2s;
  }

  .p-treetable .p-treetable-tfoot > tr > td {
    text-align: left;
    color: #374151;
    background: #f9fafb;
    border: 0 solid #e5e7eb;
    border-bottom-width: 1px;
    padding: 1rem;
    font-weight: 700;
  }

  .p-treetable .p-sortable-column {
    outline-color: #c7d2fe;
  }

  .p-treetable .p-sortable-column .p-sortable-column-icon {
    color: #374151;
    margin-left: .5rem;
  }

  .p-treetable .p-sortable-column .p-sortable-column-badge {
    color: #4338ca;
    background: #eef2ff;
    border-radius: 50%;
    min-width: 1.143rem;
    height: 1.143rem;
    margin-left: .5rem;
    line-height: 1.143rem;
  }

  .p-treetable .p-sortable-column:not(.p-highlight):hover {
    color: #374151;
    background: #f3f4f6;
  }

  .p-treetable .p-sortable-column:not(.p-highlight):hover .p-sortable-column-icon {
    color: #374151;
  }

  .p-treetable .p-sortable-column.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-treetable .p-sortable-column.p-highlight .p-sortable-column-icon {
    color: #4338ca;
  }

  .p-treetable .p-treetable-tbody > tr {
    color: #4b5563;
    background: #fff;
    transition: box-shadow .2s;
  }

  .p-treetable .p-treetable-tbody > tr > td {
    text-align: left;
    border: 0 solid #e5e7eb;
    border-bottom-width: 1px;
    padding: 1rem;
  }

  .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler {
    color: #6b7280;
    background: none;
    border: 0;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler:enabled:hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler, .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox {
    margin-right: .5rem;
  }

  .p-treetable .p-treetable-tbody > tr > td .p-treetable-toggler + .p-checkbox .p-indeterminate .p-checkbox-icon {
    color: #4b5563;
  }

  .p-treetable .p-treetable-tbody > tr:focus-visible {
    outline-offset: -.15rem;
    outline: .15rem solid #c7d2fe;
  }

  .p-treetable .p-treetable-tbody > tr.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler, .p-treetable .p-treetable-tbody > tr.p-highlight .p-treetable-toggler:hover {
    color: #4338ca;
  }

  .p-treetable.p-treetable-selectable .p-treetable-tbody > tr:not(.p-highlight):hover, .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-treetable.p-treetable-selectable .p-treetable-tbody > tr:not(.p-highlight):hover .p-treetable-toggler, .p-treetable.p-treetable-hoverable-rows .p-treetable-tbody > tr:not(.p-highlight):hover .p-treetable-toggler {
    color: #4b5563;
  }

  .p-treetable .p-column-resizer-helper {
    background: #6366f1;
  }

  .p-treetable .p-treetable-scrollable-header, .p-treetable .p-treetable-scrollable-footer {
    background: #f9fafb;
  }

  .p-treetable .p-treetable-loading-icon {
    font-size: 2rem;
  }

  .p-treetable .p-treetable-loading-icon.p-icon {
    width: 2rem;
    height: 2rem;
  }

  .p-treetable.p-treetable-gridlines .p-treetable-header {
    border-width: 1px 1px 0;
  }

  .p-treetable.p-treetable-gridlines .p-treetable-footer {
    border-width: 0 1px 1px;
  }

  .p-treetable.p-treetable-gridlines .p-treetable-top {
    border-width: 0 1px;
  }

  .p-treetable.p-treetable-gridlines .p-treetable-bottom {
    border-width: 0 1px 1px;
  }

  .p-treetable.p-treetable-gridlines .p-treetable-thead > tr > th, .p-treetable.p-treetable-gridlines .p-treetable-tbody > tr > td, .p-treetable.p-treetable-gridlines .p-treetable-tfoot > tr > td {
    border-width: 1px;
  }

  .p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd {
    background: #f8f8fa;
  }

  .p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd.p-highlight {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd.p-highlight .p-row-toggler, .p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd.p-highlight .p-row-toggler:hover {
    color: #4338ca;
  }

  .p-treetable.p-treetable-striped .p-treetable-tbody > tr.p-row-odd + .p-row-expanded {
    background: #f8f8fa;
  }

  .p-treetable.p-treetable-sm .p-treetable-header {
    padding: .875rem;
  }

  .p-treetable.p-treetable-sm .p-treetable-thead > tr > th, .p-treetable.p-treetable-sm .p-treetable-tbody > tr > td, .p-treetable.p-treetable-sm .p-treetable-tfoot > tr > td, .p-treetable.p-treetable-sm .p-treetable-footer {
    padding: .5rem;
  }

  .p-treetable.p-treetable-lg .p-treetable-header, .p-treetable.p-treetable-lg .p-treetable-thead > tr > th, .p-treetable.p-treetable-lg .p-treetable-tbody > tr > td, .p-treetable.p-treetable-lg .p-treetable-tfoot > tr > td, .p-treetable.p-treetable-lg .p-treetable-footer {
    padding: 1.25rem;
  }

  .p-timeline .p-timeline-event-marker {
    background-color: #fff;
    border: 2px solid #6366f1;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
  }

  .p-timeline .p-timeline-event-connector {
    background-color: #e5e7eb;
  }

  .p-timeline.p-timeline-vertical .p-timeline-event-opposite, .p-timeline.p-timeline-vertical .p-timeline-event-content {
    padding: 0 1rem;
  }

  .p-timeline.p-timeline-vertical .p-timeline-event-connector {
    width: 2px;
  }

  .p-timeline.p-timeline-horizontal .p-timeline-event-opposite, .p-timeline.p-timeline-horizontal .p-timeline-event-content {
    padding: 1rem 0;
  }

  .p-timeline.p-timeline-horizontal .p-timeline-event-connector {
    height: 2px;
  }

  .p-accordion .p-accordion-header .p-accordion-header-link {
    color: #6b7280;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 1.25rem;
    font-weight: 700;
    transition: box-shadow .2s;
  }

  .p-accordion .p-accordion-header .p-accordion-header-link .p-accordion-toggle-icon {
    margin-right: .5rem;
  }

  .p-accordion .p-accordion-header:not(.p-disabled) .p-accordion-header-link:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-accordion .p-accordion-header:not(.p-highlight):not(.p-disabled):hover .p-accordion-header-link {
    color: #374151;
    background: #f3f4f6;
    border-color: #e5e7eb;
  }

  .p-accordion .p-accordion-header:not(.p-disabled).p-highlight .p-accordion-header-link {
    color: #374151;
    background: #f9fafb;
    border-color: #e5e7eb;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .p-accordion .p-accordion-header:not(.p-disabled).p-highlight:hover .p-accordion-header-link {
    color: #374151;
    background: #f3f4f6;
    border-color: #e5e7eb;
  }

  .p-accordion .p-accordion-content {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 0;
    border-radius: 0 0 6px 6px;
    padding: 1.25rem;
  }

  .p-accordion .p-accordion-tab {
    margin-bottom: 4px;
  }

  .p-card {
    color: #4b5563;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 1px -1px #0003, 0 1px 1px #00000024, 0 1px 3px #0000001f;
  }

  .p-card .p-card-body {
    padding: 1.25rem;
  }

  .p-card .p-card-title {
    margin-bottom: .5rem;
    font-size: 1.5rem;
    font-weight: 700;
  }

  .p-card .p-card-subtitle {
    color: #6b7280;
    margin-bottom: .5rem;
    font-weight: 400;
  }

  .p-card .p-card-content {
    padding: 1.25rem 0;
  }

  .p-card .p-card-footer {
    padding: 1.25rem 0 0;
  }

  .p-fieldset {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
  }

  .p-fieldset .p-fieldset-legend {
    color: #374151;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 1.25rem;
    font-weight: 700;
  }

  .p-fieldset.p-fieldset-toggleable .p-fieldset-legend {
    padding: 0;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a {
    color: #374151;
    border-radius: 6px;
    padding: 1.25rem;
    transition: box-shadow .2s;
  }

  .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a .p-fieldset-toggler {
    margin-right: .5rem;
  }

  .p-fieldset.p-fieldset-toggleable .p-fieldset-legend a:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-fieldset.p-fieldset-toggleable .p-fieldset-legend:hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #e5e7eb;
  }

  .p-fieldset .p-fieldset-content {
    padding: 1.25rem;
  }

  .p-divider .p-divider-content {
    background-color: #fff;
  }

  .p-divider.p-divider-horizontal {
    margin: 1.25rem 0;
    padding: 0 1.25rem;
  }

  .p-divider.p-divider-horizontal:before {
    border-top: 1px #e5e7eb;
  }

  .p-divider.p-divider-horizontal .p-divider-content {
    padding: 0 .5rem;
  }

  .p-divider.p-divider-vertical {
    margin: 0 1.25rem;
    padding: 1.25rem 0;
  }

  .p-divider.p-divider-vertical:before {
    border-left: 1px #e5e7eb;
  }

  .p-divider.p-divider-vertical .p-divider-content {
    padding: .5rem 0;
  }

  .p-panel .p-panel-header {
    color: #374151;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 1.25rem;
  }

  .p-panel .p-panel-header .p-panel-title {
    font-weight: 700;
  }

  .p-panel .p-panel-header .p-panel-header-icon {
    color: #6b7280;
    background: none;
    border: 0;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-panel .p-panel-header .p-panel-header-icon:enabled:hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-panel .p-panel-header .p-panel-header-icon:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-panel.p-panel-toggleable .p-panel-header {
    padding: .75rem 1.25rem;
  }

  .p-panel:has( > .p-panel-footer) .p-panel-content {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .p-panel .p-panel-content {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 0;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    padding: 1.25rem;
  }

  .p-panel .p-panel-footer {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 0;
    padding: .75rem 1.25rem;
  }

  .p-splitter {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
  }

  .p-splitter .p-splitter-gutter {
    background: #f9fafb;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-splitter .p-splitter-gutter .p-splitter-gutter-handle {
    background: #e5e7eb;
  }

  .p-splitter .p-splitter-gutter .p-splitter-gutter-handle:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-splitter .p-splitter-gutter-resizing {
    background: #e5e7eb;
  }

  .p-stepper .p-stepper-nav {
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
  }

  .p-stepper .p-stepper-header {
    padding: .5rem;
  }

  .p-stepper .p-stepper-header .p-stepper-action {
    background: #fff;
    border-radius: 6px;
    outline-color: #0000;
    transition: box-shadow .2s;
  }

  .p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
    color: #4b5563;
    background: #fff;
    border: 2px solid #f3f4f6;
    border-radius: 50%;
    min-width: 2rem;
    height: 2rem;
    font-size: 1.143rem;
    line-height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
    color: #6b7280;
    margin-left: .5rem;
    font-weight: 700;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-stepper .p-stepper-header.p-highlight .p-stepper-number {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-stepper .p-stepper-header.p-highlight .p-stepper-title {
    color: #4b5563;
  }

  .p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-stepper .p-stepper-header:has( ~ .p-highlight) .p-stepper-separator {
    background-color: #6366f1;
  }

  .p-stepper .p-stepper-panels {
    color: #4b5563;
    background: #fff;
    padding: 1.25rem;
  }

  .p-stepper .p-stepper-separator {
    background-color: #e5e7eb;
    width: 100%;
    height: 2px;
    margin-inline-start: 1rem;
    transition: box-shadow .2s;
  }

  .p-stepper.p-stepper-vertical {
    flex-direction: column;
    display: flex;
  }

  .p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
    color: #4b5563;
    background: #fff;
    flex: auto;
    display: flex;
  }

  .p-stepper.p-stepper-vertical .p-stepper-panel {
    flex-direction: column;
    flex: initial;
    display: flex;
  }

  .p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
    flex: auto;
  }

  .p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
    flex: initial;
  }

  .p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
    width: 100%;
    padding-left: 1rem;
  }

  .p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
    flex: none;
    width: 2px;
    height: auto;
    margin-inline-start: calc(1.75rem + 2px);
  }

  .p-stepper.p-stepper-vertical .p-stepper-panel:has( ~ .p-stepper-panel-active) .p-stepper-separator {
    background-color: #6366f1;
  }

  .p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
    padding-left: 3rem;
  }

  .p-scrollpanel .p-scrollpanel-bar {
    background: #f9fafb;
    border: 0;
  }

  .p-scrollpanel .p-scrollpanel-bar:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-tabview-nav-container {
    position: relative;
  }

  .p-tabview-scrollable .p-tabview-nav-container {
    overflow: hidden;
  }

  .p-tabview-nav-content {
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior: contain auto;
    position: relative;
    overflow: auto hidden;
  }

  .p-tabview-nav {
    flex: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
  }

  .p-tabview-nav-link {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    align-items: center;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .p-tabview-ink-bar {
    z-index: 1;
    display: none;
  }

  .p-tabview-nav-link:focus, .p-tabview-close {
    z-index: 1;
  }

  .p-tabview-title {
    white-space: nowrap;
    line-height: 1;
  }

  .p-tabview-nav-btn {
    z-index: 2;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
  }

  .p-tabview-nav-prev {
    left: 0;
  }

  .p-tabview-nav-next {
    right: 0;
  }

  .p-tabview-nav-content::-webkit-scrollbar {
    display: none;
  }

  .p-tabview .p-tabview-nav {
    background: #fff;
    border: 0 solid #e5e7eb;
    border-bottom-width: 2px;
  }

  .p-tabview .p-tabview-nav li {
    margin-right: 0;
  }

  .p-tabview .p-tabview-nav li .p-tabview-nav-link {
    color: #6b7280;
    background: #fff;
    border: 0 solid #0000;
    border-bottom: 2px solid #e5e7eb;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin: 0 0 -2px;
    padding: 1.25rem;
    font-weight: 700;
    transition: box-shadow .2s;
  }

  .p-tabview .p-tabview-nav li .p-tabview-nav-link:not(.p-disabled):focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: inset 0 0 0 .2rem #c7d2fe;
  }

  .p-tabview .p-tabview-nav li:not(.p-highlight):not(.p-disabled):hover .p-tabview-nav-link {
    color: #6b7280;
    background: #fff;
    border-color: #9ca3af;
  }

  .p-tabview .p-tabview-nav li.p-highlight .p-tabview-nav-link {
    color: #6366f1;
    background: #fff;
    border-color: #6366f1;
  }

  .p-tabview .p-tabview-close {
    margin-left: .5rem;
  }

  .p-tabview .p-tabview-nav-btn.p-link {
    color: #6366f1;
    background: #fff;
    border-radius: 0;
    width: 3rem;
    box-shadow: 0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #0000001f;
  }

  .p-tabview .p-tabview-nav-btn.p-link:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: inset 0 0 0 .2rem #c7d2fe;
  }

  .p-tabview .p-tabview-panels {
    color: #4b5563;
    background: #fff;
    border: 0;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    padding: 1.25rem;
  }

  .p-toolbar {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    gap: .5rem;
    padding: 1.25rem;
  }

  .p-toolbar .p-toolbar-separator {
    margin: 0 .5rem;
  }

  .p-confirm-popup {
    color: #4b5563;
    background: #fff;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 1px 3px #0000004d;
  }

  .p-confirm-popup .p-confirm-popup-content {
    padding: 1.25rem;
  }

  .p-confirm-popup .p-confirm-popup-footer {
    text-align: right;
    padding: 0 1.25rem 1.25rem;
  }

  .p-confirm-popup .p-confirm-popup-footer button {
    width: auto;
    margin: 0 .5rem 0 0;
  }

  .p-confirm-popup .p-confirm-popup-footer button:last-child {
    margin: 0;
  }

  .p-confirm-popup:after {
    border: solid #fff0;
    border-bottom-color: #fff;
  }

  .p-confirm-popup:before {
    border: solid #fff0;
    border-bottom-color: #f2f2f2;
  }

  .p-confirm-popup.p-confirm-popup-flipped:after, .p-confirm-popup.p-confirm-popup-flipped:before {
    border-top-color: #fff;
  }

  .p-confirm-popup .p-confirm-popup-icon {
    font-size: 1.5rem;
  }

  .p-confirm-popup .p-confirm-popup-icon.p-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .p-confirm-popup .p-confirm-popup-message {
    margin-left: 1rem;
  }

  .p-dialog {
    border: 0;
    border-radius: 6px;
    box-shadow: 0 1px 3px #0000004d;
  }

  .p-dialog .p-dialog-header {
    color: #374151;
    background: #fff;
    border-bottom: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 1.5rem;
  }

  .p-dialog .p-dialog-header .p-dialog-title {
    font-size: 1.25rem;
    font-weight: 700;
  }

  .p-dialog .p-dialog-header .p-dialog-header-icon {
    color: #6b7280;
    background: none;
    border: 0;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-dialog .p-dialog-header .p-dialog-header-icon:enabled:hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-dialog .p-dialog-header .p-dialog-header-icon:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-dialog .p-dialog-header .p-dialog-header-icon {
    margin-right: .5rem;
  }

  .p-dialog .p-dialog-header .p-dialog-header-icon:last-child {
    margin-right: 0;
  }

  .p-dialog .p-dialog-content {
    color: #4b5563;
    background: #fff;
    padding: 0 1.5rem 2rem;
  }

  .p-dialog .p-dialog-content:last-of-type {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
  }

  .p-dialog .p-dialog-footer {
    color: #4b5563;
    text-align: right;
    background: #fff;
    border-top: 0;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    padding: 0 1.5rem 1.5rem;
  }

  .p-dialog .p-dialog-footer button {
    width: auto;
    margin: 0 .5rem 0 0;
  }

  .p-dialog.p-dialog-maximized .p-dialog-header, .p-dialog.p-dialog-maximized .p-dialog-content:last-of-type {
    border-radius: 0;
  }

  .p-dialog.p-confirm-dialog .p-confirm-dialog-icon {
    font-size: 2rem;
  }

  .p-dialog.p-confirm-dialog .p-confirm-dialog-icon.p-icon {
    width: 2rem;
    height: 2rem;
  }

  .p-dialog.p-confirm-dialog .p-confirm-dialog-message {
    margin-left: 1rem;
  }

  .p-overlaypanel {
    color: #4b5563;
    background: #fff;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 1px 3px #0000004d;
  }

  .p-overlaypanel .p-overlaypanel-content {
    padding: 1.25rem;
  }

  .p-overlaypanel .p-overlaypanel-close {
    color: #fff;
    background: #6366f1;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
    position: absolute;
    top: -1rem;
    right: -1rem;
  }

  .p-overlaypanel .p-overlaypanel-close:enabled:hover {
    color: #fff;
    background: #4f46e5;
  }

  .p-overlaypanel:after {
    border: solid #fff0;
    border-bottom-color: #fff;
  }

  .p-overlaypanel:before {
    border: solid #fff0;
    border-bottom-color: #f2f2f2;
  }

  .p-overlaypanel.p-overlaypanel-flipped:after, .p-overlaypanel.p-overlaypanel-flipped:before {
    border-top-color: #fff;
  }

  .p-sidebar {
    color: #4b5563;
    background: #fff;
    border: 0;
    box-shadow: 0 1px 3px #0000004d;
  }

  .p-sidebar .p-sidebar-header {
    padding: 1.25rem;
  }

  .p-sidebar .p-sidebar-header .p-sidebar-close, .p-sidebar .p-sidebar-header .p-sidebar-icon {
    color: #6b7280;
    background: none;
    border: 0;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-sidebar .p-sidebar-header .p-sidebar-close:enabled:hover, .p-sidebar .p-sidebar-header .p-sidebar-icon:enabled:hover {
    color: #374151;
    background: #f3f4f6;
    border-color: #0000;
  }

  .p-sidebar .p-sidebar-header .p-sidebar-close:focus-visible, .p-sidebar .p-sidebar-header .p-sidebar-icon:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-sidebar .p-sidebar-header + .p-sidebar-content {
    padding-top: 0;
  }

  .p-sidebar .p-sidebar-content {
    padding: 1.25rem;
  }

  .p-tooltip .p-tooltip-text {
    color: #fff;
    background: #4b5563;
    border-radius: 6px;
    padding: .75rem;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-tooltip.p-tooltip-right .p-tooltip-arrow {
    border-right-color: #4b5563;
  }

  .p-tooltip.p-tooltip-left .p-tooltip-arrow {
    border-left-color: #4b5563;
  }

  .p-tooltip.p-tooltip-top .p-tooltip-arrow {
    border-top-color: #4b5563;
  }

  .p-tooltip.p-tooltip-bottom .p-tooltip-arrow {
    border-bottom-color: #4b5563;
  }

  .p-fileupload .p-fileupload-buttonbar {
    color: #374151;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-bottom: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    gap: .5rem;
    padding: 1.25rem;
  }

  .p-fileupload .p-fileupload-buttonbar .p-button {
    margin-right: .5rem;
  }

  .p-fileupload .p-fileupload-content {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    padding: 2rem 1rem;
  }

  .p-fileupload .p-progressbar {
    height: .25rem;
  }

  .p-fileupload .p-fileupload-row > div {
    padding: 1rem;
  }

  .p-fileupload.p-fileupload-advanced .p-message {
    margin-top: 0;
  }

  .p-breadcrumb {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 1rem;
  }

  .p-breadcrumb .p-breadcrumb-list li .p-menuitem-link {
    border-radius: 6px;
    transition: box-shadow .2s;
  }

  .p-breadcrumb .p-breadcrumb-list li .p-menuitem-link:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-breadcrumb .p-breadcrumb-list li .p-menuitem-link .p-menuitem-icon {
    color: #6b7280;
  }

  .p-breadcrumb .p-breadcrumb-list li.p-menuitem-separator {
    color: #4b5563;
    margin: 0 .5rem;
  }

  .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-text {
    color: #4b5563;
  }

  .p-breadcrumb .p-breadcrumb-list li:last-child .p-menuitem-icon {
    color: #6b7280;
  }

  .p-contextmenu {
    color: #4b5563;
    background: #fff;
    border: 0;
    border-radius: 6px;
    width: 12.5rem;
    padding: .5rem 0;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-contextmenu .p-contextmenu-root-list {
    outline: 0;
  }

  .p-contextmenu .p-submenu-list {
    background: #fff;
    border: 0;
    border-radius: 6px;
    padding: .5rem 0;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-contextmenu .p-menuitem > .p-menuitem-content {
    color: #4b5563;
    border-radius: 0;
    transition: box-shadow .2s;
  }

  .p-contextmenu .p-menuitem > .p-menuitem-content .p-menuitem-link {
    color: #4b5563;
    -webkit-user-select: none;
    user-select: none;
    padding: .75rem 1.25rem;
  }

  .p-contextmenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-contextmenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon {
    color: #6b7280;
    margin-right: .5rem;
  }

  .p-contextmenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-contextmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4338ca;
  }

  .p-contextmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content {
    background: #6366f13d;
  }

  .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content {
    color: #4b5563;
    background: #e5e7eb;
  }

  .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4b5563;
  }

  .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, .p-contextmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-contextmenu .p-menuitem-separator {
    border-top: 1px solid #e5e7eb;
    margin: .25rem 0;
  }

  .p-contextmenu .p-submenu-icon {
    font-size: .875rem;
  }

  .p-contextmenu .p-submenu-icon.p-icon {
    width: .875rem;
    height: .875rem;
  }

  .p-dock .p-dock-list-container {
    background: #ffffff1a;
    border: 1px solid #fff3;
    border-radius: .5rem;
    padding: .5rem;
  }

  .p-dock .p-dock-list-container .p-dock-list {
    outline: 0;
  }

  .p-dock .p-dock-item {
    border-radius: 6px;
    padding: .5rem;
  }

  .p-dock .p-dock-item.p-focus {
    outline-offset: 0;
    outline: 0;
    box-shadow: inset 0 0 0 .15rem #c7d2fe;
  }

  .p-dock .p-dock-action {
    width: 4rem;
    height: 4rem;
  }

  .p-dock.p-dock-top .p-dock-item-second-prev, .p-dock.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-bottom .p-dock-item-second-prev, .p-dock.p-dock-bottom .p-dock-item-second-next {
    margin: 0 .9rem;
  }

  .p-dock.p-dock-top .p-dock-item-prev, .p-dock.p-dock-top .p-dock-item-next, .p-dock.p-dock-bottom .p-dock-item-prev, .p-dock.p-dock-bottom .p-dock-item-next {
    margin: 0 1.3rem;
  }

  .p-dock.p-dock-top .p-dock-item-current, .p-dock.p-dock-bottom .p-dock-item-current {
    margin: 0 1.5rem;
  }

  .p-dock.p-dock-left .p-dock-item-second-prev, .p-dock.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-right .p-dock-item-second-prev, .p-dock.p-dock-right .p-dock-item-second-next {
    margin: .9rem 0;
  }

  .p-dock.p-dock-left .p-dock-item-prev, .p-dock.p-dock-left .p-dock-item-next, .p-dock.p-dock-right .p-dock-item-prev, .p-dock.p-dock-right .p-dock-item-next {
    margin: 1.3rem 0;
  }

  .p-dock.p-dock-left .p-dock-item-current, .p-dock.p-dock-right .p-dock-item-current {
    margin: 1.5rem 0;
  }

  .p-dock.p-dock-mobile.p-dock-top .p-dock-list-container, .p-dock.p-dock-mobile.p-dock-bottom .p-dock-list-container {
    width: 100%;
    overflow-x: auto;
  }

  .p-dock.p-dock-mobile.p-dock-top .p-dock-list-container .p-dock-list, .p-dock.p-dock-mobile.p-dock-bottom .p-dock-list-container .p-dock-list {
    margin: 0 auto;
  }

  .p-dock.p-dock-mobile.p-dock-left .p-dock-list-container, .p-dock.p-dock-mobile.p-dock-right .p-dock-list-container {
    height: 100%;
    overflow-y: auto;
  }

  .p-dock.p-dock-mobile.p-dock-left .p-dock-list-container .p-dock-list, .p-dock.p-dock-mobile.p-dock-right .p-dock-list-container .p-dock-list {
    margin: auto 0;
  }

  .p-dock.p-dock-mobile .p-dock-list .p-dock-item, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-second-prev, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-second-next, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-prev, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-next, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-top .p-dock-item-current, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-second-prev, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-second-next, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-prev, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-next, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-bottom .p-dock-item-current, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-second-prev, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-second-next, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-prev, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-next, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-left .p-dock-item-current, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-right .p-dock-item-second-prev, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-right .p-dock-item-second-next, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-right .p-dock-item-prev, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-right .p-dock-item-next, .p-dock.p-dock-mobile.p-dock-magnification.p-dock-right .p-dock-item-current {
    margin: 0;
    transform: none;
  }

  .p-megamenu {
    color: #4b5563;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: .5rem;
  }

  .p-megamenu .p-megamenu-root-list {
    outline: 0;
  }

  .p-megamenu .p-menuitem > .p-menuitem-content {
    color: #4b5563;
    border-radius: 0;
    transition: box-shadow .2s;
  }

  .p-megamenu .p-menuitem > .p-menuitem-content .p-menuitem-link {
    color: #4b5563;
    -webkit-user-select: none;
    user-select: none;
    padding: .75rem 1.25rem;
  }

  .p-megamenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-megamenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon {
    color: #6b7280;
    margin-right: .5rem;
  }

  .p-megamenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-megamenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4338ca;
  }

  .p-megamenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content {
    background: #6366f13d;
  }

  .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content {
    color: #4b5563;
    background: #e5e7eb;
  }

  .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4b5563;
  }

  .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, .p-megamenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-megamenu .p-megamenu-panel {
    color: #4b5563;
    background: #fff;
    border: 0;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-megamenu .p-submenu-header {
    color: #374151;
    background: #fff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin: 0;
    padding: .75rem 1.25rem;
    font-weight: 700;
  }

  .p-megamenu .p-submenu-list {
    width: 12.5rem;
    padding: .5rem 0;
  }

  .p-megamenu .p-submenu-list .p-menuitem-separator {
    border-top: 1px solid #e5e7eb;
    margin: .25rem 0;
  }

  .p-megamenu.p-megamenu-vertical {
    width: 12.5rem;
    padding: .5rem 0;
  }

  .p-megamenu .p-megamenu-button {
    color: #6b7280;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-megamenu .p-megamenu-button:hover {
    color: #6b7280;
    background: #f3f4f6;
  }

  .p-megamenu .p-megamenu-button:focus {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content {
    color: #4b5563;
    border-radius: 6px;
    transition: box-shadow .2s;
  }

  .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link {
    -webkit-user-select: none;
    user-select: none;
    padding: .75rem 1.25rem;
  }

  .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon {
    color: #6b7280;
    margin-right: .5rem;
  }

  .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
    margin-left: .5rem;
  }

  .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, .p-megamenu.p-megamenu-horizontal .p-megamenu-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list {
    background: #fff;
    border: 0;
    padding: .5rem 0;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-menu-separator {
    border-top: 1px solid #e5e7eb;
    margin: .25rem 0;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-submenu-icon {
    font-size: .875rem;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-submenu-icon.p-icon {
    width: .875rem;
    height: .875rem;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem {
    width: 100%;
    position: static;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content {
    color: #4b5563;
    border-radius: 0;
    transition: box-shadow .2s;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link {
    color: #4b5563;
    -webkit-user-select: none;
    user-select: none;
    padding: .75rem 1.25rem;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-menuitem-icon {
    color: #6b7280;
    margin-right: .5rem;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4338ca;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link.p-highlight.p-focus > .p-menuitem-content {
    background: #6366f13d;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content {
    color: #4b5563;
    background: #e5e7eb;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4b5563;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
    margin-left: auto;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
    transform: rotate(-180deg);
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-submenu-list {
    box-shadow: none;
    border: 0;
    width: 100%;
    position: static;
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-submenu-list .p-submenu-icon {
    transition: transform .2s;
    transform: rotate(90deg);
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
    transform: rotate(-90deg);
  }

  .p-megamenu.p-megamenu-mobile-active .p-megamenu-root-list .p-menuitem {
    width: 100%;
    position: static;
  }

  .p-menu {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    width: 12.5rem;
    padding: .5rem 0;
  }

  .p-menu .p-menuitem > .p-menuitem-content {
    color: #4b5563;
    border-radius: 0;
    transition: box-shadow .2s;
  }

  .p-menu .p-menuitem > .p-menuitem-content .p-menuitem-link {
    color: #4b5563;
    -webkit-user-select: none;
    user-select: none;
    padding: .75rem 1.25rem;
  }

  .p-menu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-menu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon {
    color: #6b7280;
    margin-right: .5rem;
  }

  .p-menu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-menu .p-menuitem.p-highlight > .p-menuitem-content {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-menu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4338ca;
  }

  .p-menu .p-menuitem.p-highlight.p-focus > .p-menuitem-content {
    background: #6366f13d;
  }

  .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content {
    color: #4b5563;
    background: #e5e7eb;
  }

  .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4b5563;
  }

  .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, .p-menu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-menu.p-menu-overlay {
    background: #fff;
    border: 0;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-menu .p-submenu-header {
    color: #374151;
    background: #fff;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin: 0;
    padding: .75rem 1.25rem;
    font-weight: 700;
  }

  .p-menu .p-menu-separator {
    border-top: 1px solid #e5e7eb;
    margin: .25rem 0;
  }

  .p-menubar {
    color: #4b5563;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: .5rem;
  }

  .p-menubar .p-menubar-root-list {
    outline: 0;
  }

  .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-content {
    color: #4b5563;
    border-radius: 6px;
    transition: box-shadow .2s;
  }

  .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link {
    -webkit-user-select: none;
    user-select: none;
    padding: .75rem 1.25rem;
  }

  .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon {
    color: #6b7280;
    margin-right: .5rem;
  }

  .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
    margin-left: .5rem;
  }

  .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, .p-menubar .p-menubar-root-list > .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-menubar .p-menuitem > .p-menuitem-content {
    color: #4b5563;
    border-radius: 0;
    transition: box-shadow .2s;
  }

  .p-menubar .p-menuitem > .p-menuitem-content .p-menuitem-link {
    color: #4b5563;
    -webkit-user-select: none;
    user-select: none;
    padding: .75rem 1.25rem;
  }

  .p-menubar .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-menubar .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon {
    color: #6b7280;
    margin-right: .5rem;
  }

  .p-menubar .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-menubar .p-menuitem.p-highlight > .p-menuitem-content {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-menubar .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4338ca;
  }

  .p-menubar .p-menuitem.p-highlight.p-focus > .p-menuitem-content {
    background: #6366f13d;
  }

  .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content {
    color: #4b5563;
    background: #e5e7eb;
  }

  .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4b5563;
  }

  .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, .p-menubar .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-menubar .p-submenu-list {
    background: #fff;
    border: 0;
    width: 12.5rem;
    padding: .5rem 0;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-menubar .p-submenu-list .p-menuitem-separator {
    border-top: 1px solid #e5e7eb;
    margin: .25rem 0;
  }

  .p-menubar .p-submenu-list .p-submenu-icon {
    font-size: .875rem;
  }

  .p-menubar.p-menubar-mobile .p-menubar-button {
    color: #6b7280;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-menubar.p-menubar-mobile .p-menubar-button:hover {
    color: #6b7280;
    background: #f3f4f6;
  }

  .p-menubar.p-menubar-mobile .p-menubar-button:focus {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-menubar.p-menubar-mobile .p-menubar-root-list {
    background: #fff;
    border: 0;
    padding: .5rem 0;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-menubar.p-menubar-mobile .p-menubar-root-list .p-menuitem-separator {
    border-top: 1px solid #e5e7eb;
    margin: .25rem 0;
  }

  .p-menubar.p-menubar-mobile .p-menubar-root-list .p-submenu-icon {
    font-size: .875rem;
  }

  .p-menubar.p-menubar-mobile .p-menubar-root-list .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    margin-left: auto;
    transition: transform .2s;
  }

  .p-menubar.p-menubar-mobile .p-menubar-root-list .p-menuitem.p-menuitem-active > .p-menuitem-content > .p-menuitem-link > .p-submenu-icon {
    transform: rotate(-180deg);
  }

  .p-menubar.p-menubar-mobile .p-menubar-root-list .p-submenu-list .p-submenu-icon {
    transition: transform .2s;
    transform: rotate(90deg);
  }

  .p-menubar.p-menubar-mobile .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-content > .p-menuitem-link > .p-submenu-icon {
    transform: rotate(-90deg);
  }

  .p-menubar.p-menubar-mobile .p-menubar-root-list ul li a {
    padding-left: 2.25rem;
  }

  .p-menubar.p-menubar-mobile .p-menubar-root-list ul li ul li a {
    padding-left: 3.75rem;
  }

  .p-menubar.p-menubar-mobile .p-menubar-root-list ul li ul li ul li a {
    padding-left: 5.25rem;
  }

  .p-menubar.p-menubar-mobile .p-menubar-root-list ul li ul li ul li ul li a {
    padding-left: 6.75rem;
  }

  .p-menubar.p-menubar-mobile .p-menubar-root-list ul li ul li ul li ul li ul li a {
    padding-left: 8.25rem;
  }

  @media screen and (width <= 960px) {
    .p-menubar {
      position: relative;
    }

    .p-menubar .p-menubar-button {
      color: #6b7280;
      border-radius: 50%;
      width: 2rem;
      height: 2rem;
      transition: background-color .2s, color .2s, box-shadow .2s;
      display: flex;
    }

    .p-menubar .p-menubar-button:hover {
      color: #6b7280;
      background: #f3f4f6;
    }

    .p-menubar .p-menubar-button:focus {
      outline-offset: 0;
      outline: 0;
      box-shadow: 0 0 0 .2rem #c7d2fe;
    }

    .p-menubar .p-menubar-root-list {
      background: #fff;
      border: 0;
      width: 100%;
      padding: .5rem 0;
      display: none;
      position: absolute;
      box-shadow: 0 2px 12px #0000001a;
    }

    .p-menubar .p-menubar-root-list .p-menu-separator {
      border-top: 1px solid #e5e7eb;
      margin: .25rem 0;
    }

    .p-menubar .p-menubar-root-list .p-submenu-icon {
      font-size: .875rem;
    }

    .p-menubar .p-menubar-root-list .p-submenu-icon.p-icon {
      width: .875rem;
      height: .875rem;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem {
      width: 100%;
      position: static;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content {
      color: #4b5563;
      border-radius: 0;
      transition: box-shadow .2s;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link {
      color: #4b5563;
      -webkit-user-select: none;
      user-select: none;
      padding: .75rem 1.25rem;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-menuitem-text {
      color: #4b5563;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-menuitem-icon {
      color: #6b7280;
      margin-right: .5rem;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
      color: #6b7280;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content {
      color: #4338ca;
      background: #eef2ff;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
      color: #4338ca;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link.p-highlight.p-focus > .p-menuitem-content {
      background: #6366f13d;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content {
      color: #4b5563;
      background: #e5e7eb;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
      color: #4b5563;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
      color: #4b5563;
      background: #f3f4f6;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
      color: #4b5563;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
      color: #6b7280;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem > .p-menuitem-link > .p-submenu-icon {
      margin-left: auto;
      transition: transform .2s;
    }

    .p-menubar .p-menubar-root-list > .p-menuitem.p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
      transform: rotate(-180deg);
    }

    .p-menubar .p-menubar-root-list .p-submenu-list {
      box-shadow: none;
      border: 0;
      width: 100%;
      position: static;
    }

    .p-menubar .p-menubar-root-list .p-submenu-list .p-submenu-icon {
      transition: transform .2s;
      transform: rotate(90deg);
    }

    .p-menubar .p-menubar-root-list .p-submenu-list .p-menuitem-active > .p-menuitem-link > .p-submenu-icon {
      transform: rotate(-90deg);
    }

    .p-menubar .p-menubar-root-list .p-menuitem {
      width: 100%;
      position: static;
    }

    .p-menubar .p-menubar-root-list ul li a {
      padding-left: 2.25rem;
    }

    .p-menubar .p-menubar-root-list ul li ul li a {
      padding-left: 3.75rem;
    }

    .p-menubar .p-menubar-root-list ul li ul li ul li a {
      padding-left: 5.25rem;
    }

    .p-menubar .p-menubar-root-list ul li ul li ul li ul li a {
      padding-left: 6.75rem;
    }

    .p-menubar .p-menubar-root-list ul li ul li ul li ul li ul li a {
      padding-left: 8.25rem;
    }

    .p-menubar.p-menubar-mobile-active .p-menubar-root-list {
      z-index: 1;
      flex-direction: column;
      display: flex;
      top: 100%;
      left: 0;
    }
  }

  .p-panelmenu .p-panelmenu-header {
    outline: 0;
  }

  .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content {
    color: #6b7280;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    transition: box-shadow .2s;
  }

  .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-link {
    color: #6b7280;
    padding: 1.25rem;
    font-weight: 700;
  }

  .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-link .p-submenu-icon, .p-panelmenu .p-panelmenu-header .p-panelmenu-header-content .p-panelmenu-header-link .p-menuitem-icon {
    margin-right: .5rem;
  }

  .p-panelmenu .p-panelmenu-header:not(.p-disabled):focus-visible .p-panelmenu-header-content {
    outline-offset: 0;
    outline: 0;
    box-shadow: inset 0 0 0 .2rem #c7d2fe;
  }

  .p-panelmenu .p-panelmenu-header:not(.p-highlight):not(.p-disabled):hover .p-panelmenu-header-content {
    color: #374151;
    background: #f3f4f6;
    border-color: #e5e7eb;
  }

  .p-panelmenu .p-panelmenu-header:not(.p-disabled).p-highlight .p-panelmenu-header-content {
    color: #374151;
    background: #f9fafb;
    border-color: #e5e7eb;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    margin-bottom: 0;
  }

  .p-panelmenu .p-panelmenu-header:not(.p-disabled).p-highlight:hover .p-panelmenu-header-content {
    color: #374151;
    background: #f3f4f6;
    border-color: #e5e7eb;
  }

  .p-panelmenu .p-panelmenu-content {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 0;
    border-radius: 0 0 6px 6px;
    padding: .5rem 0;
  }

  .p-panelmenu .p-panelmenu-content .p-panelmenu-root-list {
    outline: 0;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem > .p-menuitem-content {
    color: #4b5563;
    border-radius: 0;
    transition: box-shadow .2s;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem > .p-menuitem-content .p-menuitem-link {
    color: #4b5563;
    -webkit-user-select: none;
    user-select: none;
    padding: .75rem 1.25rem;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon {
    color: #6b7280;
    margin-right: .5rem;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4338ca;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem.p-highlight.p-focus > .p-menuitem-content {
    background: #6366f13d;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content {
    color: #4b5563;
    background: #e5e7eb;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4b5563;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, .p-panelmenu .p-panelmenu-content .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    margin-right: .5rem;
  }

  .p-panelmenu .p-panelmenu-content .p-menuitem-separator {
    border-top: 1px solid #e5e7eb;
    margin: .25rem 0;
  }

  .p-panelmenu .p-panelmenu-content .p-submenu-list:not(.p-panelmenu-root-list) {
    padding: 0 0 0 1rem;
  }

  .p-panelmenu .p-panelmenu-panel {
    margin-bottom: 4px;
  }

  .p-slidemenu {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    width: 12.5rem;
    padding: .5rem 0;
  }

  .p-slidemenu .p-menuitem-link > .p-menuitem-content {
    color: #4b5563;
    border-radius: 0;
    transition: box-shadow .2s;
  }

  .p-slidemenu .p-menuitem-link > .p-menuitem-content .p-menuitem-link {
    color: #4b5563;
    -webkit-user-select: none;
    user-select: none;
    padding: .75rem 1.25rem;
  }

  .p-slidemenu .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-slidemenu .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-menuitem-icon {
    color: #6b7280;
    margin-right: .5rem;
  }

  .p-slidemenu .p-menuitem-link > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-slidemenu .p-menuitem-link.p-highlight > .p-menuitem-content {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-slidemenu .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-slidemenu .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-slidemenu .p-menuitem-link.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4338ca;
  }

  .p-slidemenu .p-menuitem-link.p-highlight.p-focus > .p-menuitem-content {
    background: #6366f13d;
  }

  .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content {
    color: #4b5563;
    background: #e5e7eb;
  }

  .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4b5563;
  }

  .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, .p-slidemenu .p-menuitem-link:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-slidemenu.p-slidemenu-overlay {
    background: #fff;
    border: 0;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-slidemenu .p-slidemenu-list {
    background: #fff;
    border: 0;
    padding: .5rem 0;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link {
    background: #eef2ff;
  }

  .p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link .p-slidemenu-text, .p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link .p-slidemenu-icon, .p-slidemenu .p-slidemenu.p-slidemenu-active > .p-slidemenu-link .p-slidemenu-icon {
    color: #4338ca;
  }

  .p-slidemenu .p-slidemenu-separator {
    border-top: 1px solid #e5e7eb;
    margin: .25rem 0;
  }

  .p-slidemenu .p-slidemenu-icon {
    font-size: .875rem;
  }

  .p-slidemenu .p-slidemenu-icon.p-icon {
    width: .875rem;
    height: .875rem;
  }

  .p-slidemenu .p-slidemenu-backward {
    color: #4b5563;
    padding: .75rem 1.25rem;
  }

  .p-steps .p-steps-item .p-menuitem-link {
    background: #fff;
    border-radius: 6px;
    transition: box-shadow .2s;
  }

  .p-steps .p-steps-item .p-menuitem-link .p-steps-number {
    color: #4b5563;
    z-index: 1;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 50%;
    min-width: 2rem;
    height: 2rem;
    font-size: 1.143rem;
    line-height: 2rem;
  }

  .p-steps .p-steps-item .p-menuitem-link .p-steps-title {
    color: #6b7280;
    margin-top: .5rem;
  }

  .p-steps .p-steps-item .p-menuitem-link:not(.p-disabled):focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-steps .p-steps-item.p-highlight .p-steps-title {
    color: #4b5563;
    font-weight: 700;
  }

  .p-steps .p-steps-item:before {
    content: " ";
    border-top: 1px solid #e5e7eb;
    width: 100%;
    margin-top: -1rem;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
  }

  .p-tabmenu .p-tabmenu-nav {
    background: #fff;
    border: 0 solid #e5e7eb;
    border-bottom-width: 2px;
  }

  .p-tabmenu .p-tabmenu-nav .p-tabmenuitem {
    margin-right: 0;
  }

  .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link {
    color: #6b7280;
    background: #fff;
    border: 0 solid #0000;
    border-bottom: 2px solid #e5e7eb;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    height: calc(100% + 2px);
    margin: 0 0 -2px;
    padding: 1.25rem;
    font-weight: 700;
    transition: box-shadow .2s;
  }

  .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link .p-menuitem-icon {
    margin-right: .5rem;
  }

  .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link:not(.p-disabled):focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: inset 0 0 0 .2rem #c7d2fe;
  }

  .p-tabmenu .p-tabmenu-nav .p-tabmenuitem:not(.p-highlight):not(.p-disabled):hover .p-menuitem-link {
    color: #6b7280;
    background: #fff;
    border-color: #9ca3af;
  }

  .p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link {
    color: #6366f1;
    background: #fff;
    border-color: #6366f1;
  }

  .p-tieredmenu {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    width: 12.5rem;
    padding: .5rem 0;
  }

  .p-tieredmenu.p-tieredmenu-overlay {
    background: #fff;
    border: 0;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-tieredmenu .p-tieredmenu-root-list {
    outline: 0;
  }

  .p-tieredmenu .p-submenu-list {
    background: #fff;
    border: 0;
    padding: .5rem 0;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-tieredmenu .p-menuitem > .p-menuitem-content {
    color: #4b5563;
    border-radius: 0;
    transition: box-shadow .2s;
  }

  .p-tieredmenu .p-menuitem > .p-menuitem-content .p-menuitem-link {
    color: #4b5563;
    -webkit-user-select: none;
    user-select: none;
    padding: .75rem 1.25rem;
  }

  .p-tieredmenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-tieredmenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-menuitem-icon {
    color: #6b7280;
    margin-right: .5rem;
  }

  .p-tieredmenu .p-menuitem > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-tieredmenu .p-menuitem.p-highlight > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4338ca;
  }

  .p-tieredmenu .p-menuitem.p-highlight.p-focus > .p-menuitem-content {
    background: #6366f13d;
  }

  .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content {
    color: #4b5563;
    background: #e5e7eb;
  }

  .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-text, .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-menuitem-icon, .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled).p-focus > .p-menuitem-content .p-menuitem-link .p-submenu-icon {
    color: #4b5563;
  }

  .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-text {
    color: #4b5563;
  }

  .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-menuitem-icon, .p-tieredmenu .p-menuitem:not(.p-highlight):not(.p-disabled) > .p-menuitem-content:hover .p-menuitem-link .p-submenu-icon {
    color: #6b7280;
  }

  .p-tieredmenu .p-menuitem-separator {
    border-top: 1px solid #e5e7eb;
    margin: .25rem 0;
  }

  .p-tieredmenu .p-submenu-icon {
    font-size: .875rem;
  }

  .p-tieredmenu .p-submenu-icon.p-icon {
    width: .875rem;
    height: .875rem;
  }

  .p-inline-message {
    border-radius: 6px;
    margin: 0;
    padding: .75rem;
  }

  .p-inline-message.p-inline-message-info {
    color: #3b82f6;
    background: #dbeafeb3;
    border: 0 solid #3b82f6;
  }

  .p-inline-message.p-inline-message-info .p-inline-message-icon {
    color: #3b82f6;
  }

  .p-inline-message.p-inline-message-success {
    color: #1ea97c;
    background: #e4f8f0b3;
    border: 0 solid #1ea97c;
  }

  .p-inline-message.p-inline-message-success .p-inline-message-icon {
    color: #1ea97c;
  }

  .p-inline-message.p-inline-message-warn {
    color: #cc8925;
    background: #fff2e2b3;
    border: 0 solid #cc8925;
  }

  .p-inline-message.p-inline-message-warn .p-inline-message-icon {
    color: #cc8925;
  }

  .p-inline-message.p-inline-message-error {
    color: #ff5757;
    background: #ffe7e6b3;
    border: 0 solid #ff5757;
  }

  .p-inline-message.p-inline-message-error .p-inline-message-icon {
    color: #ff5757;
  }

  .p-inline-message .p-inline-message-icon {
    margin-right: .5rem;
    font-size: 1rem;
  }

  .p-inline-message .p-inline-message-icon.p-icon {
    width: 1rem;
    height: 1rem;
  }

  .p-inline-message .p-inline-message-text {
    font-size: 1rem;
  }

  .p-inline-message.p-inline-message-icon-only .p-inline-message-icon {
    margin-right: 0;
  }

  .p-message {
    border-radius: 6px;
    margin: 1rem 0;
  }

  .p-message .p-message-wrapper {
    padding: 1.25rem 1.75rem;
  }

  .p-message .p-message-close {
    background: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-message .p-message-close:hover {
    background: #ffffff80;
  }

  .p-message .p-message-close:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-message.p-message-info {
    color: #3b82f6;
    background: #dbeafeb3;
    border: 0 solid #3b82f6;
    border-left-width: 6px;
  }

  .p-message.p-message-info .p-message-icon, .p-message.p-message-info .p-message-close {
    color: #3b82f6;
  }

  .p-message.p-message-success {
    color: #1ea97c;
    background: #e4f8f0b3;
    border: 0 solid #1ea97c;
    border-left-width: 6px;
  }

  .p-message.p-message-success .p-message-icon, .p-message.p-message-success .p-message-close {
    color: #1ea97c;
  }

  .p-message.p-message-warn {
    color: #cc8925;
    background: #fff2e2b3;
    border: 0 solid #cc8925;
    border-left-width: 6px;
  }

  .p-message.p-message-warn .p-message-icon, .p-message.p-message-warn .p-message-close {
    color: #cc8925;
  }

  .p-message.p-message-error {
    color: #ff5757;
    background: #ffe7e6b3;
    border: 0 solid #ff5757;
    border-left-width: 6px;
  }

  .p-message.p-message-error .p-message-icon, .p-message.p-message-error .p-message-close {
    color: #ff5757;
  }

  .p-message .p-message-text {
    font-size: 1rem;
    font-weight: 500;
  }

  .p-message .p-message-icon {
    margin-right: .5rem;
    font-size: 1.5rem;
  }

  .p-message .p-message-icon.p-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .p-message .p-message-summary {
    font-weight: 700;
  }

  .p-message .p-message-detail {
    margin-left: .5rem;
  }

  .p-toast {
    opacity: 1;
  }

  .p-toast .p-toast-message {
    border-radius: 6px;
    margin: 0 0 1rem;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-toast .p-toast-message .p-toast-message-content {
    padding: 1rem;
  }

  .p-toast .p-toast-message .p-toast-message-content .p-toast-message-text {
    margin: 0 0 0 1rem;
  }

  .p-toast .p-toast-message .p-toast-message-content .p-toast-message-icon {
    font-size: 2rem;
  }

  .p-toast .p-toast-message .p-toast-message-content .p-toast-message-icon.p-icon {
    width: 2rem;
    height: 2rem;
  }

  .p-toast .p-toast-message .p-toast-message-content .p-toast-summary {
    font-weight: 700;
  }

  .p-toast .p-toast-message .p-toast-message-content .p-toast-detail {
    margin: .5rem 0 0;
  }

  .p-toast .p-toast-message .p-toast-icon-close {
    background: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-toast .p-toast-message .p-toast-icon-close:hover {
    background: #ffffff80;
  }

  .p-toast .p-toast-message .p-toast-icon-close:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-toast .p-toast-message.p-toast-message-info {
    color: #3b82f6;
    background: #dbeafeb3;
    border: 0 solid #3b82f6;
    border-left-width: 6px;
  }

  .p-toast .p-toast-message.p-toast-message-info .p-toast-message-icon, .p-toast .p-toast-message.p-toast-message-info .p-toast-icon-close {
    color: #3b82f6;
  }

  .p-toast .p-toast-message.p-toast-message-success {
    color: #1ea97c;
    background: #e4f8f0b3;
    border: 0 solid #1ea97c;
    border-left-width: 6px;
  }

  .p-toast .p-toast-message.p-toast-message-success .p-toast-message-icon, .p-toast .p-toast-message.p-toast-message-success .p-toast-icon-close {
    color: #1ea97c;
  }

  .p-toast .p-toast-message.p-toast-message-warn {
    color: #cc8925;
    background: #fff2e2b3;
    border: 0 solid #cc8925;
    border-left-width: 6px;
  }

  .p-toast .p-toast-message.p-toast-message-warn .p-toast-message-icon, .p-toast .p-toast-message.p-toast-message-warn .p-toast-icon-close {
    color: #cc8925;
  }

  .p-toast .p-toast-message.p-toast-message-error {
    color: #ff5757;
    background: #ffe7e6b3;
    border: 0 solid #ff5757;
    border-left-width: 6px;
  }

  .p-toast .p-toast-message.p-toast-message-error .p-toast-message-icon, .p-toast .p-toast-message.p-toast-message-error .p-toast-icon-close {
    color: #ff5757;
  }

  .p-galleria .p-galleria-close {
    color: #f9fafb;
    background: none;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    margin: .5rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-galleria .p-galleria-close .p-galleria-close-icon {
    font-size: 2rem;
  }

  .p-galleria .p-galleria-close .p-galleria-close-icon.p-icon {
    width: 2rem;
    height: 2rem;
  }

  .p-galleria .p-galleria-close:hover {
    color: #f9fafb;
    background: #ffffff1a;
  }

  .p-galleria .p-galleria-item-nav {
    color: #f9fafb;
    background: none;
    border-radius: 6px;
    width: 4rem;
    height: 4rem;
    margin: 0 .5rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon, .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon {
    font-size: 2rem;
  }

  .p-galleria .p-galleria-item-nav .p-galleria-item-prev-icon.p-icon, .p-galleria .p-galleria-item-nav .p-galleria-item-next-icon.p-icon {
    width: 2rem;
    height: 2rem;
  }

  .p-galleria .p-galleria-item-nav:not(.p-disabled):hover {
    color: #f9fafb;
    background: #ffffff1a;
  }

  .p-galleria .p-galleria-caption {
    color: #f9fafb;
    background: #00000080;
    padding: 1rem;
  }

  .p-galleria .p-galleria-indicators {
    padding: 1rem;
  }

  .p-galleria .p-galleria-indicators .p-galleria-indicator button {
    background-color: #d1d5db;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-galleria .p-galleria-indicators .p-galleria-indicator button:hover {
    background: #9ca3af;
  }

  .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-galleria.p-galleria-indicators-bottom .p-galleria-indicator, .p-galleria.p-galleria-indicators-top .p-galleria-indicator {
    margin-right: .5rem;
  }

  .p-galleria.p-galleria-indicators-left .p-galleria-indicator, .p-galleria.p-galleria-indicators-right .p-galleria-indicator {
    margin-bottom: .5rem;
  }

  .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators {
    background: #00000080;
  }

  .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button {
    background: #fff6;
  }

  .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator button:hover {
    background: #fff9;
  }

  .p-galleria.p-galleria-indicator-onitem .p-galleria-indicators .p-galleria-indicator.p-highlight button {
    color: #4338ca;
    background: #eef2ff;
  }

  .p-galleria .p-galleria-thumbnail-container {
    background: #000000e6;
    padding: 1rem .25rem;
  }

  .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev, .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next {
    color: #f9fafb;
    background-color: #0000;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    margin: .5rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-prev:hover, .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-next:hover {
    color: #f9fafb;
    background: #ffffff1a;
  }

  .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content {
    transition: box-shadow .2s;
  }

  .p-galleria .p-galleria-thumbnail-container .p-galleria-thumbnail-item-content:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-galleria-mask, .p-image-mask {
    --maskbg: #000000e6;
  }

  .p-image-preview-indicator {
    color: #f8f9fa;
    background-color: #0000;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-image-preview-indicator .p-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .p-image-preview-container:hover > .p-image-preview-indicator {
    background-color: #00000080;
  }

  .p-image-toolbar {
    padding: 1rem;
  }

  .p-image-action.p-link {
    color: #f8f9fa;
    background-color: #0000;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    margin-right: .5rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-image-action.p-link:last-child {
    margin-right: 0;
  }

  .p-image-action.p-link:hover {
    color: #f8f9fa;
    background-color: #ffffff1a;
  }

  .p-image-action.p-link span {
    font-size: 1.5rem;
  }

  .p-image-action.p-link .p-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .p-avatar {
    background-color: #e5e7eb;
    border-radius: 6px;
  }

  .p-avatar.p-avatar-lg {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }

  .p-avatar.p-avatar-lg .p-avatar-icon {
    font-size: 1.5rem;
  }

  .p-avatar.p-avatar-xl {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }

  .p-avatar.p-avatar-xl .p-avatar-icon {
    font-size: 2rem;
  }

  .p-avatar-circle {
    border-radius: 50%;
  }

  .p-avatar-group .p-avatar {
    border: 2px solid #fff;
  }

  .p-chip {
    color: #4b5563;
    background-color: #e5e7eb;
    border-radius: 16px;
    padding: 0 .75rem;
  }

  .p-chip .p-chip-text {
    margin-top: .375rem;
    margin-bottom: .375rem;
    line-height: 1.5;
  }

  .p-chip .p-chip-icon {
    margin-right: .5rem;
  }

  .p-chip img {
    width: 2.25rem;
    height: 2.25rem;
    margin-left: -.75rem;
    margin-right: .5rem;
  }

  .p-chip .p-chip-remove-icon {
    border-radius: 6px;
    margin-left: .5rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
  }

  .p-chip .p-chip-remove-icon:focus-visible {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-chip .p-chip-remove-icon:focus {
    outline: 0;
  }

  .p-scrolltop {
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    transition: background-color .2s, color .2s, box-shadow .2s;
    box-shadow: 0 2px 12px #0000001a;
  }

  .p-scrolltop.p-link {
    background: #000000b3;
  }

  .p-scrolltop.p-link:hover {
    background: #000c;
  }

  .p-scrolltop .p-scrolltop-icon {
    color: #f9fafb;
    font-size: 1.5rem;
  }

  .p-scrolltop .p-scrolltop-icon.p-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .p-skeleton {
    background-color: #e5e7eb;
    border-radius: 6px;
  }

  .p-skeleton:after {
    background: linear-gradient(90deg, #fff0, #fff6, #fff0);
  }

  .p-tag .p-tag-icon {
    margin-right: .25rem;
    font-size: .75rem;
  }

  .p-tag .p-tag-icon.p-icon {
    width: .75rem;
    height: .75rem;
  }

  .p-inplace .p-inplace-display {
    border-radius: 6px;
    padding: .75rem;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-inplace .p-inplace-display:not(.p-disabled):hover {
    color: #4b5563;
    background: #f3f4f6;
  }

  .p-inplace .p-inplace-display:focus {
    outline-offset: 0;
    outline: 0;
    box-shadow: 0 0 0 .2rem #c7d2fe;
  }

  .p-metergroup .p-metergroup-meter-container {
    background: #e5e7eb;
    border-radius: 6px;
  }

  .p-metergroup .p-metergroup-meter {
    background: #6366f1;
    border: 0;
  }

  .p-metergroup .p-metergroup-label-list .p-metergroup-label-list-item {
    line-height: 1.5rem;
  }

  .p-metergroup .p-metergroup-label-list .p-metergroup-label-type {
    background: #6366f1;
    border-radius: 100%;
    width: .5rem;
    height: .5rem;
    margin-right: .5rem;
  }

  .p-metergroup .p-metergroup-label-list .p-metergroup-label {
    margin-right: 1rem;
  }

  .p-metergroup .p-metergroup-label-list .p-metergroup-label-icon {
    width: 1rem;
    height: 1rem;
    margin-right: .5rem;
  }

  .p-metergroup.p-metergroup-horizontal .p-metergroup-meter-container {
    height: .5rem;
  }

  .p-metergroup.p-metergroup-horizontal .p-metergroup-meter:first-of-type {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }

  .p-metergroup.p-metergroup-horizontal .p-metergroup-meter:last-of-type {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }

  .p-metergroup.p-metergroup-horizontal .p-metergroup-label-list-start {
    margin-bottom: 1rem;
  }

  .p-metergroup.p-metergroup-horizontal .p-metergroup-label-list-end {
    margin-top: 1rem;
  }

  .p-metergroup.p-metergroup-vertical .p-metergroup-meter-container {
    width: .5rem;
    height: 100%;
  }

  .p-metergroup.p-metergroup-vertical .p-metergroup-meter:first-of-type {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }

  .p-metergroup.p-metergroup-vertical .p-metergroup-meter:last-of-type {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
  }

  .p-metergroup.p-metergroup-vertical .p-metergroup-label-list:not(.p-metergroup-label-list-start) {
    margin-left: 1rem;
  }

  .p-progressbar {
    background: #e5e7eb;
    border: 0;
    border-radius: 6px;
    height: 1.5rem;
  }

  .p-progressbar .p-progressbar-value {
    background: #6366f1;
    border: 0;
    margin: 0;
  }

  .p-progressbar .p-progressbar-label {
    color: #fff;
    line-height: 1.5rem;
  }

  .p-terminal {
    color: #4b5563;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 1.25rem;
  }

  .p-terminal .p-terminal-input {
    font-family: var(--font-family);
    font-feature-settings: var(--font-feature-settings, normal);
    font-size: 1rem;
  }

  .p-badge {
    color: #fff;
    background: #6366f1;
    min-width: 1.5rem;
    height: 1.5rem;
    font-size: .75rem;
    font-weight: 700;
    line-height: 1.5rem;
  }

  .p-badge.p-badge-secondary {
    color: #fff;
    background-color: #64748b;
  }

  .p-badge.p-badge-success {
    color: #fff;
    background-color: #22c55e;
  }

  .p-badge.p-badge-info {
    color: #fff;
    background-color: #0ea5e9;
  }

  .p-badge.p-badge-warning {
    color: #fff;
    background-color: #f97316;
  }

  .p-badge.p-badge-danger {
    color: #fff;
    background-color: #ef4444;
  }

  .p-badge.p-badge-lg {
    min-width: 2.25rem;
    height: 2.25rem;
    font-size: 1.125rem;
    line-height: 2.25rem;
  }

  .p-badge.p-badge-xl {
    min-width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    line-height: 3rem;
  }

  .p-tag {
    color: #fff;
    background: #6366f1;
    border-radius: 6px;
    padding: .25rem .4rem;
    font-size: .75rem;
    font-weight: 700;
  }

  .p-tag.p-tag-success {
    color: #fff;
    background-color: #22c55e;
  }

  .p-tag.p-tag-info {
    color: #fff;
    background-color: #0ea5e9;
  }

  .p-tag.p-tag-warning {
    color: #fff;
    background-color: #f97316;
  }

  .p-tag.p-tag-danger {
    color: #fff;
    background-color: #ef4444;
  }

  .p-button-label {
    font-weight: 700;
  }

  .p-selectbutton > .p-button, .p-togglebutton.p-button, .p-accordion .p-accordion-header .p-accordion-header-link, .p-tabview .p-tabview-nav li .p-tabview-nav-link, .p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link {
    transition: background-color .2s, border-color .2s, box-shadow .2s;
  }

  .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button, .p-galleria .p-galleria-indicators .p-galleria-indicator.p-highlight button {
    background-color: #6366f1;
  }

  .p-button:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #b1b3f8, 0 1px 2px #000;
  }

  .p-button.p-button-secondary:enabled:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #b0b9c6, 0 1px 2px #000;
  }

  .p-button.p-button-success:enabled:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #88eaac, 0 1px 2px #000;
  }

  .p-button.p-button-info:enabled:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #83d3f8, 0 1px 2px #000;
  }

  .p-button.p-button-warning:enabled:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #fcb98b, 0 1px 2px #000;
  }

  .p-button.p-button-help:enabled:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #d4aafb, 0 1px 2px #000;
  }

  .p-button.p-button-danger:enabled:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #f7a2a2, 0 1px 2px #000;
  }

  .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-top > td {
    box-shadow: inset 0 2px #6366f1;
  }

  .p-datatable .p-datatable-tbody > tr.p-datatable-dragpoint-bottom > td {
    box-shadow: inset 0 -2px #6366f1;
  }

  .p-speeddial-item.p-focus > .p-speeddial-action {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #b1b3f8, 0 1px 2px #000;
  }

  .p-toast-message {
    backdrop-filter: blur(10px);
  }

  .p-inline-message-text {
    font-weight: 500;
  }

  .p-picklist-buttons .p-button, .p-orderlist-controls .p-button {
    transition: opacity .2s, background-color .2s, color .2s, border-color .2s, box-shadow .2s;
  }

  .p-steps .p-steps-item.p-highlight .p-steps-number, .p-stepper .p-stepper-header.p-highlight .p-stepper-number {
    color: #fff;
    background: #6366f1;
  }
}
