
.js-nav-group {
    position: fixed;
    display: flex;
    flex-direction: column;
    right: 0;
    bottom: 360px;
    z-index: 99999;
    width: 180px;
    gap: 10px;
}

.js-nav-group .js-nav-item {
    color: #fff;
    background: #214a9a;
    font-size: 14px;
    line-height: calc(34 / 14 * 1em);
    text-align: center;
    position: relative;
}

.js-nav-group .js-nav-item .text {
    position: relative;
    z-index: 10;
}

.js-nav-group .js-nav-item:hover:after {
    width: 105%;
}

.js-nav-group .js-nav-item:after {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    background: #214a9a;
    height: 100%;
    transition: 0.26s ease;
}

.agent-mobile .js-nav-group {
    bottom: 120px;
    gap: 5px;
    width: 140px;
}
.agent-mobile .js-nav-group .js-nav-item {
    font-size: 12px;
}
