.widget_social {
    position: fixed;
    bottom: 40px;
    z-index: 99990;
}

.widget_social.widget_right {
    right: 40px;
}

.widget_social.widget_left {
    left: 40px;
}

.widget_social_wrap {
    position: relative;
}

.widget_social_button {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    padding: 5px;
    background: #fff;
    border-radius: 50%;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    font-style: normal;
    text-transform: none;
    text-shadow: none;
    text-align: center;
    -webkit-text-size-adjust: auto !important;
    cursor: pointer;
}

.widget_social_button_icon {
    width: 50%;
    height: 50%;
    border-radius: 50%;
    margin-left: -25%;
    background: #fff;
}

.widget_social_button_icon:first-child {
    margin-left: 0;
}

.widget_social_button_icon img,
.widget_social_button_icon svg {
    width: 100%;
    height: auto;
}

.widget_social_list {
    position: absolute;
    bottom: 100%;
    right: 0;
    width: auto;
    height: auto;
    color: inherit;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.widget_left .widget_social_list {
    right: auto;
    left: 0;
    transform: translateX(-100px);
}

.widget_social_wrap.active .widget_social_list {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.widget_social_item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: end;
    margin-bottom: 1rem;
    color: inherit;
}

.widget_left .widget_social_item {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-justify-content: unset;
    justify-content: start;
}

.widget_social_item:hover {
    color: inherit;
}

.widget_social_title {
    width: max-content;
    max-width: calc(100vw - 60px - 2rem);
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.78);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.widget_social_item:hover .widget_social_title {
    color: inherit;
    background-color: #fff;
}

.widget_social_icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    color: #fff;
    margin-left: 1rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.78);
    border-radius: 50%;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.widget_left .widget_social_icon {
    margin-left: 0;
    margin-right: 1rem;
}

.widget_social_icon svg {
    width: 100%;
    height: auto;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.widget_social_item:hover .widget_social_icon {
    color: inherit;
    background-color: #fff;
}

@media all and (max-width: 991px) {
    .widget_social {
        bottom: 2rem;
    }

    .widget_social.widget_right {
        right: 10px;
    }

    .widget_social.widget_left {
        left: 10px;
    }

    .widget_social_icon {
        margin-left: 0.5rem;
    }

    .widget_left .widget_social_icon {
        margin-right: 0.5rem;
    }
}