/* Side page menu */
.sidePage{
    height: 100%;
    width: 0;
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: black;
    /* overflow-x: hidden; Disable horizontal scroll */
    overflow-y: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidePage */
    z-index: 999999;
}

/* Menu links */
.sidePage a{
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

/* When the mouse over the Menu Link, the color will change */
.sidePage a:hover{
    color: #f1f1f1;
}

/* Top right corner */
.sidePage .closeBtn{
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#overlay{
    position: fixed;
    display: none; /* Hidden by defult */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 99999;
    cursor: pointer;
}

.responsive{
    display: none !important;
}


/* #region Share btn */
.shareBtnContainer{
    position: fixed;
    z-index: 99099;
    /* top: 50%; */
    bottom: 50%;

    transition: 0.5s;
}

.share-btn{
    position: relative;
    border: none;
    background: #fff;
    color: #ff7d7d;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px;
    padding-left: 0;
    padding-top: 2.5px;
    padding-right: 3px;
    cursor: pointer;
    z-index: 2;
}

.share-options{
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: auto;
    height: auto;
    transform-origin: bottom left;
    transform: scale(0);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background: rgba(15, 15, 15, 0.5);
    color: #fff;
    padding: 20px;
    font-family: 'roboto';
    transition: .5s;
    transition-delay: .5s;
}

.share-options.activeBtn{
    transform: scale(1);
    transition-delay: 0s;
}

.shareTitle{
    opacity: 0;
    transition: .5s;
    transition-delay: 0s;
    font-size: 20px;
    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: 5px 5px;
    text-align: center;
}

/* .social-media-btn:nth-child(1){
    background: #FFA654;
} */

.social-media-btn:nth-child(2){
    background: #25D366;
}

.social-media-btn:nth-child(3){
    background: #E4405F;
}

.social-media-btn:nth-child(4){
    background: #1DA1F2;
}

.social-media-btn:nth-child(5){
    background: #1877F2;
}

.social-media-btn:nth-child(6){
    background: #0A66C2;
}

.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;
    border-radius: 40px;
}

.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.activeBtn .shareTitle,
.share-options.activeBtn .social-media,
.share-options.activeBtn .link-container{
    opacity: 1;
    transition: .5s;
    transition-delay: .5s;
}
/* #endregion */


@media screen and (max-width: 600px) {
    .responsive{
        display: block !important;
    }
    
    .sidePage{
        overflow-y: scroll; 
    }
    
    /* Share btbn */
    .share-btn{
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 300px) {
    .share-options{
        width: 200px;
    }
}