.easy-popup-container {
    opacity: 0;
    pointer-events: none;
}

.easy-popup-container.active {
    opacity: 1;
    pointer-events: all;
}

.easy-popup-content {
    background-color: #fff;
}

.overlay {
    position: fixed;
    backface-visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.overlay_inside {
    min-height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-content {
    position: relative;
    background-color: #fff;
}

.overlay-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5em;
    height: 2.5em;
    cursor: pointer;
}

.overlay-close::before {
    content: 'x';
    background-color: #fff;
}
