.ectMainPopupContainer {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.ectMainPopupContainer #ectPopupContent {
    background: #FFF;
    width: 100%;
    min-height: 0%;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 10px;
}

.ectMainPopupContainer.hidden {
    display: none;
}