/* duaModal 1.0 (2021-02-18) | © Duacode (https://www.duacode.com) */
body.duaModal-on {
    overflow: hidden;
}
.duaModal {
    position: fixed;
    z-index: 10000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: hidden;
    overflow-y: auto;
}
.duaModal-backdrop {
    width: 100%;
    min-height: var(--viewportHeight);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.duaModal-backdrop-pointer {
    cursor: zoom-out;
}
.duaModal-content {
    cursor: auto;
    position: relative;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.duaModal-close {
    background-color: transparent;
    cursor: pointer;
    position: absolute;
}