@charset "UTF-8";
:root {
  --color-gray-50: #f9fafb;
  --color-gray-100: #f2f4f7;
  --color-gray-200: #e4e7ec;
  --color-gray-300: #d0d5dd;
  --color-gray-400: #98a2b3;
  --color-gray-500: #667085;
  --color-gray-600: #475467;
  --color-gray-700: #344054;
  --color-gray-800: #1d2939;
  --color-gray-900: #101828;
  --color-black: #101828;
  --color-white: #ffffff;
  --color-orange-50: #fff6ed;
  --color-orange-400: #fd853a;
  --color-orange-500: #fb6514;
  --color-blue-500: oklch(62.3% 0.214 259.815deg);
  --color-brand-pink: #F44893;
  --color-brand-blue-dark: #005279;
  --color-success: #12b76a;
  --color-success-bg: #ecfdf3;
  --color-success-border: #abfad1;
  --color-warning: #f79009;
  --color-warning-bg: #fffaeb;
  --color-warning-border: #fec84b;
  --color-danger: #f04438;
  --color-danger-bg: #fef3f2;
  --color-danger-border: #fee4e2;
  --color-info: #005279;
  --color-info-bg: #eff8ff;
  --color-info-border: #b2ddff;
  --color-body: var(--color-gray-800);
  --color-border: var(--border-color);
  --spinner-color: #005279;
  --border-color: #e4e7ec;
  --border-color-muted: #d0d5dd;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.75rem;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-base: 400;
  --border-radius: 0.5rem;
  --border-radius-sm: 0.25rem;
  --border-radius-lg: 1.5rem;
}

.w-100 {
  width: 100% !important;
}

.text-success {
  color: #12b76a;
}

.text-danger {
  color: #f04438;
}

.text-info {
  color: #005279;
}

.text-warning {
  color: #f79009;
}

.text-gray {
  color: #475467;
}

/* Usage:
   <span class="icon icon-chevron-down"></span>
   <button class="icon icon-download icon-before">Download</button>
   <button class="icon icon-chevron-down icon-after">More</button>
*/
.download-link:before, .icon-after::after, .icon-before::before {
  font-family: "uncodeicon";
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  color: inherit;
  opacity: 0.5;
}

.icon-before::before {
  content: var(--icon);
  margin-right: 0.5rem;
}

.icon-after::after {
  content: var(--icon);
}

.icon-calendar-days {
  --icon: "\f073";
}

.icon-checkmark-circle {
  --icon: "\f058";
}

.icon-chevron-down {
  --icon: "\f078";
}

.icon-cloud-upload {
  --icon: "\f0ee";
}

.icon-cross-circle {
  --icon: "\f057";
}

.icon-cross3 {
  --icon: "\f00d";
}

.icon-download {
  --icon: "\f019";
}

.icon-eye {
  --icon: "\f06e";
}

.icon-eye-slash {
  --icon: "\f070";
}

.icon-location-dot {
  --icon: "\f3c5";
}

.icon-lock {
  --icon: "\f023";
}

.icon-magnifier {
  --icon: "\f002";
}

.icon-pencil {
  --icon: "\f303";
}

.icon-times {
  --icon: "\f00d";
}

.icon-trash {
  --icon: "\f1f8";
}

.icon-user-o {
  --icon: "\f007";
}

.icon-sm {
  font-size: 0.875rem;
}

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

.icon-xl {
  font-size: 1.75rem;
}

.icon-svg, .icon-svg-star-magenta, .icon-flt-qualified, .icon-svg-paperclip, .icon-paperclip {
  mask-repeat: no-repeat;
  mask-size: contain;
  display: inline-block;
  width: 1rem;
  height: 1rem;
}

.icon-svg-paperclip, .icon-paperclip {
  mask-image: url("../images/icons/paperclip.svg");
  background-color: currentColor;
}

.icon-svg-star-magenta, .icon-flt-qualified {
  mask-image: url("../images/icons/star-magenta.svg");
  background-color: #e20074;
}

.icon-list {
  display: inline-flex;
  flex-direction: row;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.icon-list li {
  display: flex;
  align-items: center;
  margin: 0;
}
.icon-list li i {
  margin-right: 0 !important;
}

.bg-brand-gradient {
  background: linear-gradient(90deg, var(--color-brand-pink) 1.71%, var(--color-brand-blue-dark) 100%);
}
.dark .bg-brand-gradient {
  background: linear-gradient(90deg, var(--color-gray-900) 1.71%, var(--color-gray-700) 100%);
}

.bg-brand-gradient-dark {
  background: linear-gradient(90deg, var(--color-gray-900) 1.71%, var(--color-gray-700) 100%);
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.text-link {
  text-decoration: underline;
}

.download-link:before {
  content: "\f56d";
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 999px;
  white-space: nowrap;
  vertical-align: middle;
}

.badge-mute {
  background-color: #e5e7eb;
  color: #6b7280;
}

.badge-success {
  background-color: #dcfce7;
  color: #15803d;
}

.alert {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2rem 1rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
}
.alert.alert-success {
  background-color: var(--color-success-bg);
  border-color: var(--color-success-border);
  color: var(--color-success);
}
.alert.alert-warning {
  background-color: var(--color-warning-bg);
  border-color: var(--color-warning-border);
  color: var(--color-warning);
}
.alert.alert-error, .alert.alert-danger {
  background-color: var(--color-danger-bg);
  border-color: var(--color-danger-border);
  color: var(--color-danger);
}
.alert.alert-info {
  background-color: var(--color-info-bg);
  border-color: var(--color-info-border);
  color: var(--color-info);
}
.alert p {
  margin: 0;
}
.alert .btn-close {
  margin-left: auto;
  position: absolute;
  right: 0.25rem;
  top: 0.5rem;
}
.alert a {
  margin: 0.5rem 0;
  display: block;
}

.flt-theme-checkbox-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.flt-theme-checkbox-toggle > input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.flt-theme-checkbox-toggle .toggle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.flt-theme-checkbox-toggle .toggle-wrapper .toggle-text {
  margin-right: 4px;
  line-height: 1.2;
}
.flt-theme-checkbox-toggle .toggle-wrapper .toggle-text-off,
.flt-theme-checkbox-toggle .toggle-wrapper .toggle-text-on {
  position: absolute;
  left: 100%;
  margin-left: 6px;
  white-space: nowrap;
  font-size: 0.875em;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.flt-theme-checkbox-toggle .toggle-wrapper .toggle-text-off {
  opacity: 0.85;
  transform: translateY(0);
}
.flt-theme-checkbox-toggle .toggle-wrapper .toggle-text-on {
  transform: translateY(0);
}
.flt-theme-checkbox-toggle .toggle-wrapper .slider {
  position: relative;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background-color: #c9c9c9;
  transition: background-color 0.2s ease;
}
.flt-theme-checkbox-toggle .toggle-wrapper .slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}
.flt-theme-checkbox-toggle > input[type=checkbox]:checked + .toggle-wrapper .toggle-text-off {
  opacity: 0;
  pointer-events: none;
}
.flt-theme-checkbox-toggle > input[type=checkbox]:checked + .toggle-wrapper .toggle-text-on {
  opacity: 0.9;
  pointer-events: auto;
}
.flt-theme-checkbox-toggle > input[type=checkbox]:checked + .toggle-wrapper .slider {
  background-color: #2ea44f;
}
.flt-theme-checkbox-toggle > input[type=checkbox]:checked + .toggle-wrapper .slider::before {
  transform: translateX(20px);
}
.flt-theme-checkbox-toggle > input[type=checkbox]:focus-visible + .toggle-wrapper .slider {
  outline: 3px solid rgba(46, 164, 79, 0.35);
  outline-offset: 3px;
}
.flt-theme-checkbox-toggle > input[type=checkbox]:disabled + .toggle-wrapper {
  cursor: not-allowed;
  opacity: 0.6;
}

button[disabled] {
  opacity: 0.5;
}

.wc-block-components-checkbox__input[type=checkbox]:focus,
.wc-block-components-button:focus,
button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.btn-close {
  background-color: transparent;
}
.btn-close > .fa {
  font-size: 1.25rem;
  font-weight: 300;
}

.btn, .woocommerce-page .wc-block-cart__submit-button {
  white-space: nowrap;
}
.btn.btn-xs, .woocommerce-page .btn-xs.wc-block-cart__submit-button {
  font-size: 0.75rem !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: 0.25rem !important;
}

.flt-dropdown {
  position: relative;
  display: inline-block;
}
.flt-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.flt-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.25rem);
  right: 0;
  z-index: 100;
  min-width: 180px;
  padding: 0.375rem 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.12);
}
.flt-dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  color: #303133;
  font-size: 0.875rem;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}
