/* Vacancy detail — layout aligned with reference (system fonts, no webfont requirement) */

:root {
  --vd-bg: #f0f2f5;
  --vd-card: #ffffff;
  --vd-ink: #1f2937;
  --vd-ink-strong: #111827;
  --vd-muted: #6b7280;
  --vd-line: #e5e7eb;
  --vd-blue: #0d5cb6;
  --vd-blue-hover: #0a4a92;
  --vd-blue-soft: #e8f2fc;
  --vd-navy: #1a2b48;
  --vd-navy-inner: #243552;
  --vd-row-sart-odd: #f0f7ff;
  --vd-row-sart-even: #ffffff;
  --vd-row-gemi-odd: #ddf2fb;
  --vd-row-gemi-even: #ffffff;
  --vd-radius: 12px;
  --vd-radius-sm: 10px;
  --vd-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  --sticky-top: 80px;

  --line: var(--vd-line);
  --ink: var(--vd-ink);
  --card: var(--vd-card);
  --brand: var(--vd-navy);
  --primary: var(--vd-blue);
  --primary-2: var(--vd-blue-hover);
  --ring: #93c5fd;
  --shadow: 0 14px 40px rgba(2, 6, 23, 0.1);
  --shadow-soft: var(--vd-shadow);
  --radius: 10px;

  --border: 220 15% 90%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--vd-bg);
  color: var(--vd-ink);
  line-height: 1.45;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 2.15fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 1020px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.vd-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

#sartlar,
#gemi,
#aciklama,
#benzer {
  scroll-margin-top: calc(var(--sticky-top) + 12px);
}

/* ----- Cards ----- */
.vd-card {
  background: var(--vd-card);
  border: 1px solid hsl(var(--border));
  border-radius: var(--vd-radius);
  box-shadow: var(--vd-shadow);
  padding: 1.25rem;
}

.vd-anchor-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vd-job-hero {
  padding-bottom: 20px;
}

.vh-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.title-xl {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.4vw, 1.5rem);
  font-weight: 700;
  color: var(--vd-ink-strong);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: left;
}

.vh-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: .3rem;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  background: #f3f4f6;
  border: 1px solid var(--vd-line);
  line-height: 1.2;
}

.chip--gold {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a3412;
}

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #000;
}

button.meta-pill {
  font: inherit;
  cursor: pointer;
}

.vh-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.vd-btn-outline {
  background: #fff !important;
  color: #374151 !important;
  border: 1px solid #d1d5db !important;
}

.vd-btn-outline:hover {
  background: #f9fafb !important;
}

.vd-btn-save.is-saved,
#btn-save[aria-pressed="true"] {
  border-color: var(--vd-blue) !important;
  color: var(--vd-blue) !important;
  background: var(--vd-blue-soft) !important;
}

/* Section headers (İlan Şartları / Gemi) */
.vd-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
}

.vd-section-head svg {
  flex-shrink: 0;
  color: var(--vd-blue);
  width: 22px;
  height: 22px;
}

.vd-section-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vd-navy);
}

/* Zebra tables */
.vd-info-table {
  border-radius: var(--vd-radius-sm);
  overflow: hidden;
  border: 1px solid var(--vd-line);
}

.vd-info-row {
  display: grid;
  grid-template-columns: minmax(120px, 38%) 1fr;
  align-items: center;
  font-size: 14px;
}


.vd-info-table--sartlar .vd-info-row:nth-child(even) {
  background: var(--vd-row-sart-even);
}

.vd-info-table--gemi .vd-info-row:nth-child(odd) {
  background: #f8f8f9;
}

.vd-info-table--sartlar .vd-info-row:nth-child(odd) {
  background: #f8f8f9;
}

.vd-info-table--gemi .vd-info-row:nth-child(even) {
  background: var(--vd-row-gemi-even);
}

.vd-td-label {
  color: #5a6b7d;
  font-weight: 500;
}

.apply-block {
  padding: 1.25rem;
  border-top: 1px solid #eef0f3;
}

.vd-td-val {
  color: var(--vd-navy);
  font-weight: 700;
}

/* İlan açıklaması */
.vd-desc-section {
  padding: 24px;
}

.vd-desc-outer-title {
  margin: 0 0 18px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.vd-desc-inner {
  border: 1px solid var(--vd-line);
  border-radius: var(--vd-radius-sm);
  padding: 20px;
  background: #fff;
}

.vd-desc-lead {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
}

.vd-desc-emoji {
  margin-right: 6px;
}

.vd-desc-body {
  position: relative;
  color: #555;
  line-height: 1.55;
  font-size: 15px;
}

#descClamp.clamp {
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#descClamp.clamp::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}

#descClamp.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

#descClamp.expanded::after {
  display: none;
}

.show-more-link {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  color: var(--vd-blue);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.show-more-link:hover {
  text-decoration: underline;
}

.muted {
  color: var(--vd-muted);
}

.title-md {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--vd-navy);
}

