.oc-popup-open {
    overflow: hidden;
}

.oc-popup-open .oc-popup-wrapper {
    display: flex;
}

.oc-popup-wrapper {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    display: none;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
    z-index: 999999999999999999999999999;
}

.oc-popup-content-container {
    background-color: #FFF;
    border-radius: 8px;
    max-height: 75vh;
    overflow-y: auto;
    padding: 25px 50px 25px 25px;
    position: relative;
    max-width: 80vw;
}

.oc-popup-content-container ul,
.oc-popup-content-container ol,
.oc-popup-content-container p {
    color: #444;
    font-size: 20px;
    line-height: 1em;
    margin-bottom: 1em;
}

.oc-popup-content-container ul:last-child,
.oc-popup-content-container ol:last-child,
.oc-popup-content-container p:last-child {
    margin-bottom: 0;
}

.oc-popup-close-button {
    cursor: pointer;
    height: 40px;
    position: absolute;
    right: 0;
    top: 10px;
    width: 40px;
}