.flt-dropdown-menu a:hover {
  background: #f2f4f7;
}
.flt-dropdown-menu a.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.flt-dropdown.is-open .flt-dropdown-menu {
  display: block;
}
.flt-dropdown.flt-dropdown-classic .flt-dropdown-toggle {
  padding: 0.75rem 2rem;
  color: #303133;
  background: #ffffff;
  border: 1px solid #303133;
}
.flt-dropdown.flt-dropdown-dots .flt-dropdown-toggle {
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  gap: 0;
  background: transparent;
  color: #303133;
  font-size: 0;
}
.flt-dropdown.flt-dropdown-dots .flt-dropdown-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
}
.flt-dropdown.flt-dropdown-dots .flt-dropdown-toggle::before {
  content: "⋮";
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}
.flt-dropdown.flt-dropdown-dots .flt-dropdown-toggle::after {
  display: none;
}
.flt-dropdown.flt-dropdown-dots .flt-dropdown-menu {
  min-width: 220px;
}

.m-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.m-modal.is-open {
  display: block;
}
.m-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.m-modal__dialog {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  --max-width-body: 840px;
}
.m-modal__dialog[data-modal-key=company-profile], .m-modal__dialog[data-modal-key=promotion-packages] {
  --max-width-body: 1240px;
}
.m-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.m-modal__title {
  font-weight: 600;
  visibility: hidden;
}
.m-modal__close {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.m-modal__messages {
  padding: 1rem;
  max-width: var(--max-width-body);
  margin-left: auto;
  margin-right: auto;
}
.m-modal__body {
  padding: 1rem;
  overflow: auto;
  max-height: calc(100vh - 8rem);
  max-width: var(--max-width-body);
  margin-left: auto;
  margin-right: auto;
}
.m-modal__loading {
  opacity: 0.75;
}
.m-modal__error {
  color: #b00020;
}
.m-modal__pre {
  margin: 0;
  white-space: pre-wrap;
}

.m-modal-lock {
  overflow: hidden;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.flt-btn--primary {
  --spinner-color: white;
}

[data-spinner=element] {
  position: relative;
}
[data-spinner=element].is-loading {
  pointer-events: none;
  opacity: 0.7;
}
[data-spinner=element].is-loading::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  margin-top: -0.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(60, 80, 224, 0.25);
  border-top-color: var(--spinner-color);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

[data-spinner=element].spinner-hide-text.is-loading {
  color: transparent;
}

#flt-page-spinner {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(2px);
}
#flt-page-spinner.is-visible {
  display: flex;
}
#flt-page-spinner.is-blocking-only {
  background: transparent;
  backdrop-filter: none;
}
#flt-page-spinner.is-blocking-only .spinner {
  display: none;
}
#flt-page-spinner .spinner {
  width: 3rem;
  height: 3rem;
  border: 4px solid rgba(60, 80, 224, 0.25);
  border-top-color: var(--spinner-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.dropzone-field .dropzone-file-list {
  margin-bottom: 1rem;
}
.dropzone-field .dropzone-file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border: 1px solid #e4e7ec;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}
.dropzone-field .dropzone-file-item.has-thumbnail {
  padding: 0.5rem 1rem;
}
.dropzone-field .dropzone-file-item .thumbnail-container {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  flex-shrink: 0;
  border-radius: 0.25rem;
  overflow: hidden;
  border: 1px solid #e4e7ec;
}
.dropzone-field .dropzone-file-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dropzone-field .dropzone-file-item .filename {
  font-weight: 500;
  color: #303133;
  word-break: break-all;
  margin-right: 1rem;
  flex-grow: 1;
}
.dropzone-field .dropzone-file-item .actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.dropzone-field .dropzone-file-item .actions a,
.dropzone-field .dropzone-file-item .actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0.25rem;
  border: 1px solid #e4e7ec;
  background: #ffffff;
  color: #475467;
  cursor: pointer;
  transition: all 0.2s;
}
.dropzone-field .dropzone-file-item .actions a:hover,
.dropzone-field .dropzone-file-item .actions button:hover {
  background: #f2f4f7;
  color: #1d2939;
}
.dropzone-field .dropzone-file-item .actions a.dropzone-file-remove:hover,
.dropzone-field .dropzone-file-item .actions button.dropzone-file-remove:hover {
  background: #fef3f2;
  color: #f04438;
  border-color: #fee4e2;
}
.dropzone-field .flt-dropzone {
  border: 2px dashed #e4e7ec;
  border-radius: 0.5rem;
  background: #f9fafb;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s, background-color 0.2s;
  cursor: pointer;
  min-height: auto;
}
.dropzone-field .flt-dropzone:hover {
  border-color: #98a2b3;
  background-color: #f2f4f7;
}
.dropzone-field .flt-dropzone .dz-message {
  margin: 0;
}
.dropzone-field .flt-dropzone .dz-message .dropzone-icon {
  font-size: 2rem;
  color: #98a2b3;
  margin-bottom: 0.5rem;
}
.dropzone-field .flt-dropzone .dz-message .dropzone-text {
  font-weight: 500;
  color: #667085;
}
.dropzone-field .flt-dropzone.dz-drag-hover {
  border-color: #005279;
  background-color: #eff8ff;
}
.dropzone-field .flt-dropzone .dz-preview {
  display: none;
}

.form-field-type-repeater .repeater-rows {
  margin-bottom: 1rem;
}
.form-field-type-repeater .repeater-add-btn {
  margin-top: 0.5rem;
}
.form-field-type-repeater .repeater-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(16, 24, 40, 0.05);
}
.form-field-type-repeater .repeater-row .form-field {
  flex: 1 1 300px;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .form-field-type-repeater .repeater-row .form-field {
    flex: 1 1 100%;
  }
}
.form-field-type-repeater .repeater-row .repeater-row-actions {
  flex: 1 1 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
}
.form-field-type-repeater .repeater-row .repeater-row-actions .btn, .form-field-type-repeater .repeater-row .repeater-row-actions .woocommerce-page .wc-block-cart__submit-button, .woocommerce-page .form-field-type-repeater .repeater-row .repeater-row-actions .wc-block-cart__submit-button {
  margin-bottom: 0;
}
.form-field-type-repeater .repeater-row .repeater-row-actions .btn-delete-row {
  margin-top: 1rem;
}
.form-field-type-repeater .repeater-row .repeater-row-actions .file-download-btn {
  margin-right: auto;
}
.form-field-type-repeater .repeater-row .field-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.form-field-type-repeater.repeater-cols-2 .repeater-row .form-field {
  flex: 1 1 calc(50% - 1rem);
}
.form-field-type-repeater.repeater-compact {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .form-field-type-repeater.repeater-compact {
    display: table;
    border-collapse: collapse;
  }
}
.form-field-type-repeater.repeater-compact .repeater-rows-header {
  display: none;
}
@media (min-width: 576px) {
  .form-field-type-repeater.repeater-compact .repeater-rows-header {
    display: table-row;
  }
}
.form-field-type-repeater.repeater-compact .repeater-rows-header .field-title,
.form-field-type-repeater.repeater-compact .repeater-rows-header .repeater-actions-title {
  display: table-cell;
  padding: 0.5rem;
  font-weight: 700;
}
.form-field-type-repeater.repeater-compact .repeater-row {
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: none;
}
.form-field-type-repeater.repeater-compact .repeater-row.repeater-template {
  display: none !important;
}
@media (min-width: 576px) {
  .form-field-type-repeater.repeater-compact .repeater-row {
    display: table-row;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
    background: transparent;
    box-shadow: none;
  }
}
.form-field-type-repeater.repeater-compact .repeater-row > .form-field {
  display: block;
  width: 100%;
  padding: 0.75rem 0.5rem;
}
@media (max-width: 575px) {
  .form-field-type-repeater.repeater-compact .repeater-row > .form-field.title-display-invisible label {
    display: block !important;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
  }
  .form-field-type-repeater.repeater-compact .repeater-row > .form-field.title-display-invisible .visually-hidden {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
  }
}
@media (min-width: 576px) {
  .form-field-type-repeater.repeater-compact .repeater-row > *,
  .form-field-type-repeater.repeater-compact .repeater-row > .form-field {
    display: table-cell;
    vertical-align: top;
    width: auto;
  }
}
.form-field-type-repeater.repeater-compact .repeater-row > *:first-child,
.form-field-type-repeater.repeater-compact .repeater-row > .form-field:first-child {
  padding-left: 0;
}
@media (min-width: 576px) {
  .form-field-type-repeater.repeater-compact .repeater-row .actions {
    display: table-cell;
    padding: 0.5rem;
    vertical-align: middle;
    text-align: right;
    width: 1%;
    white-space: nowrap;
  }
}
@media (max-width: 575px) {
  .form-field-type-repeater.repeater-compact .repeater-row .actions {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    display: flex;
    justify-content: flex-end;
  }
}
@media (min-width: 576px) {
  .form-field-type-repeater.repeater-compact .repeater-add-btn {
    display: table-caption;
    caption-side: bottom;
    width: fit-content;
    margin: 1rem 0;
  }
}
.form-field-type-repeater.repeater-compact .repeater-row-header {
  border-bottom: 1px solid #e4e7ec;
}
.form-field-type-repeater.repeater-compact .repeater-row-header > * {
  padding: 0.75rem 0.5rem;
}
.form-field-type-repeater.repeater-compact .repeater-row-header > *:first-child {
  padding-left: 0;
}
.form-field-type-repeater.repeater-compact .field-repeater-actions {
  margin-top: 1rem;
}
.form-field-type-repeater.repeater-compact .field-repeater-actions > * {
  margin-top: 0;
}
.form-field-type-repeater:not(.has-rows) .repeater-rows {
  display: none;
}

