#offerPopupx {
    position: fixed;
    top: 15%;
    right: 1%;
    z-index: 9999;
}

/* Szivárvány keret */
.boxx {
    position: relative;
    width: 145px; /* popup szélessége */
    border-radius: 12px;
    padding: 4px; /* keret vastagsága */
}

.boxx::before,
.boxx::after {
    content: '';
    z-index: -1;
    position: absolute;
    width: calc(100% + -8px);
    height: calc(100% + -8px);
    top: 4px;
    left: 4px;
    border-radius: 16px;
    background: linear-gradient(45deg,
        #ffff00, #00ff00, #0099ff, #001aff, #a200ff, #ff0055, #ff0000,
        #ff0055, #ff0000, #ffff00, #00ff00, #0099ff, #001aff, #a200ff
    );
    background-size: 300%;
    animation: border 12s linear infinite;
}

.boxx::after {
    filter: blur(40px);
}

@keyframes border {
    0%, 100% { background-position: 0 0; }
    50% { background-position: 300%; }
}

/* Fehér popup belső tartalom */
.popup-contentx {
    background: #ffffff;
    border-radius: 5px;
    padding: 4px;
    text-align: center;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 1;
}

.popup-contentx p {
    margin-bottom: 12px;
    font-size: 14px;
}

.popup-contentx button {
    background: #0073aa;
    color: #ffffff;
    border: none;
    padding: 4px 10px;
    cursor: pointer;
    border-radius: 4px;
}

.popup-contentx button:hover {
    background: #005f8d;
}

.popup-contentx .close {
    position: absolute;
    top: -5px;
    right: -1px;
    cursor: pointer;
    font-size: 18px;
}
@media (min-width: 359px) and (max-width: 412px) {
#offerPopupx {
    top: 70%;
	left: 110px;
}
.popup-contentx p {
    margin-bottom: 5px;
    font-size: 12px;
}}