/**
 * Style of likes and share buttons
 */

.heart_share_container {
    position: absolute;
    top: 2vh;
    left: 4vw;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
/* FULL SCREEN */
.fullscreen_div_img .heart_share_container {
    top: 3vh;
    left: 10vw;
}
.heart_btn_counter {
    position: relative;
}
.heart.already_liked {
    color: red;
}
.share,
.heart,
.heart_counter {
    cursor: pointer;
    background-color: white;
    opacity: .9;
    border-radius: 50%;
}
.heart_counter {
    position: absolute;
    padding: 9px;
    bottom: 8px;
    right: -10px;
    height: 18px;
    width: 18px;
    font-size: 1.2rem;
    display: none;
    color: black;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.share,
.heart {
    font-size: 1.2rem;
    padding: 10px;
}
/* RESPONSIVE */
@media screen and (max-width: 900px) {
    .heart_counter {
        font-size: 1rem;
    }
}
@media screen and (max-width: 750px) {
    .heart_share_container {
        top: 1vh;
    }
    .share,
    .heart {
        padding: 7px;
        font-size: 1rem;
        padding: 10px;
    }
    .heart_counter {
        right: -12px;
        bottom: 2px;
        font-size: .9rem;
    }
}
@media screen and (max-width: 480px) {
    .fullscreen_div_img .heart_share_container {
        left: 12vw;
    }
    .heart_share_container {
        left: 9vw;
    }
    .share,
    .heart {
        padding: 6px;
    }
    .heart_counter {
        font-size: .8rem;
        right: -14px;
    }
}
@media screen and (max-width: 280px) {
    .heart_share_container {
        left: 12vw;
    }
}