div.sidebar-wrapper{
    pointer-events: none;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
            display: flex;
    flex-direction: column;
}
aside.sidebar.fixed {
    pointer-events: auto;
    position: sticky;
    top: 400px;
    z-index: 400;
    background: none;
    border: none;
    @media ((max-width: 640px) and (max-height: 700px)) {
        bottom: 10%;
        transform: none;
    }
    .stickyElement{
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 27px 15px;
        background-color: #ED7100;
        border-radius: 2px;
        transition-property: all;
        transition-timing-function: cubic-bezier(.4,0,.2,1);
        transition-duration: .3s;
        box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.15);
        @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: white;
                &.hidden{
                    display: none;
                }
            }
        }
        .options{
            display: flex;
            @media ((max-width: 640px) and (max-height: 700px)) {
                display: none;
            }
            flex-direction: column;
            gap: 20px;
            .option{
                align-items: center;
                display: flex;
                gap: 12px;
                &:last-child{
                    margin-bottom: 5px;
                }
                > a{
                    transition: color .3s ease-in-out;
                    font-size: .875rem;
                    line-height: 1.25rem;
                    text-decoration: none;
                    white-space: nowrap;
                    display: flex;
                    gap: 5px;
                    color: white;
                    border: none;
                    &:hover{
                        color: #363636;
                        .icon img {
                            filter: brightness(0.2);
                        }
                    }
                }
                .icon{
                    padding: 0 7px;
                    display: flex;
                    img{
                        width: 28px;
                        max-height: 28px;
                        object-fit: contain;
                        transition: filter .3s ease-in-out;
                    }
                }
                .link{
                    &.hidden{
                        display: none;
                    }
                }
                &.divider{
                    hr{
                        margin: 5px 0;
                        background: rgb(206, 206, 206);
                        width: 100%;
                    }
                }
                &.hidden{
                    display: none;
                }
            }
        }
    }
    &:hover,
    &:focus,
    &:focus-within{
        .stickyElement{
            @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;
                }
            }
        }
    }
}