.flt-form .form-control {
  width: 100%;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.flt-form .form-floating {
  position: relative;
}
.flt-form .form-floating i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.flt-form .form-floating i:not(.flt-toggle-password) {
  left: 1rem;
  color: #667085;
}
.flt-form .form-floating .flt-toggle-password {
  right: 1rem;
  cursor: pointer;
}
.flt-form .form-floating label,
.flt-form .form-floating .form-control {
  padding-left: 1rem;
}
.flt-form .form-floating .form-control.has-icon {
  padding-left: 3rem;
}
.flt-form .form-floating .form-control.has-icon ~ label {
  padding-left: 3rem;
}
.flt-form .form-field {
  margin-bottom: 1rem;
}
.flt-form .form-field.title-display-invisible label {
  display: none;
}
.flt-form .form-field.title-display-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.flt-form .form-field.title-display-inline > * {
  margin: 0;
}
.flt-form .form-field.title-display-inline label {
  white-space: nowrap;
}
.flt-form .form-field .flt-toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}
.flt-form .form-field-type-number,
.flt-form .form-field-type-text {
  width: 100%;
}
.flt-form .form-field-type-radio,
.flt-form .form-field-type-checkbox {
  display: inline-flex;
  align-items: flex-start;
}
.flt-form .form-field-type-radio label,
.flt-form .form-field-type-checkbox label {
  margin: 0;
}
.flt-form .form-field-type-radio input,
.flt-form .form-field-type-checkbox input {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
}
.flt-form .form-field-type-radio > *:not(:first-child),
.flt-form .form-field-type-checkbox > *:not(:first-child) {
  padding-left: 0.75rem;
}
.flt-form .form-field-type-radio:hover > *,
.flt-form .form-field-type-checkbox:hover > * {
  cursor: pointer;
}
.flt-form .form-actions {
  display: flex;
  gap: 0.75rem;
}
.flt-form .stay-logged-in {
  padding-bottom: 1rem;
  display: flex;
  justify-content: start;
  align-items: center;
}
.flt-form .stay-logged-in .form-field {
  margin-bottom: 0;
}
.flt-form .stay-logged-in .flt-forgot-link {
  margin-left: auto;
}
.flt-form .footer-links {
  padding: 1rem 0;
}
.flt-form .form-field-type-image label {
  display: block;
}
.flt-form .form-field-name-fields\[field_benefits\] .select2-search__field {
  visibility: hidden;
}
.flt-form .form-field-name-fields\[field_benefits\] .select2-container--default .select2-selection--multiple {
  border-color: #eaeaea;
}
.flt-form input {
  border-radius: 0.5rem;
}

#flt-login-form .form-actions {
  flex-direction: column;
}

.ui-datepicker {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid #e4e7ec;
  width: 320px;
}
.ui-datepicker .ui-datepicker-calendar td {
  padding: 0.25rem;
}
.ui-datepicker select {
  background-image: none !important;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  height: 100%;
}
.ui-datepicker .ui-datepicker-prev .ui-icon,
.ui-datepicker .ui-datepicker-next .ui-icon {
  background: none;
  text-indent: -9999px;
  overflow: hidden;
  width: 12px;
  height: 12px;
  display: block;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
}
.ui-datepicker .ui-datepicker-prev:hover .ui-icon,
.ui-datepicker .ui-datepicker-next:hover .ui-icon {
  border-color: #111;
}
.ui-datepicker .ui-datepicker-next .ui-icon {
  transform: rotate(45deg);
}
.ui-datepicker .ui-datepicker-prev .ui-icon {
  transform: rotate(-135deg);
}

.flt-datepicker-icon {
  margin-left: 0.5rem;
}

.form-messages {
  padding: 1rem 0;
}

.form-field-preview-image {
  display: block;
  max-width: 150px;
  height: auto;
  margin-bottom: 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid #dee2e6;
}

.hidden-input {
  display: none;
}

input[name=account_display_name],
input[name=account_display_name] ~ span,
label[for=account_display_name] {
  display: none;
}

:root {
  --dt-row-selected: 13, 110, 253;
  --dt-row-selected-text: 255, 255, 255;
  --dt-row-hover: 0, 0, 0;
  --dt-row-hover-alpha: 0.035;
  --dt-header-align-items: center;
  --dt-header-vertical-align: middle;
}

table.dataTable {
  width: 100%;
  margin: 0 auto;
  border-spacing: 0;
}
table.dataTable th,
table.dataTable td {
  box-sizing: border-box;
}
table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
  text-align: left;
  vertical-align: var(--dt-header-vertical-align);
}
table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td {
  padding: 10px 10px;
}
table.dataTable > tbody > tr > th,
table.dataTable > tbody > tr > td {
  padding: 8px 10px;
}
table.dataTable > tbody > tr:first-child > * {
  border-top: 0;
}
table.dataTable > tbody > tr:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), var(--dt-row-hover-alpha));
}
table.dataTable > tbody > tr.selected > * {
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 0.9);
  color: rgb(var(--dt-row-selected-text));
}
table.dataTable > tbody > tr.selected:hover > * {
  box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-selected), 1);
}
table.dataTable tbody td.dt-control {
  text-align: center;
  cursor: pointer;
}
table.dataTable tbody td.dt-control::before {
  display: inline-block;
  box-sizing: border-box;
  content: "";
  border-top: 5px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid rgba(0, 0, 0, 0.5);
}
table.dataTable tbody tr.dt-hasChild td.dt-control::before {
  border-top: 10px solid rgba(0, 0, 0, 0.5);
  border-right: 5px solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 5px solid transparent;
}
table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}
table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc,
table.dataTable thead > tr > td.dt-orderable-asc,
table.dataTable thead > tr > td.dt-orderable-desc {
  cursor: pointer;
}
table.dataTable thead > tr > th.dt-orderable-asc:hover, table.dataTable thead > tr > th.dt-orderable-desc:hover,
table.dataTable thead > tr > td.dt-orderable-asc:hover,
table.dataTable thead > tr > td.dt-orderable-desc:hover {
  outline: 2px solid rgba(0, 0, 0, 0.05);
  outline-offset: -2px;
}
table.dataTable thead > tr > th .dt-column-header,
table.dataTable thead > tr > td .dt-column-header {
  display: flex;
  align-items: var(--dt-header-align-items);
  justify-content: space-between;
  gap: 4px;
}
table.dataTable thead > tr > th .dt-column-title,
table.dataTable thead > tr > td .dt-column-title {
  flex-grow: 1;
}
table.dataTable thead > tr > th .dt-column-order,
table.dataTable thead > tr > td .dt-column-order {
  position: relative;
  width: 12px;
  height: 20px;
  display: none;
}
table.dataTable thead > tr > th .dt-column-order::before, table.dataTable thead > tr > th .dt-column-order::after,
table.dataTable thead > tr > td .dt-column-order::before,
table.dataTable thead > tr > td .dt-column-order::after {
  position: absolute;
  left: 0;
  display: block;
  opacity: 0.125;
  line-height: 9px;
  font-size: 0.8em;
}
table.dataTable thead > tr > th .dt-column-order::before,
table.dataTable thead > tr > td .dt-column-order::before {
  bottom: 50%;
  content: "▲";
}
table.dataTable thead > tr > th .dt-column-order::after,
table.dataTable thead > tr > td .dt-column-order::after {
  top: 50%;
  content: "▼";
}
table.dataTable thead > tr > th.dt-ordering-asc .dt-column-order::before, table.dataTable thead > tr > th.dt-ordering-desc .dt-column-order::after,
table.dataTable thead > tr > td.dt-ordering-asc .dt-column-order::before,
table.dataTable thead > tr > td.dt-ordering-desc .dt-column-order::after {
  opacity: 0.6;
}

