@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rokkitt:wght@100;200;300;400;500;600;700;800;900&display=swap');


/*
font-family: 'Cormorant Garamond', serif;
font-family: 'Rokkitt', serif;
font-family: 'Mulish', sans-serif;
*/

html, body{
	height:100%;
}
*{
	padding:0;
	margin:0;
	box-sizing:border-box;
	font-family: 'Mulish', sans-serif;
	font-weight:400;
	
}
a{
	text-decoration:none;
}
.fa-solid{
	margin-right: .5rem;
}
.fontAwesome {
  font-family: 'Mulish', FontAwesome, sans-serif;
}
h1, h2, h3, h4, h5, h6, p, a, input, select{
	padding: .5rem;
	
}
h1{
	font-family: 'Cormorant Garamond', serif;
}
h2{
	font-family: 'Rokkitt', serif;
	font-weight:800;
}

a, .btn, th, h6{
	font-weight:800;
}
p{
	padding:0;
	margin:0;
}
img{
	width:100%;
	object-fit:cover;
}

.logo-slika{
	height:100px;
	width:auto;
}
.logo-slika2{
	
	width:25px;
}

.error{
	display:block;
	color:#CB2825;
	font-weight:800;
}

.topnav { 
	background-color: #ffffff;	
	position:fixed;
	z-index:5;
	display:flex; 
	box-shadow:0px 0px 3px #E0E0E0;
	top:0px;
	width:100%;
}

.topnav a {
  float:left;
  display: block;
  color: #363634;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 15px;
}

a.active, .active{
  background-color: #fafa9b;
  *color: #f2f2f1;
}

.topnav .icon {
  display: none;
}

.dropdown {
	position:relative;
	
}

.dropdown .dropbtn {
	float:left;
	display:inline-block;
	font-size: 15px;    
	border: none;
	outline: none;
	color: #363634;
	padding: 10px 16px;
	
	font-family: inherit;
	margin: 0;
}

.dropdown-content {
	top:100%;
	position:absolute;
	background-color: #f2f2f1;
	min-width: 160px;
	display:none;
}

.dropdown-content a {
  float:none;
  color: #363634;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #fafa9b;
  *color: #f2f2f1;
}

.dropdown-content a:hover {
  background-color: #e0e0e0;
  color: #363634;
}

.dropdown:hover .dropdown-content {
  display: block!important;
}
.ui-widget-header{
	 background:#cb2825!important;
	 border-color:#cb2825!important;
}
.ui-datepicker-calendar td a{
	background:#f2f2f1!important; 
	color:#363634;
}

.height-360{
	height:360px;
	object-fit:cover;
}
.height-160{
	height:160px;
	object-fit:cover;
}

@media screen and (max-width: 767.5px) {
	.topnav{
		display:block;
		position:fixed;
		width:100%;
		top:0px;
	
	}
	.topnav a, .dropdown .dropbtn {
		display: none;
		color:#363634;
	}

	.topnav a.icon {
		float: none;
		display: block;
		position:fixed;
		right: 0px;
		top:0px;
		color:#f2f2f1;
		background:#363634;
	}

	.topnav.responsive {
		position: fixed;
		display:block;
		
	}


	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	} 
	.topnav.responsive .dropdown {
		float: none;
		display:block;
	}

	.topnav.responsive .dropdown-content {
		position: relative;
		border-bottom:1px solid #e0e0e0;
		display:block;
	}
	.topnav.responsive .dropdown-content a{
		margin-left:15px;
	}
	.topnav.responsive .dropdown .dropbtn {
		display: block;
		width: 100%;
		text-align: left;
	}
}


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}
.photo-gallery {
  color:#313437;
  background-color:#fff;
  padding:10px;
}

.photo-gallery p {
  color:#7d8285;
}

.photo-gallery h2 {
  font-weight:bold;
  margin-bottom:40px;
  padding-top:40px;
  color:inherit;
}

@media (max-width:767px) {
  .photo-gallery h2 {
    margin-bottom:25px;
    padding-top:25px;
    font-size:24px;
  }
}

.photo-gallery .intro {
  font-size:16px;
  max-width:500px;
  margin:0 auto 40px;
}

.photo-gallery .intro p {
  margin-bottom:0;
}

.photo-gallery .photos {
  padding-bottom:20px;
}

.photo-gallery .item {
  padding-bottom:30px;
}

