#cybergrx-popup {
    display: none;
    position: fixed;
    top: 0;
    justify-content: center;
    align-items: center;
    left: 0;
    z-index: 99999;
    background-color: #0000008a;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    height: 100%;
}

#cybergrx-popup img {
    max-width: 350px;
    width: 100%;
    height: auto;
}

#cybergrx-popup .cybergrx-popup-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 6px;
    max-width: 700px;
    width: calc(100% - 40px);
    gap: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.blue-text {
    color: #143b6c;
    font-family: "Avenir-Heavy"
}