.popover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0004;
    z-index: 999999;
}

.sliding-screen {
    position: sticky;
    top: 0vh;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popover-window {
    position: sticky;
    min-height: 300px;
    max-width: 750px;
    max-height: 75vh;
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    padding: 2.5rem 0;
    display: flex;
    margin: 1rem;
}

.popover-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: .5rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-bottom-left-radius: 1rem;
    cursor: pointer;
    background-color: transparent;
}

.popover-content {
    position: relative;
    flex: 1;
    overflow: auto;
    padding: 0 3rem;
}