* {
	margin: 0;
	padding: 0;

	font-family: 'Open Sans', sans-serif;
}

a {
	text-decoration: none;
	color: inherit;
}

.mouse {
	cursor: pointer;
}

.active {
	display: block !important;
}

.activeFade {
	-webkit-animation: mymove 5s infinite; /* Safari 4.0 - 8.0 */
  	animation: mymove 5s infinite;
  	display: block !important;
  	-webkit-animation: activeFadeAnimation .25s; /* Safari 4.0 - 8.0 */
  	animation: activeFadeAnimation .25s;
}

@-webkit-keyframes activeFadeAnimation {
  	from   {opacity: 0;}
  	to {opacity: 1;}
}

div.docArticle {
	width: 80%;
	padding: 15px 10% 15px 10%;
	font-weight: 400;
	font-size: 14px;
}

div.docArticle h1 {
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 15px;
}

div.docArticle ul {
	margin-left: 20px;
}

div.docArticle span {
	font-weight: 700;
}

.hidden {
	display: none !important;
}

.showMobile {
	display: none !important;
}

.notification {
	width: 100%;

	background-color: rgb(50, 50, 60);
	color: white;
}

.notification a {
	color: inherit;
	text-decoration: none;
	transition: .25s;
	width: 100%;

	border-bottom: 1px solid #82ff59;

	cursor: pointer;
}

.notification a:hover {
	border-bottom-color: red;
}

.notification p {
	margin-left: 7.5%;
	margin-right: 7.5%;
	padding-top: 12.5px;
	padding-bottom: 12.5px;
	width: 85%;
	text-align: center;

	font-weight: 400;
	letter-spacing: 2px;
	font-size: 11.5px;
}

.navContainer {
	width: 100%;
	height: 55px;
	position: -webkit-sticky;
  	position: sticky;
  	top: 0;
  	z-index: 100;
}

.navWrapper {
    /* Promjene: 07.03.2023. - width: 90% */
	width: 90%;
	padding-left: 5%;
	padding-right: 5%;
	height: 55px;

	background-color: rgb(40, 40, 50);
	color: #ffffff;

	display: flex;
	align-items: center;
}

.navWrapper .right {
	margin-left: auto;
}

.navWrapper .navLogo {
	height: 30px;
	padding-top: 12.5px;
	padding-bottom: 12.5px;
	width: auto;
}

.navWrapper .navLogo .navLogo1 {
	height: 100%;
	width: auto;
}

.navWrapper .navMenu {
	margin-left: 25px;
	height: 100%;

	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1px;

	display: flex;
}

.navWrapper .navMenuItem {
	height: 100%;
	padding-left: 15px;
	padding-right: 15px;

	display: inline-block;

	cursor: pointer;
}

.navWrapper .navMenuItemFlex {
	display: flex;
	align-items: center;
}

.navWrapper .navMenuItem img.icon {
	height: 22.5px;
	width: 22.5px;
}

.navWrapper .navMenuItem img.round {
	border-radius: 12.25px;
}

.navWrapper .navMenuItem label.search {
	font-weight: 300;
	font-size: 9px;

	align-self: flex-start;
	margin-top: 10px;

	position: relative;
	left: 95px;
	margin-left: -95px;
	letter-spacing: 1px;

	display: none;
}

.navWrapper .navMenuItem input.search {
	height: 30px;
	width: 150px;
	border: 1px solid rgb(150, 150, 150);
	color: white;
	background: none;
	padding-right: 37.5px;
	padding-left: 10px;
	padding-top: 15px;
	font-weight: 300;
	font-size: 12px !important;
	border-radius: 0;

	position: relative;
	right: -32.5px;

	display: none;
}

.navWrapper .navMenuItem>a {
	height: 100%;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;

	cursor: pointer;
}

