.popup-active{
    position: relative;
    overflow: hidden;
}

.popup-active:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: background-color .2s ease;
    background-color: var(--Bg-color); opacity: .5;
    z-index: 1035;
}

.popup-container{
    display: none;
}

.popup-active .popup-container{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    z-index: 1040;
    overflow: scroll;
}

.popup-active .popup-element{
    background-color: var(--CINEMATEK-secondary);
    margin-left: auto;
    margin-right: auto;    
    min-width: 80vw;
    padding: 1rem 2rem;
    border: none;
    border-radius: .125rem;
    position: relative;

}

.popup-toggle{
    border: none;
    background-color: transparent;
    text-indent: -99999em;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 25px;
    z-index:2000
}

.popup-toggle span {
    display: block;
    background-color: var(--Bg-color);
    height: 3px;
    width: 25px;
    margin-top: 4px;
    margin-bottom: 4px;
    position: absolute;
    right: 0;
    top: .25rem;
    transform: rotate(-135deg);
    opacity: 0.9;
}

.popup-toggle span:last-of-type{
    transform: rotate(135deg);
}
