.simple-modal {
    display: block;
    z-index: 999;
    position: fixed; top: 0; right: 0;
    width: 100%; height: 100%;
    background: #fff;
}
.simple-modal.hidden {
    display: none;
}

.simple-modal .smodal-header {
    display: flex; align-items: center; justify-content: space-between; 
    width: 100%;
    border-bottom: 1px solid #eee;
    height:50px; padding: 16px 32px;
}
.simple-modal .smodal-header h3 {
    display: block;
    font: 600 18px/18px "Inter", serif; color: #222;
}

.smodal-close-button {
    display: flex !important; align-items: center; justify-content: center; 
    width: 32px; height: 32px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 24px;
}
.smodal-close-button:hover {
    background: rgba(0,0,0,0.1);
}

.smodal-content {
    display: block; 
    width: 100%; height: calc(100% - 50px);
    box-sizing: border-box;
    padding: 32px;
    overflow-y: auto;
}
.smodal-content * {
    font-size: 14px; line-height: 16px; color: #666;
    text-align: justify;
}



@media screen and (min-width: 992px) {
    .simple-modal { width: 800px; box-shadow: 0px -5px 15px rgba(0,0,0,0.1); }
}