.result-popup{
    position: relative;
    background: #ECECEC;
    border-radius: 8px;
    width: 100%;
    min-height: 459px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex: 1;

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

        .card-container{
            font-weight: 700;
            font-size: clamp(24px,3vw,32px);
            line-height: 100%;
        }
    
        .description{
            font-family: 'Barlow'  !important;
            font-weight: 400;
            font-size: clamp(14px,3vHHw,20px);
            line-height: 100%;
        }

        .description-1 {
            margin: 0;
            font-family: Barlow !important;
            color: #003DA6;
        }

        .description-1 span{
            font-weight: 700;
            display: block;
        }

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

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