.navWrapper .nav-cart-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.navWrapper .numberOfitems {
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	box-sizing: border-box;
	border-radius: 9px;
	background: linear-gradient(135deg, #11998e 0%, #0f766e 100%);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
	letter-spacing: 0.02em;
	box-shadow: 0 2px 6px rgba(17, 153, 142, 0.35);
	position: absolute;
	top: -6px;
	right: -6px;
	pointer-events: none;
}

.navWrapper .numberOfitems:empty {
	display: none;
}

.navWrapper .navMenuItem .navMenuItemDropdown {
  	display: none;
  	position: absolute;
  	background-color: #fcfcfa;
  	flex-wrap: wrap;
  	
  	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  	z-index: 1;

  	padding: 30px;
  	margin-left: -50px;
  	margin-right: 50px;
  	max-height: calc(100vh - 115px);
  	overflow-y: scroll;
}

.navWrapper .navMenuItem .navMenuItemDropdown .dropdownGroup {
	padding: 20px;
	padding-bottom: 5px;
	width: 125px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: flex-start;
}

.navWrapper .navMenuItem .navMenuItemDropdown .dropdownGroup .dropdownGroupSeparator {
	min-width: 100%;
}

.navWrapper .navMenuItem .navMenuItemDropdown p {
	color: rgb(40, 40, 50);
	letter-spacing: 1px;
	font-weight: 900;
	font-size: 15px;
	margin-bottom: 15px;

	display: block;
}

.navWrapper .navMenuItem .navMenuItemDropdown .highlighted {
	color: rgb(200, 0, 0);
	font-weight: 400;
}

.navWrapper .navMenuItem .navMenuItemDropdown a {
	color: rgb(40, 40, 50);
	border-bottom: 1px solid #fcfcfa;
	font-weight: 300;
	font-size: 13px;
	transition: .25s;
	margin-bottom: 15px;

	display: block;
	float: left; 
    clear: left;
}

.navWrapper .navMenuItem .navMenuItemDropdown a:hover {
	border-bottom-color: rgb(40, 40, 50);
}

.navWrapper .navMenuItem .navMenuItemDropdown a.highlighted:hover {
	border-bottom-color: rgb(200, 0, 0);
}

.navWrapper .navMenuItem:hover .navMenuItemDropdown {
  	display: flex;
}

.mobileNavWrapper {
	max-width: 400px;
	width: 100%;

	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	display: none;

	max-height: calc(100vh - 55px);
	overflow-y: scroll;
}

.mobileNavWrapper .navMenuItem {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;

	min-height: 40px;
}

.mobileNavWrapper .navMenuItem .title {
	height: 60px;
	background: #fefcf5;
	color: rgb(40, 40, 50);
	font-weight: 600;
	font-size: 13px;
	padding-right: 5%;
	padding-left: 5%;
	border-bottom: 1px solid rgb(180, 180, 180);
	width: 90%;
	min-width: 90%;
	display: flex;
	justify-content: flex-start;
	align-items: center;

	cursor: pointer;

	letter-spacing: 1px;
}

.mobileNavWrapper .navMenuItem .notHighlighted {
	background-color: #f5f4f2 !important;
}

.mobileNavWrapper .navMenuItem .expandedTitle {
	border-bottom: 0;
	background-color: #f5f4f2;
}

.mobileNavWrapper .navMenuItem .title img {
	margin-left: auto;
	height: 30px;
	width: 30px;
	opacity: .6;
}

.mobileNavWrapper .navMenuItem .dropdown {
	min-width: 100%;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 20px;

	background-color: #f5f4f2;
	border-bottom: 1px solid rgb(220, 220, 220);
}

.mobileNavWrapper .navMenuItem .dropdownGroup {
	min-width: 100%;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}

.mobileNavWrapper .navMenuItem .dropdownGroup:first-child {
	margin-top: 0;
}

.mobileNavWrapper .navMenuItem .dropdown .groupTitle {
	background-color: #ebe9e4;
	color: rgb(40, 40, 50);
	margin-left: 5%; padding-left: 3%;
	margin-right: 5%; padding-right: 3%;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-top: 10px;
	margin-bottom: 10px;
	min-width: 84%;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 15px;
	cursor: pointer;
}

.mobileNavWrapper .navMenuItem .dropdown .dropdownItem {
	height: 60px;
	color: rgb(40, 40, 50);
	font-weight: 600;
	margin-right: 8%;
	margin-left: 8%;
	border-bottom: 1px solid rgb(220, 220, 220);
	min-width: 84%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: 300;
	font-size: 14px;

	cursor: pointer;
}

.mobileNavWrapper .navMenuItem .dropdown .dropdownItem:last-child {
	border: 0;
}

.mobileNavWrapper .navMenuItem .dropdown .highlighted {
	color: rgb(200, 0, 0);
	font-weight: 400;
}

.mobileNavWrapper .navMenuItem label.search {
	font-weight: 300;
	font-size: 9px;
	margin-top: 0px;
	margin-left: 5%;

	letter-spacing: 1px;
	color: rgb(40, 40, 50);

	position: relative;
	top: -60px;
}

.mobileNavWrapper .navMenuItem input.search {
	border: 0;
	border-bottom: 1px solid rgb(180, 180, 180);
	border-top: 1px solid rgb(180, 180, 180);
	color: rgb(40, 40, 50);
	background: 0;
	padding-right: 5%;
	padding-left: 5%;
	padding-top: 15px;
	font-weight: 300;
	font-size: 12px !important;
	border-radius: 0;

	height: 50px;
	min-width: calc(90% - 40px);
	max-width: calc(90% - 40px);
	flex: 1
	z-index: 10;
}

.mobileNavWrapper .navMenuItem input.search:focus {
	border-top: 1px solid rgb(40, 40, 50);
	border-bottom: 1px solid rgb(40, 40, 50);
	outline: none;
}

.mobileNavWrapper .navMenuItem div.searchImg {
	min-width: 90%;
	padding-left: 5%;
	padding-right: 5%;
	display: flex;
	justify-content: flex-end;

	position: relative;
	top: -50px;
}

.mobileNavWrapper .navMenuItem img.search {
	height: 22.5px;
	width: 22.5px;
	filter: invert(100%);
}

.siteLoc {
	width: 90%;
	min-height: 35px;
	padding: 0 5% 0 5%;
	background-color: #f5f4f2;

	font-size: 11px;

	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.siteLoc ol {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	width: 100%;
}

.siteLoc ol li {
	padding-left: 10px;
	color: rgb(90, 90, 100);
	height: 30px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
}

.siteLoc ol li::after {
	content: "";
	height: 11px;
	width: 11px;
	background-image: url('/res/icon_siteLoc_arrow.svg');
	background-size: 15px 15px;
	background-position: center center;
	background-repeat: no-repeat;
	padding-left: 5px;
	margin-left: 10px;
}

.siteLoc ol li:last-child::after {
	content: "";
	display: none;
}

.feature1 {
	margin-bottom: 15px;
	background: #CFEFFC;
	width: calc(100% - 30px);
	padding: 15px;

	display: flex;
	justify-content: space-evenly;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.feature1 img {
	height: calc(40vh - 60px);
	max-width: calc(100% - 60px);
	object-fit: contain;
	margin: 60px 30px 60px 30px;
}

.feature1 img.newsImage {
	margin: 30px;
}

.feature1 .content {
	margin: 5%;
	padding: 15px 30px 15px 30px;
	margin: 0 15px 0 15px;

	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;

	transition: .25s;
	max-width: 250px;
}

.feature1 .content h2 {
	font-weight: 700;
	font-size: 24px;
	color: rgb(40, 40, 50);
	text-align: center;
	min-width: 100%;
}

.feature1 .content h4 {
	font-weight: 300;
	font-size: 17px;
	color: rgb(40, 40, 50);
	text-align: center;
	min-width: 100%;
	margin-top: 5px;
}

.feature1 .content h3 {
	font-weight: 700;
	font-size: 14px;
	color: rgb(40, 40, 50);
	text-align: center;
	min-width: 100%;
	margin-top: 15px;
	line-height: 18px;
}

.feature1 .content h3 span {
	font-size: 21px;
	line-height: 27px;
	margin-top: 5px;
	font-weight: 400;
}

.feature1 .content h3 span.min {
	font-size: 17px;
	font-weight: 300;
}

.feature1 .content a {
	border-radius: 5px;
	border: 1px solid rgb(140, 140, 140);
	color: rgb(40, 40, 50);
	font-size: 15px;
	background: 0;
	padding: 5px 20px 5px 20px;
	margin-top: 20px;
	font-weight: 600;
	letter-spacing: 1px;

	cursor: pointer;
	transition: .25s;
}

.feature2 {
	margin-bottom: 15px;
}

.feature2 h2 {
	width: 100%;
	text-align: center;
	font-family: 'Dancing Script', cursive;
	font-size: 28px;
}

.feature2 .swiper-container {
	padding-top: 15px;
	width: 100%;
	padding-bottom: 30px;
}

.feature2 .swiper-slide {
   	width: 250px;
}

.feature2 .swiper-slide a {
	height: 100%;
	width: 100%;
	display: flex;
   	justify-content: center;
   	flex-wrap: wrap;
   	align-items: flex-start;
   	align-content: flex-start;
}

.feature2 .swiper-slide img {
	width: 100%;
	height: 250px;
	object-fit: contain;
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.15);
}

.feature2 .swiper-slide h2 {
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	font-size: 16px;
	font-weight: 300;
	padding-top: 10px;
	width: 100%;
}

.feature2 .swiper-slide h5 {
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	padding-top: 5px;
	width: 100%;
}

.feature2 .swiper-slide h5.high {
	color: rgb(165, 40, 40);
	text-decoration: line-through;
	font-size: 12px;
}

.feature2 .swiper-slide h5:last-child {
	padding-top: 0;
}

.feature3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin: 0 15px 15px 15px;
}

.feature3 h2 {
	width: calc(100% - 30px);
	text-align: left;
	font-size: 15px;
	margin: 15px 15px 0 15px;
}

.feature3 .offerBox {
	background-position: center center !important;
	background-size: cover !important;
	margin: 15px 7.5px 15px 7.5px;
	height: 60vh;
	width: calc(50% - 15px);
	
	display: flex;
	align-items: flex-end;
}

.feature3 .offerBoxThird {
	background-position: center center !important;
	background-size: cover !important;
	margin: 15px 7.5px 15px 7.5px;
	height: 60vh;
	width: calc(33% - 15px);
	
	display: flex;
	align-items: flex-end;
}

.feature3 .offer {
	height: 40px;
	width: 160px;
	border-radius: 20px;
	background-color: white;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	margin: 30px;
	transition: .25s;
}

.feature3 .offer:hover {
	background-color: rgba(255, 255, 255, 0.7);
}

.feature3 > a {
	height: 40px;
	border-radius: 20px;
	border: 1px solid rgb(140, 140, 140);
	color: rgb(40, 40, 50);
	font-weight: 600;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: 0 20px 0 20px;
}

#mapContainer {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

#mapContainer #map {
	flex: 1;
	min-height: 70vh;
}

