﻿.hide {
    display: none;
}

.flex {
    display: flex;
}

.profile .profile-front-menu-container {
    display: flex;
    flex-direction: column;
}

.profile-front-menu-item {
    cursor: pointer;
    display: grid;
    flex-grow: 1;
    grid-template-columns: 55px 1fr;
    height: 100%;
}

.profile-front-menu-item .menu-item-icon {
    align-items: center;
    display: flex;
    grid-row: span 2;
    justify-content: center;
}

.profile-front-menu-item .menu-item-link {
    color: var(--main-link-color, #21a0e9);
    font-size: 14px;
    text-decoration: none;
}

.profile-front-menu-item:hover .menu-item-link {
    text-decoration: underline;
}