.mt-12 {
  margin-top: 16px;
}

/* Benzer ilanlar */
.similar-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.similar-card {
  position: relative;
  padding: 14px;
  border: 1px solid var(--vd-line);
  border-radius: var(--vd-radius-sm);
  background: #fff;
  box-shadow: var(--vd-shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.similar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.similar-card .row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.similar-ico {
  width: 100px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--vd-line);
  background: #f8fafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.similar-ico svg {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

.similar-logo {
  width: 100px;
  height: 32px;
  object-fit: contain;
}

.similar-meta {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--vd-line);
  font-size: 12px;
  color: #475569;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.similar-meta .icon {
  width: 14px;
  height: 14px;
}

/* Aside */
.aside {
  position: sticky;
  top: var(--sticky-top);
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Şirket kartı — lacivert şerit + gövde */
.company-card.vd-company {
  padding: 0;
  overflow: hidden;
  border-radius: var(--vd-radius);
  border: 1px solid var(--vd-line);
  box-shadow: var(--vd-shadow);
  background: #fff;
}

.company-card.vd-company::before {
  display: none;
}

.vd-company-navy {
  background: var(--vd-navy);
  padding: 26px 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vd-company-logo-wrap {
  width: 76px;
  height: 76px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.vd-company-logo-wrap .company-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.vd-company-initial {
  width: 76px;
  height: 76px;
  border-radius: 14px;
  background: var(--vd-navy-inner);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vd-company-initial--icon {
  color: rgba(255, 255, 255, 0.95);
}

.vd-company-initial--icon svg {
  width: 32px;
  height: 32px;
}


.company-card.vd-company .company-name {
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  color: var(--vd-ink-strong);
  margin: 0.75rem 1.25rem;
}

.company-type {
  margin: 10px auto 0;
  display: table;
  padding: 5px;
  border-radius: .3rem;
  font-size: 9px;
  font-weight: 600;
  color: #0d5cb6;
  background: #c3ebff;
  border: 1px solid rgba(13, 92, 182, 0.15);
  text-align: center;
  max-width: 100%;
  position: absolute;
  top: 0;
  right: 10px;
}

.company-card.vd-company .company-actions {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.company-card.vd-company .company-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  border-top: 1px solid #eef0f3;
  transition: background 0.12s ease;
}

.company-card.vd-company .company-action:first-of-type {
  border-top: 1px solid #eef0f3;
}

.company-card.vd-company .company-action:hover {
  background: #f8fafc;
  transform: none;
  box-shadow: none;
}

.company-card.vd-company .company-action-ico {
  width: auto;
  height: auto;
  border: none;
  background: transparent;
  padding: 0;
}

.company-card.vd-company .company-action-ico svg {
  width: 20px;
  height: 20px;
  opacity: 0.85;
}

.company-card.vd-company .company-action-text {
  font-weight: 700;
  font-size: 13px;
  color: #374151;
}

.company-card.vd-company .company-action-chev {
  margin-left: auto;
  color: #9ca3af;
}

.company-card.vd-company .company-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.75rem 1.25rem;
  border: none;
  background: transparent;
  border-top: 1px solid #eef0f3;
}

.company-card.vd-company .company-address-text {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.company-divider {
  display: none;
}

.company-apply-status {
  padding: 12px 14px;
  border-radius: var(--vd-radius-sm);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  border: 1px solid transparent;
}

.company-apply-status.is-closed {
  background: rgba(180, 35, 24, 0.1);
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.22);
}

.company-apply-status.is-expired {
  background: rgba(102, 112, 133, 0.12);
  color: #667085;
  border-color: rgba(102, 112, 133, 0.24);
}

.btn-primary {
  padding: 0.75rem 1.1rem;
  border: 0;
  border-radius: var(--vd-radius-sm);
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--vd-blue);
  box-shadow: 0 8px 20px rgba(13, 92, 182, 0.28);
  transition: transform 0.14s ease, box-shadow 0.14s ease, opacity 0.14s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--vd-blue-hover);
  box-shadow: 0 12px 26px rgba(13, 92, 182, 0.32);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.btn-primary[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.company-apply {
  width: 100%;
  margin-top: 14px;
  min-height: 48px;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: var(--vd-radius-sm);
  box-shadow: 0 10px 22px rgba(13, 92, 182, 0.22);
}

.company-footnote {
  margin-top: 12px;
  text-align: center;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
  padding: 0 4px;
}

/* Hızlı bilgiler */
.vd-quick-info {
  padding: 20px 22px;
}

.vd-quick-info-title {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--vd-ink-strong);
}

.vd-quick-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vd-quick-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.4;
}

.vd-quick-info-list li+li {
  margin-top: 10px;
}

.vd-quick-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: #b8d9f5;
  box-shadow: 0 0 0 3px rgba(13, 92, 182, 0.12);
}

.vd-quick-line strong {
  color: var(--vd-navy);
  font-weight: 700;
}

/* Mobil başvuru */
.apply-dock {
  display: none;
  position: sticky;
  z-index: 25;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--vd-line);
  padding: 12px 14px;
  box-shadow: 0 -6px 20px rgba(15, 23, 42, 0.06);
  border-radius: .75rem;
}

