
#popup-container {
    position: fixed;
    left: 0;
    top: 20%;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
}
#popup-container.active {
    position: fixed;
    left: 0;
    top: 25%;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
}
#popup-content {
    background: linear-gradient(180deg,#49bdaf,#533ab5);
    padding: 0;
    margin: 0;
    border-radius: 10px;
    text-align: left;
    width: 95%;
    height: 200%;
    border: solid 5px #fcfcfc;
    box-shadow: inset 0px 0px 4px black;
}
#popup-content .text-white {
    font-weight: bold;
    font-size: 15px;
    color: white;
}
#popup-content .text-yellow {
    font-weight: normal;
    font-size: 15px;
    color: yellow;
}
#popup-close {
    cursor: pointer;
    padding-left: 10px;
}
.popup-hidden {
    display: none!important;
}

@media (min-width: 576px) { 
    
}

@media (min-width: 768px) { 
    #popup-container {
    position: fixed;
    left: 0;
    top: 30%;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
}
#popup-container.active {
    position: fixed;
    left: 0;
    top: 33%;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

}

@media (min-width: 992px) { 
    #popup-container {
        position: fixed;
        top: 115px;
        left: 475px;
        right: 0;
        z-index: 1000;
        display: flex;
        justify-content: center;
    }
    #popup-container.active {
        position: fixed;
        top: 170px;
        left: 475px;
        right: 0;
        z-index: 1000;
        display: flex;
        justify-content: center;
    }
    #popup-content {
        background: linear-gradient(180deg,#49bdaf,#533ab5);
        padding: 0;
        margin: 0;
        border-radius: 10px;
        text-align: left;
        width: 95%;
        height: 200%;
        border: solid 5px #fcfcfc;
        box-shadow: inset 0px 0px 4px black;
    }
}
@media (min-width: 1200px) { ... }