div.dt-processing {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 200px;
  margin-top: -22px;
  margin-left: -100px;
  padding: 2px;
  text-align: center;
}
div.dt-processing > div:last-child {
  position: relative;
  width: 80px;
  height: 15px;
  margin: 1em auto;
}
div.dt-processing > div:last-child > div {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgb(13, 110, 253);
  background: rgb(var(--dt-row-selected));
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
div.dt-processing > div:last-child > div:nth-child(1) {
  left: 8px;
  animation: datatables-loader-1 0.6s infinite;
}
div.dt-processing > div:last-child > div:nth-child(2) {
  left: 8px;
  animation: datatables-loader-2 0.6s infinite;
}
div.dt-processing > div:last-child > div:nth-child(3) {
  left: 32px;
  animation: datatables-loader-2 0.6s infinite;
}
div.dt-processing > div:last-child > div:nth-child(4) {
  left: 56px;
  animation: datatables-loader-3 0.6s infinite;
}

@keyframes datatables-loader-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes datatables-loader-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
@keyframes datatables-loader-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
div.dt-container {
  position: relative;
  clear: both;
}
div.dt-container .dt-layout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0.75em 0;
}
div.dt-container .dt-layout-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
div.dt-container .dt-layout-cell.dt-layout-start {
  margin-right: auto;
}
div.dt-container .dt-layout-cell.dt-layout-end {
  margin-left: auto;
}
div.dt-container .dt-layout-start > *:not(:last-child) {
  margin-right: 1em;
}
div.dt-container .dt-layout-end > *:not(:first-child) {
  margin-left: 1em;
}
div.dt-container .dt-search input,
div.dt-container .dt-input {
  padding: 5px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background-color: transparent;
  color: inherit;
}
div.dt-container .dt-search input {
  margin-left: 3px;
}
div.dt-container .dt-paging .dt-paging-button {
  display: inline-block;
  box-sizing: border-box;
  min-width: 1.5em;
  margin-left: 2px;
  padding: 0.5em 1em;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  color: inherit !important;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
}
div.dt-container .dt-paging .dt-paging-button.current, div.dt-container .dt-paging .dt-paging-button.current:hover {
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.05);
}
div.dt-container .dt-paging .dt-paging-button.disabled, div.dt-container .dt-paging .dt-paging-button.disabled:hover, div.dt-container .dt-paging .dt-paging-button.disabled:active {
  border-color: transparent;
  background: transparent;
  color: rgba(0, 0, 0, 0.5) !important;
  cursor: default;
  box-shadow: none;
}
div.dt-container .dt-paging .dt-paging-button:hover {
  border-color: #111;
  background: #111;
  color: #fff !important;
}
div.dt-container .dt-paging .dt-paging-button:active {
  outline: none;
  background: #111;
  box-shadow: inset 0 0 3px #111;
}

@media screen and (max-width: 767px) {
  div.dt-container .dt-layout-row {
    display: block;
  }
  div.dt-container .dt-layout-cell {
    display: block;
    text-align: center;
  }
  div.dt-container .dt-layout-cell > * {
    margin: 0.5em 0;
  }
  div.dt-container .dt-layout-cell.dt-layout-start, div.dt-container .dt-layout-cell.dt-layout-end {
    margin-right: 0;
    margin-left: 0;
  }
  div.dt-container .dt-layout-start > *:not(:last-child),
  div.dt-container .dt-layout-end > *:not(:first-child) {
    margin-right: 0;
    margin-left: 0;
  }
}
.entity-view .field-item {
  display: flex;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f2f4f7;
  align-items: flex-start;
}
.entity-view .field-item:last-child {
  border-bottom: none;
}
.entity-view .field-item .field-label {
  flex: 0 0 200px;
  font-weight: 600;
  color: #667085;
  padding-right: 1rem;
}
.entity-view .field-item .field-value {
  flex: 1;
  word-break: break-word;
  color: #344054;
}
@media (max-width: 768px) {
  .entity-view .field-item {
    flex-direction: column;
  }
  .entity-view .field-item .field-label {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 0.25rem;
    padding-right: 0;
  }
}

.fltapp-table-container {
  --dt-row-selected: 0,
  82,
  121;
  border-width: 1px;
  border-style: solid;
  background: #fff;
  border-radius: 1rem;
  border-color: #e4e7ec;
}
.fltapp-table-container table td {
  border-color: #e4e7ec;
}
.fltapp-table-container {
  margin: 2rem 0;
  min-height: min(600px, 80vh);
}
.fltapp-table-container .dt-info {
  text-align: right;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  display: none;
}
.fltapp-table-container .dt-processing {
  color: transparent !important;
  top: 8rem;
}
.fltapp-table-container .dt-paging {
  text-align: center;
  padding: 0.5rem 0;
}
.fltapp-table-container > *:not(.dt-container) {
  margin-left: 1rem;
  margin-right: 1rem;
}
.fltapp-table-container .flt-table-no-results {
  display: none;
}
.fltapp-table-container.has-no-results-html-block.no-results .flt-table-no-results {
  display: block;
}
.fltapp-table-container.has-no-results-html-block .dt-empty {
  display: none;
}

.view-filters {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}

.fltapp-table-filters {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.fltapp-filter-item select,
.fltapp-filter-item input[type=text] {
  border: 1px solid #d0d5dd;
  border-radius: 0.5rem;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: #1d2939;
  background-color: #ffffff;
  min-width: 220px;
}
.fltapp-filter-item select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}
.fltapp-filter-item--checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #344054;
  cursor: pointer;
}
.fltapp-filter-item--checkbox input[type=checkbox] {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  accent-color: #005279;
}

.fltapp-search-input-wrapper {
  position: relative;
}
.fltapp-search-input-wrapper input[type=text] {
  width: 100%;
  padding-right: 60px;
}
.fltapp-search-input-wrapper .magnify-icon,
.fltapp-search-input-wrapper .clear-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #98a2b3;
}
.fltapp-search-input-wrapper .magnify-icon {
  right: 12px;
  font-size: 1.25rem;
  pointer-events: none;
}
.fltapp-search-input-wrapper .clear-icon {
  right: 36px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .fltapp-search-input-wrapper {
    width: 360px;
  }
}

.flt-table-info-top {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1d2939;
  display: none;
}

.tag-badge,
.status-badge {
  display: inline-block;
  white-space: nowrap;
  padding: 4px 12px;
  border-radius: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #f2f4f7;
  color: #303133;
}
.tag-badge.status-accepted, .tag-badge.status-active,
.status-badge.status-accepted,
.status-badge.status-active {
  background-color: #ecfdf3;
  color: #12b76a;
}
.tag-badge.tag-info, .tag-badge.status-info, .tag-badge.status-received,
.status-badge.tag-info,
.status-badge.status-info,
.status-badge.status-received {
  background-color: #eff8ff;
  color: #005279;
}
.tag-badge.status-invited, .tag-badge.status-pending,
.status-badge.status-invited,
.status-badge.status-pending {
  background-color: #fffaeb;
  color: #f79009;
}
.tag-badge.status-rejected, .tag-badge.status-deactivated,
.status-badge.status-rejected,
.status-badge.status-deactivated {
  background-color: #fef3f2;
  color: #f04438;
}
.tag-badge.status-empty,
.status-badge.status-empty {
  background-color: transparent !important;
}

