.share-widget {
    display: inline-block;
    background: var(--shareBackground);
    border-radius: 13px;
    padding: 9px 15px;
    min-width: 200px;
    max-width: 300px;
    width: 100%;
}

.share-widget--dark {
    --shareBackground: #6F6F6F;
    --shareTitleColor: #EDEDED;
    --shareColor: #EDEDED;
    --shareColorHover: #FFF;
}

.share-widget--light {
    --shareBackground: #F6F6F6;
    --shareTitleColor: #6F6F6F;
    --shareColor: #C9C9C9;
    --shareColorHover: #6F6F6F;
}

.share-widget--color {
    --shareBackground: #F3F2F9;
    --shareTitleColor: #3A2E94;
    --shareColor: #B7B3D9;
    --shareColorHover: #0F0080;
}

.share-widget--circular-light {
    --shareBackground: var(--c-2-c-blue-80);
    --shareTitleColor: white;
    --shareColor: #B7B3D9;
    --shareColorHover: white;
}

.share-widget__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--shareTitleColor);
    font-size: 14px;
    line-height: 1.2857142857;
    letter-spacing: 0.02em;
    width: 100%;
    font-family: var(--fontFamily);
    border: 0;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
}

.share-widget__title:hover {
    text-decoration: underline;
}
.share-widget_arrow {
    transition: 250ms;
}
.share-widget_arrow svg {
    color: red;
}

.share-widget__arrow--rotated {
    transform: rotate(180deg);
}

.share-widget__list {
    display: flex;
    gap: 33px;
    align-items: center;
    overflow: hidden;
}

.share-widget__list a {
    color: var(--shareColor);
    margin-top: 10px;
}

.share-widget__list a:hover {
    color: var(--shareColorHover);
}

.share-widget__list svg {
    width: 100%;
    max-height: 22px;
}
