


.popup{
    position: fixed;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
    display: none;
}
.cont-box{
    width: 400px;
    height: 300px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    box-shadow:  0  5px 15px rgba(0, 0, 0, 0.1);

}
.cont-box .img{
    position: relative;
    width: 400px;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cont-box .img img{
    position: relative;
    width: 800px;
    height: 550px;
    border-radius: 20px;
}
.colse img{
    position: absolute;
    top: -30px;
    right: -15px;
    width: 30px;
    height: 30px; 
    z-index: 10;
    border-radius: 50%;
    cursor: pointer;

}
@media (max-width : 767px)
{
    .cont-box{
        width: 400px;
        height: 400px;
        z-index: 999;
        
    }
    .cont-box .img{
        height:410px;
        transform: translateY(-25px);
        z-index:999;   
    }
    .cont-box .img img {
    
    width: 400px;
    height: 400px;
    border-radius: 10px;
    z-index: 999;
    
    }
    .colse img{
    top: -59px;
    right: -2px;
    background: url(assets/css/imgs/cancel.png);
    cursor: pointer;
    z-index: 1000;
    width: 20px;
    height: 20px;

}
}
    