.tag-badge {
  padding: 0.25rem 1rem;
}

.details-link {
  color: #005279;
  text-decoration: underline;
}

table.dataTable {
  border-bottom: none;
}
table.dataTable thead tr th {
  background-color: transparent;
  padding: 12px 6px;
  font-weight: 600;
  text-align: left;
}
table.dataTable thead tr th:hover {
  outline: none !important;
}
table.dataTable td {
  border-color: #e4e7ec;
  padding: 12px 6px;
}
table.dataTable td .icon-list {
  margin-left: 0.5rem;
}
table.dataTable tbody tr:hover > td {
  box-shadow: none !important;
}
table.dataTable tbody tr:last-of-type td {
  border-bottom: transparent;
}

.match-card {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}
.match-card .badge-top-match {
  font-size: 0.875rem;
  color: #005279;
  font-weight: 700;
  text-transform: uppercase;
}
.match-card .match-name {
  font-size: 1rem;
  font-weight: 700;
  margin: 4px 0 0;
}
.match-card .match-subline {
  font-size: 0.75rem;
  font-weight: 300;
}

.btn-hide,
.btn-qualify,
.btn-contact,
.btn-promo {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #d0d5dd;
  background: #ffffff;
}

.btn-contact {
  background-color: #005279;
  color: #ffffff;
  border-color: #005279;
}

.btn-promo {
  color: #005279;
}

.flt-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: #fff;
  border-radius: 1rem;
  min-height: min(600px, 80vh);
  overflow: hidden;
}
.flt-compare-table thead th {
  background-color: #f9fafb;
  border-bottom: 2px solid #e4e7ec;
  text-align: left;
  padding: 0.75rem 0.5rem;
  font-weight: 600;
}
.flt-compare-table tbody td {
  padding: 0.75rem 0.5rem;
}
.flt-compare-table tbody td:not(:first-child) .field-label {
  display: none;
}
.flt-compare-table th.match, .flt-compare-table td.match {
  text-align: center;
}

table.flt-table {
  width: 100%;
  border-collapse: collapse;
}
table.flt-table .col-manage {
  text-align: center !important;
}
table.flt-table .col-status,
table.flt-table .col-promotion {
  text-align: center;
}
table.flt-table .col-action {
  text-align: right;
  padding-right: 1rem;
}
table.flt-table td, table.flt-table th {
  position: relative;
}
table.flt-table td .tag-badge, table.flt-table th .tag-badge {
  position: absolute;
  top: 0;
  right: 0.5rem;
}
table.flt-table, table.flt-table tbody, table.flt-table td, table.flt-table th {
  border-left: none;
  border-right: none;
}
table.flt-table thead th {
  background-color: #f9fafb;
}
table.flt-table td.dt-empty {
  border: none !important;
  text-align: center;
  padding: 2rem 0;
}

.hidden {
  display: none !important;
}

.table-style-hide-header thead {
  display: none;
}

.table-style-hide-count .dt-info {
  display: none;
}

.table-style-row-cards {
  background: transparent;
  border: none;
  overflow: unset;
}
.table-style-row-cards table {
  border: none;
  border-collapse: separate;
  border-spacing: 0 2rem;
}
.table-style-row-cards table button {
  min-width: 140px;
}
.table-style-row-cards table tbody tr td {
  background-color: #fff;
}
.table-style-row-cards table tbody tr td:first-of-type {
  border-left: 1px solid #e4e7ec;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  padding-left: 1rem;
}
.table-style-row-cards table tbody tr td:last-of-type {
  border-right: 1px solid #e4e7ec;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.table-style-row-cards table tbody tr td:last-of-type .btn, .table-style-row-cards table tbody tr td:last-of-type .woocommerce-page .wc-block-cart__submit-button, .woocommerce-page .table-style-row-cards table tbody tr td:last-of-type .wc-block-cart__submit-button {
  min-width: 160px;
}
.table-style-row-cards table tbody tr td:hover {
  box-shadow: none;
}
.table-style-row-cards table tbody tr td.col-details-1 > *, .table-style-row-cards table tbody tr td.col-details-2 > * {
  min-width: min(20vw, 200px);
}
.table-style-row-cards table tbody tr:last-of-type td {
  border-bottom: 1px solid #e4e7ec;
}
.table-style-row-cards td {
  border-top: 1px solid #e4e7ec;
  border-bottom: 1px solid #e4e7ec;
}
.table-style-row-cards td:not(:first-child) {
  border-left: none;
}
.table-style-row-cards td:not(:last-child) {
  border-right: none;
}
.table-style-row-cards table.dataTable > tbody > tr:first-child > * {
  border-top: 1px solid #e4e7ec;
}

#fltapp-table-container-job_ads .fltapp-filter-item,
#fltapp-table-container-job_ads .fltapp-search-input-wrapper {
  width: 100%;
}
#fltapp-table-container-job_ads .form-field-name-search {
  margin-bottom: 0.5rem;
}

#fltapp-table-container-expert_profiles .flt-table-info-top,
#fltapp-table-company_profiles .flt-table-info-top,
#fltapp-table-container-company_matches .flt-table-info-top {
  display: block;
}

.flt-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.flt-table-header > * {
  width: 100%;
}
.flt-table-header .flt-table-caption {
  font-size: 1.25rem;
  font-weight: 700;
  color: #475467;
}

#fltapp-table-container-job_ads .flt-table-filter-form,
#fltapp-table-container-applications .flt-table-filter-form {
  flex-grow: 1;
}

