@charset "UTF-8";
.hbs-unified-dropzone {
  border: 2px dashed #0087f7;
  border-radius: 8px;
  background: white;
  min-height: 150px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.hbs-unified-dropzone:hover {
  border-color: #0056b3;
  background-color: #f8f9fa;
}
.hbs-unified-dropzone.dz-drag-hover {
  border-color: #0056b3;
  background-color: #e7f3ff;
}
.hbs-unified-dropzone .dz-message {
  text-align: center;
  margin: 0;
  width: 100%;
}
.hbs-unified-dropzone .dz-message .hbs-instruction-text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}
.hbs-unified-dropzone .dz-message .hbs-accepted-formats {
  font-size: 14px;
  font-weight: 500;
  color: #28a745;
  margin-bottom: 8px;
  display: block;
}
.hbs-unified-dropzone .dz-message .hbs-rejected-formats {
  font-size: 13px;
  color: #dc3545;
  margin-top: 4px;
}
.hbs-unified-dropzone .dz-preview {
  margin: 10px 0;
  width: 100%;
  max-width: 100%;
}
.hbs-unified-dropzone .hbs-file-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  gap: 12px;
}
.hbs-unified-dropzone .hbs-file-preview > .hbs-file-info,
.hbs-unified-dropzone .hbs-file-preview > .hbs-file-actions {
  display: flex;
  align-items: center;
}
.hbs-unified-dropzone .hbs-file-preview:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.hbs-unified-dropzone .hbs-file-preview .hbs-file-info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}
.hbs-unified-dropzone .hbs-file-preview .hbs-file-info .hbs-file-name {
  font-weight: 500;
  color: #111827;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.hbs-unified-dropzone .hbs-file-preview .hbs-file-info .hbs-file-meta {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.3;
}
.hbs-unified-dropzone .hbs-file-preview .hbs-file-info .hbs-file-meta .hbs-file-type {
  font-weight: 600;
  text-transform: uppercase;
  color: #4b5563;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.hbs-unified-dropzone .hbs-file-preview .hbs-file-info .hbs-file-meta .hbs-file-size {
  color: #6b7280;
}
.hbs-unified-dropzone .hbs-file-preview .hbs-file-actions {
  flex: 0 0 auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}
.hbs-unified-dropzone .hbs-file-preview .hbs-file-actions .hbs-preview-btn {
  background: transparent;
  border: none;
  color: #428bca;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 6px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 400;
}
.hbs-unified-dropzone .hbs-file-preview .hbs-file-actions .hbs-preview-btn:hover {
  background-color: #e7f3ff;
  color: #357abd;
  transform: scale(1.1);
}
.hbs-unified-dropzone .hbs-file-preview .hbs-file-actions .hbs-preview-btn:active {
  transform: scale(0.95);
}
.hbs-unified-dropzone .hbs-file-preview .hbs-file-actions .hbs-preview-btn:focus {
  outline: 2px solid #428bca;
  outline-offset: 2px;
}
.hbs-unified-dropzone .hbs-file-preview .hbs-file-actions .hbs-remove-btn {
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 6px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 300;
}
.hbs-unified-dropzone .hbs-file-preview .hbs-file-actions .hbs-remove-btn:hover {
  background-color: #fee2e2;
  color: #dc2626;
  transform: scale(1.1);
}
.hbs-unified-dropzone .hbs-file-preview .hbs-file-actions .hbs-remove-btn:active {
  transform: scale(0.95);
}
.hbs-unified-dropzone .hbs-file-preview .hbs-file-actions .hbs-remove-btn:focus {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}
.hbs-unified-dropzone .hbs-file-preview .dz-error-message {
  flex: 1 1 100%;
  order: 10;
  margin-top: 0;
  padding: 8px;
  background: #f8d7da;
  color: #721c24;
  border-radius: 4px;
  font-size: 12px;
}
.hbs-unified-dropzone .hbs-file-preview .dz-progress {
  flex: 1 1 100%;
  order: 10;
  margin-top: 10px !important;
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  overflow: hidden;
}
.hbs-unified-dropzone .hbs-file-preview .dz-progress .dz-upload {
  display: block;
  height: 100%;
  background: #0087f7;
  transition: width 0.3s ease;
}
.hbs-unified-dropzone .dz-success-mark,
.hbs-unified-dropzone .dz-error-mark {
  display: none;
}
.hbs-unified-dropzone.dz-started .dz-message {
  display: none;
}
.hbs-unified-dropzone.dz-started {
  justify-content: flex-start;
  align-items: stretch;
}

