
    #popup-container {
        position: fixed;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        justify-content: center;
    }
    #popup-container.active {
        top: 25%;
    }

    #popup-container {
        top: 20%;
    }

    #popup-content {
        background: linear-gradient(180deg,#ff8200,#81341a);
        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: 14px;
    color: white;
    }

    #popup-content .text-yellow {
    font-weight: normal;
    font-size: 14px;
    color: yellow;
    }
    .popup-table {
        padding: 8px 8px;
        margin: 8px 8px;
    }
    #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: 30px;
        left: 200px;
        right: 27%;
        z-index: 1000;
        display: flex;
        justify-content: center;
    }
    #popup-container.active {
        position: fixed;
        top: 80px;
        left: 200px;
        right: 27%;
        z-index: 1000;
        display: flex;
        justify-content: center;
    }
    #popup-content {
        background: linear-gradient(180deg,#ff8200,#81341a);
        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) { ... }
