@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}

body {
    height: 100vh;
    background: #7e7e7c;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card {
    height: 570px;
    width: 350px;
    border-radius: 24px;
    box-shadow: 1px 1px 30px black;
    background: #fff;
    border: solid 3px #d5b0c2;

}

.profile-card .logo img {
    display: flex;
    margin: auto;
    width: 200px;
    height: 180px;
}

.profile-card .line {
    margin-left: 39px;
    background: #d5b0c2;
    width: 240px;
    height: 1px;
    box-shadow: 1px 1px 8px #d5b0c2;
}

.profile-card .text-data .name2 {
    color: #7e7e7c;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    margin-left: 5px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 15px;
}

.icons {
    margin: 10px 0 0 35px;
    background-color: #fff;
    box-shadow: 1px 1px 10px #000;
    height: 90px;
    display: flex;
    justify-content: space-evenly;
    align-content: start;
    flex-direction: row;
    flex-wrap: wrap;
    width: 280px;
    gap: 25px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: solid 3px #7e7e7c;

}

p {
    display: flex;
    text-transform: capitalize;
    color: #d5b0c2;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
}

a {
    color: #d5b0c2;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}



.profile-card .icons .item1 {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.icons .item1 a i {
    display: flex;
    justify-content: center;
}

.profile-card .icons .item2 {
    margin-top: 10px;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}



.profile-card .icons .item3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 12px;


}

.profile-card .text .find {
    display: flex;
    justify-content: center;
    color: #7e7e7c;
    text-transform: capitalize;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 15px 0 5px;
    margin-left: 5px;
}

.profile-card .social .facebook,
.insta {
    font-size: 30px;
    border-radius: 15px;
    cursor: pointer;
    border: #7e7e7c solid 2px;
    margin-top: 5px;
}

.social {
    margin-top: 5px;
    display: flex;
    width: 270px;
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
}


.ve {
    display: flex;
    padding: 5px;
}

.profile-card .buttons {
    display: flex;
    justify-content: center;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 5px;
    background: #fff;


}

.buttons .button {
    background-color: #fff;
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 5px 10px;
    margin: 5px 15px 0px 15px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 24px;
    border: solid 2px #7e7e7c;
    cursor: pointer;
    box-shadow: 1px 1px 5px #000;
}

.share-btn {
    position: relative;
    border: none;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 25px;
    padding-top: 2.5px;
    padding-right: 3px;
    cursor: pointer;
    z-index: 2;
    display: flex;
}

.share-btn a {
    color: #d5b0c2;

}

.share-options {
    position: absolute;
    bottom: 20%;
    left: 53%;
    width: 65px;
    height: 70px;
    transform-origin: bottom right;
    transform: scale(0);
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: rgba(15, 15, 15, 0.5);
    color: #fff;
    padding: 10px;
    font-family: 'roboto';
    transition: .5s;
    transition-delay: .5s;
    ;
}



.share-options.active {
    transform: scale(1);
    transition-delay: 0s;
}


.share-options.active,
.share-options.active .social-media,
.share-options.active {
    opacity: 1;
    transition: .5s;
    transition-delay: .5s;
}


.share{
    display: flex; 
    justify-content: center;
   /*margin-right: 10px;*/
   gap: 30px;
   margin-top: 10px;
  
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#closePopupButton{       
    font-size:17px;
    margin-top:10px;
    }

    #installPopup {
        display: none;
        padding: 15px  30px;
        width: 80%;
        max-width: 400px;
        border: 1px solid black;
        background: #f9f9f9;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1000;
        text-align: center;
        
    }
    

    /* Install button styling */
    #multiActionButton {
        display:inline;
        padding: 0px 15px;
        font-size: 25px;
        color:#d5b0c2 ;
        background-color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 3px;
    }


.profile-card .line1{
   margin: auto;
    background: #d5b0c2;
    width: 230px;
    height: 1px;
    box-shadow: 1px 1px 15px #d5b0c2;
    margin-top: 10px;
}

.profile-card .footer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    font-size: 13px;
    color: #393a39;
    letter-spacing: 1px;
    font-weight: 600;

}

.profile-card .footer a {
    color: #d5b0c2;
    margin-left: 3px;
}