.hbs-chat-dropzone {
  min-height: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  display: none !important;
}
.hbs-chat-dropzone .dz-message {
  display: none !important;
}
.hbs-chat-dropzone .dz-preview,
.hbs-chat-dropzone .dz-preview * {
  display: none !important;
}
.hbs-chat-dropzone.dz-started {
  display: none !important;
}

.hbs-chat-file-previews {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
}
.hbs-chat-file-previews .hbs-chat-file-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  margin-bottom: 10px;
  margin-top: 10px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 13px;
  max-width: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.hbs-chat-file-previews .hbs-chat-file-preview:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #428bca 0%, #357abd 100%);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(66, 139, 202, 0.2);
}
.hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-name {
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 1.4;
}
.hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.3;
}
.hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-meta .hbs-chat-file-type {
  font-weight: 600;
  text-transform: uppercase;
  color: #4b5563;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-meta .hbs-chat-file-separator {
  color: #d1d5db;
  font-weight: 300;
}
.hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-meta .hbs-chat-file-size {
  color: #6b7280;
}
.hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-remove {
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 6px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-left: 12px;
  font-weight: 300;
}
.hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-remove:hover {
  background-color: #fee2e2;
  color: #dc2626;
  transform: scale(1.1);
}
.hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-remove:active {
  transform: scale(0.95);
}
.hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-remove:focus {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

.ps_fm_message-action-files {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 5px;
}
.ps_fm_message-action-files > .ps_fm_file-attachment,
.ps_fm_message-action-files > .ps_fm-file-select-count {
  display: inline-flex;
  align-items: center;
}
.ps_fm_message-action-files .ps_fm_file-attachment {
  cursor: pointer;
  color: #428bca;
  transition: all 0.2s ease;
  padding: 4px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
}
.ps_fm_message-action-files .ps_fm_file-attachment:hover {
  color: #68a7de;
  background-color: rgba(66, 139, 202, 0.1);
}
.ps_fm_message-action-files .ps_fm_file-attachment:active {
  transform: scale(0.95);
}
.ps_fm_message-action-files .ps_fm_file-attachment i {
  font-size: 16px;
}
.ps_fm_message-action-files .ps_fm-file-select-count {
  font-size: 12px;
  color: #6c757d;
  margin-left: 8px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.hbs-chat-file-previews ~ .ps_fm_message-action-files .ps_fm-file-select-count {
  display: none;
}
.ps_fm_message-action-files:has(.hbs-chat-file-previews:not([style*="display: none"])) .ps_fm-file-select-count {
  display: none;
}
.ps_fm_message-action-files .ps_fm_button-send {
  align-self: flex-end;
  margin-top: 10px;
  margin-left: auto;
}

@media (max-width: 768px) {
  .hbs-unified-dropzone {
    padding: 15px;
  }
  .hbs-unified-dropzone .hbs-file-preview {
    flex-direction: column;
    align-items: flex-start;
  }
  .hbs-unified-dropzone .hbs-file-preview .hbs-file-actions {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }
  .hbs-unified-dropzone .hbs-file-preview .hbs-file-actions .hbs-remove-btn {
    width: 100%;
  }
  .hbs-chat-file-previews .hbs-chat-file-preview {
    padding: 8px 10px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-info {
    gap: 8px;
  }
  .hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-icon {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
  .hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-name {
    font-size: 12px;
    max-width: 180px;
  }
  .hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-meta {
    font-size: 10px;
  }
  .hbs-chat-file-previews .hbs-chat-file-preview .hbs-chat-file-remove {
    width: 22px;
    height: 22px;
    font-size: 18px;
  }
  .ps_fm_message-action-files {
    flex-wrap: wrap;
  }
}
.hbs-pdf-preview-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hbs-pdf-preview-modal .hbs-pdf-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(2px);
}
.hbs-pdf-preview-modal .hbs-pdf-preview-container {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.hbs-pdf-preview-modal .hbs-pdf-preview-container .hbs-pdf-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
}
.hbs-pdf-preview-modal .hbs-pdf-preview-container .hbs-pdf-preview-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hbs-pdf-preview-modal .hbs-pdf-preview-container .hbs-pdf-preview-header .hbs-pdf-preview-close {
  background: transparent;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  padding: 4px 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.hbs-pdf-preview-modal .hbs-pdf-preview-container .hbs-pdf-preview-header .hbs-pdf-preview-close:hover {
  background-color: #f3f4f6;
  color: #111827;
}
.hbs-pdf-preview-modal .hbs-pdf-preview-container .hbs-pdf-preview-header .hbs-pdf-preview-close:focus {
  outline: 2px solid #428bca;
  outline-offset: 2px;
}
.hbs-pdf-preview-modal .hbs-pdf-preview-container .hbs-pdf-preview-content {
  flex: 1;
  overflow: auto;
  padding: 24px;
  min-height: 400px;
  max-height: calc(90vh - 80px);
}
.hbs-pdf-preview-modal .hbs-pdf-preview-container .hbs-pdf-preview-content .hbs-pdf-embedder-wrapper {
  width: 100%;
  height: 100%;
  min-height: 400px;
}
.hbs-pdf-preview-modal .hbs-pdf-preview-container .hbs-pdf-preview-content iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
  border-radius: 8px;
}

.dropzone {
  border: 2px dashed #0087f7;
  border-radius: 5px;
  background: white;
  min-height: 150px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.dropzone:hover {
  border-color: #0056b3;
}
.dropzone .dz-message {
  text-align: center;
  margin: 0;
  color: #666;
}
.dropzone .dz-preview {
  margin: 10px;
}
.dropzone .dz-details {
  color: #666;
}
.dropzone .dz-remove {
  color: #dc3545;
  text-decoration: none;
  margin-left: 10px;
}
.dropzone .dz-remove:hover {
  text-decoration: underline;
}

.hackybarra_wizard_one_message > p {
  margin: 1em 0 0 0;
  padding: 1em;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.container.entry-content.ps_fm-project-detail {
  position: relative;
  min-height: 200px;
}

.hbs-project-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px 4px 0 0;
  font-size: 16px;
  color: #333;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 10;
}

.hbs-error > p {
  border: 1px dotted #e62727;
}

.hbs-details-wait {
  text-align: center;
  margin: 0 0 1em 0;
}

.hbs-nda-consent {
  margin: 1em 0;
  padding: 1em;
  background: rgba(0, 0, 0, 0.1);
}
.hbs-nda-consent > p {
  text-align: center;
  margin-bottom: 0.5em;
}
.hbs-nda-consent > p > span {
  display: inline-block;
  padding: 0.5em 2em;
  border-radius: 2em;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.hbs-nda-consent-wait {
  margin: 1em 0;
  padding: 1em;
  background: rgba(0, 0, 0, 0.1);
}
.hbs-nda-consent-wait > p {
  text-align: center;
  margin-bottom: 0.5em;
}
.hbs-nda-consent-wait > p > span {
  display: inline-block;
  padding: 0.5em 2em;
  border-radius: 2em;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.hbs-approved-activities {
  width: 80%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1em;
  margin: 0 auto 1em auto;
}

.hbs-prohibited-activities {
  width: 80%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1em;
  margin: 0 auto 1em auto;
}

.hbs-selected-activities {
  width: 80%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1em;
  margin: 0 auto 1em auto;
}

.hbs-project-details-error {
  width: 80%;
  border: 1px dotted #e62727;
  padding: 1em;
}

.hbs-registeration-page-selector {
  display: none !important;
}

.hbs-registeration-page-selector-disabled {
  display: none !important;
}

.ps_fm_bid-list .media-heading {
  margin: 0 0 7px 0;
}

.ps_fm_bid-list .ps_fm_pull-left > p {
  margin: 7px 0 0 0;
}

.hbs-associate-badge {
  padding: 4px 15px;
  margin: 0 20px 0 0;
  background: var(--e-global-color-accent);
  border-radius: 2em;
}

.hbs-customer-company {
  display: block;
}

.hbs-customer-company-logo {
  display: block;
}

.hbs-edit-project-wait {
  margin: 1em 0;
  padding: 1em;
  border: 1px dotted rgba(0, 0, 0, 0.1);
  text-align: center;
}

.hbs-edit-project-error {
  margin: 1em 0;
  padding: 1em;
  border: 1px dotted #ee2626;
  text-align: center;
}

.hbs-tester-meta {
  margin: 0;
  padding: 5px 0;
}

.ps_fm_conversations-list li {
  padding: 16px 14px !important;
  min-height: 70px;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease;
}

.ps_fm_conversations-prifile {
  float: none !important;
  flex-shrink: 0;
  width: auto !important;
  height: auto !important;
  margin-right: 14px;
  padding-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ps_fm_conversations-prifile img {
  margin: 0 !important;
}

.ps_fm_conversations-name {
  float: none !important;
  flex: 1;
  min-width: 0;
  width: auto !important;
  height: auto !important;
  padding-left: 0;
  padding-right: 12px;
  line-height: 1.5;
  overflow: visible;
  white-space: normal;
}
.ps_fm_conversations-name br {
  display: none !important;
}
.ps_fm_conversations-name b {
  display: block;
  margin-bottom: 6px;
  line-height: 1.4;
  font-weight: 600;
  color: #333;
}
.ps_fm_conversations-name .ps_fm_last-message {
  display: block;
  line-height: 1.5;
  margin-top: 0;
  color: #666;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ps_fm_conversations-time-action {
  float: none !important;
  flex-shrink: 0;
  width: auto !important;
  height: auto !important;
  padding-left: 8px;
  line-height: 1.5;
  text-align: right;
}
.ps_fm_conversations-time-action .ctime {
  display: block;
  margin-bottom: 6px;
  line-height: 1.4;
  font-size: 12px;
  color: #999;
}

.ps_fm_contacts-container .ps_fm_search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
.ps_fm_contacts-container .ps_fm_search-bar > span {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.ps_fm_filters-toggle {
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #555;
  font-size: 16px;
  line-height: 22px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: capitalize;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.ps_fm_filters-toggle:hover, .ps_fm_filters-toggle:focus {
  color: #999;
  background: none !important;
}
.ps_fm_filters-toggle .ps_fm_triangle-down {
  position: relative;
  display: inline-block;
  margin-left: 5px;
}
.ps_fm_filters-toggle .ps_fm_triangle-down::after {
  content: "\f0d7";
  font-family: FontAwesome;
  color: #555;
  font-size: 14px;
  display: inline-block;
  transform: translateY(1px);
  transition: transform 0.2s ease, color 0.2s ease;
}
.ps_fm_filters-toggle:hover .ps_fm_triangle-down::after, .ps_fm_filters-toggle:focus .ps_fm_triangle-down::after {
  color: #999;
}
.ps_fm_filters-toggle[aria-expanded=true] .ps_fm_triangle-down::after, .ps_fm_filters-toggle.active .ps_fm_triangle-down::after {
  transform: translateY(1px) rotate(180deg);
}

.ps_fm_button-link.ps_fm_filters-toggle.ps_fm_link-action {
  color: #427b08 !important;
}

.ps_fm_search-toggle {
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  font-size: 18px;
  color: #555;
  cursor: pointer;
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.ps_fm_search-toggle:hover, .ps_fm_search-toggle:focus {
  background: none !important;
  color: #999;
}
.ps_fm_search-toggle i {
  font-size: 18px;
}

.ps_fm_popover-filters {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.ps_fm_popover-filters.shown {
  display: block;
}
.ps_fm_popover-filters .ps_fm_filters-scroll-wrap {
  background-color: #fff;
  position: absolute;
  top: 65px;
  z-index: 3;
  padding: 0 20px 15px;
  border-radius: 5px;
  min-width: 185px;
  box-sizing: border-box;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  max-height: -moz-fit-content !important;
  max-height: fit-content !important;
}
.ps_fm_popover-filters ul:first-child,
.ps_fm_popover-filters ul:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.ps_fm_popover-filters ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-image: none;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 15px;
}
.ps_fm_popover-filters::before {
  content: "\f0d8";
  font-family: FontAwesome;
  color: #fff;
  font-size: 40px;
  position: absolute;
  top: 47px;
  left: 40px;
  z-index: 4;
  text-shadow: 0 -4px 7px rgba(0, 0, 0, 0.04);
}
.ps_fm_popover-filters ul li {
  margin-top: 15px;
  line-height: 100%;
  font-size: 13px;
}
.ps_fm_popover-filters ul li.ps_fm_active-filter a {
  color: #427b08;
}
.ps_fm_popover-filters ul a {
  display: block;
  font-size: 13px;
  text-transform: capitalize;
}

.ps_fm_contacts-container .search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.ps_fm_contacts-container .search-box .ps_fm_input-container {
  flex: 1;
  display: flex;
  align-items: center;
  border: none;
}
.ps_fm_contacts-container .search-box .ps_fm_input-container input {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ps_fm_contacts-container .search-box .ps_fm_input-container input::-moz-placeholder {
  color: #adb5bd;
}
.ps_fm_contacts-container .search-box .ps_fm_input-container input::placeholder {
  color: #adb5bd;
}
.ps_fm_contacts-container .search-box .ps_fm_input-container input:focus {
  outline: none;
  border-color: #427b08;
  box-shadow: 0 0 0 3px rgba(29, 191, 115, 0.1);
}
.ps_fm_contacts-container .search-box .ps_fm_button-link.ps_fm_close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px !important;
  background: #427b08;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.ps_fm_contacts-container .search-box .ps_fm_button-link.ps_fm_close:hover, .ps_fm_contacts-container .search-box .ps_fm_button-link.ps_fm_close:focus {
  background: #17a862;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(29, 191, 115, 0.2);
}
.ps_fm_contacts-container .search-box .ps_fm_button-link.ps_fm_close:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(29, 191, 115, 0.2);
}

.ps_fm_button-send.ps_fm_pull-right,
.ps_fm_message-action-files .ps_fm_button-send.ps_fm_pull-right {
  padding: 5px 10px !important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease;
  background: #427b08 !important;
  color: #fff !important;
  border: none !important;
}
.ps_fm_button-send.ps_fm_pull-right:hover, .ps_fm_button-send.ps_fm_pull-right:focus,
.ps_fm_message-action-files .ps_fm_button-send.ps_fm_pull-right:hover,
.ps_fm_message-action-files .ps_fm_button-send.ps_fm_pull-right:focus {
  background: #356006 !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.ps_fm_button-send.ps_fm_pull-right:active,
.ps_fm_message-action-files .ps_fm_button-send.ps_fm_pull-right:active {
  transform: translateY(0);
  background: #356006 !important;
}

.ps_fm_about-user-container.ps_fm_text-center {
  overflow: visible;
}

.ps_fm_message-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  position: relative;
}
.ps_fm_message-holder[style*="height: 0%"] {
  height: auto !important;
  min-height: 200px;
}
.ps_fm_message-holder .ps_fm_close-chat {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  line-height: 1;
  color: #333;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.ps_fm_message-holder .ps_fm_close-chat:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #000;
  transform: scale(1.1);
}
.ps_fm_message-holder .ps_fm_close-chat:focus {
  outline: 2px solid #427b08;
  outline-offset: 2px;
}

.ps_fm_empty-conversation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  text-align: center;
}
.ps_fm_empty-conversation b {
  font-size: 18px;
  font-weight: 600;
  color: #555;
  margin: 0;
}
.ps_fm_empty-conversation .ps_fm_close-empty-conversation {
  padding: 10px 24px !important;
  background: #427b08 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ps_fm_empty-conversation .ps_fm_close-empty-conversation:hover, .ps_fm_empty-conversation .ps_fm_close-empty-conversation:focus {
  background: #356006 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(66, 123, 8, 0.2);
}
.ps_fm_empty-conversation .ps_fm_close-empty-conversation:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(66, 123, 8, 0.2);
}

.ps_fm_project-status,
.ps_fm-download-status {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.2s ease;
}
.ps_fm_project-status h3,
.ps_fm-download-status h3 {
  display: inline;
  margin: 0;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ps_fm_project-status.hbs-status-completed,
.ps_fm-download-status.hbs-status-completed {
  background-color: #427b08;
  color: #fff;
  border: 1px solid #2d5505;
}
.ps_fm_project-status.hbs-status-completed h3,
.ps_fm-download-status.hbs-status-completed h3 {
  color: #fff;
}
.ps_fm_project-status.hbs-status-awaiting-approval,
.ps_fm-download-status.hbs-status-awaiting-approval {
  background-color: #ffc107;
  color: #212529;
  border: 1px solid #e0a800;
}
.ps_fm_project-status.hbs-status-awaiting-approval h3,
.ps_fm-download-status.hbs-status-awaiting-approval h3 {
  color: #212529;
}
.ps_fm_project-status.hbs-status-available,
.ps_fm-download-status.hbs-status-available {
  background-color: #81e813;
  color: #212529;
  border: 1px solid #6fc00f;
}
.ps_fm_project-status.hbs-status-available h3,
.ps_fm-download-status.hbs-status-available h3 {
  color: #212529;
}
.ps_fm_project-status.hbs-status-delivered,
.ps_fm-download-status.hbs-status-delivered {
  background-color: #5fa80c;
  color: #fff;
  border: 1px solid #4d8609;
}
.ps_fm_project-status.hbs-status-delivered h3,
.ps_fm-download-status.hbs-status-delivered h3 {
  color: #fff;
}
.ps_fm_project-status.hbs-status-canceled,
.ps_fm-download-status.hbs-status-canceled {
  background-color: #f1f4ef;
  color: #212529;
  border: 1px solid #d4d4d4;
}
.ps_fm_project-status.hbs-status-canceled h3,
.ps_fm-download-status.hbs-status-canceled h3 {
  color: #212529;
}
.ps_fm_project-status.hbs-status-disputed,
.ps_fm-download-status.hbs-status-disputed {
  background-color: #f3e079;
  color: #212529;
  border: 1px solid #e6d05a;
}
.ps_fm_project-status.hbs-status-disputed h3,
.ps_fm-download-status.hbs-status-disputed h3 {
  color: #212529;
}
.ps_fm_project-status.hbs-status-resolved,
.ps_fm-download-status.hbs-status-resolved {
  background-color: #427b08;
  color: #fff;
  border: 1px solid #2d5505;
}
.ps_fm_project-status.hbs-status-resolved h3,
.ps_fm-download-status.hbs-status-resolved h3 {
  color: #fff;
}
.ps_fm_project-status.hbs-status-accepted,
.ps_fm-download-status.hbs-status-accepted {
  background-color: #aef067;
  color: #212529;
  border: 1px solid #9dd055;
}
.ps_fm_project-status.hbs-status-accepted h3,
.ps_fm-download-status.hbs-status-accepted h3 {
  color: #212529;
}
.ps_fm_project-status.hbs-status-expired,
.ps_fm-download-status.hbs-status-expired {
  background-color: #6c757d;
  color: #fff;
  border: 1px solid #545b62;
}
.ps_fm_project-status.hbs-status-expired h3,
.ps_fm-download-status.hbs-status-expired h3 {
  color: #fff;
}
.ps_fm_project-status.hbs-status-aborted,
.ps_fm-download-status.hbs-status-aborted {
  background-color: #6c757d;
  color: #fff;
  border: 1px solid #545b62;
}
.ps_fm_project-status.hbs-status-aborted h3,
.ps_fm-download-status.hbs-status-aborted h3 {
  color: #fff;
}
.ps_fm_project-status.hbs-status-pending,
.ps_fm-download-status.hbs-status-pending {
  background-color: #ffc107;
  color: #212529;
  border: 1px solid #e0a800;
}
.ps_fm_project-status.hbs-status-pending h3,
.ps_fm-download-status.hbs-status-pending h3 {
  color: #212529;
}

.hbs-status-note {
  display: block;
  font-size: 11px;
  color: #6c757d;
  font-style: italic;
  margin-top: 2px;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
}

.hbs-accepted-bid-amount small {
  color: #6c757d;
  font-size: 12px;
}

.hbs-payment-success-banner {
  background-color: #28a745;
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}
.hbs-payment-success-banner::before {
  content: "✓";
  font-size: 20px;
  font-weight: bold;
}
.hbs-payment-success-banner strong {
  font-weight: 600;
}

.ps_fm_bid-content p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.ps_fm_thumbnail img {
  width: 100px !important;
  height: auto !important;
  aspect-ratio: 1/1 !important;
  max-width: 100% !important;
  border-radius: 50% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.ps_fm_profile-img img {
  width: 125px !important;
  height: auto !important;
  aspect-ratio: 1/1 !important;
  max-width: 100% !important;
  border-radius: 8px !important;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .ps_fm_btn_start_chat {
    display: block !important;
    margin: 0px auto !important;
  }
}
.ps_fm_btn_start_chat,
.ps_fm_btn_start_chat_freelancer,
.ps_fm_contact-bidder {
  position: relative;
  transition: opacity 0.2s ease;
}
.ps_fm_btn_start_chat.ps_fm_chat-loading,
.ps_fm_btn_start_chat_freelancer.ps_fm_chat-loading,
.ps_fm_contact-bidder.ps_fm_chat-loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
.ps_fm_btn_start_chat.ps_fm_chat-loading::after,
.ps_fm_btn_start_chat_freelancer.ps_fm_chat-loading::after,
.ps_fm_contact-bidder.ps_fm_chat-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ps-fm-spin 0.6s linear infinite;
}
.ps_fm_btn_start_chat.ps_fm_chat-loading::before,
.ps_fm_btn_start_chat_freelancer.ps_fm_chat-loading::before,
.ps_fm_contact-bidder.ps_fm_chat-loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.05);
  border-radius: inherit;
}

@keyframes ps-fm-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ps_fm_freelancer-action-buttons,
.ps_fm_profile-action-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: row;
  justify-content: center;
}
.ps_fm_freelancer-action-buttons button,
.ps_fm_freelancer-action-buttons a,
.ps_fm_profile-action-buttons button,
.ps_fm_profile-action-buttons a {
  margin: 0;
  flex-shrink: 0;
  width: 80px;
  font-size: 14px;
  white-space: nowrap;
}
.ps_fm_freelancer-action-buttons button.ps_fm_button-same-with,
.ps_fm_freelancer-action-buttons a .ps_fm_button-same-with,
.ps_fm_freelancer-action-buttons button.ps_fm_profile-head-same-button,
.ps_fm_freelancer-action-buttons a .ps_fm_profile-head-same-button,
.ps_fm_profile-action-buttons button.ps_fm_button-same-with,
.ps_fm_profile-action-buttons a .ps_fm_button-same-with,
.ps_fm_profile-action-buttons button.ps_fm_profile-head-same-button,
.ps_fm_profile-action-buttons a .ps_fm_profile-head-same-button {
  padding: 8px 16px;
  font-size: 14px;
}
@media (max-width: 600px) {
  .ps_fm_freelancer-action-buttons,
  .ps_fm_profile-action-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .ps_fm_freelancer-action-buttons button,
  .ps_fm_freelancer-action-buttons a,
  .ps_fm_profile-action-buttons button,
  .ps_fm_profile-action-buttons a {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
  }
  .ps_fm_freelancer-action-buttons button.ps_fm_button-same-with,
  .ps_fm_freelancer-action-buttons a .ps_fm_button-same-with,
  .ps_fm_freelancer-action-buttons button.ps_fm_profile-head-same-button,
  .ps_fm_freelancer-action-buttons a .ps_fm_profile-head-same-button,
  .ps_fm_profile-action-buttons button.ps_fm_button-same-with,
  .ps_fm_profile-action-buttons a .ps_fm_button-same-with,
  .ps_fm_profile-action-buttons button.ps_fm_profile-head-same-button,
  .ps_fm_profile-action-buttons a .ps_fm_profile-head-same-button {
    padding: 10px 20px;
    font-size: 16px;
  }
}

.ps_fm_dashboard-pro-holder {
  display: block !important;
}

.ps_fm_dashboard-profile {
  position: absolute !important;
  top: -175px !important;
  right: 0 !important;
  padding: 0px !important;
}

@media (max-width: 600px) {
  .ps_fm_dashboard-profile {
    width: 100% !important;
  }
}
.ps_fm-customer-dashboard {
  overflow: auto !important;
}

.ps_fm-customer-project-wrap, .ps_fm-freelancer-project-wrap {
  margin-top: 185px !important;
}

.ps_fm_profile-img {
  position: relative;
}

.ps_fm_profile-img .ps_fm-user-status {
  width: 11px;
  height: 11px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(25%, 25%);
  z-index: 1;
}

.ps_fm_thumbnail {
  position: relative;
}

.ps_fm_thumbnail a {
  position: relative;
}

.ps_fm_thumbnail img {
  position: relative;
  display: block;
}

.ps_fm-user-status {
  position: relative !important;
  display: flex !important;
  left: 92px !important;
  right: 0 !important;
  top: 0 !important;
  top: -15px !important;
  margin: 0 !important;
  transform: none !important;
}

.ps_fm_thumbnail {
  min-width: 100px !important;
}

.ps_fm_customer-thumb .ps_fm-user-status {
  position: absolute !important;
  bottom: 0 !important;
  right: 0 !important;
  transform: translate(25%, 25%) !important;
  width: 11px !important;
  height: 11px !important;
  border: 1px solid #fff !important;
  border-radius: 50% !important;
  z-index: 1 !important;
  display: block !important;
  left: 20px !important;
  top: 82px !important;
  margin: 0 !important;
}

ul.ps_fm_conversations-list {
  padding: 0 !important;
}

S .ps_fm_thumbnail button {
  margin: 10px;
}

#ps_fm-project-list .ps_fm-project-list-td {
  max-width: 100% !important;
}