.bottom-popup-notification {
    position: fixed;
    left: 0;
    right: 0;
    width: 90%;
    max-width: 400px;
    margin: 10px auto;
    background: #0074c4;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: bottom 0.3s ease-in-out;
    font-size: 13px;
    text-align: center;
}

.bottom-popup-notification.show {
	top: 0px;
}

.bottom-popup-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.bottom-popup-text {
    flex: 1;
    line-height: 1.4;
}

.bottom-popup-close {
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: white;
    background: rgba(255,255,255,0.2);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@media (max-width: 768px) {

.bottom-popup-notification {
    width: calc(100% - 20px);
    max-width:100%;
    margin: 0px 10px;
    padding: 10px 16px;
}

.bottom-popup-notification.show {
	bottom: 10px;
	top: auto;
}
}