.flt-promo-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
  color: var(--color-body);
}
.flt-promo-grid .flt-promo-item {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-radius: 1.5rem;
  border: 1px solid #e4e7ec;
  background-color: #fff;
  padding: 3.5rem 1rem 1rem;
  position: relative;
  transition: all 0.3s ease;
}
.flt-promo-grid .flt-promo-item.promoted-product {
  border: 2px solid #005279;
}
.flt-promo-grid .flt-promo-item .product-name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
}
.flt-promo-grid .flt-promo-item .wc-badge {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  background-color: #F44893;
  color: #fff;
  padding: 0.35rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.flt-promo-grid .flt-promo-item .description {
  margin-bottom: 2rem;
  color: #475467;
  font-size: 1.125rem;
  line-height: 1.4;
  min-height: 4.5rem;
}
.flt-promo-grid .flt-promo-item .price {
  margin: 1rem 0;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: #111827;
  order: 3;
}
.flt-promo-grid .flt-promo-item .price ins {
  text-decoration: none;
}
.flt-promo-grid .flt-promo-item .added_to_cart {
  display: none;
}
.flt-promo-grid .flt-promo-success-message {
  width: 100%;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0369a1;
}
.flt-promo-grid .flt-promo-success-message.hidden {
  display: none;
}
.flt-promo-grid .flt-promo-success-message .flt-promo-success-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.flt-promo-grid .flt-promo-success-message .flt-promo-success-content .content {
  width: 100%;
}
.flt-promo-grid .flt-promo-success-message .flt-promo-success-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.flt-promo-grid .flt-promo-success-message .flt-promo-success-layout .flt-promo-success-text p {
  margin: 0;
  font-weight: 500;
}
.flt-promo-grid .flt-promo-success-message .flt-promo-success-layout .flt-promo-success-actions {
  display: flex;
  gap: 0.5rem;
}

.flt-promo-already-in-cart {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.style-light > .box-wrapper,
.style-dark .style-light > .box-wrapper {
  min-height: 100vh;
}
.style-light .box-wrapper .flt-dropdown,
.style-light .box-wrapper .btn,
.style-light .box-wrapper .woocommerce-page .wc-block-cart__submit-button,
.woocommerce-page .style-light .box-wrapper .wc-block-cart__submit-button,
.style-light .box-wrapper label,
.style-light .box-wrapper textarea:not(.disabled),
.style-light .box-wrapper select:not(.disabled),
.style-light .box-wrapper input:not(.disabled),
.style-light .m-modal .flt-dropdown,
.style-light .m-modal .btn,
.style-light .m-modal .woocommerce-page .wc-block-cart__submit-button,
.woocommerce-page .style-light .m-modal .wc-block-cart__submit-button,
.style-light .m-modal label,
.style-light .m-modal textarea:not(.disabled),
.style-light .m-modal select:not(.disabled),
.style-light .m-modal input:not(.disabled),
.style-dark .style-light .box-wrapper .flt-dropdown,
.style-dark .style-light .box-wrapper .btn,
.style-dark .style-light .box-wrapper label,
.style-dark .style-light .box-wrapper textarea:not(.disabled),
.style-dark .style-light .box-wrapper select:not(.disabled),
.style-dark .style-light .box-wrapper input:not(.disabled),
.style-dark .style-light .m-modal .flt-dropdown,
.style-dark .style-light .m-modal .btn,
.style-dark .style-light .m-modal label,
.style-dark .style-light .m-modal textarea:not(.disabled),
.style-dark .style-light .m-modal select:not(.disabled),
.style-dark .style-light .m-modal input:not(.disabled) {
  color: #303133;
}
.style-light .box-wrapper .btn-default, .style-light .box-wrapper .woocommerce-page .wc-block-cart__submit-button, .woocommerce-page .style-light .box-wrapper .wc-block-cart__submit-button,
.style-light .box-wrapper .btn-outline,
.style-light .box-wrapper .btn-default.btn-outline,
.style-light .m-modal .btn-default,
.style-light .m-modal .woocommerce-page .wc-block-cart__submit-button,
.woocommerce-page .style-light .m-modal .wc-block-cart__submit-button,
.style-light .m-modal .btn-outline,
.style-light .m-modal .btn-default.btn-outline,
.style-dark .style-light .box-wrapper .btn-default,
.style-dark .style-light .box-wrapper .btn-outline,
.style-dark .style-light .box-wrapper .btn-default.btn-outline,
.style-dark .style-light .m-modal .btn-default,
.style-dark .style-light .m-modal .btn-outline,
.style-dark .style-light .m-modal .btn-default.btn-outline {
  border-color: #d0d5dd !important;
}
.style-light .box-wrapper .btn-sm:not(.btn-custom-typo):not(.btn-inherit):not(.uncode-nav-container),
.style-light .m-modal .btn-sm:not(.btn-custom-typo):not(.btn-inherit):not(.uncode-nav-container),
.style-dark .style-light .box-wrapper .btn-sm:not(.btn-custom-typo):not(.btn-inherit):not(.uncode-nav-container),
.style-dark .style-light .m-modal .btn-sm:not(.btn-custom-typo):not(.btn-inherit):not(.uncode-nav-container) {
  font-size: 0.75rem !important;
  font-weight: 300 !important;
  padding: 0.5rem 1rem !important;
}

body.uncode-accessible input {
  outline: none;
}

.style-light input:not([type=submit]):not([type=button]):not([type=number]):not([type=checkbox]):not([type=radio]):focus,
.style-light textarea:focus, .style-dark .style-light input:not([type=submit]):not([type=button]):not([type=number]):not([type=checkbox]):not([type=radio]):focus,
.style-dark .style-light textarea:focus {
  border-color: #005279;
}

.main-container .icon-before {
  display: inline-block;
}

.field-group-name--company-page-static .heading-text.el-text > h3 {
  display: none;
}
.field-group-name--company-page-static .vc_row.stellenanzeige {
  display: none;
}

.role-sidebar {
  grid-area: sidebar;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 16rem;
  z-index: 50;
  overflow: hidden;
  transition: width 0.18s ease;
  background-color: #fff;
}
.dark .role-sidebar {
  background-color: #111827;
  border-right-color: #1f2937;
}
.role-sidebar.is-collapsed {
  width: 4rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.role-sidebar.is-collapsed .logo {
  display: none;
}
.role-sidebar.is-collapsed .logo-small {
  display: block;
  max-width: 80%;
  margin: 0 auto;
}
.role-sidebar.is-collapsed .promo-block {
  display: none;
}
.role-sidebar.is-collapsed .promo-block-collapsed {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 0.7rem;
  background-color: #F44893;
  border-radius: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  max-height: 40px;
}
.role-sidebar.is-collapsed .promo-block-collapsed a {
  color: #fff;
}
.role-sidebar.is-collapsed .promo-block-collapsed a:hover {
  color: #fff;
}
.role-sidebar.is-collapsed .promo-block-collapsed:hover {
  background-color: #000;
}
.role-sidebar.is-collapsed .role-sidebar__logo {
  padding: 0.75rem 0.25rem;
}
.role-sidebar.is-collapsed .role-sidebar__logo a {
  display: block;
  width: 3.5rem;
}
.role-sidebar.is-collapsed .role-sidebar__logo img {
  width: 100%;
}
.role-sidebar.is-collapsed .role-menu li a {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}
.role-sidebar.is-collapsed .role-menu li a span:not(.menu-icon) {
  display: none;
}
.role-sidebar.is-collapsed .role-menu li a span.menu-icon {
  display: flex;
}
.role-sidebar .logo-small, .role-sidebar .promo-block-collapsed {
  display: none;
}
.role-sidebar .role-sidebar__logo img {
  width: 80%;
}
.role-sidebar .promo-block {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: #f9fafb;
  border-radius: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 210px;
}
.dark .role-sidebar .promo-block {
  background-color: #1f2937;
}
.role-sidebar .promo-block h4 {
  font-weight: 600;
  color: #111827;
  margin: 0;
  font-size: 1rem;
}
.dark .role-sidebar .promo-block h4 {
  color: #f9fafb;
}
.role-sidebar .promo-block p {
  font-size: 0.75rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
}
.dark .role-sidebar .promo-block p {
  color: #d1d5db;
}
.role-sidebar .promo-block .btn, .woocommerce-page .role-sidebar .promo-block .wc-block-cart__submit-button, .role-sidebar .promo-block .woocommerce-page .wc-block-cart__submit-button {
  background-color: var(--color-brand-pink);
  border-color: var(--color-brand-pink);
  color: #fff;
  border-radius: 0.625rem;
  padding: 0.75rem 1rem !important;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  transition: all 0.2s;
  margin-top: 20px;
}
.role-sidebar .promo-block .btn:hover, .woocommerce-page .role-sidebar .promo-block .wc-block-cart__submit-button:hover, .role-sidebar .promo-block .woocommerce-page .wc-block-cart__submit-button:hover {
  background-color: #e03681;
  border-color: #e03681;
  color: #fff;
  opacity: 0.9;
}

.role-sidebar__logo {
  padding: 1.25rem 1.5rem;
}

.role-sidebar__top {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: grid;
}

.role-sidebar__bottom {
  padding: 1rem;
  border-top: none;
}

.role-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.role-menu li {
  line-height: 1;
}
.role-menu li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: #374151;
  text-decoration: none;
  transition: background-color 0.2s;
  font-size: 0.875rem;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
}
.role-menu li a i {
  margin-right: 0px !important;
}
.role-menu li a:hover {
  background-color: #f3f4f6;
  color: #F44893;
}
.role-menu li a .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  border-radius: 4px;
  color: #9ca3af;
}
.role-menu li a .icon::before {
  content: "•";
  font-size: 1.2rem;
  display: none;
}
.role-menu li a .menu-media {
  width: 1rem;
  filter: brightness(0);
  opacity: 0.5;
}
.dark .role-menu li a {
  color: #fff !important;
}
.dark .role-menu li a:hover {
  color: #F44893 !important;
}
.dark .role-menu li a:hover .menu-media {
  filter: brightness(0);
  opacity: 0.5;
}
.dark .role-menu li a .menu-media {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.role-menu li.current_page_item a {
  color: #F44893 !important;
  background-color: #f3f4f6;
}
.role-menu li.current_page_item a .menu-media {
  filter: brightness(0);
  opacity: 0.5;
}
.dark .role-menu li.current_page_item a {
  color: #F44893 !important;
}
.dark .role-menu li.current_page_item a .menu-media {
  filter: brightness(0);
  opacity: 0.5;
}

.col-widgets-sidebar .single-block-padding {
  padding: 1rem 0.5rem 1rem 1rem;
}

.widget-container.widget_nav_menu .menu-item {
  margin-bottom: 1rem;
}
.widget-container.widget_nav_menu .menu-item a {
  display: flex;
  align-items: center;
}
.widget-container.widget_nav_menu .menu-item a:before {
  content: none !important;
}
.widget-container.widget_nav_menu .menu-item a i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

.role-sidebar.is-collapsed ~ .role-topbar {
  left: 4rem;
  width: calc(100vw - 4rem);
}

.role-topbar {
  grid-area: topbar;
  position: fixed;
  top: 0;
  left: 16rem;
  height: 3.5rem;
  width: calc(100vw - 16rem);
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  z-index: 101;
  transition: left 0.18s ease, width 0.18s ease;
  gap: 1rem;
}
body.admin-bar .role-topbar {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .role-topbar {
    top: 46px;
  }
}
.role-topbar__toggle {
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  padding: 0.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}
.role-topbar__toggle:hover {
  background-color: #f9fafb;
  color: #374151;
}
.role-topbar__toggle .fa-arrow-left {
  transition: transform 0.3s ease;
}
.role-topbar__toggle .arrow-to-line {
  transform: rotate(180deg);
}
.role-topbar__toggle.collapsed .arrow-to-line {
  transform: none;
}
.role-topbar__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}
.role-topbar__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.role-topbar__item {
  display: flex;
  align-items: center;
}
.role-topbar__item--user {
  position: relative;
}
.role-topbar__item--user.is-open .role-topbar__user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.role-topbar__item--user.is-open .role-topbar__chevron {
  transform: rotate(180deg);
}
.role-topbar__link, .role-topbar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: all 0.2s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.role-topbar__link:hover, .role-topbar__btn:hover {
  color: #111827;
}
.role-topbar__item--cart {
  margin-right: 0.75rem;
}
.role-topbar__badge {
  position: absolute;
  top: -0.75rem;
  right: -1.25rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  height: 1.25rem;
  min-width: 1.25rem;
  padding: 0 4px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background-color: #d0d5dd;
}
.role-topbar__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background-color: #fff;
}
.role-topbar__btn:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
}
.role-topbar__btn .sun-icon {
  display: none;
}
.role-topbar__btn .moon-icon {
  display: block;
}
.role-topbar__user-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  font-size: 0.95rem;
}
.role-topbar__user-link:hover {
  opacity: 0.8;
}
.role-topbar__user-name {
  font-size: 0.875rem;
}
.role-topbar__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #f3f4f6;
}
.role-topbar__avatar-initials {
  width: 35px;
  height: 35px;
  background-color: #f44893;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  flex-shrink: 0;
}
.role-topbar__chevron {
  color: #9ca3af;
  transition: transform 0.25s ease;
}
.role-topbar__user-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 320px;
  padding: 28px 28px 24px;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(27, 39, 94, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
}
.role-topbar__user-dropdown-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #3f4a63;
  margin-bottom: 10px;
}
.role-topbar__user-dropdown-email {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #6a738b;
  word-break: break-word;
}
.role-topbar__user-dropdown-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e7eaf0;
}
.role-topbar__user-dropdown-logout a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #6a738b;
  text-decoration: none;
  transition: color 0.2s ease;
}
.role-topbar__user-dropdown-logout a:hover {
  color: #e74c3c;
}
.role-topbar__user-dropdown-logout i {
  font-size: 16px;
  opacity: 0.7;
}

