.function-bar-container {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    width: 48px;
    right: 40px;
    bottom: 155px;
    gap: 12px;

    @media (max-width: 768px) {
        right: 16px;
        
    }
}

.right-side-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.function-item {
    background-color: black;
    display: flex;
    width: 56px;
    height: 56px;
    padding: 14px;
    justify-content: center;
    align-items: center;
    border-radius:  30px;
    background-color:  #232534;
    cursor: pointer;
    box-shadow: 0 2px 16px -8px rgba(2, 4, 22, 0.20), 0 4px 24px 0 rgba(2, 4, 22, 0.08);
}

.go-top {
    width: 48px;
    height: 48px;
    background-color:  #AEAFB4;
    box-shadow: none;
}