div.sidebar.fixed {
    position: fixed;
    top: 300px;
    right: 5px;
    z-index: 400;
    background: none;
    border: none;
    .stickyElement{
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding:28px 15px;
        background-color: #E6007E;
        border-style: solid;
        border-radius: 50px;
        transition-property: all;
        transition-timing-function: cubic-bezier(.4,0,.2,1);
        transition-duration: .3s;
        --ssn-shadow: -4px 4px 12px rgba(0, 0, 0, .1);
        --ssn-shadow-colored: -4px 4px 12px var(--ssn-shadow-color);
        box-shadow: var(--ssn-ring-offset-shadow, 0 0 #0000), var(--ssn-ring-shadow, 0 0 #0000), var(--ssn-shadow);
        @media ((max-width: 640px) and (max-height: 800px)) {
            padding: 15px 0;
        }
        .head{
            display: flex;
            gap: 10px;
            display: none;
            .image{
                border-radius: 50%;
                overflow: hidden;
                width: 44px;
                height: 44px;
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
            .title{
                font-weight: 700;
                color: #000;
                &.hidden{
                    display: none;
                }
            }
        }
        .options{
            display: flex;
            flex-direction: column;
            gap: 20px;
            @media ((max-width: 640px) and (max-height: 800px)) {
                gap: 10px;
            }
            .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;
                        @media ((max-width: 640px) and (max-height: 800px)) {
                            width: 20px;
                            max-height: 20px;
                        }
                    }
                }
                .link{
                    a{
                        transition: color .3s ease-in-out;
                        font-size: .875rem;
                        line-height: 1.25rem;
                        text-decoration: none;
                        white-space: nowrap;
                        color: #fff;
                        transition: color .3s ease-in-out;
                        &:hover {
                            color: #FFED00;
                        }
                    }
                    &.hidden{
                        display: none;
                    }
                }
                &.divider{
                    hr{
                        margin: 5px 0;
                        background: rgb(206, 206, 206);
                        width: 100%;
                        display: none
                    }
                }
                &.hidden{
                    display: none;
                }
            }
        }
    }
    &:hover,
    &:focus,
    &:focus-within{
        right: 0px;
        .stickyElement{
            border-radius: 20px 0 0 20px;
            padding: 8px 15px 28px;
            .title.hidden,
            .options .option.hidden,
            .options .link.hidden{
                display: flex;
                align-items: center;
            }
            @media ((max-width: 640px) and (max-height: 800px)) {
                padding: 5px 5px 10px;
            }
        }
    }
}
