@charset "UTF-8";

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Header
# Footer
# Main
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 5rem;
}

.invert {
	filter: invert(1);
	/* hue-rotate(180deg); */
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
	max-width: 100%;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset,
legend {
	border: none;
	margin: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #222222;
	font-family: "PT Serif", serif;
	font-size: 1.125rem;
	line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	color: #222222;
	margin: 1em 0 0.5em;
	font-weight: 700;
	display: block;
	line-height: 1.15;
}

h1,
.h1 {
	font-size: 2.25rem;
	font-family: "Roboto Condensed", sans-serif;
}

@media (min-width: 48em) {

	h1,
	.h1 {
		font-size: 2.5rem;
	}
}

@media (min-width: 75em) {

	h1,
	.h1 {
		font-size: 2.875rem;
	}
}

h2,
.h2 {
	font-size: 1.625rem;
	font-family: "Roboto Condensed", sans-serif;
}

@media (min-width: 75em) {

	h2,
	.h2 {
		font-size: 1.875rem;
	}
}

h3,
.h3 {
	font-size: 1.375rem;
	font-family: "Roboto Condensed", sans-serif;
}

@media (min-width: 75em) {

	h3,
	.h3 {
		font-size: 1.5rem;
	}
}

h4,
.h4 {
	font-size: 1.25rem;
}

h5,
.h5,
h6,
.h6 {
	font-size: 1.125rem;
}

p {
	margin-bottom: 1.5em;
}

a {
	color: #b71c1c;
}

a:hover {
	text-decoration: none;
}

a:active,
a:focus {
	background-color: transparent;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre,
code {
	display: block;
	background: #4b4b4b;
	color: #f9f9f9;
	font-family: "Courier 10 Pitch", Courier, monospace;
	line-height: 1.7;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
	border-radius: 0.3rem;
}

abbr,
acronym {
	border-bottom: 1px dotted gray;
	cursor: help;
}

mark,
ins {
	text-decoration: none;
}

big {
	font-size: 125%;
}

button:active,
button:focus {
	background-color: transparent;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
hr {
	border: none;
	height: 2px;
	border-top: 2px solid #efebe9;
	border-bottom: 1px solid #efebe9;
	margin: 2.5rem 0;
}

label {
	display: block;
	margin-top: 0.625rem;
}

input,
textarea {
	border: 1px solid #efebe9;
	padding: 0.3125rem 0.9375rem;
	width: calc(100% - 30px);
	margin: 0.625rem 0;
}

@media (min-width: 62em) {

	input,
	textarea {
		width: 18.75rem;
	}
}

@media (min-width: 62em) {
	textarea {
		width: 100%;
	}
}

input[type="submit"],
button {
	background-color: #b71c1c;
	color: #fff;
	border: none;
	width: auto;
}

audio {
	outline: none;
}

blockquote {
	background: #f9f9f9;
	padding: 1.25rem;
	margin: 1.25rem 0;
	quotes: "“" "”" "‘" "’";
}

blockquote:before {
	color: #ccc;
	content: open-quote;
	font-size: 5rem;
	line-height: 0.1em;
	margin-right: 0.25em;
	vertical-align: -0.4em;
}

blockquote p {
	display: inline;
}

table th,
table td {
	border: 1px solid #efebe9;
	padding: 0.3125rem 0.9375rem;
	text-align: left;
}

table th {
	background: #f6f6f6;
}

/*--------------------------------------------------------------
# Helpers
--------------------------------------------------------------*/
.uppercase {
	text-transform: uppercase;
}

.block {
	display: block;
}

.red {
	color: #b71c1c;
}

.m0 {
	margin: 0;
}

.muted {
	color: #a9a9a9;
}

.fl {
	float: left;
	margin: 0.4375rem 1.25rem 0.625rem 0;
}

.fr {
	float: right;
	margin: 0.4375rem 0 0.625rem 1.25rem;
}

.exposed {
	background: #efebe9;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
	background: #b71c1c;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	font-family: "Roboto Condensed", sans-serif;
	padding: 0.3125rem 1.25rem;
}

@media (min-width: 62em) {
	.site-header {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.site-header a {
	color: #fff;
	text-decoration: none;
}

.site-header .page-title {
	font-size: 1.75rem;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

@media (min-width: 62em) {
	.site-header .page-title {
		font-size: 2rem;
	}
}

.nav-icon {
	width: 1.875rem;
	height: 1.5625rem;
	cursor: pointer;
	background: none;
	border: none;
	outline: none;
	position: absolute;
	top: 1rem;
	right: 1.25rem;
	-webkit-tap-highlight-color: transparent;
}


@media (min-width: 62em) {
	.nav-icon {
		position: relative;
		top: auto;
		right: auto;
	}
}

.nav-icon span {
	background: #fff;
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transform-origin: left center;
	transform-origin: left center;
}

.nav-icon span:nth-child(1) {
	top: 3px;
}

.nav-icon span:nth-child(2) {
	top: 12px;
}

.nav-icon span:nth-child(3) {
	top: 21px;
}

@media (min-width: 75em) {
	#site-navigation {
		margin-left: -6.875rem;
	}
}

#site-navigation ul {
	list-style-type: none;
}

#site-navigation ul li a {
	text-decoration: none;
}

.nav-menu {
	display: none;
	margin: 0.5rem 0 0 0;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 62em) {
	.nav-menu {
		border: none;
		margin: 0;
	}
}

.nav-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 62em) {
	.nav-menu li {
		border: none;
		margin: 0 0.625rem;
	}
}

@media (min-width: 62em) {
	.nav-menu li {
		display: inline;
	}
}

.nav-menu li:nth-child(odd) {
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 62em) {
	.nav-menu li:nth-child(odd) {
		border: none;
	}
}

.nav-menu li:nth-child(even) {
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 62em) {
	.nav-menu li:nth-child(even) {
		border: none;
	}
}

.nav-menu li a {
	display: block;
	padding: 0.5rem 0;
	font-weight: 700;
	text-align: center;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

@media (min-width: 62em) {
	.nav-menu li a {
		display: inline-block;
		text-transform: uppercase;
		position: relative;
	}

	.nav-menu li a:after {
		content: "";
		position: absolute;
		bottom: 3px;
		left: 0;
		right: 0;
		height: 3px;
		background: #fff;
		-webkit-transition: opacity 0.3s ease;
		transition: opacity 0.3s ease;
		opacity: 0;
	}

	.nav-menu li a:hover:after {
		opacity: 0.2;
	}
}

@media (min-width: 62em) {
	.nav-menu {
		display: block;
	}
}

.extra-menu {
	margin: 1.25rem 0 0 0;
	padding: 0;
	display: none;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
}

.extra-menu li {
	padding-left: 0.8125rem;
	position: relative;
}

.extra-menu li:before {
	content: "•";
	color: #fff;
	opacity: 0.35;
	position: absolute;
	left: 0;
	top: 0.125rem;
}

@media (min-width: 48em) {
	.extra-menu li:before {
		top: 0.4375rem;
	}
}

@media (min-width: 62em) {
	.extra-menu li:before {
		color: #b71c1c;
		top: 0.125rem;
	}
}

@media (min-width: 48em) {
	.extra-menu {
		-webkit-column-count: 3;
		-moz-column-count: 3;
		column-count: 3;
	}
}

@media (min-width: 62em) {
	.extra-menu {
		position: absolute;
		left: 0;
		right: 0;
		margin-top: 0.5625rem;
		padding: 0 calc((100vw - 1190px) / 2) 0 calc((100vw - 1190px) / 2);
		-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
		background: #fff;
		-webkit-column-count: 4;
		-moz-column-count: 4;
		column-count: 4;
	}
}

.extra-menu li {
	display: inline-block;
	width: 100%;
}

.extra-menu a {
	display: block;
	padding: 0.1875rem 0;
	font-size: 1rem;
}

@media (min-width: 48em) {
	.extra-menu a {
		font-size: 1.125rem;
		padding: 0.3125rem 0;
	}
}

@media (min-width: 62em) {
	.extra-menu a {
		color: #b71c1c;
		display: inline-block;
		position: relative;
		overflow: hidden;
		padding: 0;
	}

	.extra-menu a:after {
		content: "";
		position: absolute;
		-webkit-transition: -webkit-transform 0.2s ease;
		transition: -webkit-transform 0.2s ease;
		transition: transform 0.2s ease;
		transition: transform 0.2s ease, -webkit-transform 0.2s ease;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 2px;
		background: #b71c1c;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		opacity: 0.3;
	}

	.extra-menu a:hover:after {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.toggled {
	bottom: 0;
	padding-bottom: 1.25rem;
	overflow: auto;
}

@media (min-width: 62em) {
	.toggled {
		bottom: auto;
		padding-bottom: 0.3125rem;
		overflow: inherit;
	}
}

.toggled .nav-icon span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 2px;
	left: 3px;
}

.toggled .nav-icon span:nth-child(2) {
	width: 0%;
	opacity: 0;
}

.toggled .nav-icon span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 23px;
	left: 3px;
}

.toggled .nav-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (min-width: 62em) {
	.toggled .nav-menu {
		display: block;
	}
}

.toggled .nav-menu li {
	-webkit-box-flex: calc(50% - 2px);
	-ms-flex: calc(50% - 2px) 0;
	flex: calc(50% - 2px) 0;
}

.toggled .extra-menu {
	display: block;
}

@media (min-width: 62em) {
	.toggled .extra-menu {
		padding-top: 1.875rem;
		padding-bottom: 1.875rem;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
	background: #fff;
	-webkit-box-shadow: 0 2px 8px rgba(118, 98, 92, 0.1);
	box-shadow: 0 2px 8px rgba(118, 98, 92, 0.1);
	font-size: 1rem;
}

.site-footer p:last-of-type {
	margin-bottom: 0;
}

@media (min-width: 75em) {
	.extended-footer {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.extended-footer>div {
	border-bottom: 1px solid #efebe9;
	overflow: auto;
	padding: 1.25rem;
}

@media (min-width: 75em) {
	.extended-footer>div {
		-webkit-box-flex: 3;
		-ms-flex-positive: 3;
		flex-grow: 3;
		border-right: 1px solid #efebe9;
		border-bottom: none;
		padding: 3.75rem 3%;
	}
}

.extended-footer>div:last-child {
	border-right: none;
}

.extended-footer>div:last-child a {
	color: #b71c1c;
}

.extended-footer>div:last-child a:hover {
	text-decoration: underline;
}

.extended-footer>.menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media (min-width: 48em) {
	.extended-footer>.menu {
		-webkit-box-flex: 4;
		-ms-flex-positive: 4;
		flex-grow: 4;
	}
}

.extended-footer>.menu ul {
	padding: 0;
	list-style-type: none;
	margin: 0;
}

@media (min-width: 75em) {
	.extended-footer>.menu ul {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 2.5rem;
		-moz-column-gap: 2.5rem;
		column-gap: 2.5rem;
		margin: 0 1.25rem 1.25rem 0;
	}
}

.extended-footer a {
	color: #222222;
	text-decoration: none;
}

.extended-footer a:hover {
	color: #b71c1c;
}

@media (min-width: 75em) {
	.extended-footer img {
		max-width: 50%;
	}
}

.facebook {
	font-size: 0;
	display: block;
	width: 2.5rem;
	height: 2.5rem;
	background: url("../images/icons.svg") top -34px left no-repeat;
	margin-top: 0.5rem;
}

.copyright {
	text-align: center;
	padding-bottom: 1.25rem;
}

@media (min-width: 75em) {
	.copyright {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 1.5625rem 3% 1.25rem 3%;
		border-top: 1px solid #efebe9;
		text-align: left;
	}
}

.copyright p {
	margin: 0;
}

.copyright .fl {
	float: none;
	display: block;
	margin: 1.25rem auto 0.625rem auto;
}

@media (min-width: 75em) {
	.copyright .fl {
		margin: 0 0.375rem -0.8125rem 0;
		display: inline-block;
	}
}

.copyright a {
	color: #222222;
	text-decoration: none;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
body {
	background: url("../images/bg1.svg") no-repeat top 60px right 20px,
		url("../images/bg2.svg") no-repeat bottom 60px left 20px, #f7f6f1;
}

.site-content {
	background: #fff;
	-webkit-box-shadow: 0 2px 8px rgba(118, 98, 92, 0.1);
	box-shadow: 0 2px 8px rgba(118, 98, 92, 0.1);
	max-width: 50rem;
	margin: 3.625rem auto;
}

@media (min-width: 75em) {
	.site-content {
		margin: 6.875rem auto;
	}
}

.main-content {
	padding: 2.5rem 1.25rem 1.25rem 1.25rem;
	position: relative;
}

@media (min-width: 48em) {
	.main-content {
		padding: 2.5rem 3.125rem;
	}
}

@media (min-width: 75em) {
	.main-content {
		padding: 3.75rem 5rem;
		margin-left: auto;
		margin-bottom: auto;
		margin-right: auto;
		margin-top: 0;
	}
}

.main-content h1:first-of-type {
	position: relative;
	margin: 0 auto 1.875rem auto;
	padding-bottom: 2.5rem;
	max-width: 32.5rem;
}

.main-content h1:first-of-type:after {
	content: "";
	width: 3.9375rem;
	height: 1.25rem;
	display: block;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("../images/icons.svg") top 5px left no-repeat;
}

.page-title {
	text-align: center;
	position: relative;
}

.page-nav a {
	width: 3rem;
	height: 3rem;
	border: 1px solid #efebe9;
	background: transparent;
	-webkit-transition: background-color 0.2s;
	transition: background-color 0.2s;
	display: inline-block;
	font-size: 0;
	background-color: #fff;
	background-image: url("../images/icons.svg");
	background-repeat: no-repeat;
}

@media (min-width: 75em) {
	.page-nav a {
		position: absolute;
	}
}

.page-nav a:hover,
.page-nav a:active,
.page-nav a:focus {
	background-color: #b71c1c;
}

.page-nav a:hover img,
.page-nav a:active img,
.page-nav a:focus img {
	-webkit-filter: brightness(100);
	filter: brightness(100);
}

.page-nav .next {
	background-position: -21px -136px;
}

@media (min-width: 75em) {
	.page-nav .next {
		right: -5.0625rem;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		border-right: none;
	}
}

.page-nav .next:hover,
.page-nav .next:active,
.page-nav .next:focus {
	background-position: -21px -76px;
}

.page-nav .prev {
	background-position: 19px -136px;
}

@media (min-width: 75em) {
	.page-nav .prev {
		left: -5rem;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		border-left: none;
	}
}

.page-nav .prev:hover,
.page-nav .prev:active,
.page-nav .prev:focus {
	background-position: 19px -76px;
}

.page-nav .calendar {
	background-position: -61px -136px;
}

@media (min-width: 75em) {
	.page-nav .calendar {
		top: -3.75rem;
		right: -2rem;
		border-top: none;
		border-right: none;
	}
}

.page-nav .calendar:hover,
.page-nav .calendar:active,
.page-nav .calendar:focus {
	background-position: -61px -76px;
}

.page-nav .search {
	background-position: -101px -135px;
}

@media (min-width: 75em) {
	.page-nav .search {
		top: -3.75rem;
		right: -5.0625rem;
		border-top: none;
		border-right: none;
	}
}

.page-nav .search:hover,
.page-nav .search:active,
.page-nav .search:focus {
	background-position: -101px -75px;
}

.ui-datepicker {
	background: #fff;
	padding: 1.25rem;
	border: 1px solid #efebe9;
}

@media (max-width: 767px) {
	.ui-datepicker {
		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
		left: 50% !important;
	}
}

@media (min-width: 48em) {
	.ui-datepicker {
		-webkit-transform: translateX(calc((100vw - 760px) / 2));
		transform: translateX(calc((100vw - 760px) / 2));
	}
}

@media (min-width: 75em) {
	.ui-datepicker {
		-webkit-transform: none;
		transform: none;
		margin: -0.75rem 0 0 22.625rem;
	}
}

.ui-datepicker th {
	background: transparent;
}

.ui-datepicker td a {
	text-align: center;
}

.ui-datepicker .ui-datepicker-next {
	background: url("/images/icons.svg") no-repeat;
	background-position: -32px -142px;
	right: 2px;
	top: 2px;
	cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev {
	background: url("/images/icons.svg") no-repeat;
	background-position: 15px -142px;
	left: 2px;
	top: 2px;
	cursor: pointer;
}

.calendar-search {
	display: none;
}

@media (min-width: 75em) {
	.calendar-search {
		position: absolute;
		top: -1.375rem;
		right: -5.0625rem;
		text-align: right;
	}
}

.calendar-search.open {
	display: block;
}

.livesearch {
	padding: 0.9375rem;
	border: 1px solid #efebe9;
	text-align: left;
	font-size: 0.875rem;
	background: #fff;
	margin: -0.6875rem -0.125rem 0 0;
}

@media (min-width: 75em) {
	.livesearch {
		margin-right: 0;
	}
}

.livesearch .past {
	opacity: 0.5;
}

/*sidebar*/
.has-sidebar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1190px;
}

.odgovor {
	background-color: #efe9e9;
	padding: 1rem;
	margin: 1rem;
	border-radius: 0.5rem;
}

.main-content img {
	margin-left: 12px;
	margin-right: 12px;
	border-radius: 5px;
	max-width: 50%;
}

.main-content h1 {
	text-align: center;
}

.main-content a {
	text-decoration: none;
}

.main-content a:hover {
	text-decoration: underline;
}

.has-sidebar .main-content {
	width: calc(100% - 40px);
}

@media (min-width: 48em) {
	.has-sidebar .main-content {
		flex: 1;
		min-width: 0;
	}
}

.main-sidebar {
	width: 100%;
	font-size: 0.9375rem;
	position: relative;
	border-top: 3px solid #efebe9;
}

@media (min-width: 48em) {
	.main-sidebar {
		width: 18.75rem;
		padding: 0;
		border-left: 1px solid #efebe9;
		border-top: none;
	}
}

@media (min-width: 75em) {
	.main-sidebar {
		width: 25rem;
	}
}

.main-sidebar h1,
.main-sidebar h2,
.main-sidebar h3,
.main-sidebar h4,
.main-sidebar h5,
.main-sidebar h6 {
	color: #b71c1c;
}

.blok {
	padding: 1.875rem 1.25rem;
	border-bottom: 1px solid #efebe9;
}

@media (min-width: 48em) {
	.blok {
		padding: 2.5rem;
	}
}

.blok> :first-child {
	margin-top: 0;
}

.blok> :last-child {
	margin-bottom: 0;
}

.blok audio {
	width: 100%;
}

.brevir-content p {
	margin: 0;
	line-height: 1.5 !important;
	text-align: justify;
}

#faq li {
	margin: 7px 0;
}

.prosnje-odpev {
	font-style: italic;
	margin-left: 15px;
}

* {
	box-sizing: border-box;
}

input,
select,
textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	resize: vertical;
}

label {
	padding: 12px 12px 12px 0;
	display: inline-block;
}

input[type="submit"] {
	background-color: #b71c1c;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	float: right;
}

input[type="submit"]:hover {
	background-color: #ca4343;
}

.container {
	border-radius: 5px;
	background-color: #f2f2f2;
	padding: 20px;
}

.col-25 {
	float: left;
	width: 25%;
	margin-top: 6px;
}

.col-50 {
	float: left;
	width: 50%;
	margin-top: 6px;
	text-align: center;
}

.col-75 {
	float: left;
	width: 75%;
	margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

.spacing-10 {
	margin-top: 15px;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

	.col-25,
	.col-75,
	input[type="submit"] {
		width: 100%;
		margin-top: 1.2rem;
	}
}

.iframecontainer {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
	/* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.responsive-iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.main-content li {
	margin-top: 0.5rem;
}

.button {
	background-color: #4caf50;
	/* Green */
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
}

.confirm-options {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 0.5rem;
}

.confirm-btn {
	display: inline-block;
	padding: 0.35em 0.95em;
	border-radius: 4px;
	font-size: 0.82em;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.02em;
	border: 1px solid transparent;
	box-shadow: 0 1px 2px rgba(0,0,0,.08);
	transition: filter 0.15s, box-shadow 0.15s;
	cursor: pointer;
}

.confirm-btn:hover {
	filter: brightness(0.95);
	box-shadow: 0 2px 4px rgba(0,0,0,.12);
	text-decoration: none;
}

.confirm-btn--resend { background: #c5d6bc; color: #2e4520; border-color: #aec3a4; }
.confirm-btn--edit   { background: #efebe9; color: #4d3a25; border-color: #d6cfc8; }
.confirm-btn--unsub  { background: #e8c4c4; color: #7a2a2a; border-color: #d4a8a8; }

/* FAQ accordion (faq.php) */
.accordion {
	background-color: #eee;
	color: #444;
	cursor: pointer;
	padding: 1.2rem;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	transition: 0.4s;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
}

.viseci {
	padding-left: 1.1em;
	text-indent: -1.1em;
	flex: 1;
}

.accordion::after {
	content: "";
	width: 0.5em;
	height: 0.5em;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-right: 0.3em;
	margin-bottom: 0.2em;
}

.accordion.active::after {
	transform: rotate(-135deg);
	margin-bottom: -0.1em;
}

.active,
.accordion:hover {
	background-color: #ccc;
}

.panel {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.zoom {
	transition: transform 0.2s;
}

.zoom:hover {
	transform: scale(1.1);
}

.novost {
	border-radius: 5px;
	background-color: #b71c1c;
	color: white;
	padding: 2px 6px 2px 6px;
	font-size: 70%;
	margin: 0 0 0 5px;
}

label,
input {
	word-wrap: break-word;
	display: inline-block;
	vertical-align: middle;
}

.mylabel label {
	display: inline-block;
	text-indent: -3rem;
	margin-left: 3rem;
}

.col-100 {
	float: left;
	width: 100%;
	margin-top: 6px;
}

#myform input[type="checkbox"],
#myform input[type="radio"] {
	display: inline;
	/* Double-sized Checkboxes */
	-ms-transform: scale(1.7);
	/* IE */
	-moz-transform: scale(1.7);
	/* FF */
	-webkit-transform: scale(1.7);
	/* Safari and Chrome */
	-o-transform: scale(1.7);
	/* Opera */
	transform: scale(1.7);
	padding: 10px;
	width: 3rem;
}

#done {
	background-color: #e0e0e0;
	background-color: #ffd0d0;
	border-radius: 0.5rem;
	padding: 3rem;
	margin: 1rem;
}

/* The alert message box */
.alert {
	padding: 20px;
	background-color: #f44336;
	/* Red */
	color: white;
	margin-bottom: 15px;
	border-radius: 5px;
}

.alert.success {
	background-color: #04aa6d;
}

.alert.info {
	background-color: #2196f3;
}

.alert.warning {
	background-color: #ff9800;
}

/* The close button */
.closebtn {
	margin-left: 15px;
	color: white;
	font-weight: bold;
	float: right;
	font-size: 22px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
	color: black;
}

.blok strong {
	font-family: "Roboto Condensed", sans-serif;
}

.blok a {
	text-decoration: none;
}

.blok a:hover {
	text-decoration: underline;
}

.blok img {
	margin-right: 0.6rem;
	margin-left: 0.6rem;
}

.table-div {
	overflow-x: auto;
	font-size: small;
}

@media (min-width: 48em) {

	.inline_audio {
		display: none;
	}
}

.inline_audio {
	text-align: center;
	margin: 1em 0 0 0;
	padding: 0;
}

.inline_audio audio {
	width: 90vw;
}

/* ----------------------------------------------------

	Dark / Light mode CSS

--------------------------------------------------------*/

/*Simple css to style it like a toggle switch*/
.theme-switch-wrapper {
	display: flex;
	align-items: center;
}

.theme-switch-wrapper em {
	margin-left: 10px;
	font-size: 1rem;
	margin-top: 0.7rem;
}

.theme-switch {
	display: inline-block;
	height: 34px;
	position: relative;
	width: 60px;
}

.theme-switch input {
	display: none;
}

/* Zoom efekt za slike: transition + transform na hover. Uporablja: foto.php (galerija), brevir id=3793 (lekcionar app screenshot). */
.zoom {
	transition: transform 0.2s;
}
.zoom:hover {
	transform: scale(1.1);
}

.slider {
	background-color: #ccc;
	bottom: 0;
	cursor: pointer;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: 0.4s;
}

.slider:before {
	background-color: #fff;
	bottom: 4px;
	content: "";
	height: 26px;
	left: 4px;
	position: absolute;
	transition: 0.4s;
	width: 26px;
}

input:checked+.slider {
	background-color: #b71c1c;
}

input:checked+.slider:before {
	transform: translateX(26px);
}

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}




/* spodnje je za izbiro bogoslužnega koledarja */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 999;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(2px);
}

/* Modalen dialog */
#modal_koledar {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    z-index: 1000;
	border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 50%; /* privzeto za večje zaslone */
    max-width: 600px; /* maksimalna širina modala */
}

/* Skrij prekrivni sloj in dialog po privzetem */
#overlay,
#modal_koledar {
    display: none;
}

/* Prikaži prekrivni sloj in dialog */
.show {
    display: block !important;
}

/* Medijska poizvedba za manjše zaslone */
@media only screen and (max-width: 768px) {
    #modal_koledar {
        width: 80%; /* Na manjših zaslonih modal zavzame 90% širine */
    }
}

/*--------------------------------------------------------------
# Nastavitev velikosti pisave
--------------------------------------------------------------*/
li.font-size-control {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
}

li.font-size-control span {
    font-size: 0.9em;
    color: #fff;
}

.font-btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 3px;
    line-height: 1.5;
}

@media (min-width: 62em) {
    li.font-size-control span {
        color: #b71c1c;
    }

    .font-btn {
        background: rgba(183,28,28,0.08);
        border: 1px solid #b71c1c;
        color: #b71c1c;
    }
}

/* Web-specifični override za naslov_berila (skupni del je v base.css). */
.naslov_berila {
    font-size: 1.75rem;
}
