.wpcs_ernst_popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0000006e;
    z-index: 9998;
    display: none;
}

div#wpcs_ernst_popup {
    position: fixed;
    height: 100dvh;
    background-color: white;
    z-index: 9999;
    top: 0;
    right: -100%;
    width: 50%;
    padding: 40px;
    transition: right 0.4s ease-in-out;
    overflow: auto;
}

#wpcs_ernst_popup.ernst_active+.wpcs_ernst_popup_overlay {
    display: block;
}

div#wpcs_ernst_popup.ernst_active {
    right: 0;
}

.wpcs_close_ernst_popup {
    font-size: 50px;
    height: auto;
    width: auto;
    cursor: pointer;
    display: inline-block;
}

#wpcs_open_ernst_popup {
    text-decoration: underline;
    span {
        text-decoration: none;
    }
}

div.wpcs_ernst_result {
    display: none;
    justify-content: space-between;
}

.wpcs_open_ernst_popup_edit {
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
    div#wpcs_ernst_popup {
        height: 100vh;
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    div#wpcs_ernst_popup {
        padding: 20px;
    }
    body.popup_open {
        overflow: hidden;
    }
}