#mapContainer #mapInfo {
	padding: 30px;
}

#mapContainer #mapInfo img {
	height: 30px;
}

#mapContainer #mapInfo h1 {
	font-size: 19px;
	font-weight: 300;
	letter-spacing: 1px;
}

#mapContainer #mapInfo p {
	font-weight: 300;
	font-size: 15px;
}

#mapContainer #mapInfo p span {
	font-weight: 600;
}

@media screen and (max-width: 1000px) {
	.navWrapper {
		justify-content: center;
	}

	.navWrapper .navHide {
		display: none;
	}

	.showMobile {
		display: flex !important;
	}

	.navWrapper .navLeft {
		position: absolute;
		left: 5%;
	}

	.navWrapper .navRight {
		position: absolute;
		right: 5%;
	}

	.feature3 .offer {
		margin: 15px;
	}
}

@media screen and (max-width: 768px) {
	.feature1 .content {
		max-width: 175px;
		padding: 10px;
	}

	.feature1 img {
		margin: 30px;
	}

	.feature1 img.newsImage {
		margin: 0;
		width: 100%;
		max-width: 100%;
		height: auto;
	}

	.feature1 .content h2 {
		font-size: 17px;
	}

	.feature1 .content h4 {
		font-size: 15px;
	}

	.feature1 .content a {
		padding: 5px 10px 5px 10px;
		font-size: 13px;
		margin-top: 10px;
	}

	#mapContainer #map {
		min-width: 100%;
	}

	#mapContainer #mapInfo {
		padding-left: 5%;
		padding-right: 5%;
	}
	.feature2 h2 {
		font-size: 24px;
	}
	.feature2 .swiper-slide {
   		width: calc(50% - 7.5px);
	}
	.feature2 .swiper-slide img {
		height: calc(50vw - 7.5px);
	}
	.feature2 .swiper-slide h2 {
		font-size: 15px;
	}
	.feature3 h2 {
		margin-bottom: 15px;
	}
	.feature3 .offerBox {
		height: 60vh;
		width: calc(100% - 15px);
		margin: 0 7.5px 15px 7.5px;
	}
	.feature3 .offerBoxThird {
		height: 35vh;
		width: calc(100% - 15px);
		margin: 0 7.5px 15px 7.5px;
	}
}

#locationAlert.closed {
	display: none;
}

#locationAlert {
	position: fixed;
	padding: 10px 10vw 0vh 10vw;
	width: 80vw;
	height: 85vh;

	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	z-index: 1000000;
}

#locationAlert > div {
	max-height: 100%;
	background-color: yellow;
}

#locationAlert .closeButton {
	width: 100%;
	height: 40px;
	display: flex;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
}

#locationAlert .closeButton img {
	height: 20px;
	width: 20px;
	margin-right: 10px;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	#locationAlert #mapContainer #map {
		min-height: 30vh;
	}
}