.the_pop_up{
    position: fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background: rgba(0,0,0,0.6);
     display: flex;
    align-items: center;
    justify-content: center;
  
}
.the_pop_up_in_in{
    background: white;
    width:100%;
    text-align: center;
}
.the_pop_up_in{
    background: transparent;
    width: 30%;
    margin-right: 35%;
    margin-left: 35%;
    border-radius: 3px;
    margin: 15px;
    padding: 15px;
    
}
.the_close_the_pop_up_in{
    position: absolute;
    left: 0;
    top: 0;
    background: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    z-index: 1;
}
.the_submit_but{
    background: #BA292A;
    font-weight: bold;
    margin-top: 20px;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
}