.share-popup{
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),url(/assets/images/background-water-flow.jpg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    border-radius: 8px;
    width: 100%;
    min-height: 459px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    .popup-content{
        padding: clamp(54px,3vw,80px) 50px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        gap: 30px;
        position: relative;

        .close-icon-share{
            position: absolute;
            right: 20px;
            top: 20px;
            cursor: pointer;
        }
    
        .title{
            font-weight: 700;
            font-size: clamp(24px,3vw,32px);
            line-height: 100%;
        }

        .description{
            font-weight: 400;
            font-size: clamp(14px,3vw,20px);
            line-height: 100%;
        }

        .copy-button{
            background-color: #003DA6;
            border: none;
            text-decoration: none;
            border-radius: 10px;
            padding: 14px 40px;
            width: fit-content;
            color: #FFFFFF;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
        }

        .button-container{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 16px;

            .share-us{
                font-weight: 700;
            }

            .button{
                background-color: #003DA6;
                border: none;
                text-decoration: none;
                border-radius: 10px;
                padding: 14px 54px;
                width: fit-content;
                color: #FFFFFF;
                font-weight: 700;
                font-size: 14px;
                cursor: pointer;
            }
        }
    
    }

    .popup-content p{
        margin: 0;
        font-family: Arial;
        color: #003DA6;
    }
}

