.nine-dots-menu {
    margin-right: 33px;
    position: relative;
}
.nine-dots-menu-button {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.nine-dots-menu-button:hover {
    background: #EDEDED;
}
.nine-dots-menu-list-wrap {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    right: -18px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(61, 61, 61, 0.2);
    background: #FBFBFB;
    z-index: 9999;
    min-width: 400px;
    overflow: hidden;
    padding: 8px 5px 5px 5px;
}
.nine-dots-menu-list {
    position: relative;
    padding: 20px;
    max-height: 80vh;
}
.nine-dots-menu-list::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FBFBFB;
    transform: rotate(45deg) translate(-7px);
    border-top: 1px solid rgba(0,0,0,.1);
    border-left: 1px solid rgba(0,0,0,.1);
    z-index: 9999;
    top: 0px;
    right: 30px;
}
.nine-dots-menu-list-group {
    display: flex;
    flex-direction: column;
}
.nine-dots-menu-list-group:not(:last-child) {
    margin-bottom: 20px;
}
.nine-dots-menu-list-group > span {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    text-transform: uppercase;
}
.nine-dots-menu-list-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.nine-dots-menu-list-group ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nine-dots-menu-list-group ul li:not(:last-of-type) {
    margin-bottom: 12px;
}
.nine-dots-menu-list-group ul li .logo {
    display: flex;
    width: 42px;
    height: 42px;
    min-width: 42px;
    margin-right: 12px;
}
.nine-dots-menu-list-group ul li .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.nine-dots-menu-list-group ul li .name {
    font-size: 13px;
    font-weight: 500;
    line-height: 15px;
    white-space: nowrap;
    margin-right: auto;
    color: var(--secondary-color);
}
.nine-dots-menu-list-group ul li a.name {
    cursor: pointer;
}
.nine-dots-menu-list-group ul li a.name:hover {
    font-weight: bold;
    color: var(--secondary-color);
}
.nine-dots-menu-list-group ul li .buttons {
    display: flex;
}
.nine-dots-menu-list-group ul li .buttons span {
    color: #e0e0e0;
}
.nine-dots-menu-list-group ul li .buttons span.active-service {
    color: #333333;
}
.nine-dots-menu-list-group ul li .buttons svg {
    width: 17px;
    height: 17px;
    margin-left: 14px;
}
.nine-dots-menu-list-group ul li .buttons i {
    margin-left: 14px;
    font-size: 16px;
}