div.sidebar.fixed {
    position: fixed;
    top: 382px;
    right: MIN(1%, 20px);
    z-index: 20;
    background: none;
    border: none;
    @media ((max-width: 640px) and (max-height: 700px)) {
        bottom: 20px;
        top: unset;
        transform: none;
    }
    .stickyElement{
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 5px 5px 15px 5px;
        background-color: white;
        border-color: #fffc;
        border-width: 1px;
        border-style: solid;
        border-radius: 50px;
        transition-property: all;
        transition-timing-function: cubic-bezier(.4,0,.2,1);
        transition-duration: .3s;
        box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);

        @media ((max-width: 640px) and (max-height: 700px)) {
            padding: 0;
        }
        .head{
            display: flex;
            gap: 10px;
            .image{
                border-radius: 50%;
                overflow: hidden;
                width: 44px;
                height: 44px;
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
            .title{
                font-weight: 700;
                color: #53556D;
                font-size: 14px;
                &.hidden{
                    display: none;
                }
            }
        }
        .options{
            display: flex;
            @media ((max-width: 640px) and (max-height: 700px)) {
                display: none;
            }
            flex-direction: column;
            gap: 12px;
            .option{
                align-items: center;
                display: flex;
                gap: 12px;
                &:last-child{
                    margin-bottom: 5px;
                }
                .icon{
                    padding: 0 7px;
                    display: flex;
                    img{
                        width: 28px;
                        max-height: 28px;
                        object-fit: contain;
                    }
                }
                .link{
                    a{
                        transition: color .3s ease-in-out;
                        font-size: 14px;
                        line-height: 1.25rem;
                        text-decoration: none;
                        white-space: nowrap;
                        color: #53556D;
                        
                    }
                    a:hover {
                        color: #D2720D;
                    }
                    &.hidden{
                        display: none;
                    }
                }
                &.divider{
                    hr{
                        margin: 5px 0;
                        background: rgb(206, 206, 206);
                        width: 100%;
                    }
                }
                &.hidden{
                    display: none;
                }
            }
        }
    }
    &:hover,
    &:focus,
    &:focus-within{
        .stickyElement{
            border-radius: 10px;
            padding: 18px;
            @media ((max-width: 640px) and (max-height: 700px)) {
                position: absolute;
                bottom: 0;
                right: 0;
            }
            .title.hidden,
            .options .option.hidden,
            .options .link.hidden{
                display: flex;
                align-items: center;
            }
            .options{
                @media ((max-width: 640px) and (max-height: 700px)) {
                    display: flex;
                }
            }
        }
    }
}
