/*
Created by Alejandro Palacios https://github.com/AlexSoicalap
*/
.social {
    text-align: center;
    margin-top: 30px;
}

.share-text {
    font-size: .9rem;
    display: flex;
    justify-content: center;
}

/*share row buttons*/
.share-buttons-row{
    height: 30px;

	display: -webkit-flex; /* Safari */
    -webkit-align-items: center; /* Safari 7.0+ */
    align-items: center;
    justify-content: center;
}

.share-buttons-row > div {
	width: 30px;
    height: 30px;
    cursor: pointer;

    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;

	text-align: center;
	float: left;
	margin-right: .3em;
	padding: 0;
	
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}


.share-fb{
    background-image: url("../img/facebook.svg");
}

.share-twitter{
    background-image: url("../img/twitter-x.svg");
}


.share-whatsapp{
    background-image: url("../img/whatsapp.svg");
}

.share-instagram{
    background-image: url("../img/instagram.svg");
}