/* assets/social-share.css */
.social svg {
    margin-top: 15px;
}
.social a {
    text-decoration: none;
}
.social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.center {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social {
    position: relative;
}
.social a.btn i {
    display: block;
    width: 55px;
    height: 55px;
    background: #000;
    box-shadow: 0 0 20px rgba(0,0,0,.1);
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    color: #0a6ad8;
    position: absolute;
    top: -2px;
    left: -2px;
    font-size: 1.3em;
    transition: all 400ms;
    transform-origin: center;
}
ul.icons {
    position: absolute;
    visibility: hidden; /* Keep icons hidden initially */
    opacity: 0;
    transition: visibility 0s, opacity 200ms ease-out;
}
.social ul.icons li a i {
    display: block;
    width: 50px;
    height: 50px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,.1);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -99;
    transition: all 200ms ease-out;
    transform-origin: center;
}
ul.icons li a i.fb {
    left: -100px;
    background: #3b5998;
}
ul.icons li a i.tw {
    top: -100px;
    background: #000;
}
ul.icons li a i.gp {
    left: 100px;
    background: #ea4335;
}
.tw svg {
	margin-top:10px !important ;
}