.bg-box {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}
.share-btn {
    padding: 10px;
    background-color: #eee;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.share-btn:hover {
    transform: scale(1.1);
}

.text-share-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #5271FF;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    font-family: arial;
    font-size: 18px;
    transition: 1s 0.2s;
    z-index: 1;
}

.share-btn:hover .text-share-btn {
    left: -100%;
}

.share-items {
    display: flex;
    list-style: none;
    margin: 0;
    font-size: 14px;
    padding: 0;
}

.share-items li {
    padding: 0 17px;
    
}

.share-items li a {
    color: #000;
    display: inline-block;
    transform: scale(0);
}

.share-btn:hover ul li a {
    transform: scale(1);
}

.share-items li:nth-child(5) a {
    transition: 0.5s 0.3s;
}

.share-items li:nth-child(4) a {
    transition: 0.5s 0.45s;
}

.share-items li:nth-child(3) a {
    transition: 0.5s 0.6s;
}

.share-items li:nth-child(2) a {
    transition: 0.5s 0.75s;
}

.share-items li:nth-child(1) a {
    transition: 0.5s 0.9s;
}