.share {
    position: absolute;
    top: 13px;
    left: 33px;
    z-index: 160;
}

.share.active::after {
    content: "";
    width: 200px;
    height: 200px;
    position: absolute;
    top: -65px;
    right: 0;
    z-index: 140;
}

.share.active {
    z-index: 160;
}

.share.active span.btn_share {
    background-color: var(--secondary-background-color);
}

.share.active span.btn_share i {
    color: white;
}

.share.active span.midia {
    opacity: 1;
    transform: scale(1);
    z-index: 150;
}

.share.active span.midia.btn_share_facebook {
    top: -55px;
    left: -15px;
}

.share.active span.midia.btn_share_twitter {
    top: -25px;
    left: 29px;
}

.share.active span.midia.btn_share_pinterest {
    top: 26px;
    left: 29px;
}

.share.active span.midia.btn_share_whatsapp {
    top: 55px;
    left: -15px;
}

.share span {
    width: 35px;
    height: 35px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    cursor: pointer;
    transition: all .3s;
    position: absolute;
    top: 0;
    left: -20px;
    background: var(--primary-color);
}

.share.active {
    transition: all .3s;
}

.share span.midia {
    opacity: 0;
    transform: scale(.8);
}

.share span:hover {
    background-color: var(--secondary-background-color);
}

.share span:hover i {
    /*fill: #fff;*/
    color: white;
}

.share span i {
    width: 60%;
    color: var(--white-color);
    font-size: 1rem;
}

.share span.btn_share {
    width: 40px;
    height: 40px;
    box-shadow: rgba(0, 0, 0, .3) 0 1px 5px;
    z-index: 160;
}

.share span.btn_share i {
    font-size: 1rem;
}

.share-bg {
    display: none;
    top: 0;
    right: 0;
    position: fixed;
    background-color: black;
    height: 100%;
    width: 100%;
    opacity: .5;
}

.share-bg.active {
    display: block;
}