*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.none{
    display: none !important;
}
._pop_content{
    /* usuń ten fleks huju złamany!!!!!!! */
    display: flex;
    position: fixed;
    top: 200%;
    left: 50%;
    width: 80%;
    max-width: 750px;
    height: 500px;
    transform: translate(-50%,-50%);
    border: 1px solid rgba(0, 0, 0, 0.402);
    border-radius: 2px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.107);
    animation: show .8s linear forwards;
    animation-delay: 2ms;
}
@keyframes show {
    0%{
        top: 200%;
    }
    100%{
        top: 50%;

    }
}
._pop_img{
    width: 50%;
    img{
        width: 100%;
        height: 100%;
        
    }
}
._pop_text{
    width: 50%;
    background-color: rgb(255, 255, 255);
    padding: 30px;
}
._pop_close{
    top: 5%;
    right: 2%;
    position: absolute;
    transform: translate(-50%,-50%);
    cursor: pointer;
}