.cmenu {
    background-color: var(--c2);
    box-shadow: 0 4px 20px rgba(22, 29, 37, 0.05);
    min-height: 100vh;
    overflow-y: hidden;
}

.cmenu .group {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50px;
    cursor: pointer;
}

.cmenu .group.active {
    background-color: var(--mtf-blue);
}

.cmenu .group.active .title {
    color: var(--c2);
}
.cmenu .group.active img {
    filter: invert(100%);
}

.cmenu .group .title {
    font-weight: bold;
    line-height: 16px;
    text-transform: uppercase;
    color: var(--c1);
    flex-grow: 2;
}

.cmenu .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 57px;
}

.cmenu .arrow img {
    width:16px;
    height: 16px;
}

.cmenu .price {
    font-size: 12px;
    color: var(--mtf-green);
}

.cmenu .group .price {
    font-weight: bold;
}

.cmenu .group .img img {
    width:16px;
    height: 16px;
}

.cmenu .group .img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    max-width: 52px;
}

.cmenu .submenu a .img {
    min-width: 52px;
    max-width: 52px;
}

.cmenu .submenu a {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50px;
}

.cmenu .submenu a:hover {
    background-color: var(--content-bg);
}

.cmenu .group:hover {
    background-color: var(--content-bg);
}

.cmenu .group.active:hover {
    background-color: var(--mtf-blue);
}

.cmenu .submenu a .title {
    line-height: 16px;
    flex-grow: 2;
}

.cmenu .submenu a.active .title {
    font-weight: bold;
}

.cmenu .normal-prio {
    font-weight: bold;
    font-size: 12px;
    width: 25px;
    color: var(--mtf-yellow);
    text-align: right;

}

.cmenu .high-prio {
    font-weight: bold;
    font-size: 12px;
    color: var(--mtf-red);

    text-align: right;
}
