.x-share-button {
    position: absolute;
    overflow: hidden;
    user-select: none;
    top: -45px;
    width: 150px;
    height: 36px;
    border-radius: 30px;
    padding: 8px;
    transition: all .2s ease-in-out;
}

.x-share-button.open {
    background: #00000030;
}

.x-share-button.open .share-item {
    transform: translateX(0) rotate(0);
    margin-left: 3px;
}

.share-items {
    position: absolute;
    height: 100%;
    padding: 0;
    width: 297px;
    right: 0px;
}

.share-items-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
}


.x-share-button.open .lid {
    transform: rotateX(90deg);
}

.share-item {
    display: block;
    background: #fff;
    text-decoration: none;
    height: 25px;
    width: 25px;
    text-align: center;
    line-height: 25px;
    border-radius: 50%;
    float: left;
    margin-left: 3px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    transition: 500ms ease all;
}

.share-item:active {
    background: #eb4c89;
    transition: 50ms ease all;
}

.share-item:nth-child(1) {
    transform: translateX(200px) rotate(180deg);
}

.share-item:nth-child(2) {
    transform: translateX(400px) rotate(200deg);
}

.share-item:nth-child(3) {
    transform: translateX(580px) rotate(220deg);
}

.share-item:nth-child(4) {
    transform: translateX(740px) rotate(240deg);
}

.share-item:nth-child(5) {
    transform: translateX(880px) rotate(260deg);
}

.share-item:nth-child(6) {
    transform: translateX(1000px) rotate(280deg);
}

.shared .share-item {
    transform: translateY(200px);
}

.shared .share-item:nth-child(1) {
    transition: 200ms cubic-bezier(0.32, -0.22, 0.9, 0.93) all;
}

.shared .share-item:nth-child(2) {
    transition: 600ms cubic-bezier(0.32, -0.22, 0.9, 0.93) all;
}

.shared .share-item:nth-child(3) {
    transition: 1000ms cubic-bezier(0.32, -0.22, 0.9, 0.93) all;
}

.shared .share-item:nth-child(4) {
    transition: 1400ms cubic-bezier(0.32, -0.22, 0.9, 0.93) all;
}

.shared .share-item:nth-child(5) {
    transition: 1800ms cubic-bezier(0.32, -0.22, 0.9, 0.93) all;
}

.shared .share-item:nth-child(6) {
    transition: 2200ms cubic-bezier(0.32, -0.22, 0.9, 0.93) all;
}