.section.add_this-section {
    z-index: 999999;
    position: fixed;
    bottom: calc(5% + 80px);
    right: 7px;
}
.section.add_this-section ul.add_this {
    list-style: none;
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    gap: 15px;
}
.section.add_this-section ul.add_this li .add_this-inner {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%);
    position: relative;
    display: block;
}
.section.add_this-section ul.add_this li .add_this-inner > .title {
    font-weight: 300;
    position: absolute;
    top: 4px;
    right: 55px;
    z-index: 9;
    line-height: normal;
    padding: 5px 10px;
    width: auto;
    border-radius: 5px;
    font-size: 11px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.8);
    visibility: hidden;
    opacity: 0;
    transition: all 200ms linear;
}
.section.add_this-section ul.add_this li .add_this-inner:hover > .title {
    visibility: visible;
    opacity: 1;
}
.section.add_this-section ul.add_this li .add_this-inner > .title::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 200ms linear;
}
