div.sidebar-wrapper{
    pointer-events: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: MIN(1%, 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 400;
    @media (max-width: 600px) {
        top: auto;
        bottom: 75px;
        right: 9px;
        justify-content: flex-end;
    }
}
aside.sidebar.fixed {
    pointer-events: auto;
    position: relative;
    z-index: 400;
    background: none;
    border: none;
    @media ((max-width: 640px) and (max-height: 700px)) {
        align-self: flex-end;
        margin-bottom: 10%;
    }
    @media (max-width: 600px) {
        align-self: auto;
        margin-bottom: 0;
    }
    .stickyElement{
        bottom: 0;
        position: absolute;
        right: 100%;
        transform: translateY(50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        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;
        --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: 700px)) {
            padding: 0;
        }
        @media (max-width: 600px) {
            position: relative;
            right: auto;
            transform: none;
            padding: 0;
            border-radius: 50%;
            width: 56px;
            height: 56px;
            overflow: hidden;
            justify-content: center;
        }
        .head{
            display: flex;
            gap: 10px;
            align-items: center;
            .image{
                border-radius: 50%;
                overflow: hidden;
                width: 55px;
                height: 55px;
                flex: 0 0 auto;
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
                @media (max-width: 600px) {
                    width: 56px;
                    height: 56px;
                }
            }
            .title{
                font-weight: normal;
                color: #000;
                &.hidden{
                    display: none;
                }
                @media (max-width: 600px) {
                    display: none;
                }
                p{
                    margin-bottom: 0;
                    font-weight: normal;
                }
            }
        }
        .options{
            display: flex;
            &:not(.no-hs){
                @media ((max-width: 640px) and (max-height: 700px)) {
                    display: none;
                }
            }
            @media (max-width: 600px) {
                display: none;
            }
            flex-direction: column;
            gap: 8px;
            .option{
                align-items: center;
                display: flex;
                gap: 12px;
                &.wysiwyg{
                    min-width: MIN(300px, 80vw);
                    display: block;
                    padding: 0;
                    padding-top: 10px;
                    margin-bottom: 0;
                    p:last-child{
                        margin-bottom: 0;
                    }
                    p:first-child:last-child > .btn:only-child,
                    p:first-child:last-child > a:only-child{
                        margin: 0;
                    }
                }
                &: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;
                    &:hover{
                        color: black;
                        .icon img{
                            filter: brightness(0);
                        }
                    }
                }
                .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{
            border-radius: 20px;
            padding: 16px;
            align-items: flex-start;
            @media ((max-width: 640px) and (max-height: 700px)) {
                position: absolute;
                bottom: 0;
                right: 0;
            }
            @media (max-width: 600px) {
                position: fixed;
                bottom: 75px;
                right: 9px;
                left: 9px;
                border-radius: 20px;
                width: auto;
                height: auto;
                overflow: visible;
            }
            .title.hidden,
            .options .option.hidden,
            .options .link.hidden{
                display: flex;
                align-items: center;
                &.wysiwyg{
                    display: block;
                }
            }
            .options{
                @media ((max-width: 640px) and (max-height: 700px)) {
                    display: flex;
                }
                @media (max-width: 600px) {
                    display: flex;
                }
            }
            .title{
                @media (max-width: 600px) {
                    display: block;
                }
            }
        }
    }
}
