.social-icons {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 999;
}

.social-widget-button {
    position: relative;
    width: 70px;
    height: 70px;
    bottom: 0px;
    background-color: #00BC52;
    border-radius: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 3px 4px 18px rgb(0 0 0 / 8%);
    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;
    height: 21px
}

.social-icons .social-icons-container {
    position: absolute;
    bottom: 80px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    transform: translateY(80px);
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    box-shadow: 3px 4px 18px rgba(0,0,0,0.08);
}

.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;
    margin-bottom: 10px;
    align-items: center;
    color: #222;
}

.social-icons-block {
    position: relative;
}

.social-icons .social-icons-container:after {
    position: absolute;
    content: '';
    border-width: 10px 10px 0px 10px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    bottom: -10px;
    border-color: #fff transparent transparent transparent;
    height: 0;
    border-style: solid;
}

.social-icon-img img {
    transition: all .3s;
}

.social-icon-img img:hover {
    transform: scale(1.1);
}