.skydocs-root {
  display: grid;
  grid-template-columns: var(--sk-sidebar, 320px) minmax(0, 1fr) 370px;
  gap: var(--sk-gap, 24px);
  font-family: var(--sk-font, Inter, Segoe UI, Arial, sans-serif);
  max-width: 1440px;
  margin: 0 auto;
  background: transparent;
}
.sk-loading,
.sk-empty,
.sk-error {
  border-radius: 12px;
  background: #fff;
  padding: 18px;
  color: #6b7280;
  font-size: 14px;
}
.sk-error button {
  border: 0;
  background: transparent;
  color: #111827;
  text-decoration: underline;
  margin-left: 6px;
  cursor: pointer;
}
.sk-sidebar,.sk-main,.sk-toc { border: 0; border-radius: var(--sk-radius, 12px); background: transparent; box-shadow: none !important; }
.sk-sidebar {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: calc(100vh - 24px);
  position: sticky;
  top: 12px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 40px;
}
.sk-head { padding: 14px; border-bottom: 0; flex-shrink: 0; }
#sk-search { width: 100%; border: 0; border-radius: 10px; padding: 10px 12px; background: #f3f4f6; font-size: 14px; color: #374151; }
#sk-quicknav-mount { flex-shrink: 0; padding: 0 10px 10px; }
.sk-quicknav {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fafafa;
  overflow: hidden;
}
.sk-quicknav-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
  color: #111827;
  border-radius: 12px;
  box-shadow: none;
  outline: none;
}
.sk-quicknav-head:hover { background: #f9fafb; }
.sk-quicknav-head-icon,
.sk-quicknav-item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--sk-active-bg, #E3F4FF);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sk-quicknav-head-icon .dashicons,
.sk-quicknav-item-icon .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
  color: var(--sk-primary, #75A1BF);
}
.sk-quicknav-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}
.sk-quicknav-head-text,
.sk-quicknav-item-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sk-quicknav-head-text strong,
.sk-quicknav-item-text strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}
.sk-quicknav-head-text small,
.sk-quicknav-item-text small {
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
  line-height: 1.25;
}
.sk-quicknav-chevron {
  flex-shrink: 0;
  color: #9ca3af;
  display: inline-flex;
  transition: transform 0.2s ease;
}
.sk-quicknav.is-open .sk-quicknav-chevron {
  transform: rotate(180deg);
}
.sk-quicknav-body {
  padding: 4px 6px 8px;
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
}
.sk-quicknav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px;
  margin: 4px 0;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eceff3;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}
