/*#region webSharing*/
.webSharingButton-container,
.webSharingButton-wrapper
{
    display: inline-flex;
}
.webSharing-menu {
    width: 100%;
    max-width: 320px;
    background-color: var(--c-bg-primary);
    transition: background-color 0.15s ease;
    border-radius: 10px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.05), 0 -4px 16px rgba(0, 0, 0, 0.1);
}
.webSharing-menu.webSharing-menu-no-shadow {
    box-shadow: none;
}
.webSharing-menu-header {
    padding: 1rem;
}
.webSharing-menu-header-title {
    font-size: 0.875rem;
    color: var(--c-text-secondary);
    margin-bottom: 0.375rem;
    font-weight: 500;
}
.webSharing-menu-body {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    /*border-top: 1px solid var(--c-border-primary);*/
    transition: border-color 0.15s ease;
}
.webSharing-menu-body .webSharing-menu-btn {
    cursor: pointer;
}
.webSharing-menu-body a,
.webSharing-menu-body .webSharing-menu-btn {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    padding: 0.625rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: 0.15s ease;
}
.webSharing-menu-body a::after,
.webSharing-menu-body .webSharing-menu-btn::after {
    border-top: 1px solid var(--c-border-primary);
}
.webSharing-menu-body a svg,
.webSharing-menu-body .webSharing-menu-btn svg {
    /*margin-right: 1rem;*/
    color: var(--c-text-secondary);
    transition: color 0.15s ease;
}
.webSharing-menu-body a:hover,
.webSharing-menu-body .webSharing-menu-btn:hover {
    background-color: var(--c-bg-secondary);
    border-radius: 12px;
}
/*
.webSharing-menu-svg:hover .webSharing-menu-text, .webSharing-menu-text:hover .webSharing-menu-svg
{
    color: #0096ff;
}
*/
.webSharing-menu-svg {
    width: 24px;
    height: 24px;
}
.webSharing-menu-text {
    margin-left: 8px;
}
.webSHaring-menu-container {
    align-items: flex-start;
    background: transparent;
    display: flex;
    flex-direction: row;
    column-gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    /*padding: 0px 12px;*/
    width: auto;
}
/*#endregion webSharing*/