.social {
    display: inline-block;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.single .social {
	width: inherit;
}

.footer-menu.social {
	position: absolute;
    bottom: 0;
    padding: 1em 1.5em 1em 1.5em;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 10%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 10%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 10%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	z-index: 11;
	text-align: center;
}

.single .social p {
	margin-top: 0;
    font-family: inherit;
    text-transform: uppercase;
    font-size: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.social li {
	background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    height: 30px;
    width: 25px;
    background-size: 15px;
    opacity: 0.5;
    cursor: pointer;
    position: relative;
}

.social li:hover {
	opacity: 1;
}

.single .social li {
    height: 40px;
    width: 50px;
    background-size: 20px;
    border-radius: 10px;
    margin: 0 5px;
    border-color: rgba(14, 14, 14, 0);
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
}

.social p + li {
	border: none;
}

.social li a {
	width: 100%;
    height: 100%;
    display: block;
}

.social .vk {
	background-image: url('../img/icon-vk.svg');
}

.social .fb {
	background-image: url('../img/icon-facebook.svg');
}
.social .tw {
	background-image: url('../img/icon-twitter.svg');
}
.social .ok {
	background-image: url('../img/icon-odnoklassniki.svg');
}

.social .search {
	background-image: url('../img/icon-search.svg');
}

.social .about {
	background-image: url('../img/icon-info.svg');
}



.social.tooltip-visible li {
	background-image: none;
	-webkit-mask-size: 15px;
	mask-size: 15px;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	
    background-color: white;
}

.social.tooltip-visible .vk {
	mask-image: url('../img/icon-vk.svg');
	-webkit-mask-image: url('../img/icon-vk.svg');
}

.social.tooltip-visible .fb {
	mask-image: url('../img/icon-facebook.svg');
	-webkit-mask-image: url('../img/icon-facebook.svg');
}
.social.tooltip-visible .tw {
	mask-image: url('../img/icon-twitter.svg');
	-webkit-mask-image: url('../img/icon-twitter.svg');
}
.social.tooltip-visible .ok {
	mask-image: url('../img/icon-odnoklassniki.svg');
	-webkit-mask-image: url('../img/icon-odnoklassniki.svg');
}
.social.tooltip-visible .search {
	mask-image: url('../img/icon-search.svg');
	-webkit-mask-image: url('../img/icon-search.svg');
}
.social.tooltip-visible .about {
	mask-image: url('../img/icon-info.svg');
	-webkit-mask-image: url('../img/icon-info.svg');
}
.social .separator {
	background: #254977;
    opacity: 1;
    width: 1px;
    margin: 0 7px;
}

.social-tooltip {
	background: #224a74;
    text-align: center;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.7em;
    padding: 5px 10px;
    width: fit-content;
    margin: 10px auto;
    opacity: 0;
    
    position: absolute;
    height: 80px;
    bottom: 0;
    left: 0;
    width: 240px;
    margin: 0;
}

.tooltip-visible .social-tooltip {
	opacity: 1;
}

@media screen and (max-width: 40em) {
	.footer-menu.social {
		bottom: 10vh;
		z-index: 10;
	}
	
	.footer-menu.social li {
		height: 30px;
		width: 40px;
		background-size: 25px;
	}
	
	.footer-menu.social .separator {
    	width: 1px;
    	margin: 0 25px;
	}
	
	.single .social {
    	width: 100%;
    	text-align: center;
	}
}