.lb-loader,.lightbox{
	text-align:center;
	line-height:0

}

body:after{
	content:url(../slike/close.png) url(../slike/loading.gif) url(../slike/prev.png) url(../slike/next.png);
	display:none
}

.lb-dataContainer:after,.lb-outerContainer:after{
	content:"";
	clear:both
}
body.lb-disable-scrolling{
	overflow:hidden
}
.lightboxOverlay{
	position:absolute;
	top:0;
	left:0;
	z-index:9999;
	background-color:#000;
	filter:alpha(Opacity=80);
	opacity:.8;
	display:none
}
.lightbox{
	position:absolute;
	left:0;
	width:100%;
	z-index:10000;
	font-weight:400
}
.lightbox .lb-image{
	display:block;
	height:auto;
	max-width:inherit;
	border-radius:3px
}
.lightbox a img{
	border:none
}
.lb-outerContainer{
	position:relative;
	background-color:#fff;
	width:250px;
	height:250px;
	margin:0 auto;
	border-radius:4px
}
.lb-loader,.lb-nav{
	position:absolute;
	left:0
}
.lb-outerContainer:after{
	display:table
}

.lb-loader{
	top:43%;
	height:25%;
	width:100%
}
.lb-cancel{
	display:block;
	width:32px;
	height:32px;
	margin:0 auto;
	background:url(../slike/loading.gif) no-repeat
}
.lb-nav{
	top:0;
	height:100%;
	width:100%;
	z-index:10
}
.lb-container>.nav{
	left:0
}
.lb-nav a{
	outline:0;
	background-image:url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)
}
.lb-next,.lb-prev{
	height:100%;
	cursor:pointer;
	display:block
}
.lb-nav a.lb-prev{
	width:34%;
	left:0;
	float:left;
	background:url(../slike/prev.png) left 48% no-repeat;
	filter:alpha(Opacity=0);
	opacity:0;
	-webkit-transition:opacity .6s;
	-moz-transition:opacity .6s;
	-o-transition:opacity .6s;
	transition:opacity .6s
}
.lb-nav a.lb-prev:hover{
	filter:alpha(Opacity=100);
	opacity:1
}
.lb-nav a.lb-next{
	width:64%;
	right:0;
	float:right;
	background:url(../slike/next.png) right 48% no-repeat;
	filter:alpha(Opacity=0);
	opacity:0;
	-webkit-transition:opacity .6s;
	-moz-transition:opacity .6s;
	-o-transition:opacity .6s;
	transition:opacity .6s
}
.lb-nav a.lb-next:hover{
	filter:alpha(Opacity=100);
	opacity:1
}
.lb-dataContainer{
	margin:0 auto;
	padding-top:5px;
	width:100%;
	-moz-border-radius-bottomleft:4px;
	-webkit-border-bottom-left-radius:4px;
	border-bottom-left-radius:4px;
	-moz-border-radius-bottomright:4px;
	-webkit-border-bottom-right-radius:4px;
	border-bottom-right-radius:4px
}
.lb-dataContainer:after{
	display:table
}
.lb-data{
	padding:0 4px;
	color:#ccc
}
.lb-data .lb-details{
	width:85%;
	float:left;
	text-align:left;
	line-height:1.1em
}
.lb-data .lb-caption{
	font-size:13px;
	font-weight:700;
	line-height:1em
}
.lb-data .lb-number{
	display:block;
	clear:left;
	padding-bottom:1em;
	font-size:12px;
	color:#999
}
.lb-data .lb-close{
	display:block;
	float:right;
	width:30px;
	height:30px;
	background:url(../slike/close.png) top right no-repeat;
	text-align:right;
	outline:0;
	filter:alpha(Opacity=70);
	opacity:.7;
	-webkit-transition:opacity .2s;
	-moz-transition:opacity .2s;
	-o-transition:opacity .2s;
	transition:opacity .2s
}
.lb-data .lb-close:hover{
	cursor:pointer;
	filter:alpha(Opacity=100);
	opacity:1
}
.image-container{

	height:auto;
	overflow: hidden;
    margin: 0 auto;
}

.image-container img {
    transition: 0.5s all ease-in-out;
}
     
.article:hover img {
	transform: scale(1.5);
}
.calendar-responsive{
	width:100%;
	overflow:hidden;
	overflow-x:auto;
}
