#netsEasyModal{
    display: none; 
    background-color: rgba(0, 0, 0,0.25); 
    height: 100vh; 
    width: 100vw; 
    position:absolute; 
    top:0; 
    left:0;
}

#netsEasyModal-content{
    background-color: #fff;
    height: auto;
    width: auto;
    position:absolute;  top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:red;
    border-radius:12px;
}

#netsEasyModal-content h2{
    border-radius:12px 12px 0px 0px ; 
    color:white; 
    background-color: #005E8C; 
    padding:10px; 
    width:auto; 
    margin-bottom: 10px;
}

#netsEasyModal-content p{
    color:black; 
    padding:30px; 
    font-size: large; 
    text-align:center;
}

#netsEasyModal-content .button_container{
    display:flex; width: 100%; 
    justify-content:center; 
    padding-bottom:20px;
}

#netsEasyModal-content .button_container button{
    cursor: pointer; 
    background-color: #005E8C; 
    color:white; 
    border-radius:12px; 
    padding:10px 20px; 
    margin:10px; 
    width:auto; 
    font-size: large;
}