kkt-menu-item {
    --border-color: #f0f1f3;
    padding: 20px 15px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all .3s;
    cursor: pointer;
    display: inline-flex;
    position: relative;
    min-width: 80px;
    justify-content: center;

    a {
        text-decoration: none;
        color: #4d4d4d;
        transition: all .3s;
        user-select: none;
    }

    &:hover, &.active {
        a {
            color: #009fe3;
        }
    }

    &:hover {
        kkt-menu-dropdown {
            opacity: 0.97;
            pointer-events: all;
            height: inherit;
        }
    }

    &:not(::first-child) {
        border-left: 1px solid var(--border-color);
    }
}