.apply-dock .btn-primary {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 1020px) {
  .apply-dock {
    display: flex;
    bottom: 69px;
  }
}

/* Modal */
.dkapp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 50;
  backdrop-filter: blur(2px);
}

.dkapp-overlay[aria-hidden="false"] {
  display: flex;
}

.dkapp-overlay[aria-hidden="false"] .dkapp-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dkapp-card {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border: 1px solid var(--vd-line);
  border-radius: var(--vd-radius-sm);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: transform 0.18s ease, opacity 0.18s ease;
  display: flex;
  flex-direction: column;
  max-height: min(85vh, 760px);
  overflow: hidden;
  position: relative;
}

.dkapp-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vd-navy) 0%, var(--vd-blue) 100%);
}

.dkapp-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--vd-line);
}

.dkapp-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.dkapp-sub {
  margin-top: 6px;
  font-size: 13px;
  color: var(--vd-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dkapp-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.dkapp-close {
  order: 1px solid #cfcece;
  background: #f3f4f6;
  width: 40px;
  height: 40px;
  border-radius: var(--vd-radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dkapp-close:hover {
  background: #e5e7eb;
}

.dkapp-form {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.dkapp-main {
  padding: 16px 18px;
  overflow-y: auto;
}

.dkapp-field {
  margin-bottom: 14px;
}

.dkapp-label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 28px;
}

.dkapp-textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px;
  border: 1px solid var(--vd-line);
  border-radius: 8px;
  font: inherit;
  resize: vertical;
}

.dkapp-textarea:focus {
  outline: none;
  border-color: var(--vd-blue);
  box-shadow: 0 0 0 3px rgba(13, 92, 182, 0.15);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  margin-top: 8px;
  padding-top: 3px;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-text {
  flex: 1;
  line-height: 1.4;
}

.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--vd-line);
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.checkbox input:focus-visible+.check {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.checkbox input:checked+.check {
  background: var(--vd-blue);
  border-color: var(--vd-blue);
}

.checkbox input:checked+.check::after {
  content: "";
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 0px;
}

.dkapp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--vd-line);
  background: #fafafa;
}

.dkapp-actions .meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--vd-line);
  border-radius: var(--vd-radius-sm);
  background: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--vd-ink);
}

.dkapp-actions .meta-pill:hover {
  background: #f9fafb;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(12px);
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Subnav (gizli — scrollspy için DOM’da kalır) */
.subnav {
  border-radius: 0 0 var(--vd-radius-sm) var(--vd-radius-sm);
}

.tab {
  scroll-margin-top: calc(var(--sticky-top) + 48px);
}

/* Similar ribbon (inline Detail.php) */
.similar-card .dkx-ribbon {
  position: absolute;
  top: 14px;
  right: -22px;
  z-index: 10;
  transform: rotate(45deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 19px;
  min-width: 94px;
  padding: 0 14px;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.3px;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.similar-card .dkx-ribbon.is-closed {
  background: #b42318;
}

.similar-card .dkx-ribbon.is-expired {
  background: #667085;
}

@media (max-width: 640px) {
  .vd-info-row {
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
    grid-auto-flow: column;
  }

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

  #btn-share {
    min-width: 44px;
    justify-content: center;
  }
}

.vd-company-navy {
  background: var(--vd-navy);
  padding: 26px 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.vd-company-navy.has-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(26, 43, 72, 0.40) 0%,
      rgba(26, 43, 72, 0.62) 100%);
  z-index: 0;
}

.vd-company-navy>* {
  position: relative;
  z-index: 1;
}


.vd-info-table {
  border: 1px solid #d9deee;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.vd-info-row {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  align-items: stretch;
}

.vd-info-row+.vd-info-row {
  border-top: 1px solid #d9deee;
}

.vd-td-label,
.vd-td-val {
  display: flex;
  align-items: center;
  padding: 7px 5px;
}

.vd-td-label {
  border-right: 1px solid #d9deee;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .vd-info-row {
    grid-template-columns: 1fr;
    grid-auto-flow: column;
  }

  .vd-td-label {
    border-right: 0;
    min-height: auto;
    padding-bottom: 12px;
    min-width: 150px;
  }

  .vd-td-val {
    min-height: auto;
  }
}

.dkx-breadcrumb-mini {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
    flex: 1 1 auto;
    font-size: 0.75rem;
    line-height: 1.25;
    color: #64748b;
    font-weight: 500;
    margin: 0 0 14px;
}


.dkx-breadcrumb-mini__item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.dkx-breadcrumb-mini__sep {
    flex: 0 0 auto;
    opacity: 0.55;
    line-height: 1;
}

.dkx-breadcrumb-mini__item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}