.social-share-section {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.social-share-section > img {
    width: 60px;
}

.social-share-section ul {
    display: flex;
    background-color: rgba(255, 255, 255, 0.8);
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    border-radius: 35px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.social-share-section:hover ul {
    opacity: 1;
    visibility: visible;
}

.social-share-section ul li a {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    border-radius: 50%;
    margin: 0 8px;
    transition: all linear .3s;
}

.social-share-section ul li a:hover {
    color: #fff;
    background-color: #10B4FB;
    border-color: #10B4FB;
}


.social-share-section ul li a i {
    color: #333;
    padding: 0;
    margin: 0;
    border: 0;
    transition: all linear .3s;
}

.social-share-section ul li a:hover i {
    color: #fff;
}