.fatherPopup {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999 !important
}

.SonPopup{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.close{
    display: flex;
    justify-content: end;
    width: 80%;
    position: absolute;
    left:2.5rem;
    top: 2.8rem;
    z-index: 100000;
}
.close svg{
    padding: 0.5rem;
    cursor: pointer;
}
.SonPopup img{
    width: 85vw;
    margin-bottom: 2rem;
    z-index: 20;
}

  #svgicons{
        width: 50px;
        height: 50px;
    }

#viewDesktop{
display: none;
}

@media (min-width:768px) and (max-width:2650px) {
    #viewMobile{
        display: none;
    }

    #viewDesktop{
        display: flex;
    }
    #svgicons{
        width: 45px;
        height: 45px;
    }

    .close{
    display: flex;
    justify-content: end;
    width: 80%;
    position: absolute;
    left:9rem;
    top: 11rem;
}
}