aside.sidebar.fixed {
    pointer-events: auto;
    position: fixed;
    top: 35%;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    right: MIN(1%, 20px);
    z-index: 400;
}


aside.sidebar.fixed .stickyElement {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 12px 10px;
    background: var(--secondary-light);
    border-radius: 15px 0 15px 15px;
    box-shadow: 0 15px 60px 0 rgba(160, 0, 90, 0.30);
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .3s;
}





aside.sidebar.fixed .stickyElement .head {
    display: flex;
    align-items: center;
    gap: 12px;
}

aside.sidebar.fixed .stickyElement .head .image {
    border-radius: 50%;
    overflow: hidden;
    width: 40px;
    height: 40px;
}

aside.sidebar.fixed .stickyElement .head .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


aside.sidebar.fixed .stickyElement .head .title.hidden {
    display: none;
    flex-direction: column;

}

/* aside.sidebar.fixed .stickyElement .head .title.hidden .caption{
    font-size: 13px;
    font-weight: 600;
    line-height: normal;
    color: var(--background);
} */
aside.sidebar.fixed .stickyElement .head .title.hidden p {
    font-family: 'Roboto';
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    color: var(--text-color);
}

aside.sidebar.fixed .stickyElement .options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}



aside.sidebar.fixed .stickyElement .options .option {
    align-items: center;
    display: flex;
}

aside.sidebar.fixed .stickyElement .options .option.wysiwyg {
    min-width: 246px;
    display: block;
    padding: 15px;
}

aside.sidebar.fixed .stickyElement .options .option>a {
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    gap: 16px;
}

aside.sidebar.fixed .stickyElement .options .option>a .icon img {
    filter: brightness(0) invert(1);
}

aside.sidebar.fixed .stickyElement .options .option>a:hover .link.hidden {
    text-decoration: underline;
}



aside.sidebar.fixed .stickyElement .options .option .icon {
    padding: 0 10px;
    display: flex;
    align-items: center;
}

aside.sidebar.fixed .stickyElement .options .option .icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

aside.sidebar.fixed .stickyElement .options .option .link.hidden {
    display: none;
    font-family: 'Roboto';
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
}

aside.sidebar.fixed .stickyElement .options .option.divider hr {
    margin: 0 0 7px;
    background: #E7E7E7;
    width: 100%;
}

aside.sidebar.fixed .stickyElement .options .option.hidden {
    display: none;
}

/* Hover, Focus, and Focus-within states */
aside.sidebar.fixed .stickyElement:hover,
aside.sidebar.fixed .stickyElement:focus,
aside.sidebar.fixed .stickyElement:focus-within {
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.15);
    padding: 16px 23px 21px;
    gap: 16px;
}


aside.sidebar.fixed .stickyElement:hover .title.hidden,
aside.sidebar.fixed .stickyElement:focus .title.hidden,
aside.sidebar.fixed .stickyElement:focus-within .title.hidden,
aside.sidebar.fixed .stickyElement:hover .options .option.hidden,
aside.sidebar.fixed .stickyElement:focus .options .option.hidden,
aside.sidebar.fixed .stickyElement:focus-within .options .option.hidden,
aside.sidebar.fixed .stickyElement:hover .options .link.hidden,
aside.sidebar.fixed .stickyElement:focus .options .link.hidden,
aside.sidebar.fixed .stickyElement:focus-within .options .link.hidden {
    display: flex;
    align-items: center;
}

aside.sidebar.fixed .stickyElement:hover .title.hidden.wysiwyg,
aside.sidebar.fixed .stickyElement:focus .title.hidden.wysiwyg,
aside.sidebar.fixed .stickyElement:focus-within .title.hidden.wysiwyg,
aside.sidebar.fixed .stickyElement:hover .options .option.hidden.wysiwyg,
aside.sidebar.fixed .stickyElement:focus .options .option.hidden.wysiwyg,
aside.sidebar.fixed .stickyElement:focus-within .options .option.hidden.wysiwyg,
aside.sidebar.fixed .stickyElement:hover .options .link.hidden.wysiwyg,
aside.sidebar.fixed .stickyElement:focus .options .link.hidden.wysiwyg,
aside.sidebar.fixed .stickyElement:focus-within .options .link.hidden.wysiwyg {
    display: block;
}

aside.sidebar.fixed .stickyElement:hover .head .image {
    width: 50px;
    height: 50px;
}
aside.sidebar.fixed .stickyElement:is(:hover, :focus, :focus-within) .options .option>a .icon img {
    filter: none;
}

/* aside.sidebar.fixed.scroll-hide:not(:hover):not(:focus):not(:focus-within) .stickyElement {
  transform: translateY(50%) translateX(calc(98% + 10px));
} */

@media only screen and (max-width: 768px) {
    aside.sidebar.fixed {
        right: 0;
        top: auto;
        bottom: 20%;
    }

    aside.sidebar.fixed .stickyElement {
        padding: 10px 6px 10px 10px;
        border-radius: 50px 0px 0px 50px;
    }

    aside.sidebar.fixed .stickyElement .options {
        display: none;
        pointer-events: none;
    }

    aside.sidebar.fixed .stickyElement .options .option {
        pointer-events: auto;
    }

    aside.sidebar.fixed .stickyElement:hover,
    aside.sidebar.fixed .stickyElement:focus,
    aside.sidebar.fixed .stickyElement:focus-within {
        border-radius: 20px;
        padding: 20px;
    }

    aside.sidebar.fixed .stickyElement:hover .options,
    aside.sidebar.fixed .stickyElement:focus .options,
    aside.sidebar.fixed .stickyElement:focus-within .options {
        display: flex;
    }

    aside.sidebar.fixed .stickyElement .head .title.hidden p,
    aside.sidebar.fixed .stickyElement .options .option .link.hidden {
        font-size: 16px;
    }
}