.sk-quicknav-item:hover {
  background: #fafafa;
  border-color: #e5e7eb;
}
.sk-quicknav-item.is-active {
  border-color: #c5ddee;
  background: var(--sk-active-bg, #E3F4FF);
}
.sk-quicknav-item.is-active .sk-quicknav-item-text strong {
  color: var(--sk-primary, #75A1BF);
}
#sk-nav { padding: 8px; flex-shrink: 0; }
.sk-sidebar::-webkit-scrollbar,
#sk-nav::-webkit-scrollbar { width: 8px; }
.sk-sidebar::-webkit-scrollbar-thumb,
#sk-nav::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 999px; }
.sk-sidebar::-webkit-scrollbar-track,
#sk-nav::-webkit-scrollbar-track { background: transparent; }
.sk-cat { margin-bottom: 10px; }
.sk-search-trigger {
  width: 100%;
  border: 1px solid var(--sk-border, #eaecf0);
  border-radius: 10px;
  padding: 10px 12px 10px 38px;
  background: #fff;
  color: #6b7280;
  text-align: left;
  font-size: 14px;
  position: relative;
}
.sk-search-trigger::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border: 2px solid #98a2b3;
  border-radius: 999px;
  box-sizing: border-box;
}
.sk-search-trigger::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 57%;
  width: 6px;
  height: 2px;
  background: #98a2b3;
  transform: rotate(45deg);
  border-radius: 999px;
}
.sk-search-trigger:hover {
  border-color: #d0d5dd;
}
.sk-search-trigger:focus-visible {
  outline: 2px solid var(--sk-primary, #75A1BF);
  outline-offset: 2px;
}
.sk-cat-btn { width: 100%; border: 0; background: transparent; text-align: left; padding: 10px 10px; display: flex; align-items: center; gap: 8px; color: #1f2937; font-weight: 600; font-size: 14px; border-radius: 10px; box-shadow: none; outline: none; }
.sk-cat-btn:hover { background: #f7f7f8; }
.sk-cat-title-wrap { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.sk-cat-title { min-width: 0; line-height: 1.2; }
.sk-arrow { transition: transform .2s ease; color: #9ca3af; display: inline-flex; width: 18px; height: 18px; align-items: center; justify-content: center; }
.sk-arrow svg { width: 14px; height: 14px; }
.sk-arrow.open { transform: rotate(90deg); }
.sk-icon { width: 18px; height: 18px; border-radius: 0; background: transparent; display: inline-flex; align-items: center; justify-content: center; color: var(--sk-primary, #75A1BF); flex-shrink: 0; }
.sk-icon .dashicons { width: 16px; height: 16px; font-size: 16px; color: var(--sk-primary, #75A1BF); }
.sk-cat-icon-image { width: 16px; height: 16px; object-fit: contain; display: block; }
.sk-docs { display: none; padding: 0 0 8px 30px; }
.sk-docs.open { display: block; }
.sk-subcat { margin: 1px 0; }
/* Alt kategori satiri: dokuman butonlari (.sk-doc) ile ayni tipografi/boyut; tek fark sagdaki chevron */
.sk-subcat-btn {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  border-radius: 8px;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}
.sk-subcat-btn:hover {
  background: var(--sk-active-bg, #E3F4FF);
  color: var(--sk-primary, #75A1BF);
}
.sk-subcat-title-wrap { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.sk-subcat-title {
  min-width: 0;
  line-height: 1.25;
  color: inherit;
  font-weight: 500;
  font-size: 14px;
}
.sk-subcat-btn:hover .sk-arrow { color: var(--sk-primary, #75A1BF); opacity: 0.9; }
.sk-subcat-docs.sk-docs { margin-top: 2px; padding-left: 16px; padding-bottom: 8px; border-left: 0; }
.sk-cat-children > .sk-doc { margin-left: 0; }
.sk-doc { width: 100%; border: 0; background: transparent; text-align: left; padding: 10px 10px; color: #4b5563; border-radius: 8px; font-size: 14px; margin: 1px 0; font-weight: 500; box-shadow: none; outline: none; }
.sk-doc:hover { background: var(--sk-active-bg, #E3F4FF); color: var(--sk-primary, #75A1BF); }
.sk-doc.active { background: var(--sk-active-bg, #E3F4FF); color: var(--sk-primary, #75A1BF); font-weight: 600; }
.sk-main { padding: 40px 24px 22px; }
.sk-topbar { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 8px; }
.sk-topbar span { color: #9ca3af; font-size: 13px; font-weight: 500; }
.sk-topbar button { display: none !important; }
.sk-main h1 { margin: 0 0 18px; font-size: 42px; color: var(--sk-title, #1d2939); line-height: 1.2; }
.sk-main p, .sk-main li, .sk-main td, .sk-main th { color: #374151; font-weight: 400; }
.sk-main .has-text-align-left { text-align: left !important; }
.sk-main .has-text-align-center { text-align: center !important; }
.sk-main .has-text-align-right { text-align: right !important; }
.sk-main .has-text-align-justify { text-align: justify !important; }
.sk-main table,
.sk-main table.wp-block-table,
.sk-main .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 18px;
  font-size: 14px;
  line-height: 1.5;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.sk-main table thead th,
.sk-main table th,
.sk-main .wp-block-table table thead th,
.sk-main .wp-block-table table th {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  padding: 12px 14px;
  text-align: left;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid #e5e7eb !important;
  background: transparent !important;
}
.sk-main table tbody td,
.sk-main table td,
.sk-main .wp-block-table table tbody td,
.sk-main .wp-block-table table td {
  font-size: 14px;
  font-weight: 400;
  color: #4b5563;
  padding: 10px 14px;
  text-align: left;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid #eceff3 !important;
  background: transparent !important;
}
.sk-main figure.wp-block-image {
  margin: 18px 0 20px !important;
  padding: 15px;
  border: 1px solid var(--sk-border, #eaecf0);
  border-radius: 10px;
  background-color: #F2F6F8;
  box-sizing: border-box;
}
.sk-main figure.wp-block-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.sk-main figure.wp-block-image figcaption {
  margin-top: 8px;
}
.sk-main table tbody tr:last-child td,
.sk-main .wp-block-table table tbody tr:last-child td {
  border-bottom: 1px solid #eceff3 !important;
}
.sk-main table th:first-child,
.sk-main table td:first-child,
.sk-main .wp-block-table table th:first-child,
.sk-main .wp-block-table table td:first-child {
  padding-left: 0 !important;
}
.sk-main table th:last-child,
.sk-main table td:last-child,
.sk-main .wp-block-table table th:last-child,
.sk-main .wp-block-table table td:last-child {
  padding-right: 0 !important;
}

.sk-main figure.wp-block-table {
  margin: 8px 0 18px !important;
}

.sk-main figure.wp-block-table table * {
  box-shadow: none !important;
}
.sk-doc-pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 10px;
}
.sk-doc-nav-spacer {
  width: 140px;
  height: 28px;
  flex-shrink: 0;
  visibility: hidden;
  pointer-events: none;
}
.sk-doc-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  max-width: 46%;
  color: #3f3f46;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  transition: color 0.15s ease, opacity 0.15s ease;
}
.sk-doc-nav-btn:hover {
  color: var(--sk-primary, #75A1BF);
  opacity: 0.95;
}
.sk-doc-nav-btn:focus-visible {
  outline: 2px solid var(--sk-primary, #75A1BF);
  outline-offset: 2px;
  border-radius: 8px;
}
.sk-doc-nav-btn .sk-doc-nav-icon {
  display: block;
  width: 16px;
  height: 16px;
  color: #a1a1aa;
}
.sk-doc-nav-btn.next {
  margin-left: auto;
  justify-content: flex-end;
  text-align: right;
}
.sk-doc-nav-label {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sk-doc-social {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--sk-border, #eaecf0);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sk-doc-social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #98a2b3;
  text-decoration: none;
  transition: color .15s ease, background .15s ease;
}
.sk-doc-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}
.sk-doc-social-link:hover {
  color: var(--sk-primary, #75A1BF);
  background: #f8fafc;
}
.sk-doc-social-link:focus-visible {
  outline: 2px solid var(--sk-primary, #75A1BF);
  outline-offset: 2px;
}
.sk-toc { padding: 40px 16px 16px; position: sticky; top: 24px; align-self: start; }
.sk-toc.is-empty { min-height: 120px; }
.sk-toc h3 { margin: 0 0 10px; font-size: 14px; color: #9ca3af; font-weight: 600; }
.sk-toc ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.sk-toc a { color: #6b7280; text-decoration: none; font-size: 13px; transition: color 0.15s ease; }
.sk-toc a:hover { color: var(--sk-primary, #75A1BF); }
.sk-toc a.is-active { color: var(--sk-primary, #75A1BF); font-weight: 600; }
@media (max-width: 1250px) {
  .skydocs-root { grid-template-columns: var(--sk-sidebar, 320px) minmax(0,1fr); }
  .sk-toc { display: none; }
}

/* Breadcrumb: kategori + dokuman (masaustu ust cubuk + mobil) */
#sk-breadcrumb,
.sk-mobile-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  font-size: 13px;
  line-height: 1.3;
  color: #6b7280;
}
.sk-crumb-cat {
  color: #9ca3af;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sk-crumb-sep {
  color: #d1d5db;
  flex-shrink: 0;
  font-weight: 500;
}
.sk-crumb-doc {
  color: #111827;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sk-mobile-bar {
  display: none;
}
.sk-drawer-backdrop {
  display: none;
}
.sk-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sk-drawer-brand {
  flex-shrink: 0;
}
.sk-drawer-brand.is-empty {
  display: none;
}
.sk-drawer-logo-link {
  display: block;
  line-height: 0;
}
.sk-drawer-logo-img {
  max-height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Logo yalnizca mobil yan menude */
@media (min-width: 821px) {
  .sk-drawer-brand {
    display: none !important;
  }
}

@media (max-width: 820px) {
  .skydocs-root {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    gap: 0;
    align-items: stretch;
  }
  .sk-mobile-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    min-height: 52px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 200;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color .2s ease, border-color .2s ease;
  }
  .sk-mobile-bar.is-scrolled {
    background: #fff;
    border-bottom-color: var(--sk-border, #eaecf0);
  }
  .sk-menu-toggle {
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }
  .sk-menu-toggle:hover,
  .sk-menu-toggle:active {
    background: transparent;
    box-shadow: none;
  }
  .sk-menu-toggle:focus-visible {
    outline: 2px solid var(--sk-primary, #75A1BF);
    outline-offset: 2px;
  }
  .sk-menu-icon-svg {
    display: block;
  }
  .sk-mobile-breadcrumb {
    flex: 1;
    min-width: 0;
  }
  .sk-topbar {
    display: none;
  }
  .sk-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10001;
    margin: 0;
    border: 0;
    padding: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .sk-drawer-backdrop[hidden] {
    display: none !important;
  }
  .sk-drawer-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
  .sk-drawer-brand:not(.is-empty) {
    display: block;
    padding: 14px 16px 0;
    margin-bottom: 30px;
    border-bottom: 0;
    background: #fff;
  }
  .sk-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: min(88vw, var(--sk-sidebar, 320px));
    max-width: 360px;
    height: 100dvh;
    max-height: 100dvh;
    min-height: 0;
    z-index: 10002;
    margin: 0;
    border-radius: 0 14px 14px 0;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 8px 0 40px rgba(15, 23, 42, 0.12);
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .sk-sidebar.is-drawer-open {
    transform: translateX(0);
  }
  .sk-head {
    background: #fff;
  }
  #sk-nav {
    background: #fff;
  }
  .sk-main {
    order: 1;
    width: 100%;
    min-width: 0;
  }
  .sk-main h1 { font-size: 30px; }

  /* Genis tablolar: yalnizca mobilde yatay kaydirma, sayfa tasmaz */
  .sk-main .wp-block-table,
  .sk-main .sk-table-x-scroll {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  .sk-main .wp-block-table table,
  .sk-main .sk-table-x-scroll table {
    width: max-content;
    min-width: 100%;
  }
}

body.sk-drawer-open {
  overflow: hidden;
}

.sk-search-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.28);
  backdrop-filter: blur(3px);
  display: none;
  z-index: 99999;
  padding: 56px 20px;
}

.sk-search-modal.open {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.sk-search-dialog {
  width: min(760px, 96vw);
  max-height: 78vh;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
}

.sk-search-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid #f1f3f7;
}

#sk-search-input {
  border: 1px solid var(--sk-border, #eaecf0);
  background: #fff;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 15px;
}
#sk-search-input:focus {
  border-color: var(--sk-primary, #75A1BF);
  box-shadow: 0 0 0 3px rgba(117, 161, 191, 0.18);
  outline: none;
}

.sk-search-close {
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 700;
  padding: 0 8px;
}

.sk-search-results {
  overflow: auto;
  max-height: calc(78vh - 62px);
  padding: 8px;
}

.sk-search-item {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  border-radius: 10px;
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "meta arrow"
    "title arrow";
  gap: 4px 10px;
}

.sk-search-item:hover {
  background: #f8fafc;
}

.sk-search-meta {
  grid-area: meta;
  font-size: 12px;
  color: #9ca3af;
}

.sk-search-title {
  grid-area: title;
  font-size: 17px;
  color: #111827;
  font-weight: 500;
}

.sk-search-arrow {
  grid-area: arrow;
  align-self: center;
  color: #98a2b3;
  font-size: 18px;
}

.sk-search-empty {
  color: #9ca3af;
  font-size: 14px;
  padding: 12px;
}

body.sk-modal-open {
  overflow: hidden;
}

.sk-category-boxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sk-box-gap, 18px);
}
.sk-category-boxes.columns-1 { grid-template-columns: 1fr; }
.sk-category-boxes.columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sk-category-boxes.columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sk-category-boxes.columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sk-category-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--sk-box-bg, #fff);
  border: var(--sk-box-border-width, 1px) solid var(--sk-box-border, #e5e7eb);
  border-radius: var(--sk-box-radius, 22px);
  padding: var(--sk-box-padding, 22px);
  text-decoration: none;
  min-height: var(--sk-box-min-height, 170px);
  transition: box-shadow .16s ease, transform .16s ease;
}
.sk-category-box:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}
.sk-category-box-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sk-box-icon, #75A1BF);
}
.sk-category-box-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.sk-category-box-icon .dashicons {
  width: 24px;
  height: 24px;
  font-size: 24px;
}
.sk-category-box-title {
  display: block;
  color: var(--sk-box-title, #111827);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 700;
}
.sk-category-box-description {
  color: var(--sk-box-description, #4b5563);
  font-size: 16px;
  line-height: 1.3;
}
.sk-category-boxes-empty {
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  padding: 12px;
  color: #6b7280;
}
@media (max-width: 980px) {
  .sk-category-boxes.columns-3,
  .sk-category-boxes.columns-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .sk-category-boxes { grid-template-columns: 1fr !important; }
}

/* İçerikte kullanılan yardımcı kenarlık sınıfları (editör / HTML) */
.border-sld-im {
  border: 1px solid #bbf7d0 !important;
}
.border-sld-alert-y {
  border: 1px solid #f7f5bc !important;
}
.border-sld-alert {
  border: 1px solid #f77777 !important;
}
