[data-deptos-region] {
    min-height: 0;
    display: flex;
    align-self: stretch;
}

.c-deptos {
    width: 48px;
    flex: 0 0 48px;
    height: 100%;
    align-self: stretch;
    position: relative;
    z-index: 10;
    overflow: visible;
}

.c-deptos__panel {
    position: absolute;
    inset: 0 auto 0 0;
    width: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 8px;
    overflow: hidden;
    background: var(--color-surface-primary);
    border-right: 1px solid var(--color-border-primary);
    transition: width linear 0.15s;
}

.c-deptos:hover .c-deptos__panel {
    width: 222px;
}

.c-deptos__nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.c-deptos__link {
    width: 100%;
    min-width: 32px;
    min-height: 32px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--color-surface-primary);
    color: var(--color-icon-muted);
    text-decoration: none;
    white-space: nowrap;
    transition: all linear 0.15s;
}

.c-deptos__link:hover {
    background: var(--color-surface-hover);
    color: var(--color-icon-muted);
}

.c-deptos__link.is-active,
.c-deptos__link.is-active:hover {
    background: var(--color-surface-secondary);
    color: var(--color-text-primary);
}

.c-deptos__link:focus-visible {
    outline: 2px solid var(--color-brand-primary);
    outline-offset: 2px;
}

.c-deptos__icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
}

.c-deptos__icon-asset {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.c-deptos__icon-asset--regular {
    opacity: 1;
}

.c-deptos__icon-asset--fill {
    opacity: 0;
}

.c-deptos__link.is-active .c-deptos__icon-asset--regular {
    opacity: 0;
}

.c-deptos__link.is-active .c-deptos__icon-asset--fill {
    opacity: 1;
}

.c-deptos__icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.c-deptos__icon svg path {
    fill: currentColor;
}

.c-deptos__label {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 14px;
}

.c-deptos__link.is-active .c-deptos__label {
    font-weight: 500;
}

@media (max-width: 767px) {
    .c-deptos {
        display: none;
    }
}
