.share-btn{
    position: absolute;
    top: 5px;
    left: 5px;
    border: none;
    background: rgba(15, 15, 15, 0);
    color: #4B7496;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 2em;
    padding-top: 2.5px;
    padding-right: 3px;
    cursor: pointer;
    z-index: 2;
}

.share-options{
    position: absolute;
    top: 38px;
    left: 38px;
    width: auto;
    height: auto;
    transform-origin: top left;
    transform: scale(0);
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: rgba(15, 15, 15, 0.9);
    color: #fff;
    padding: 15px;
    transition: .5s;
    transition-delay: .5s;;
}

.share-options.active{
    transform: scale(1);
    transition-delay: 0s;
}

.title{
    opacity: 0;
    transition: .5s;
    transition-delay: 0s;
    font-size: 20px;
    color: #4B7496;
    text-transform: capitalize;
    border-bottom: 1px solid #fff;
    width: fit-content;
    padding: 0 20px 3px 0;
}

.social-media{
    opacity: 0;
    transition: .5s;
    transition-delay: 0s;
    width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0;
}

.social-media-btn{
	border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    line-height: 50px;
    font-size: 25px;
    cursor: pointer;
    margin: 0 5px;
    text-align: center;
}
.social-media-btn a{
    color: #fff;
}

.social-media-btn:nth-child(1){
    background: #FFA654;
}

.social-media-btn:nth-child(2){
    background: #25D366;
}

.social-media-btn:nth-child(3){
    background: #1DA1F2;
}

.social-media-btn:nth-child(4){
    background: #1877F2;
}

.link-container{
    opacity: 0;
    transition: .5s;
    transition-delay: 0s;
    width: 100%;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 40px;
    background-color: #fff;
    overflow: hidden;
    padding: 0 10px;
}

.link{
    width: 80%;
    height: 100%;
    line-height: 40px;
    color: #000;
}

.copy-btn{
    position: absolute;
    right: 0;
    cursor: pointer;
    background: #000;
    color: #fff;
    border: none;
    height: 100%;
    width: 30%;
    text-transform: capitalize;
    font-size: 16px;
}

.share-options.active .title,
.share-options.active .social-media,
.share-options.active .link-container{
    opacity: 1;
    transition: .5s;
    transition-delay: .5s;
}

/*-- Responsive design --*/
@media screen and (max-width: 480px){
	.social-media-btn{
		font-size: 20px;
	}
}
@media screen and (max-width: 414px){
	.social-media-btn{
		font-size: 20px;
	}
}
@media screen and (max-width: 384px){
	.social-media-btn{
		font-size: 15px;
	}
}
@media screen and (max-width: 320px){
	.social-media-btn{
		font-size: 15px;
	}
}
/*-- //Responsive design --*/