
.simplepopup {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    display:none;
}

.simplepopup .simplepopup-content {
    background-color: #fefefe;
    margin: 15% auto;
    border: 1px solid #888;
    max-width: 80%;
    width: max-content;
    overflow: hidden;
    word-wrap: break-word;
    position: relative;
}


/* The Close Button */
.simplepopup .close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: -10px;
    right: 0;
}

.simplepopup .close:hover,
.simplepopup .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* The block content */
.simplepopup .simplepopup-content .simplepopup-block-content {
    margin: 2rem;
}

/** The don't show checkbox  */
.simplepopup .dontShowFeature {
    position:absolute;
    bottom:0.5rem;
    left:2rem;
}
