/* Stil za overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

/* Stil za popup */
.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    opacity: 0; /* Počinje nevidljivo */
    transform: translateY(-100vh); /* Počinje izvan ekrana, odozgo */
    transition: transform 0.5s, opacity 0.5s;
}

/* Kada je popup aktivan, menja se njegova pozicija i postaje vidljiv */
.popup-active .popup-overlay {
    opacity: 1;
    visibility: visible;
}

.popup-active .popup-content {
    opacity: 1;
    transform: translateY(0); /* Pomeramo na središnju poziciju */
}


.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    opacity: 1;
}


/* Stil za dugme za zatvaranje */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* Animacija za pojavljivanje */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Onemogućava skrol kada je popup aktivan */
body.lock-scroll {
    overflow: hidden;
}

/* Text in topbar for support */
.site-header-above-section-left p {
	margin-bottom: 0;
}
.trigger-popup {
	position: relative;
	color: #333;
	z-index: 5;
	margin-left: 10px;
}
.trigger-popup:hover {
	color: #333;
}
.trigger-popup:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: -5px;
	width: 110%;
	height: 2px;
	background: #fb8a4466;
	z-index: 2;
	transition: 0.3s ease-in-out;
}
.trigger-popup:hover::before {
	height: 19px;
}
.notification-banner {
	border: 1px solid red;
	padding: 5px 8px;
}
.forminator-field label {
	font-size: 14px !important;
}
.forminator-button-submit {
	background: #fb8a44 !important;
}

