.s-widget {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
}

.s-widget-left {
    left: 20px;
}

.s-widget-right {
    right: 20px;
}

.s-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

.s-widget-item,
.s-widget-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.s-widget-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 2px 6px rgb(0, 0, 0, .4);
    transition: all 0.5s ease 0s
}

.s-widget-item:hover {
    box-shadow: 2px 2px 11px rgb(0, 0, 0, .7);
}

.s-widget-item:not(:last-child) {
    margin-bottom: 10px;
}

.s-widget-link {
    width: 100%;
    height: 100%;
}

.s-widget-link img {
    width: 40px;
    height: 40px;
}