@import url("https://fonts.googleapis.com/css?family=Roboto:500");


.btn-share {
    
    border-radius: 10px;
    bottom: 10px;
    right: 15px;
    position: fixed;
    background: #262262;
    padding: 7px 32px;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: white;
    border: none;
    outline: none;
    overflow: hidden;
    cursor: pointer;
    opacity: .5;
    filter: drop-shadow(0 2px 8px rgba(39, 94, 254, 0.32));
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn-share::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: var(--btn-color);
    border-radius: 24px;
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: opacity(1);
}
.btn-share .btn-text,
.btn-share .btn-icon {
    display: inline-flex;
    vertical-align: middle;
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow: hidden;
}
.btn-share .btn-text {
    transition-delay: 0.05s;
}
.btn-share .btn-icon {
    margin-left: 8px;
    transition-delay: 0.1s;
}
.btn-share .social-icons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
    transform: translateY(-50%);
}
.btn-share .social-icons li {
    flex: 1;
}
.btn-share .social-icons li a {
    display: inline-flex;
    vertical-align: middle;
    transform: translateY(55px);
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn-share .social-icons li a:hover {
    opacity: 0.5;
}
.btn-share:hover::before {
    transform: scale(1.2);
}
.btn-share:hover .btn-text,
.btn-share:hover .btn-icon {
    transform: translateY(-55px);
}
.btn-share:hover .social-icons li a {
    transform: translateY(0);
}
.btn-share:hover .social-icons li:nth-child(1) a {
    transition-delay: 0.15s;
}
.btn-share:hover .social-icons li:nth-child(2) a {
    transition-delay: 0.2s;
}
.btn-share:hover .social-icons li:nth-child(3) a {
    transition-delay: 0.25s;
}

.btn-text i {
    font-size: 15px;
    color: #fff;
}

.social-icons li {
    overflow: hidden;
}

.social-icons li a {
    fill: #fff;
    height: 15px;
    width: 15px;
    overflow: hidden;
}

.btn-share:hover {
    transform: scale(1);
    
            animation: float;
            animation-duration: 2s;
            animation-timing-function: ease-in-out;
            animation-fill-mode: forwards;
}

@keyframes float {
    0% {
        transform: scale(1);
        opacity: .8;
    }
    50%{
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .btn-share {
        bottom: 15px;
        right: 15px;
    }
}


@media (min-width: 992px) {
    .btn-text i {
        font-size: 30px;
        color: #fff;
    }

    .social-icons li a {
        fill: #fff;
        height: 25px;
        width: 25px;
        overflow: hidden;
    }
}

@media (min-width: 1400px) {
    .btn-share {
        bottom: 15px;
        
    }
}

@media (min-width: 1500px) {
    .btn-share {
        bottom: 15px;
        right: 20px;
    }
}

@media (min-width: 2500px) {
    .btn-share {
        bottom: 15px;
        right: 545px;
    }
}