@charset "utf-8";
/* CSS Document */
#notificationbar {
	display: none;
	background-color: var(--zelena-light-gray);
	color: var(--cerna);
	position: fixed;
	margin-top: var(--header-height);
	width: 100%;
	z-index: 80;
}
.shownotification #notificationbar {
	display: block;
}

#notificationbar.critical {
	color: var(--bila);
	background-color: var(--cervena);
}

#notificationbar.positive {
	color: var(--bila);
	background-color: var(--zelena-dark);
}

#notificationbar .middle {
	padding: 2rem 0;
	position: relative;
}

#notificationbar .middle p {
	width: 100%;
	font-size: 1rem; line-height: 110%;
}

#notificationbar:not(.critical) p {
	text-align: center;
	font-weight: bold;
	font-size: 1.25rem; line-height: 110%;
}

#notificationbar .close {
	font-size: 2rem;
	position: absolute;
	right: 0; top: 1rem;
}

.close .line {background: var(--cerna);}

.positive .close .line,
.critical .close .line {background: var(--bila);}

#notificationbar form {
	display: flex;
	margin-top: 0.75rem;
	justify-content: center;
	align-content: flex-start; align-items: flex-start;
}

 #notificationbar form div, #notificationbar input[type=submit] {
	width: auto;
	padding: 0 2rem;
	margin: 0 2rem;
}

#notificationbar form div{
	border-color: var(--bila);
	cursor: pointer;
}

/* #notificationbar input[type=submit] {
	color: #fff;
	border: 0.2rem solid #ff8c1c;
	border-radius: 0 1.1875rem;
	background-color: #ff8c1c;
	width: 5rem; padding: 0.5rem 0;
	font-weight: bold;
	font-size: 1.25rem; line-height: 110%;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
} */

@media (max-width: 500px){




}
