@charset "UTF8";

#element_to_pop_up {
    display: none;
    height: 250px;
    width: 500px;
    box-shadow: 0px 0px 15px white;
    border-radius: 7px;
    background-color: white;
}
#element_to_pop_up #popUpTitle {
    margin-top: 15px;
    text-align: center;
    font-size: 35px;
    color: #263554;
}
#element_to_pop_up #popUpMsg {
    margin-top: 60px;
    text-align: center;
    font-size: 18px;
    color: black;
}
.b_close {
    cursor: pointer;
    border-radius: 7px;
    background-color: blue;
    color: white;
    box-shadow: none;
    font: bold 131% sans-serif;
    padding: 3px 6px;
    position: absolute;
    right: -12px;
    top: -12px
}
.b_close:hover {
    background-color: black;
}