.wFlex-navigation {
    background: var(--color-1);
    overflow: hidden;
    height: 100vh;
}

.navigation {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: normal;
    align-content: normal;
    height: 100vh;
}
.navigation .nav-btn {
    width: 80px;
    height: 80px;
    line-height: 80px;
    padding: 0;
    overflow: hidden;
    display: block;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}
.navigation  .nav-btn svg {
    color: #fff;
    width: 60%;
}



.navigation  .nav-btn:hover {
    background-color: var(--color-3);
}







.navigation  .nav-btn span.badge {
    position: absolute;
    top: 12px;
    right: 5px;
    background: red;
    color: #fff;
    padding: 2px 4px;
    border-radius: 5px;
    border: 1px solid #fff;
}