#fixed-popup.fixed-popup {
    position: absolute;
    top: 110px;
    right: 20px;
    width: 300px !important;
    background-color: white;
    border: 3px solid #ff0000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    z-index: 1000;
    animation: blink-red 1s infinite;
    border-radius: 10px;
    text-align: center;
}

#fixed-popup.fixed-popup h2 {
    font-size: 14px;
    margin: 0 0 10px 0;
    color: #0073e6;
    text-transform: uppercase;
    text-decoration: underline;
}

#fixed-popup.fixed-popup p {
    font-size: 12px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-weight: bold;
}

@media (max-width: 1356px) {
    #fixed-popup.fixed-popup {
        height: 60px;
		display:flex;
		flex-direction: row;
    }

 
}

#fixed-popup.fixed-popup button {
    padding: 5px 10px;
    font-size: 12px;
    color: #fff;
    background-color: #0073e6;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#fixed-popup.fixed-popup button:hover {
    background-color: #005bb5;
}

@keyframes blink-red {
    0%, 100% {
        border-color: #ff0000;
    }
    10% {
        border-color: transparent;
    }
}
a.popup-button{
	margin-left: 10px;
	height: 30px;
}
#fixed-popup.fixed-popup a.popup-button {
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    color: #fff;
    background-color: #0073e6;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#fixed-popup.fixed-popup a.popup-button:hover {
    background-color: #005bb5;
}
