.social-icons {
    position: fixed;
    bottom: 7rem;
    z-index: 99;
}

.social-icons.right {
    right: 0.625rem;
}

.social-icons.left {
    left: 0.625rem;
}

@media (min-width: 992px) {
    .social-icons {
        bottom: 1.25rem;
    }

    .social-icons.right {
        right: 1.25rem;
    }

    .social-icons.left {
        left: 1.25rem;
    }
}

.social-widget-button {
    position: relative;
    width: 3.375rem;
    height: 3.375rem;
    background-color: #00bb5f;
    border-radius: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: rgb(0 0 0 / 21%) 0px 0.1875rem 1.75rem 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: 1.875rem;
    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: -1.0625rem;
    bottom: 3.75rem;
    border-radius: 0.625rem;
    transform: translateY(5rem);
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    padding: 1rem;
    border-radius: 0.5rem;
    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: 0.625rem;
}

.social-icons-block {
    position: relative;
}

.social-icon-img img {
    transition: all .3s;
}

.social-icon-img img:hover {
    transform: scale(1.1);
}