.social-icons {
    position: fixed;
    bottom: 10px;
    z-index: 999;
}

.social-icons.right {
    right: 10px;
}

.social-icons.left {
    left: 10px;
}

@media (min-width: 992px) {
    .social-icons {
        bottom: 20px;
    }

    .social-icons.right {
        right: 20px;
    }

    .social-icons.left {
        left: 20px;
    }
}

.social-widget-button {
    position: relative;
    width: 70px;
    height: 70px;
    bottom: 0;
    background-color: #00bb5f;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: rgb(0 0 0 / 21%) 0px 3px 28px 0px;
    z-index: 1;
}

@keyframes rotateIcon {
    0% {
        transform: rotate(-8deg)
    }

    50% {
        transform: rotate(8deg)
    }

    100% {
        transform: rotate(-8deg)
    }
}

@-webkit-keyframes rotateIcon {
    0% {
        -webkit-transform: rotate(-8deg)
    }

    50% {
        -webkit-transform: rotate(8deg)
    }

    100% {
        -webkit-transform: rotate(-8deg)
    }
}

.social-widget-icon {
    height: 30px;
    animation-name: rotateIcon;
    -webkit-animation-name: rotateIcon;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.social-widget-close {
    display: none;
}

.social-widget-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.social-widget-icons svg {
    vertical-align: middle;
    color: #fff;
}

.social-icons .social-icons-container {
    position: absolute;
    left: 0;
    bottom: 80px;
    border-radius: 10px;
    transform: translateY(80px);
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    padding: 15px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 0 0.25rem #b1babf8c;
}

.social-icons .social-icons-container.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.social-widget-icon.hide-social-btn {
    display: none;
}

.social-widget-close.show-close-btn {
    display: block;
}

.social-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #222;
}

.social-link+.social-link {
    margin-top: 10px;
}

.social-icons-block {
    position: relative;
}

.social-icon-img img {
    transition: all .3s;
}

.social-icon-img img:hover {
    transform: scale(1.1);
}