html.dark .role-topbar {
  background-color: #111827;
  border-bottom-color: #1f2937;
}
html.dark .role-topbar__toggle {
  border-color: #374151;
  color: #9ca3af;
  background-color: #1f2937;
}
html.dark .role-topbar__toggle:hover {
  background-color: #111827;
  color: #fff;
}
html.dark .role-topbar__toggle svg.arrow-to-line path {
  fill: #a8a8a8;
}
html.dark .role-topbar__toggle:hover svg.arrow-to-line path {
  fill: #ffffff;
}
html.dark .role-topbar__link, html.dark .role-topbar__btn {
  color: #d1d5db;
}
html.dark .role-topbar__link:hover, html.dark .role-topbar__btn:hover {
  color: #fff;
}
html.dark .role-topbar__btn {
  background-color: #1f2937;
  border-color: #374151;
}
html.dark .role-topbar__btn .sun-icon {
  display: block;
}
html.dark .role-topbar__btn .moon-icon {
  display: none;
}
html.dark .role-topbar__user-link {
  color: #f9fafb;
}
html.dark .role-topbar__badge {
  background-color: #3b82f6;
}
html.dark .role-topbar__user-dropdown {
  background: #111827;
}
html.dark .role-topbar__user-dropdown-name, html.dark .role-topbar__user-dropdown-email {
  color: #fff;
}
html.dark .role-topbar__avatar-initials {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.role-layout {
  display: grid;
  grid-template-areas: "sidebar topbar" "sidebar main";
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  height: auto;
  min-height: 100vh;
  overflow: visible;
}
body.admin-bar .role-layout {
  padding-top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .role-layout {
    padding-top: 46px;
  }
}

.role-main {
  grid-area: main;
  padding: 3rem 2rem 2rem 2rem;
  background-color: #f9fafb;
  overflow-y: auto;
  transition: margin-left 0.18s ease;
  min-height: 100vh;
}
.dark .role-main {
  background-color: #1f2937;
}

.page-messages {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.page-messages > * {
  max-width: 840px;
}

.split-page {
  display: flex;
  min-height: 100vh;
  width: 100%;
}
.split-page__left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #fff;
}
.split-page__content {
  width: 100%;
  max-width: 440px;
}
.split-page__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .split-page__right {
    display: none;
  }
}
.split-page__brand {
  text-align: center;
  max-width: 480px;
}
.split-page__logo {
  font-size: 5rem;
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.split-page__logo span {
  font-size: 0.5em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.05em;
}
.split-page__claim {
  font-size: 1.25rem;
  line-height: 1.4;
  opacity: 0.95;
  font-weight: 400;
}
.split-page__footer {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 1.5rem;
  opacity: 0.8;
}

:root {
  --field-group-cell-width: 100%;
}

.form-field-name-fields\[field_profile_picture\] .image-preview,
.field-item-name--field-profile-picture img {
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  object-fit: cover;
}

.entity-view .field-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.entity-view .field-group.field-group--cols-2 {
  --field-group-cell-width: 50%;
}
.entity-view .field-group .field-row {
  display: flex;
  width: 100%;
}
.entity-view .field-group .field-item.field-item--colspan-2 {
  --cell-width: 100%;
  --field-group-cell-width: 100%;
}
.entity-view .field-group .field-item {
  flex: 0 0 var(--field-group-cell-width);
  max-width: var(--field-group-cell-width);
  padding: 0 15px;
  margin-bottom: 1rem;
  display: block;
  border-bottom: none;
}
@media (max-width: 768px) {
  .entity-view .field-group .field-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.entity-view .field-group .field-item .field-label {
  color: #6c757d;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  flex: none;
  width: auto;
  padding-right: 0;
  font-weight: normal;
}
.entity-view .field-group .field-item .field-value {
  font-weight: bold;
  flex: none;
  color: #333;
}
.entity-view .field-item-type--repeater .field-values > .field-value > .field-item {
  max-width: 100%;
}
.entity-view .field-item-type--file a > .fa {
  margin-right: 0.25rem;
}
.entity-view .field-item-name--field-driving-licenses .field-values,
.entity-view .field-item-name--field-language-skills .field-values {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.entity-view .field-item-name--field-driving-licenses .field-values > .field-value,
.entity-view .field-item-name--field-language-skills .field-values > .field-value {
  display: flex;
  gap: 0.5rem;
}
.entity-view .field-item-name--field-driving-licenses .field-values > .field-value .field-item,
.entity-view .field-item-name--field-language-skills .field-values > .field-value .field-item {
  padding: 0;
  margin: 0;
  flex: none;
}
.entity-view .field-item-name--field-driving-licenses .field-values > .field-value .field-item .field-label,
.entity-view .field-item-name--field-language-skills .field-values > .field-value .field-item .field-label {
  display: none;
}
.entity-view .field-item-name--field-driving-licenses .field-values > .field-value .field-item.field-item-name--field-language-level .field-value,
.entity-view .field-item-name--field-language-skills .field-values > .field-value .field-item.field-item-name--field-language-level .field-value {
  font-size: 0.875rem;
  font-weight: 300;
}
.entity-view .field-item-name--field-documents .field-values {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.entity-view .field-item-name--field-documents .field-item {
  padding: 0;
  margin: 0;
}

.entity-view-company-profile .profile-card,
.entity-view-expert-profile .profile-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.entity-view-company-profile .profile-section .section-header,
.entity-view-expert-profile .profile-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
}
.entity-view-company-profile .profile-section .section-header .title-container,
.entity-view-expert-profile .profile-section .section-header .title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.entity-view-company-profile .profile-section .section-header .title-container h3,
.entity-view-expert-profile .profile-section .section-header .title-container h3 {
  margin: 0;
}
.entity-view-company-profile .profile-section .section-header .title-container .profile-preview-link,
.entity-view-expert-profile .profile-section .section-header .title-container .profile-preview-link {
  margin-left: 1rem;
  text-decoration: underline;
  font-size: 0.875rem;
}
.form-field-name-fields\[field_logo\] img,
.field-item-name--field-logo img {
  width: 140px;
  height: 120px;
  object-fit: cover;
}

.entity-view-company-profile .field-item-name--field-gallery .field-values {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.entity-view-company-profile .field-item-name--field-gallery .field-values .gallery-item {
  position: relative;
  width: 120px;
  height: 100px;
}
.entity-view-company-profile .field-item-name--field-gallery .field-values .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.entity-view-company-profile .field-item-name--field-gallery .field-values .gallery-item:hover .delete-icon {
  opacity: 1;
}
.entity-view-company-profile .field-item-name--field-gallery .field-values .gallery-item .delete-icon {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #fff;
  color: #dc3545;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.2s;
  border: 1px solid #dc3545;
  z-index: 10;
}
.entity-view-company-profile .field-item-name--field-gallery .field-values .gallery-item .delete-icon::before {
  content: "\f00d";
  font-family: "FontAwesome";
}

.woocommerce-page {
  font-weight: 400;
  --wp--preset--font-size--medium: 1rem;
}
.woocommerce-page .wc-block-components-product-name {
  font-size: 1rem;
}
.woocommerce-page .post-content {
  max-width: 1140px;
}
.woocommerce-page form p {
  font-weight: 400;
  line-height: 1.25;
}
.woocommerce-page .wc-block-components-sidebar div[class^=wp-block-woocommerce] {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.woocommerce-page.woocommerce-cart .wc-block-cart-item__product .wc-block-components-quantity-selector {
  display: none;
}
.woocommerce-page.woocommerce-cart .wc-block-components-totals-item {
  display: flex;
  flex-wrap: nowrap;
}
.woocommerce-page.woocommerce-cart .wc-block-components-totals-shipping,
.woocommerce-page.woocommerce-cart .wc-block-components-totals-item__description {
  display: none;
}
.woocommerce-page.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
  font-size: 0.75rem;
}
.woocommerce-page.woocommerce-checkout .wc-block-components-address-card .wc-block-components-address-card__edit,
.woocommerce-page.woocommerce-checkout .wc-block-checkout__use-address-for-billing,
.woocommerce-page.woocommerce-checkout .wc-block-components-totals-shipping,
.woocommerce-page.woocommerce-checkout .wc-block-checkout__shipping-option,
.woocommerce-page.woocommerce-checkout .wc-block-checkout__payment-methods,
.woocommerce-page.woocommerce-checkout .wc-block-checkout__add-note,
.woocommerce-page.woocommerce-checkout .wc-block-components-order-summary-item__image img {
  display: none;
}
.woocommerce-page.woocommerce-order-received .woocommerce-order-overview {
  margin-bottom: 3rem;
}
.woocommerce-page.woocommerce-order-received .woocommerce-order-overview > * {
  margin-bottom: 0.25rem;
}
.woocommerce-page.woocommerce-order-received .shop_table {
  background-color: transparent;
  max-width: 741px;
  margin-top: 0.5rem;
}
.woocommerce-page.woocommerce-order-received .shop_table th,
.woocommerce-page.woocommerce-order-received .shop_table td {
  padding: 0.5rem !important;
  margin-top: 0;
  margin-bottom: 0;
}
.woocommerce-page.woocommerce-order-received .col2-set.addresses .col-2 {
  display: none;
}
.uncode-cart .cart-icon-container .badge {
  border-radius: 0.5rem;
  padding: 2px;
  font-size: 0.75rem;
  top: -6px;
  left: 14px;
}
.uncode-cart .cart_list {
  display: none !important;
}

.woocommerce-page .wc-block-components-validation-error,
.notice-banner-danger {
  border: 2px solid #fee4e2;
  align-content: flex-start;
  align-items: stretch;
  border-radius: 0.25rem;
  box-sizing: border-box;
  color: var(--color-body);
  display: flex;
  font-size: 0.875rem;
  font-weight: 400;
  gap: 0.75rem;
  line-height: 1.5;
  margin: 1rem 0;
  padding: 1rem;
}
.woocommerce-page .wc-block-components-validation-error a,
.notice-banner-danger a {
  color: var(--color-body) !important;
  text-decoration: underline;
}
.woocommerce-page .wc-block-components-validation-error a:hover,
.notice-banner-danger a:hover {
  color: inherit !important;
}

.woocommerce-orders .wc-notice a[href*="/shop"] {
  display: none;
}

#order_review .wc-gzd-checkbox-placeholder p.form-row.checkbox-legal label input {
  border-color: #e4e7ec;
}

.woocommerce-form__label.checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 0.25rem;
}

.woocommerce-form__input-checkbox {
  order: 0;
  margin-top: 4px !important;
  margin-right: 4px !important;
  flex-shrink: 0;
}

.woocommerce-gzd-legal-checkbox-text {
  order: 2;
}

.woocommerce-form__label.checkbox .required {
  order: 1;
  margin-left: -6px;
}

html.dark .use-light {
  display: none;
}
html.dark h1, html.dark h2, html.dark h3, html.dark h4 {
  color: #fff !important;
}
html.dark .portal-content p, html.dark .portal-content p strong {
  color: #f7f7f7 !important;
}
html.dark .style-color-xsdn-bg {
  background-color: #111827;
}
html.dark .facts-table td:first-child {
  color: #fff;
}
html.dark .style-light a {
  color: #a8a8a8;
}
html.dark .custom-faq-container .panel-group .panel,
html.dark .custom-faq-container .panel-group .panel:not(.active-group) {
  background-color: transparent !important;
}
html.dark .page-id-166319 .portal-content .sticky-col-company p,
html.dark .page-id-166319 .portal-content .sticky-col-company p strong,
html.dark .page-id-166319 .portal-content .sticky-col-company h3 {
  color: #f7f7f7 !important;
}
html.dark .stellenanzeige .text-default-color {
  color: #fff;
}

html:not(.dark) .use-dark {
  display: none;
}

.sidebar-benefits .badge-style {
  color: #009a66 !important;
  fill: #009a66 !important;
  background-color: #f2faf7;
}

.btn-color-915904 {
  color: #ffffff !important;
  background-color: #005279 !important;
  border-color: #005279 !important;
}

.style-light .m-modal .m-modal__dialog .btn:not(.btn-custom-typo):not(.btn-inherit):not(.uncode-nav-container), .style-light .m-modal .m-modal__dialog .woocommerce-page .wc-block-cart__submit-button:not(.btn-custom-typo):not(.btn-inherit):not(.uncode-nav-container), .woocommerce-page .style-light .m-modal .m-modal__dialog .wc-block-cart__submit-button:not(.btn-custom-typo):not(.btn-inherit):not(.uncode-nav-container) {
  font-weight: 600 !important;
}

.m-modal__dialog[data-modal-key=company-profile] {
  background-color: #f9fafb;
}

.profile-card.static-company-page .main-container > .wpb-content-wrapper > * > * {
  max-width: 100% !important;
}

.user-role--flt-admin .col-manage {
  display: none;
}

/*# sourceMappingURL=style.css.map */
