.klcc-flyout {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.klcc-flyout__btn {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.klcc-flyout__btn-label {
  letter-spacing: 0.02em;
}

.klcc-flyout__icon {
  width: 18px;
  height: 14px;
  display: inline-block;
  position: relative;
}

.klcc-flyout__icon::before,
.klcc-flyout__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
}

.klcc-flyout__icon::before {
  top: 2px;
}

.klcc-flyout__icon::after {
  bottom: 2px;
}

.klcc-flyout__overlay[hidden] {
  display: none !important;
}

.klcc-flyout__overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  background: rgba(12, 20, 34, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  justify-content: flex-end;
}

.klcc-flyout__panel {
  width: min(560px, 100%);
  height: 100%;
  overflow: auto;
  background: #ffffff;
  color: #204a8a;
  padding: 20px;
  box-shadow: -12px 0 24px rgba(0, 0, 0, 0.12);
}

.klcc-flyout__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(32, 74, 138, 0.2);
  padding-bottom: 14px;
}

.klcc-flyout__logo-link {
  display: inline-flex;
  align-items: center;
}

.klcc-flyout__logo-img {
  max-height: 42px;
  width: auto;
}

.klcc-flyout__body {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

.klcc-flyout__divider {
  height: 1px;
  background: rgba(32, 74, 138, 0.2);
}

.klcc-flyout__menu,
.klcc-flyout__submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.klcc-flyout__li + .klcc-flyout__li {
  margin-top: 8px;
}

.klcc-flyout__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.klcc-flyout__link {
  display: block;
  padding: 8px 0;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.klcc-flyout__subtoggle {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  position: relative;
  flex: 0 0 28px;
}

.klcc-flyout__subtoggle::before,
.klcc-flyout__subtoggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.klcc-flyout__subtoggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.klcc-flyout__li.is-open > .klcc-flyout__item .klcc-flyout__subtoggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.klcc-flyout__submenu {
  display: none;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(32, 74, 138, 0.25);
}

.klcc-flyout__li.is-open > .klcc-flyout__submenu {
  display: block;
}

.klcc-flyout__li--sub > .klcc-flyout__item .klcc-flyout__link {
  font-weight: 500;
}

body.klcc-flyout-open {
  overflow: hidden;
}

@media (min-width: 1025px) {
  .klcc-flyout[data-show-desktop="0"] {
    display: none !important;
  }
}
