/* -------------------------------------------------------------------------- */
/* COLOR INIT
/* -------------------------------------------------------------------------- */
:root
{
	/* main text colors */
	--text: #494a50;

	/* inverse text colors */
	--text-inverse: #FFFFFF;
	
	/* background colors */
	--background: #F9F8F6;
	
	--main-color-1: #88b61c;
	
	--light-grey: #BBB;
	--medium-grey: #aaa;
	--dark-grey: #999;
	--antracit: #2E2F33;
	--black: #141414;

	--footer-bgr: #2E2F33;
	--footer-text: #cdcdcd;

	/* button default */
	--btn-bgr: #88b61c;
	--btn-brd: #88b61c;
	--btn-txt: #FFFFFF;
	--btn-hover-bgr: #2E2F33;
	--btn-hover-brd: #2E2F33;
	--btn-hover-txt: #FFFFFF;
	
	/* button white */
	--btn-white-bgr: rgba(255, 255, 255, 0.0);
	--btn-white-brd: #ffffff;
	--btn-white-txt: #ffffff;
	--btn-white-hover-bgr: rgba(255, 255, 255, 0.2);
	--btn-white-hover-brd: #ffffff;
	--btn-white-hover-txt: #ffffff;

	/* button black */
	--btn-black-bgr: #2E2F33;
	--btn-black-brd: #2E2F33;
	--btn-black-txt: #FFFFFF;
	--btn-black-hover-bgr: #000000;
	--btn-black-hover-brd: #000000;
	--btn-black-hover-txt: #FFFFFF;
	
	/* button trans */
	--btn-trans-bgr: rgba(255, 255, 255, 0.0);
	--btn-trans-brd: #2E2F33;
	--btn-trans-txt: #2E2F33;
	--btn-trans-hover-bgr: #88b61c;
	--btn-trans-hover-brd: #88b61c;
	--btn-trans-hover-txt: #FFFFFF;
	
	--slot-height: 30px;
}



/* -------------------------------------------------------------------------- */
/* REVOLUTION SLIDER
/* -------------------------------------------------------------------------- */
.rev_slider_wrapper
{
	height: 100vh;
	background: #dddddd none no-repeat scroll center center / cover;
	position: relative;
}


.rev-slider-title
{
	color: var(--text-inverse);
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 36px; 
	line-height: 42px;
	margin: 40px 10px 0px 10px;	 
	padding: 3px 15px 5px 15px;	 
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.rev-slider-text
{
	color: var(--text-inverse);
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 20px; 
	line-height: 26px;
	margin: 40px 10px 0px 10px;	 
	padding: 3px 15px 5px 15px;	 
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
}

.rev-slider-btn
{
	font-weight: 500;
}


/* -------------------------------------------------------------------------- */
/* NORMALIZE CSS
/* -------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video
{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

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


/* -------------------------------------------------------------------------- */
/* svg icon set
/* -------------------------------------------------------------------------- */
svg.iconset
{
  width: 1.2em;
  height: 1.2em;
  margin: 0px 0px -2px 0px;
  display: inline-block;
  overflow: hidden;
	color: inherit;
}


/* -------------------------------------------------------------------------- */
/* Correct `inline-block` display not defined in IE 8/9.
/* -------------------------------------------------------------------------- */

audio,
canvas,
video
{
	display: inline-block;
}

/* -------------------------------------------------------------------------- */
/* Prevent modern browsers from displaying `audio` without controls.
/* Remove excess height in iOS 5 devices.
/* -------------------------------------------------------------------------- */
audio:not([controls])
{
	display: none;
	height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */

[hidden]
{
	display: none;
}

/* -------------------------------------------------------------------------- */
/* 1. Prevent system color scheme's background color being used in Firefox, IE,
/*    and Opera.
/* 2. Prevent system color scheme's text color being used in Firefox, IE, and
/*    Opera.
/* 3. Set default font family to sans-serif.
/* 4. Prevent iOS text size adjust after orientation change, without disabling
/*    user zoom.
/* -------------------------------------------------------------------------- */

html
{
	background: #fff; /* 1 */
	color: var(--text); /* 2 */
	font-family: sans-serif; /* 3 */
	-ms-text-size-adjust: 100%; /* 4 */
	-webkit-text-size-adjust: 100%; /* 4 */
}

/* -------------------------------------------------------------------------- */
/* Address `outline` inconsistency between Chrome and other browsers.
/* -------------------------------------------------------------------------- */

a:focus
{
	outline: thin dotted;
}

/* -------------------------------------------------------------------------- */
/* Improve readability when focused and also mouse hovered in all browsers.
/* -------------------------------------------------------------------------- */

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

/* -------------------------------------------------------------------------- */
/* Address variable `h1` font-size and margin within `section` and `article`
/* contexts in Firefox 4+, Safari 5, and Chrome.
/* -------------------------------------------------------------------------- */

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

/* -------------------------------------------------------------------------- */
/* Address styling not present in IE 8/9, Safari 5, and Chrome.
/* -------------------------------------------------------------------------- */

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

/* -------------------------------------------------------------------------- */
/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
/* -------------------------------------------------------------------------- */

b,
strong
{
	font-weight: bold;
}

/* -------------------------------------------------------------------------- */
/* Address styling not present in Safari 5 and Chrome.
/* -------------------------------------------------------------------------- */

dfn
{
	font-style: italic;
}

/* -------------------------------------------------------------------------- */
/* Address differences between Firefox and other browsers.
/* -------------------------------------------------------------------------- */

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

/* -------------------------------------------------------------------------- */
/* Address styling not present in IE 8/9.
/* -------------------------------------------------------------------------- */

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

/* -------------------------------------------------------------------------- */
/* Correct font family set oddly in Safari 5 and Chrome.
/* -------------------------------------------------------------------------- */

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

/* -------------------------------------------------------------------------- */
/* Improve readability of pre-formatted text in all browsers.
/* -------------------------------------------------------------------------- */

pre
{
	white-space: pre-wrap;
}

/* -------------------------------------------------------------------------- */
/* Set consistent quote types.
/* -------------------------------------------------------------------------- */

q
{
	quotes: "\201C" "\201D" "\2018" "\2019";
}

/* -------------------------------------------------------------------------- */
/* Address inconsistent and variable font size in all browsers.
/* -------------------------------------------------------------------------- */

small
{
	font-size: 80%;
}

/* -------------------------------------------------------------------------- */
/* Prevent `sub` and `sup` affecting `line-height` in all browsers.
/* -------------------------------------------------------------------------- */

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

sup
{
	top: -0.5em;
}

sub
{
	bottom: -0.25em;
}

/* -------------------------------------------------------------------------- */
/* Correct img
/* -------------------------------------------------------------------------- */

img
{
	/* Remove border when inside `a` element in IE 8/9.*/
	border: 0;
	/* Responsive images (ensure images don't scale beyond their parents) */
	max-width: 100%;
	/* Part 1: Set a maxium relative to the parent */
	/*width: auto\9; */
	/* IE7-8 need help adjusting responsive images */
	height: auto;
	/* Part 2: Scale the height according to the width, otherwise you get stretching */
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* -------------------------------------------------------------------------- */
/* Correct overflow displayed oddly in IE 9.
/* -------------------------------------------------------------------------- */

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

/* -------------------------------------------------------------------------- */
/* Address margin not present in IE 8/9 and Safari 5.
/* -------------------------------------------------------------------------- */

figure
{
	margin: 0;
}

/* -------------------------------------------------------------------------- */
/* Define consistent border, margin, and padding.
/* -------------------------------------------------------------------------- */

fieldset
{
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

/* -------------------------------------------------------------------------- */
/* 1. Correct `color` not being inherited in IE 8/9.
/* 2. Remove padding so people aren't caught out if they zero out fieldsets.
/* -------------------------------------------------------------------------- */

legend
{
	border: 0; /* 1 */
	padding: 0; /* 2 */
}

/* -------------------------------------------------------------------------- */
/* 1. Correct font family not being inherited in all browsers.
/* 2. Correct font size not being inherited in all browsers.
/* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
/* -------------------------------------------------------------------------- */

button,
input,
select,
textarea
{
	font-family: inherit; /* 1 */
	font-size: 100%; /* 2 */
	margin: 0; /* 3 */
}

/* -------------------------------------------------------------------------- */
/* Address Firefox 4+ setting `line-height` on `input` using `!important` in
/* the UA stylesheet.
/* -------------------------------------------------------------------------- */

button,
input
{
	line-height: normal;
}

/* -------------------------------------------------------------------------- */
/* Address inconsistent `text-transform` inheritance for `button` and `select`.
/* All other form control elements do not inherit `text-transform` values.
/* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
/* Correct `select` style inheritance in Firefox 4+ and Opera.
/* -------------------------------------------------------------------------- */

button,
select
{
	text-transform: none;
}

/* -------------------------------------------------------------------------- */
/* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
/*    and `video` controls.
/* 2. Correct inability to style clickable `input` types in iOS.
/* 3. Improve usability and consistency of cursor style between image-type
/*    `input` and others.
/* -------------------------------------------------------------------------- */

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

/* -------------------------------------------------------------------------- */
/* Re-set default cursor for disabled elements.
/* -------------------------------------------------------------------------- */

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

/* -------------------------------------------------------------------------- */
/* 1. Address box sizing set to `content-box` in IE 8/9.
/* 2. Remove excess padding in IE 8/9.
/* -------------------------------------------------------------------------- */

input[type="checkbox"],
input[type="radio"]
{
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

/* -------------------------------------------------------------------------- */
/* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
/* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
/*    (include `-moz` to future-proof).
/* -------------------------------------------------------------------------- */

input[type="search"]
{
	-webkit-appearance: textfield; /* 1 */
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box; /* 2 */
	box-sizing: content-box;
}

/* -------------------------------------------------------------------------- */
/* Remove inner padding and search cancel button in Safari 5 and Chrome
/* on OS X.
/* -------------------------------------------------------------------------- */

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

/* -------------------------------------------------------------------------- */
/* Remove inner padding and border in Firefox 4+.
/* -------------------------------------------------------------------------- */

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

/* -------------------------------------------------------------------------- */
/* 1. Remove default vertical scrollbar in IE 8/9.
/* 2. Improve readability and alignment in all browsers.
/* -------------------------------------------------------------------------- */

textarea
{
	overflow: auto; /* 1 */
	vertical-align: top; /* 2 */
}

/* -------------------------------------------------------------------------- */
/* Remove most spacing between table cells.
/* -------------------------------------------------------------------------- */

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


/* -------------------------------------------------------------------------- */
/* PARALLAX
/* -------------------------------------------------------------------------- */
.parallax.parallax-enabled
{ 
	background-attachment: fixed !important;
	-webkit-background-size: cover;
	background-size: cover;	
}

.horizontal-parallax
{
	background-repeat: repeat-x;
}
	
.animated-parallax
{
	background-repeat: repeat-x;
}


/* ======================================================================================================================================================= */
/* OWL CAROUSEL
/* ======================================================================================================================================================= */
.owl-carousel .owl-nav 
{
	float: right;
	overflow: hidden;
	margin: 10px 10px 0px 0px;
	text-align: right;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next
{
	float: left;
	height: 30px;
	width: 22px;
	text-align: center;
	margin: 0px 0px 0px 5px;
}

.owl-carousel .owl-nav .owl-prev .iconset,
.owl-carousel .owl-nav .owl-next .iconset
{
	fill: #ccc;
	font-size: 20px;
	line-height: 22px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	
}

.owl-carousel .owl-nav .owl-prev:hover .iconset,
.owl-carousel .owl-nav .owl-next:hover .iconset
{
	fill: var(--main-color-1);
}


.owl-carousel .owl-item
{
	padding: 0px 10px 0px 10px;
}



.owl-carousel-footer
{
	font-weight: 400;
	position: absolute;
	bottom: 3px;
	left: 12px;
	overflow: hidden;
	padding: 6px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	z-index: 1;
}

.owl-carousel-footer a
{
	color: var(--text);
	font-size: 0.9em;
	cursor: pointer;
	display: block;
}

.owl-carousel-footer a:hover
{
	color: var(--black);
	text-decoration: none;
}

.owl-carousel .owl-dots
{
	width: 100%;
	overflow: hidden;
	margin: 10px 10px 0px 0px;
}

.owl-carousel .owl-dots
{
	overflow: hidden;
	margin: 10px auto 0px auto;
	padding: 0px 0px 0px 10px;
	text-align: center;
	display: block;
	width: auto;
	float: left;
}

.owl-carousel .owl-dot
{
	float: left;
	width: 15px;
	height: 15px;
	background: #d5d5d5;
	margin: 0px 7px 5px 0px;
	border-radius: 15px;
}

.owl-carousel .owl-dot.active
{
	width: 32px;
	background: var(--main-color-1);
}

.owl-carousel .owl-dot:hover
{
	background: var(--main-color-1);
	background: #b2c485;
}

/* -------------------------------------------------------------------------- */
/* CSS LOADER
/* -------------------------------------------------------------------------- */
#loading-fullscreen
{
	background: rgba(0, 0, 0, 0.7) url("../img/dotted_bgr.png");
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 99999;
	display: none;
}

#loading-spinner
{
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -55px;
  margin-left: -35px;
}

.loading-text
{
  position: fixed;
  top: 50%;
  left: 50%;
	width: 100px;
	text-align: center;
	font-size: 16px;
	color: var(--text-inverse);
  margin-top: 25px;
  margin-left: -50px;

}

.loader
{
  margin: 0px auto;
  font-size: 9px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.2em solid rgba(238, 252, 201, 0.6);
  border-right: 1.2em solid rgba(238, 252, 201, 0.6);
  border-bottom: 1.2em solid rgba(238, 252, 201, 0.6);
  border-left: 1.2em solid rgba(136, 182, 28, 1.0);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

.loader,
.loader:after
{
  border-radius: 50%;
  width: 8em;
  height: 8em;
}

@-webkit-keyframes load8
{
  0%
	{
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  
	100%
	{
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8
{
  0%
	{
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  
	100%
	{
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/* -------------------------------------------------------------------------- */
/* COOKIES
/* -------------------------------------------------------------------------- */
#band-cookies
{
	position: fixed;
	bottom: 0px;
	left: 0px;
	z-index: 200;
	width: 100%;
	padding: 15px 0px;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.65);
	box-shadow: 0px -3px 3px 0px rgba(0, 0, 0, 0.15);
	z-index: 99999;
}

#band-cookies p
{
	font-size: 15px;
	line-height: 22px;
	margin: 0;
	padding: 0px 70px 5px 70px;
	color: var(--text-inverse);
}

#band-cookies a
{
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#band-cookies .buttons
{
	overflow: hidden;
	text-align: center;
	margin: 0px auto;
	display: inline-block;
	text-transform: none;
}

#band-cookies-ok,
#band-cookies-info
{
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	padding: 8px 20px 8px;
	margin: 10px 0px 0px 10px;
	color: var(--text-inverse);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid var(--text-inverse);
	border-radius: 3px;
	float: left;
}

#band-cookies-ok:hover,
#band-cookies-info:hover
{
	background: rgba(255, 255, 255, 0.2);
}

#band-cookies-close
{
	height: 36px;
	width: 36px;
	padding: 0px;
	text-align: center;
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -18px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--main-color-1);
}

#band-cookies-close .iconset
{
	margin: 0px 0px 0px 0px;
	padding: 1px 1px 1px 1px;
	height: 36px;
	fill: var(--text-inverse);
}

@media (max-width: 768px)
{

	#band-cookies p
	{
		font-size: 13px;
		line-height: 19px;
		padding: 15px 15px 10px 15px;
	}

	#band-cookies .buttons
	{
		overflow: hidden;
		text-align: center;
		margin: 0px auto;
		display: inline-block;
	}

	#band-cookies-ok,
	#band-cookies-info
	{
		font-size: 12px;
		display: block;
		text-decoration: none;
		padding: 7px 15px 7px;
		margin-top:10px;
		float: left;
	}

	#band-cookies-close
	{
		left: 50%;
		margin-left: -16px;
		top: 0px;
	}
	
	#band-cookies-close i
	{
		line-height: 36px;
	}
}



/* -------------------------------------------------------------------------- */
/* RESPONSIVE
/* -------------------------------------------------------------------------- */
*
{
	box-sizing: border-box;
}


/* -------------------------------------------------------------------------- */
/* SCREEN / PAGE CONTAINER
/* -------------------------------------------------------------------------- */
.screen-container,
.page-container
{
	width: 100%;
	content: "";
	clear: both;
	display: block;
	position: relative;
}

.page-container 
{
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}


.half-screen-container
{
	content: "";
	width: 100%;
	float: left;
	clear: both;
	display: block;
}

.half-page-container 
{
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 560px) 
{

}

@media (min-width: 768px) 
{
  .page-container
	{
		padding-right: 0px;
		padding-left: 0px;
    width: 750px;
  }
}

@media (min-width: 992px) 
{
  .page-container
	{
    width: 990px;
  }
}

@media (min-width: 1280px) 
{
  .page-container
	{
    width: 1200px;
  }
}

@media (min-width: 1690px) 
{
  .page-container
	{
    width: 1400px;
  }
}


/* -------------------------------------------------------------------------- */
/* RESPONSIVE SHOW/HIDE
/* -------------------------------------------------------------------------- */
.hide-on-xs,
.hide-on-sm,
.hide-on-md,
.hide-on-lg
{
	display: none;
}

.show-on-xs,
.show-on-sm,
.show-on-md,
.show-on-lg
{
	display: block;
}


/* -------------------------------------------------------------------------- */
/* COL RESET
/* -------------------------------------------------------------------------- */
[class*="col-xs"]
{
	float: left;
	padding: 0 10px;
	width: 100%;
	margin-bottom: 10px;
}

[class*="col-sm"]
{
	float: left;
	padding: 0 10px;
	width: 100%;
	margin-bottom: 10px;
}

[class*="col-md"]
{
	float: left;
	padding: 0 10px;
	width: 100%;
	margin-bottom: 10px;
}

[class*="col-lg"]
{
	float: left;
	padding: 0 10px;
	width: 100%;
	margin-bottom: 10px;
}

[class*="col-xl"]
{
	float: left;
	padding: 0 10px;
	width: 100%;
	margin-bottom: 10px;
}

[class*="col-xxl"]
{
	float: left;
	padding: 0 10px;
	width: 100%;
	margin-bottom: 10px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active)
{
	[class*="col-xxl"]
	{
		position: relative;
	}
}


/* -------------------------------------------------------------------------- */
/* SHOP RESET
/* -------------------------------------------------------------------------- */
[class*="shop-xs"]
{
	float: left;
	padding: 0 6px;
	width: 100%;
	margin-bottom: 10px;
}

[class*="shop-sm"]
{
	float: left;
	padding: 0 6px;
	width: 100%;
	margin-bottom: 10px;
}

[class*="shop-md"]
{
	float: left;
	padding: 0 6px;
	width: 100%;
	margin-bottom: 10px;
}

[class*="shop-lg"]
{
	float: left;
	padding: 0 6px;
	width: 100%;
	margin-bottom: 10px;
}

[class*="shop-xl"]
{
	float: left;
	padding: 0 6px;
	width: 100%;
	margin-bottom: 10px;
}

[class*="shop-xxl"]
{
	float: left;
	padding: 0 6px;
	width: 100%;
	margin-bottom: 10px;
}


/* -------------------------------------------------------------------------- */
/* ROW RESET
/* -------------------------------------------------------------------------- */
.row
{
	width: 100%;
	margin: 0px 0px 0px 0px;
}

.row-full
{
	width: calc(100% + 20px);
	margin: 0px -10px 0px -10px;
}

.row:after,
.row-full:after
{
	content: "";
	clear: both;
	display: block;
}


/* -------------------------------------------------------------------------- */
/* COLUMN EXTRA SPACE
/* -------------------------------------------------------------------------- */
.col-spc-lc {padding-right: 10px;}
.col-spc-rc {padding-left: 10px;}	


/* -------------------------------------------------------------------------- */
/* XSMALL - MOBILE PORTRAIT
/* -------------------------------------------------------------------------- */
.col-xs-12 {width: 100%;}
.col-xs-11 {width: 91.66666667%;}
.col-xs-10 {width: 83.33333333%;}
.col-xs-9 {width: 75%;}
.col-xs-8 {width: 66.66666667%;}
.col-xs-7 {width: 58.33333333%;}
.col-xs-6 {width: 50%;}
.col-xs-5 {width: 41.66666667%;}
.col-xs-4 {width: 33.33333333%;}
.col-xs-3 {width: 25%;}
.col-xs-2 {width: 16.66666667%;}
.col-xs-1 {width: 8.33333333%;}
.col-xs-pull-12 {right: 100%;}
.col-xs-pull-11 {right: 91.66666667%;}
.col-xs-pull-10 {right: 83.33333333%;}
.col-xs-pull-9  {right: 75%;}
.col-xs-pull-8  {right: 66.66666667%;}
.col-xs-pull-7  {right: 58.33333333%;}
.col-xs-pull-6  {right: 50%;}
.col-xs-pull-5  {right: 41.66666667%;}
.col-xs-pull-4  {right: 33.33333333%;}
.col-xs-pull-3  {right: 25%;}
.col-xs-pull-2  {right: 16.66666667%;}
.col-xs-pull-1  {right: 8.33333333%;}
.col-xs-pull-0  {right: auto;}
.col-xs-push-12 {left: 100%;}
.col-xs-push-11 {left: 91.66666667%;}
.col-xs-push-10 {left: 83.33333333%;}
.col-xs-push-9  {left: 75%;}
.col-xs-push-8  {left: 66.66666667%;}
.col-xs-push-7  {left: 58.33333333%;}
.col-xs-push-6  {left: 50%;}
.col-xs-push-5  {left: 41.66666667%;}
.col-xs-push-4  {left: 33.33333333%;}
.col-xs-push-3  {left: 25%;}
.col-xs-push-2  {left: 16.66666667%;}
.col-xs-push-1  {left: 8.33333333%;}
.col-xs-push-0  {left: auto;}
.col-xs-offset-12 {margin-left: 100%;}
.col-xs-offset-11 {margin-left: 91.66666667%;}
.col-xs-offset-10 {margin-left: 83.33333333%;}
.col-xs-offset-9  {margin-left: 75%;}
.col-xs-offset-8  {margin-left: 66.66666667%;}
.col-xs-offset-7  {margin-left: 58.33333333%;}
.col-xs-offset-6  {margin-left: 50%;}
.col-xs-offset-5  {margin-left: 41.66666667%;}
.col-xs-offset-4  {margin-left: 33.33333333%;}
.col-xs-offset-3  {margin-left: 25%;}
.col-xs-offset-2  {margin-left: 16.66666667%;}
.col-xs-offset-1  {margin-left: 8.33333333%;}
.col-xs-offset-0  {margin-left: 0;}

.shop-xs-6 {width: 50%;}
.shop-xs-4 {width: 33.33333333%;}
.shop-xs-3 {width: 25%;}



/* -------------------------------------------------------------------------- */
/* SMALL - MOBILE LANDSCAPE, TABLET PORTRAIT
/* -------------------------------------------------------------------------- */
@media (min-width: 560px) 
{
	.hide-on-xs
	{
		display: block;
	}

	.show-on-xs
	{
		display: none;
	}
	
	.xs-no-padding
	{
		padding: 0 10px;
	}
	
	.col-sm-12 {width: 100%;}
	.col-sm-11 {width: 91.66666667%;}
	.col-sm-10 {width: 83.33333333%;}
	.col-sm-9 {width: 75%;}
	.col-sm-8 {width: 66.66666667%;}
	.col-sm-7 {width: 58.33333333%;}
	.col-sm-6 {width: 50%;}
	.col-sm-5 {width: 41.66666667%;}
	.col-sm-4 {width: 33.33333333%;}
	.col-sm-3 {width: 25%;}
	.col-sm-2 {width: 16.66666667%;}
	.col-sm-1 {width: 8.33333333%;}
	.col-sm-pull-12 {right: 100%;}
	.col-sm-pull-11 {right: 91.66666667%;}
	.col-sm-pull-10 {right: 83.33333333%;}
	.col-sm-pull-9  {right: 75%;}
	.col-sm-pull-8  {right: 66.66666667%;}
	.col-sm-pull-7  {right: 58.33333333%;}
	.col-sm-pull-6  {right: 50%;}
	.col-sm-pull-5  {right: 41.66666667%;}
	.col-sm-pull-4  {right: 33.33333333%;}
	.col-sm-pull-3  {right: 25%;}
	.col-sm-pull-2  {right: 16.66666667%;}
	.col-sm-pull-1  {right: 8.33333333%;}
	.col-sm-pull-0  {right: auto;}
	.col-sm-push-12 {left: 100%;}
	.col-sm-push-11 {left: 91.66666667%;}
	.col-sm-push-10 {left: 83.33333333%;}
	.col-sm-push-9  {left: 75%;}
	.col-sm-push-8  {left: 66.66666667%;}
	.col-sm-push-7  {left: 58.33333333%;}
	.col-sm-push-6  {left: 50%;}
	.col-sm-push-5  {left: 41.66666667%;}
	.col-sm-push-4  {left: 33.33333333%;}
	.col-sm-push-3  {left: 25%;}
	.col-sm-push-2  {left: 16.66666667%;}
	.col-sm-push-1  {left: 8.33333333%;}
	.col-sm-push-0  {left: auto;}
	.col-sm-offset-12 {margin-left: 100%;}
	.col-sm-offset-11 {margin-left: 91.66666667%;}
	.col-sm-offset-10 {margin-left: 83.33333333%;}
	.col-sm-offset-9  {margin-left: 75%;}
	.col-sm-offset-8  {margin-left: 66.66666667%;}
	.col-sm-offset-7  {margin-left: 58.33333333%;}
	.col-sm-offset-6  {margin-left: 50%;}
	.col-sm-offset-5  {margin-left: 41.66666667%;}
	.col-sm-offset-4  {margin-left: 33.33333333%;}
	.col-sm-offset-3  {margin-left: 25%;}
	.col-sm-offset-2  {margin-left: 16.66666667%;}
	.col-sm-offset-1  {margin-left: 8.33333333%;}
	.col-sm-offset-0  {margin-left: 0;}
	
	.col-sm-3:nth-child(4n+1){clear: left;}
	.col-sm-4:nth-child(3n+1){clear: left;}
	.col-sm-6:nth-child(2n+1){clear: left;}
	
	.shop-sm-6 {width: 50%;}
	.shop-sm-4 {width: 33.33333333%;}
	.shop-sm-3 {width: 25%;}	

	.shop-sm-3:nth-child(4n+1){clear: left;}
	.shop-sm-4:nth-child(3n+1){clear: left;}
	.shop-sm-6:nth-child(2n+1){clear: left;}
}

/* -------------------------------------------------------------------------- */
/* MEDIUM - TABLET LANDSCAPE
/* -------------------------------------------------------------------------- */
@media (min-width: 768px) 
{
	.hide-on-sm
	{
		display: block;
	}

	.show-on-sm
	{
		display: none;
	}

	.sm-no-padding
	{
		padding: 0 10px;
	}

	.col-md-12 {width: 100%;}
	.col-md-11 {width: 91.66666667%;}
	.col-md-10 {width: 83.33333333%;}
	.col-md-9 {width: 75%;}
	.col-md-8 {width: 66.66666667%;}
	.col-md-7 {width: 58.33333333%;}
	.col-md-6 {width: 50%;}
	.col-md-5 {width: 41.66666667%;}
	.col-md-4 {width: 33.33333333%;}
	.col-md-3 {width: 25%;}
	.col-md-2 {width: 16.66666667%;}
	.col-md-1 {width: 8.33333333%;}
	.col-md-pull-12 {right: 100%;}
	.col-md-pull-11 {right: 91.66666667%;}
	.col-md-pull-10 {right: 83.33333333%;}
	.col-md-pull-9  {right: 75%;}
	.col-md-pull-8  {right: 66.66666667%;}
	.col-md-pull-7  {right: 58.33333333%;}
	.col-md-pull-6  {right: 50%;}
	.col-md-pull-5  {right: 41.66666667%;}
	.col-md-pull-4  {right: 33.33333333%;}
	.col-md-pull-3  {right: 25%;}
	.col-md-pull-2  {right: 16.66666667%;}
	.col-md-pull-1  {right: 8.33333333%;}
	.col-md-pull-0  {right: auto;}
	.col-md-push-12 {left: 100%;}
	.col-md-push-11 {left: 91.66666667%;}
	.col-md-push-10 {left: 83.33333333%;}
	.col-md-push-9  {left: 75%;}
	.col-md-push-8  {left: 66.66666667%;}
	.col-md-push-7  {left: 58.33333333%;}
	.col-md-push-6  {left: 50%;}
	.col-md-push-5  {left: 41.66666667%;}
	.col-md-push-4  {left: 33.33333333%;}
	.col-md-push-3  {left: 25%;}
	.col-md-push-2  {left: 16.66666667%;}
	.col-md-push-1  {left: 8.33333333%;}
	.col-md-push-0  {left: auto;}
	.col-md-offset-12 {margin-left: 100%;}
	.col-md-offset-11 {margin-left: 91.66666667%;}
	.col-md-offset-10 {margin-left: 83.33333333%;}
	.col-md-offset-9  {margin-left: 75%;}
	.col-md-offset-8  {margin-left: 66.66666667%;}
	.col-md-offset-7  {margin-left: 58.33333333%;}
	.col-md-offset-6  {margin-left: 50%;}
	.col-md-offset-5  {margin-left: 41.66666667%;}
	.col-md-offset-4  {margin-left: 33.33333333%;}
	.col-md-offset-3  {margin-left: 25%;}
	.col-md-offset-2  {margin-left: 16.66666667%;}
	.col-md-offset-1  {margin-left: 8.33333333%;}
	.col-md-offset-0  {margin-left: 0;}
	

	.col-sm-3:nth-child(4n+1){clear: none; float: left;}
	.col-sm-4:nth-child(3n+1){clear: none; float: left;}
	.col-sm-6:nth-child(2n+1){clear: none; float: left;}

	.col-md-3:nth-child(4n+1){clear: left;}
	.col-md-4:nth-child(3n+1){clear: left;}
	.col-md-6:nth-child(2n+1){clear: left;}
	
	.shop-md-6 {width: 50%;}
	.shop-md-4 {width: 33.33333333%;}
	.shop-md-3 {width: 25%;}	
	
	.shop-sm-3:nth-child(4n+1){clear: none; float: left;}
	.shop-sm-4:nth-child(3n+1){clear: none; float: left;}
	.shop-sm-6:nth-child(2n+1){clear: none; float: left;}

	.shop-md-3:nth-child(4n+1){clear: left;}
	.shop-md-4:nth-child(3n+1){clear: left;}
	.shop-md-6:nth-child(2n+1){clear: left;}

}

/* -------------------------------------------------------------------------- */
/* LARGE - DESKTOP
/* -------------------------------------------------------------------------- */
@media (min-width: 992px)
{
	.hide-on-md
	{
		display: block;
	}
	
	.show-on-md
	{
		display: none;
	}

	.col-lg-12 {width: 100%;}
	.col-lg-11 {width: 91.66666667%;}
	.col-lg-10 {width: 83.33333333%;}
	.col-lg-9 {width: 75%;}
	.col-lg-8 {width: 66.66666667%;}
	.col-lg-7 {width: 58.33333333%;}
	.col-lg-6 {width: 50%;}
	.col-lg-5 {width: 41.66666667%;}
	.col-lg-4 {width: 33.33333333%;}
	.col-lg-3 {width: 25%;}
	.col-lg-2 {width: 16.66666667%;}
	.col-lg-1 {width: 8.33333333%;}
	.col-lg-pull-12 {right: 100%;}
	.col-lg-pull-11 {right: 91.66666667%;}
	.col-lg-pull-10 {right: 83.33333333%;}
	.col-lg-pull-9  {right: 75%;}
	.col-lg-pull-8  {right: 66.66666667%;}
	.col-lg-pull-7  {right: 58.33333333%;}
	.col-lg-pull-6  {right: 50%;}
	.col-lg-pull-5  {right: 41.66666667%;}
	.col-lg-pull-4  {right: 33.33333333%;}
	.col-lg-pull-3  {right: 25%;}
	.col-lg-pull-2  {right: 16.66666667%;}
	.col-lg-pull-1  {right: 8.33333333%;}
	.col-lg-pull-0  {right: auto;}
	.col-lg-push-12 {left: 100%;}
	.col-lg-push-11 {left: 91.66666667%;}
	.col-lg-push-10 {left: 83.33333333%;}
	.col-lg-push-9  {left: 75%;}
	.col-lg-push-8  {left: 66.66666667%;}
	.col-lg-push-7  {left: 58.33333333%;}
	.col-lg-push-6  {left: 50%;}
	.col-lg-push-5  {left: 41.66666667%;}
	.col-lg-push-4  {left: 33.33333333%;}
	.col-lg-push-3  {left: 25%;}
	.col-lg-push-2  {left: 16.66666667%;}
	.col-lg-push-1  {left: 8.33333333%;}
	.col-lg-push-0  {left: auto;}
	.col-lg-offset-12 {margin-left: 100%;}
	.col-lg-offset-11 {margin-left: 91.66666667%;}
	.col-lg-offset-10 {margin-left: 83.33333333%;}
	.col-lg-offset-9  {margin-left: 75%;}
	.col-lg-offset-8  {margin-left: 66.66666667%;}
	.col-lg-offset-7  {margin-left: 58.33333333%;}
	.col-lg-offset-6  {margin-left: 50%;}
	.col-lg-offset-5  {margin-left: 41.66666667%;}
	.col-lg-offset-4  {margin-left: 33.33333333%;}
	.col-lg-offset-3  {margin-left: 25%;}
	.col-lg-offset-2  {margin-left: 16.66666667%;}
	.col-lg-offset-1  {margin-left: 8.33333333%;}
	.col-lg-offset-0  {margin-left: 0;}

	.col-sm-3:nth-child(4n+1){clear: none; float: left;}
	.col-sm-4:nth-child(3n+1){clear: none; float: left;}
	.col-sm-6:nth-child(2n+1){clear: none; float: left;}

	.col-md-3:nth-child(4n+1){clear: none; float: left;}
	.col-md-4:nth-child(3n+1){clear: none; float: left;}
	.col-md-6:nth-child(2n+1){clear: none; float: left;}

	.col-lg-3:nth-child(4n+1){clear: left;}
	.col-lg-4:nth-child(3n+1){clear: left;}
	.col-lg-6:nth-child(2n+1){clear: left;}
	
	.shop-lg-6 {width: 50%;}
	.shop-lg-4 {width: 33.33333333%;}
	.shop-lg-3 {width: 25%;}	
	
	.shop-sm-3:nth-child(4n+1){clear: none; float: left;}
	.shop-sm-4:nth-child(3n+1){clear: none; float: left;}
	.shop-sm-6:nth-child(2n+1){clear: none; float: left;}

	.shop-md-3:nth-child(4n+1){clear: none; float: left;}
	.shop-md-4:nth-child(3n+1){clear: none; float: left;}
	.shop-md-6:nth-child(2n+1){clear: none; float: left;}

	.shop-lg-3:nth-child(4n+1){clear: left;}
	.shop-lg-4:nth-child(3n+1){clear: left;}
	.shop-lg-6:nth-child(2n+1){clear: left;}

	.col-spc-lc {padding-right: 22px;}
	.col-spc-rc {padding-left: 22px;}	
}

/* -------------------------------------------------------------------------- */
/* XLARGE - DESKTOP HD SCREEN
/* -------------------------------------------------------------------------- */
@media (min-width: 1280px)
{
	.hide-on-lg
	{
		display: block;
	}
	
	.show-on-lg
	{
		display: none;
	}
	
	[class*="col-xl"],
	[class*="col-xxl"]
	{
		padding: 0 10px;
	}
	
	.col-spc-lc {padding-right: 10px;}
	.col-spc-rc {padding-left: 10px;}	

	.col-xl-12 {width: 100%;}
	.col-xl-11 {width: 91.66666667%;}
	.col-xl-10 {width: 83.33333333%;}
	.col-xl-9 {width: 75%;}
	.col-xl-8 {width: 66.66666667%;}
	.col-xl-7 {width: 58.33333333%;}
	.col-xl-6 {width: 50%;}
	.col-xl-5 {width: 41.66666667%;}
	.col-xl-4 {width: 33.33333333%;}
	.col-xl-3 {width: 25%;}
	.col-xl-2 {width: 16.66666667%;}
	.col-xl-1 {width: 8.33333333%;}
	.col-xl-pull-12 {right: 100%;}
	.col-xl-pull-11 {right: 91.66666667%;}
	.col-xl-pull-10 {right: 83.33333333%;}
	.col-xl-pull-9  {right: 75%;}
	.col-xl-pull-8  {right: 66.66666667%;}
	.col-xl-pull-7  {right: 58.33333333%;}
	.col-xl-pull-6  {right: 50%;}
	.col-xl-pull-5  {right: 41.66666667%;}
	.col-xl-pull-4  {right: 33.33333333%;}
	.col-xl-pull-3  {right: 25%;}
	.col-xl-pull-2  {right: 16.66666667%;}
	.col-xl-pull-1  {right: 8.33333333%;}
	.col-xl-pull-0  {right: auto;}
	.col-xl-push-12 {left: 100%;}
	.col-xl-push-11 {left: 91.66666667%;}
	.col-xl-push-10 {left: 83.33333333%;}
	.col-xl-push-9  {left: 75%;}
	.col-xl-push-8  {left: 66.66666667%;}
	.col-xl-push-7  {left: 58.33333333%;}
	.col-xl-push-6  {left: 50%;}
	.col-xl-push-5  {left: 41.66666667%;}
	.col-xl-push-4  {left: 33.33333333%;}
	.col-xl-push-3  {left: 25%;}
	.col-xl-push-2  {left: 16.66666667%;}
	.col-xl-push-1  {left: 8.33333333%;}
	.col-xl-push-0  {left: auto;}
	.col-xl-offset-12 {margin-left: 100%;}
	.col-xl-offset-11 {margin-left: 91.66666667%;}
	.col-xl-offset-10 {margin-left: 83.33333333%;}
	.col-xl-offset-9  {margin-left: 75%;}
	.col-xl-offset-8  {margin-left: 66.66666667%;}
	.col-xl-offset-7  {margin-left: 58.33333333%;}
	.col-xl-offset-6  {margin-left: 50%;}
	.col-xl-offset-5  {margin-left: 41.66666667%;}
	.col-xl-offset-4  {margin-left: 33.33333333%;}
	.col-xl-offset-3  {margin-left: 25%;}
	.col-xl-offset-2  {margin-left: 16.66666667%;}
	.col-xl-offset-1  {margin-left: 8.33333333%;}
	.col-xl-offset-0  {margin-left: 0;}

	.col-sm-3:nth-child(4n+1){clear: none; float: left;}
	.col-sm-4:nth-child(3n+1){clear: none; float: left;}
	.col-sm-6:nth-child(2n+1){clear: none; float: left;}

	.col-md-3:nth-child(4n+1){clear: none; float: left;}
	.col-md-4:nth-child(3n+1){clear: none; float: left;}
	.col-md-6:nth-child(2n+1){clear: none; float: left;}

	.col-lg-3:nth-child(4n+1){clear: none; float: left;}
	.col-lg-4:nth-child(3n+1){clear: none; float: left;}
	.col-lg-6:nth-child(2n+1){clear: none; float: left;}

	.col-xl-3:nth-child(4n+1){clear: left;}
	.col-xl-4:nth-child(3n+1){clear: left;}
	.col-xl-6:nth-child(2n+1){clear: left;}
	
	.shop-xl-6 {width: 50%;}
	.shop-xl-4 {width: 33.33333333%;}
	.shop-xl-3 {width: 25%;}	
	
	.shop-sm-3:nth-child(4n+1){clear: none; float: left;}
	.shop-sm-4:nth-child(3n+1){clear: none; float: left;}
	.shop-sm-6:nth-child(2n+1){clear: none; float: left;}

	.shop-md-3:nth-child(4n+1){clear: none; float: left;}
	.shop-md-4:nth-child(3n+1){clear: none; float: left;}
	.shop-md-6:nth-child(2n+1){clear: none; float: left;}

	.shop-lg-3:nth-child(4n+1){clear: none; float: left;}
	.shop-lg-4:nth-child(3n+1){clear: none; float: left;}
	.shop-lg-6:nth-child(2n+1){clear: none; float: left;}

	.shop-xl-3:nth-child(4n+1){clear: left;}
	.shop-xl-4:nth-child(3n+1){clear: left;}
	.shop-xl-6:nth-child(2n+1){clear: left;}

	.col-spc-lc {padding-right: 28px;}
	.col-spc-rc {padding-left: 28px;}	
}


/* -------------------------------------------------------------------------- */
/* XXLARGE - DESKTOP HD SCREEN
/* -------------------------------------------------------------------------- */
@media (min-width: 1690px)
{
	[class*="col-xl"],
	[class*="col-xxl"]
	{
		padding: 0 10px;
	}
	
	.col-spc-lc {padding-right: 15px;}
	.col-spc-rc {padding-left: 15px;}	

	.col-xxl-12 {width: 100%;}
	.col-xxl-11 {width: 91.66666667%;}
	.col-xxl-10 {width: 83.33333333%;}
	.col-xxl-9 {width: 75%;}
	.col-xxl-8 {width: 66.66666667%;}
	.col-xxl-7 {width: 58.33333333%;}
	.col-xxl-6 {width: 50%;}
	.col-xxl-5 {width: 41.66666667%;}
	.col-xxl-4 {width: 33.33333333%;}
	.col-xxl-3 {width: 25%;}
	.col-xxl-2 {width: 16.66666667%;}
	.col-xxl-1 {width: 8.33333333%;}
	.col-xxl-pull-12 {right: 100%;}
	.col-xxl-pull-11 {right: 91.66666667%;}
	.col-xxl-pull-10 {right: 83.33333333%;}
	.col-xxl-pull-9  {right: 75%;}
	.col-xxl-pull-8  {right: 66.66666667%;}
	.col-xxl-pull-7  {right: 58.33333333%;}
	.col-xxl-pull-6  {right: 50%;}
	.col-xxl-pull-5  {right: 41.66666667%;}
	.col-xxl-pull-4  {right: 33.33333333%;}
	.col-xxl-pull-3  {right: 25%;}
	.col-xxl-pull-2  {right: 16.66666667%;}
	.col-xxl-pull-1  {right: 8.33333333%;}
	.col-xxl-pull-0  {right: auto;}
	.col-xxl-push-12 {left: 100%;}
	.col-xxl-push-11 {left: 91.66666667%;}
	.col-xxl-push-10 {left: 83.33333333%;}
	.col-xxl-push-9  {left: 75%;}
	.col-xxl-push-8  {left: 66.66666667%;}
	.col-xxl-push-7  {left: 58.33333333%;}
	.col-xxl-push-6  {left: 50%;}
	.col-xxl-push-5  {left: 41.66666667%;}
	.col-xxl-push-4  {left: 33.33333333%;}
	.col-xxl-push-3  {left: 25%;}
	.col-xxl-push-2  {left: 16.66666667%;}
	.col-xxl-push-1  {left: 8.33333333%;}
	.col-xxl-push-0  {left: auto;}
	.col-xxl-offset-12 {margin-left: 100%;}
	.col-xxl-offset-11 {margin-left: 91.66666667%;}
	.col-xxl-offset-10 {margin-left: 83.33333333%;}
	.col-xxl-offset-9  {margin-left: 75%;}
	.col-xxl-offset-8  {margin-left: 66.66666667%;}
	.col-xxl-offset-7  {margin-left: 58.33333333%;}
	.col-xxl-offset-6  {margin-left: 50%;}
	.col-xxl-offset-5  {margin-left: 41.66666667%;}
	.col-xxl-offset-4  {margin-left: 33.33333333%;}
	.col-xxl-offset-3  {margin-left: 25%;}
	.col-xxl-offset-2  {margin-left: 16.66666667%;}
	.col-xxl-offset-1  {margin-left: 8.33333333%;}
	.col-xxl-offset-0  {margin-left: 0;}

	.col-sm-3:nth-child(4n+1){clear: none; float: left;}
	.col-sm-4:nth-child(3n+1){clear: none; float: left;}
	.col-sm-6:nth-child(2n+1){clear: none; float: left;}

	.col-md-3:nth-child(4n+1){clear: none; float: left;}
	.col-md-4:nth-child(3n+1){clear: none; float: left;}
	.col-md-6:nth-child(2n+1){clear: none; float: left;}

	.col-lg-3:nth-child(4n+1){clear: none; float: left;}
	.col-lg-4:nth-child(3n+1){clear: none; float: left;}
	.col-lg-6:nth-child(2n+1){clear: none; float: left;}

	.col-xl-3:nth-child(4n+1){clear: none; float: left;}
	.col-xl-4:nth-child(3n+1){clear: none; float: left;}
	.col-xl-6:nth-child(2n+1){clear: none; float: left;}

	.col-xxl-3:nth-child(4n+1){clear: left;}
	.col-xxl-4:nth-child(3n+1){clear: left;}
	.col-xxl-6:nth-child(2n+1){clear: left;}
	
	.shop-xxl-6 {width: 50%;}
	.shop-xxl-4 {width: 33.33333333%;}
	.shop-xxl-3 {width: 25%;}	
	
	.shop-sm-3:nth-child(4n+1){clear: none; float: left;}
	.shop-sm-4:nth-child(3n+1){clear: none; float: left;}
	.shop-sm-6:nth-child(2n+1){clear: none; float: left;}

	.shop-md-3:nth-child(4n+1){clear: none; float: left;}
	.shop-md-4:nth-child(3n+1){clear: none; float: left;}
	.shop-md-6:nth-child(2n+1){clear: none; float: left;}

	.shop-lg-3:nth-child(4n+1){clear: none; float: left;}
	.shop-lg-4:nth-child(3n+1){clear: none; float: left;}
	.shop-lg-6:nth-child(2n+1){clear: none; float: left;}

	.shop-xl-3:nth-child(4n+1){clear: none; float: left;}
	.shop-xl-4:nth-child(3n+1){clear: none; float: left;}
	.shop-xl-6:nth-child(2n+1){clear: none; float: left;}

	.shop-xxl-3:nth-child(4n+1){clear: left;}
	.shop-xxl-4:nth-child(3n+1){clear: left;}
	.shop-xxl-6:nth-child(2n+1){clear: left;}

	.col-spc-lc {padding-right: 32px;}
	.col-spc-rc {padding-left: 32px;}	
}

.xs-no-padding,
.sm-no-padding
{
	padding: 0px;
}


/* -------------------------------------------------------------------------- */
/* IMAGES
/* -------------------------------------------------------------------------- */
.responsive-img
{ 
	max-width: 100%; 
	height: auto; 
}


/* -------------------------------------------------------------------------- */
/* HALF SCREEN IMAGE/TEXT
/* -------------------------------------------------------------------------- */
.image-container-left
{
	content: "";
	position: relative;
	width: 100%;
	height: 400px;
  background-size: cover;	
	background-repeat: no-repeat;
	background-position: center;
	float: left;
}

.text-container-right
{
	width: 100%;
	margin: 0px;
	padding: 20px 20px 20px 20px;
	overflow: hidden;
	float: left;
}

.text-container-left
{
	width: 100%;
	margin: 0px;
	padding: 20px 20px 20px 20px;
	overflow: hidden;
	float: left;
}

.image-container-right
{
	content: "";
	position: relative;
	width: 100%;
	height: 400px;
  background-size: cover;	
	background-repeat: no-repeat;
	background-position: center;
	float: left;
}

.image-container-right .image-container-text,
.image-container-left .image-container-text
{
	padding: 20px 20px 20px 20px;
	width: 100%;
}

@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
}
	
@media (min-width: 992px) 
{
	.text-container-left
	{
		width: 50%;
		padding: 20px 20px 20px 0px;
	}

	.image-container-right
	{
		content: "";
		position: absolute;
		right: 0px;
		left: 50%;
		top: 0px;
		bottom: 0px;
		width: initial;
		height: initial;
	}
	
	.image-container-right .image-container-text
	{
		padding: 20px 20px 20px 0px;
		width: 100%;
	}

	.image-container-left
	{
		content: "";
		position: absolute;
		left: 0px;
		right: 50%;
		top: 0px;
		bottom: 0px;
		width: initial;
		height: initial;
	}

	.image-container-left .image-container-text
	{
		padding: 20px 0px 20px 20px;
    width: 495px;
	}

	.text-container-right
	{
		width: 50%;
		margin-left: 50%;
		padding: 20px 0px 20px 20px;
	}
}
	
@media (min-width: 1280px) 
{
	.image-container-right .image-container-text,
	.image-container-left .image-container-text
	{
		width: 600px;
	}
}

@media (min-width: 1690px) 
{
	.image-container-right .image-container-text,
	.image-container-left .image-container-text
	{
		width: 700px;
	}
}

/* -------------------------------------------------------------------------- */
/* FORM POST RESPONSE
/* -------------------------------------------------------------------------- */
#post-response
{
	position: relative;
	display: none;
	color: var(--text-inverse);
	margin: 0px 0px 20px 0px;
	padding: 15px 15px 15px 2px;
	line-height: 17px;
  border-radius: 0px;
}

.post-error
{
	color: var(--text-inverse);
}

.post-success
{
	color: var(--text-inverse);
}


/* -------------------------------------------------------------------------- */
/* TYPOGAPHY
/* -------------------------------------------------------------------------- */
body
{
	font-family: 'Cairo', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 23px;
	margin: 0;
	color: var(--text);
	background: var(--background);
	padding-top: 0px;
}

@media (min-width: 768px) 
{
}


@media (min-width: 992px) 
{
	body
	{
		font-size: 17px;
		line-height: 25px;
		padding-top: 0px;
	}
}

@media (min-width: 1280px) 
{

}



h1, h2, h3, h4, h5, h6,
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a
{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--black);
	
}

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong
{
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
}

h1 a:hover,
h2 a:hover
{
	text-decoration: none;
}


h1
{
	font-size: 28px; 
	line-height: 32px;
	margin: 0px 0px 6px 0px;	 
}

h2
{
	font-size: 28px; 
	line-height: 32px;
	margin: 0px 0px 6px 0px;
}

h3
{
	font-size: 20px; 
	line-height: 26px;
	margin-bottom: 12px; 
}

h4
{
	font-size: 18px; 
	line-height: 23px;   
	margin: 0px 0px 6px 0px;
	padding: 5px 0px 0px 0px;
}
	
h5
{ 
	font-weight: 400;
	text-transform: none;
	font-size: 17px; 
	line-height: 23px; 
	margin-bottom: 8px;
}
	
h6
{ 
	font-weight: 400;
	text-transform: none;
	font-size: 13px; 
	line-height: 24px; 
	margin-bottom: 5px;
}
	
p
{
	margin-bottom: 20px;
}

em
{
	font-style: italic;
}

strong
{
	font-weight: 700;
}

small
{
	font-size: 90%;
}
	
sub
{ 
	vertical-align: sub; 
	font-size: 75%; 
}
	
sup
{ 
	vertical-align: super;
	font-size: 35%; 
}
	
.uppercase
{
	text-transform: uppercase;
}

	
p.last,
h1.last,
h2.last,
h3.last,
h4.last,
h5.last
{
	margin-bottom: 0;
}

@media (min-width: 560px) 
{

}

@media (min-width: 768px) 
{
}
	
@media (min-width: 992px) 
{
	h1
	{
		font-size: 36px; 
		line-height: 42px;
		margin: 0px 0px 12px 0px;	 
	}

	h2
	{
		font-size: 36px; 
		line-height: 42px;
		margin: 0px 0px 12px 0px;
	}

	h3
	{
		font-size: 24px; 
		line-height: 30px;
		margin-bottom: 12px; 
	}

	h4
	{
		font-size: 22px; 
		line-height: 28px;   
		margin: 0px 0px 6px 0px;
		padding: 5px 0px 0px 0px;
	}
	
	h5
	{ 
		font-size: 20px; 
		line-height: 27px; 
		margin-bottom: 8px;
	}
}
	
@media (min-width: 1280px) 
{

}

@media (min-width: 1690px) 
{

}


/* -------------------------------------------------------------------------- */
/* TYPOGAPHY - LINKS
/* -------------------------------------------------------------------------- */
a
{ 
	color:  var(--black);
	text-decoration: none; 
}
	
a:visited
{ 
	text-decoration: none; 
}

/* Remove the gray background color from active links in IE 10. */
a:active
{
	background: transparent; /* 1 */
}
	
a:hover, 
a:focus
{
	outline: 0; 
	text-decoration: none;
}	


/* -------------------------------------------------------------------------- */
/* TYPOGAPHY - LISTS
/* -------------------------------------------------------------------------- */
ul
{ 
	list-style-type: disc;
	margin-bottom: 20px; 
	margin-left: 15px;
}

li
{
}









/* -------------------------------------------------------------------------- */
/* HEADER
/* -------------------------------------------------------------------------- */
#header
{
	position: absolute;
	top: 0px;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 9000;
}

#header .header-fixed
{
	position: fixed;
	width: 100%;
	z-index: 9000;
	top: 0px;
	display: none;
}

@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
}
	
@media (min-width: 992px) 
{
}
	
@media (min-width: 1280px) 
{
}

@media (min-width: 1690px) 
{
}



/*=================================================================================================================*/
/* HEADER CONTAINER
/*=================================================================================================================*/
.header-top-container
{ 
	margin: 0px 0px 0px 0px;
	padding: 10px 0px 3px 0px;
	background: nene;
	display: none;
}

.header-top-container .page-container
{ 
	border-bottom: 1px none #f5f5f5;
}

#sticky-header
{
	background: #fff;
	background: none;
}

.header-fixed .header-main-container
{
	border-bottom: 1px none #222;
}

.header-main-container
{ 
	margin: 0px 0px 0px 0px;
	position: relative;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	background: none;
}

.header-main
{ 
	height: 70px;
}

.header-fixed .header-main-container
{ 
	height: 70px;
	margin: 0px 0px 0px 0px;
	background: var(--antracit);
}

.header-fixed .header-main
{ 
	height: 69px;
}


@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
}
	
@media (min-width: 992px) 
{
	.header-top-container
	{ 
		display: block;
		height: 41px;
	}
}
	
@media (min-width: 1280px) 
{
}

@media (min-width: 1690px) 
{
}



/*=================================================================================================================*/
/* HEADER LOGO
/*=================================================================================================================*/
.header-logo
{ 
	display: inline-block; 
	width: 60px;
	margin: 9px 0px 0px 10px;
	position: absolute;
	z-index: 100;
	top: 0px;
}

.header-fixed .header-logo
{ 
	width: 60px;
	margin: 9px 0px 0px 10px;
	top: 0px;
}
	
.header-fixed .header-logo img,
.header-logo img
{ 
	max-height: 100%;
}
	
@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
}
	
@media (min-width: 992px) 
{
	.header-logo
	{ 
		width: 87px;
		margin: 0px 0px 0px 10px;
		top: -22px;
	}
}
	
@media (min-width: 1280px) 
{
}

@media (min-width: 1690px) 
{
}

/*=================================================================================================================*/
/* HEADER CONTACT INFO
/*=================================================================================================================*/
.header-top-container .header-contact-info
{
	overflow: hidden;
	margin: 0px auto;
	float: right;
	color: var(--text-inverse);
	font-size: 15px;
}

.header-top-container .header-contact-info .iconset
{
	margin: 0px 8px -2px 0px;
	fill: #ddd;
}

.header-top-container .header-contact-info ul
{
	line-height: 17px;
	margin: 0px 0px 0px 0px;
	overflow: hidden;
}

.header-top-container .header-contact-info a
{
	color: var(--footer-text);
}

.header-top-container .header-contact-info a:hover 
{
	color: var(--text-inverse);
}

.header-top-container .header-contact-info ul li
{
	display: inline-block;
	padding: 4px 25px 4px 2px;
}


/*=================================================================================================================*/
/* HEADER LANGUAGE
/*=================================================================================================================*/

/*=================================================================================================================*/
/* HEADER USER MENU
/*=================================================================================================================*/
.header-top-container .header-user
{
	color: var(--footer-text);
	font-size: 15px;
	display: block;
	padding: 0px 12px 2px 2px;
	float: right;
	min-width: 100px;
}

.header-top-container .header-user a
{
	color: var(--footer-text);
}

.header-top-container .header-user a:hover 
{
	color: var(--text-inverse);
}

.header-top-container .header-user .iconset
{
  width: 1.4em;
  height: 1.4em;
	margin: 0px 8px -5px 0px;
	fill: #ddd;
}

.header-top-container #user-menu
{
	padding: 2px 9px 2px 7px;
  display: block;
	cursor: pointer;
	position: relative;
	background: none;
	border-radius: 3px 3px 3px 3px;
	height: 29px;
	min-width: 145px;
}

.header-top-container #user-menu > ul
{
	padding: 0px;
	margin: 0px;
	position: absolute;
	top: 29px;
	left: -5px;
	width: auto;
	padding: 6px 5px 8px 11px;
	margin: 0px 0px 0px 5px;
	background: var(--footer-bgr);
	z-index: 100;
	border-radius: 0px 0px 3px 3px;
	border-top: 1px solid rgba(255,255,255,0.2);
	display: none;
	height: 0px;
	overflow: hidden;
}

.header-top-container #user-menu:hover
{
	background: var(--footer-bgr);
	border-radius: 3px 3px 3px 3px;
}

.header-top-container #user-menu.initial:hover
{
	background: none;
	border-radius: 3px 3px 3px 3px;
}

.header-top-container #user-menu:hover > ul
{
	display: block;
	top: 29px;
	height: initial;
}

.header-top-container #user-menu li
{
	margin: 3px 0px 3px 0px;
	border: none;
	display: block; 
}

.header-top-container #user-menu li .iconset
{
  width: 1.1em;
  height: 1.1em;
	margin: 0px 9px -4px 0px;
	fill: #ddd;
}


/*=================================================================================================================*/
/* HEADER SOCIAL MEDIA
/*=================================================================================================================*/
.header-social
{
	border-right: 1px solid #ccc;
	padding: 0px 5px 0px 0px;
	margin: 0px 20px 0px 0px;
	float: right;
}

.header-social .media-icons
{
}

.header-social ul
{
	padding: 0px;
	margin: 0px;
}

.header-social li
{
	border: none;
	float: left;
	display: block; 
}

.header-social .iconset
{
	text-align: center;
	font-size: 12px;
	height: 16px;
	width: 16px;
	fill: var(--text);
	margin: 5px 15px 0px 0px;
  -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}




/* ========================================================================== */
/* MAIN NAVIGATION - LEVEL 1
/* ========================================================================== */
.header-main-navigation
{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	float: right;
	display: none;
	height: 50px;
	font-size: 15px;

}

.header-main-navigation a
{
	text-decoration: none;
}

@media only screen and (min-width: 992px)
{
	.header-main-navigation
	{
		display: block;
	}
	
	.header-main-navigation .menu
	{
		margin: 0px 0px 0px 0px;
		text-transform: uppercase;
		display: block;
		float: right;
	}

	.header-main-navigation .menu-item-level1
	{
		float: left;
		color: var(--text-inverse);
		display: block;
		cursor: pointer;
		position: relative;
		padding: 7px 0px 26px 0px;
		margin: 13px 10px 0px 10px;
		background: none;
	}
	

	.header-main-navigation .menu-item-level1 a
	{
		color: var(--text-inverse);
		padding: 10px 5px 10px 5px;
	}
	
	.header-main-navigation .menu-item-level1.noclick
	{
		padding: 7px 5px 20px 5px;
	}

	.header-main-navigation .menu-item-level1 .menu-item-active
	{
		content: "";
		display: block;
		height: 0px;
		width: auto;
		margin: 0px auto;
		position: absolute;
		left: 0px;
		right: 0px;
		top: 0px;
		z-index:-1;
		background: var(--background);
		-webkit-transition: all 0.1s ease;
		transition: all 0.1s ease;
	}

	.header-main-navigation .menu-item-level1:hover
	{
		-webkit-transition: all 0.2s ease;
		transition: all 0.1s ease;
		background: none;
	}
	
	.header-main-navigation .menu-item-level1:after
	{
		content: "";
		display: block;
		height: 0px;
		width: 75%;
		margin: 0px auto;
		position: absolute;
		left: 0px;
		right: 0px;
		bottom: 0;
		z-index: 53;
		background-color: #fff;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}

	.header-main-navigation .menu-item-level1:hover:after
	{
		background-color: #fff;
		height: 2px;
		width: 100%;
		-webkit-transition: all 0.4s ease;
		transition: all 0.4s ease;
	}	
	
	.header-main-navigation .menu-item-level1:hover .menu-item-active,
	.header-main-navigation .menu-item-level1.selected .menu-item-active
	{
	}	

	.header-main-navigation .menu-item-level1:hover.menu-item-level1 a
	{
		/*
		color: var(--text-inverse);
		background: var(--background-1);
		*/
	}


	.header-fixed .header-main-navigation .menu
	{
		padding: 0px 0px 0px 0px;
		margin: 0px 0px 0px 0px;
	}	

	.header-fixed .header-main-navigation .menu-item-level1
	{
		padding: 22px 5px 23px 5px;
		margin: 0px 5px 0px 5px;
	}	
	
	.header-fixed .header-main-navigation .menu-item-level1 a
	{
		color: var(--text-inverse);
		padding: 10px 5px 14px 5px;
	}

	.header-fixed .header-main-navigation .menu-item-level1.noclick
	{
		color: var(--text);
	}
	
	
	.header-fixed .header-main-navigation .menu-item-level1 .menu-item-active
	{
		top: -13px;
	}
	
	/* ========================================================================== */
	/* MAIN NAVIGATION - LEVEL 2
	/* ========================================================================== */
	.header-main-navigation .menu-level2
	{
		font-weight: 500;
		display: block;
		z-index: 1100; /* 1 */
		min-width: 240px;
		position: absolute;
		left: 0px;
		top: 164px;
		width: 100%;
		visibility: hidden;
		background: var(--black);
		padding: 0px 0px 0px 0px;
		box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.1);
		opacity: 0;
		-webkit-transition: all 0.2s ease;
		transition: all 0.2s ease;
		border-top: none;
	}

  .header-main-navigation .menu-level2::before
	{
		position: absolute;
		content: '';
		display: block;
		left: 30px;
		top: -11px;
		z-index: 2100; /* 1 */
		width: 0; 
		height: 0; 
		border-left: 12px solid transparent;
		border-right: 12px solid transparent;
		border-bottom: 12px solid var(--black);

	}


	#header .header-fixed .header-main-navigation
	{
		height: 50px;
	}

	#header .header-fixed .header-main-navigation .menu-level2
	{
		left: 0px;
		top: 57px;
	}
	
	

	.header-main-navigation .menu-item-level1:hover .menu-item-level2 a
	{
		border-top: 1px solid rgba(255,255,255,0.2);
		color: var(--text-inverse);
		background: none;
	}
	

	.header-main-navigation .menu-item-level1:hover .menu-level2
	{
		top: 53px;
		visibility: visible;
		opacity: 1;
	}

	.header-fixed .header-main-navigation .menu-level2
	{
		top: 50px;
	}

	.header-main-navigation .menu-level2 .menu-item-level2
	{
		background: none;
		display: block;
		margin: 0px 0px 0px 0px;
    position: relative;
	}
	
	.header-main-navigation .menu-level2 .menu-item-level2 a
	{
		font-size: 15px;
    line-height: 22px;
		font-weight: 400;
		color: var(--text-inverse);
		background: none;
		width: 100%;
		padding: 10px 15px 10px 15px;
		display: block;
	}

	
	.header-main-navigation .menu-level2 .menu-item-level2 a:hover
	{
		-webkit-transition: all 0.2s ease;
		transition: all 0.2s ease;
		color: var(--text-inverse);
		background-color: var(--main-color-1);
		background-color: rgba(255,255,255,0.1);
	}
	
}

@media (min-width: 1280px) 
{
	.header-main-navigation .menu-item-level1 a,
	.header-main-navigation .menu-item-level1.noclick
	{
		padding-left: 10px;
		padding-right: 10px;
	}

	.header-fixed .header-main-navigation .menu-item-level1 a,
	.header-fixed .header-main-navigation .menu-item-level1.noclick
	{
		padding-left: 10px;
		padding-right: 10px;
	}
}


@media (min-width: 1690px) 
{
	.header-main-navigation .menu-item-level1 a,
	.header-main-navigation .menu-item-level1.noclick
	{
		padding-left: 10px;
		padding-right: 10px;
	}

	.header-fixed .header-main-navigation .menu-item-level1 a,
	.header-fixed .header-main-navigation .menu-item-level1.noclick
	{
		padding-left: 10px;
		padding-right: 10px;
	}

	.header-fixed .header-main-navigation .menu-level2 .menu-item-level2 a
	{
		padding: 8px 15px 8px 15px;
	}
}




/* -------------------------------------------------------------------------- */
/* MOBILE NAVIGATION TRIGGER
/* -------------------------------------------------------------------------- */
#mobile-menu-trigger
{ 
	position: absolute;
	top: 18px;
	right: 20px;
	font-size: 28px;
	line-height: 28px;
	display: block;
	z-index: 1000;
}

#mobile-menu-trigger .iconset
{
	margin: 0px 0px 0px 0px;
	fill: var(--text-inverse);
}

.header-fixed #mobile-menu-trigger
{ 
	top: 18px;
	right: 20px;
}
	
#mobile-menu-trigger:hover
{ 
	color: var(--text-inverse);
}

@media (min-width: 768px) 
{
}
	
@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
}

@media (min-width: 992px) 
{
	#mobile-menu-trigger,
	#mobile-menu-close
	{ 
		display: none;
	}
}

@media (min-width: 1280px) 
{
}

@media (min-width: 1690px) 
{
}

#mobile-menu-close
{ 
	position: absolute;
	top: 30px;
	right: 40px;
	font-size: 28px;
	line-height: 28px;
	display: block;
	color: #FFFFFF;
	z-index: 20;
	transition: all 0.3s ease;
}

#mobile-menu-close:hover
{ 
	color: #FFFFFF;
}




/* -------------------------------------------------------------------------- */
/* MOBILE NAVIGATION
/* -------------------------------------------------------------------------- */
#mobile-menu-screen
{
	position: fixed;
	background: rgba(0,0,0,0.4);
	width: 100%;
	top: 0px;
	bottom: 0px;
	right: 0px;
	z-index: 9990;
	display: none;
	backdrop-filter: blur(3px);
}


#mobile-menu
{
	position: fixed;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	background: var(--antracit);
	background: var(--main-color-1);
	width: 380px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	z-index: 9999;
	overflow-y: scroll;
}


#mobile-menu .mobile-menu-header
{
	display: block;
	overflow: hidden;
	padding: 0px 0px 0px 0px;
}

#mobile-menu .mobile-menu-header-logo
{ 
	display: inline-block; 
	width: 90px;
	margin: 0px 0px 0px 10px;
	position: absolute;
	top: 0px;
}

#mobile-menu-trigger-1
{ 
	position: absolute;
	top: 18px;
	right: 20px;
	font-size: 28px;
	line-height: 28px;
	display: block;
	color: var(--text-inverse);
	z-index: 1000;
	cursor: pointer;	
}

#mobile-menu-trigger-1 .iconset
{
	margin: 0px 0px 0px 0px;
	fill: var(--text-inverse);
}

#mobile-menu .mobile-menu-header .mobile-header-top
{
	display: block;
	overflow: hidden;
	padding: 0px 30px 0px 30px;
	height: 40px;
}

#mobile-menu .mobile-menu-header .mobile-header-info
{
	display: block;
	overflow: hidden;
	height: 50px;
	padding: 13px 26px 0px 40px;
	background: var(--main-blue);
}


/*=================================================================================================================*/
/* mobile USER MENU
/*=================================================================================================================*/
#mobile-menu .mobile-user
{
	color: var(--text-inverse);
	font-size: 15px;
	display: block;
	padding: 10px 12px 2px 8px;
	min-width: 100px;
}

#mobile-menu .mobile-user a
{
	color: var(--text-inverse);
}


#mobile-menu .mobile-user .iconset
{
  width: 1.4em;
  height: 1.4em;
	margin: 0px 8px -5px 0px;
	fill: #fff;
}

#mobile-menu .mobile-user .user-menu
{
	padding: 0px 0px 2px 5px;
  display: block;
	cursor: pointer;
	position: relative;
	background: none;
	border-radius: 3px 3px 3px 3px;
	height: 29px;
}

#mobile-menu .mobile-user .user-menu > ul
{
	padding: 0px;
	margin: 0px;
	width: 100%;
	padding: 6px 5px 8px 3px;
	margin: 10px 0px 0px 0px;
	z-index: 100;
	border-radius: 0px 0px 3px 3px;
	border-top: 1px solid rgba(255,255,255,0.2);
	display: block;
	overflow: hidden;
}

#mobile-menu .mobile-user .user-menu:hover > ul
{
	display: block;
	top: 29px;
	height: initial;
}

#mobile-menu .mobile-user .user-menu li
{
	margin: 10px 0px 10px 0px;
	padding: 3px 0px 3px 0px;
	border: none;
	display: block; 
}

#mobile-menu .mobile-user .user-menu li .iconset
{
  width: 1.1em;
  height: 1.1em;
	margin: 0px 9px -4px 0px;
	fill: #fff;
}



.mobile-header-info .mobile-contact
{
	overflow: hidden;
	margin: 0px auto;
	padding: 1px 0px 0px 0px;
	float: left;
	color: var(--text-inverse);
	font-size: 14px;
	font-weight: 400;
}

.mobile-header-info .mobile-contact .iconset
{
	color: var(--text-inverse);
	font-size: 14px;
	line-height: 14px;
	margin: 0px 8px 0px 0px;
}

.mobile-header-info .mobile-contact a
{
	color: var(--text);
	font-size: 13px;
	font-weight: 600;
}


.mobile-header-info .mobile-language
{
	line-height: 15px;
	overflow: hidden;
	margin: 0px auto;
	padding: 3px 0px 0px 0px;
	float: right;
	color: var(--text);
}


.mobile-header-info .mobile-language a
{
	color: var(--text);
}

.mobile-header-info .mobile-language ul
{
	list-style: none;
	margin: 0px;
	padding: 0px 0px 0px 0px;
}

.mobile-header-info .mobile-language li
{
	float: left;
	display: inline-block; 
	position: relative;
	border-right: 1px solid #ccc;
}

.mobile-header-info .mobile-language ul > li a
{
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
  -webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin: 0px 1px 0px 0px;
	padding: 0px 10px 0px 10px;
}

.mobile-header-info .mobile-language ul > li:last-child
{
	border-right: 1px none #ccc;
}

.mobile-header-info .mobile-language ul li:hover a
{
	color: var(--text-inverse);
	background: none;
}

.mobile-header-info .mobile-language .selected a
{
	font-weight: 600;
	color: var(--text-inverse);
}


#mobile-menu .mobile-navigation
{	
	margin: 0px 0px 0px 0px;
	padding: 12px 11px 35px 11px;
}

#mobile-menu .mobile-navigation ul
{	
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

#mobile-menu .mobile-navigation ul a
{
}

#mobile-menu .mobile-navigation ul li
{	
	display: block;
	margin: 10px 0px 10px 0px;
	padding: 0px 0px 10px 0px;
	font-size: 15px;
	line-height: 24px;
	position: relative;
	display: block;
	text-align: left;
	text-transform: uppercase;
	border-bottom: 1px solid #666;
	border-bottom: 1px solid rgba(230,230,230,0.3);
}

#mobile-menu .mobile-navigation ul li a
{
	padding: 0px 5px 0px 5px;
	font-weight: 700;
	text-decoration: none;
	color: var(--text-inverse);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: block;
	width: calc(100% - 50px);
}

#mobile-menu .mobile-navigation ul li.nolink
{
	margin: 10px 0px 10px 0px;
	padding: 0px 0px 10px 5px;
	font-weight: 700;
	text-decoration: none;
	color: var(--text-inverse);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#mobile-menu .mobile-navigation ul li a:hover
{
	color: var(--text-inverse);
}

#mobile-menu .mobile-navigation ul li > ul
{	
	margin: 8px 0px 2px 0px;
	padding: 0px 0px 0px 0px;
	display: none;
}

#mobile-menu .mobile-navigation ul li > ul li
{
	margin: 0px 0px 0px 0px;
	padding: 3px 0px 3px 0px;
	line-height: 20px;
	border-bottom: none;
}


#mobile-menu .mobile-navigation ul li > ul li a 
{
	font-size: 14px;
	font-weight: 400;
	color: var(--text-inverse);
	padding: 1px 15px 1px 15px;
}

#mobile-menu
{
	display: none;
}

#mobile-menu .mobile-navigation .mobile-menu-submenu-arrow,
#mobile-menu .mobile-navigation .mobile-menu-submenu-arrow-nolink
{
	position: absolute;
	top: -5px;
	right: 0;
	width: 40px;
	height: 35px;
	border-left: 1px none #ddd;	
	color: var(--text-inverse);
	font-size: 28px;
	line-height: 24px;
	text-align: center;
	cursor: pointer;
	z-index: 100;
}

#mobile-menu .mobile-navigation .mobile-menu-submenu-closed
{
	content: "";
	top: -7px;
	background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='14' height='14' viewBox='0 0 384 512' xmlns='http://www.w3.org/2000/svg'><path d='M441.9 167.3l-19.8-19.8c-4.7-4.7-12.3-4.7-17 0L224 328.2 42.9 147.5c-4.7-4.7-12.3-4.7-17 0L6.1 167.3c-4.7 4.7-4.7 12.3 0 17l209.4 209.4c4.7 4.7 12.3 4.7 17 0l209.4-209.4c4.7-4.7 4.7-12.3 0-17z' fill='%23ffffff'/></svg>") no-repeat 1px 8px transparent;
	background-repeat: no-repeat;
	background-position: center;
}

#mobile-menu .mobile-navigation .mobile-menu-submenu-opened
{
	content: "";
	top: -7px;
	background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='14' height='14' viewBox='0 0 384 512' xmlns='http://www.w3.org/2000/svg'><path d='M6.101 359.293L25.9 379.092c4.686 4.686 12.284 4.686 16.971 0L224 198.393l181.13 180.698c4.686 4.686 12.284 4.686 16.971 0l19.799-19.799c4.686-4.686 4.686-12.284 0-16.971L232.485 132.908c-4.686-4.686-12.284-4.686-16.971 0L6.101 342.322c-4.687 4.687-4.687 12.285 0 16.971z' fill='%23ffffff'/></svg>") no-repeat 1px 8px transparent;
	background-repeat: no-repeat;
	background-position: center;
}


#mobile-menu .mobile-navigation .mobile-menu-submenu-arrow:hover,
#mobile-menu .mobile-navigation .mobile-menu-submenu-arrow-nolink:hover
{
	color: var(--text-inverse);
}
	
#mobile-menu .mobile-navigation li a:hover
{
	color: var(--text);
}

#mobile-menu
{
	display: none;
}

@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
}

@media (min-width: 992px) 
{
}


/* -------------------------------------------------------------------------- */
/* breadcrumbs
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* HOMEPAGE INFO
/* -------------------------------------------------------------------------- */




/* -------------------------------------------------------------------------- */
/* OBVESTILO
/* -------------------------------------------------------------------------- */
.obvestilo
{
	background: #ea532a;
	color: #fff;
	font-weight: 400;
	padding: 20px 0px 10px 0px;
	margin: 0px 0px 0px 0px;
	font-size: 1.2em;
	line-height: 1.4em;
}

.obvestilo h2,
.obvestilo h3,
.obvestilo h4
{
	text-align: center;
	color: #fff;
	font-weight: 600 !important;
}

.obvestilo p
{
	color: #fff;
	font-weight: 400;
	margin-bottom: 12px;
}




/* -------------------------------------------------------------------------- */
/* TITLE BAR
/* -------------------------------------------------------------------------- */
.titlebar
{
	background: #aaa none no-repeat scroll center center / cover;
	margin: 0px;
	padding: 22px 0px 8px 0px;
	height: 130px;
	color: #fff;
	position: relative;
	overflow: hidden;
	z-index: 0;
	display: flex;
}

.titlebar .page-container
{
	align-self: flex-end;
}

.titlebar .title-text
{
	padding: 0px 0px 0px 25px;
	left: 0px;
	right: 0px;
	bottom: -100px;
	position: absolute;
	z-index: 100;
}

.titlebar .title-text .heading
{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 20px;
	line-height: 22px;
	margin: 0px 0px 12px 0px;
	color: #fff;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}


.titlebar-h1
{
	background: #aaa none no-repeat scroll top center / cover;
	margin: 0px 0px 30px 0px;
	padding: 0px 0px 0px 0px;
	height: 180px;
	color: #fff;
	position: relative;
	overflow: hidden;
	z-index: 0;
}

.titlebar-h1 .title-text
{
	padding: 0px 0px 0px 25px;
	left: 0px;
	right: 0px;
	bottom: -160px;
	position: absolute;
	z-index: 100;
	width: 90%
}

.titlebar-h1 .title-text .heading
{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 20px;
	line-height: 25px;
  font-weight: 600;
	color: #fff;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.titlebar-h1 .title-text .sub-heading
{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-transform: none;
	font-size: 16px;
	line-height: 20px;
  font-weight: 600;
	color: #fff;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}




@media (min-width: 560px) 
{
	
		.titlebar-h1
	{
		margin: 0px 0px 30px 0px;
		padding: 0px 0px 0px 0px;
		height: 180px;
	}
	
	.titlebar-h1 .title-text
	{
		padding: 0px 0px 0px 25px;
		bottom: -160px;
    width: 65%;
	}	

	.titlebar-h1 .title-text .heading
	{
		font-size: 20px;
		line-height: 23px;
	}

	.titlebar-h1 .title-text .sub-heading
	{
		font-size: 18px;
		line-height: 22px;
	}	

}

@media (min-width: 768px) 
{
	.titlebar .title-text
	{
		padding: 0px 0px 0px 18px;
	}
	
	.titlebar-h1
	{
		margin: 0px 0px 50px 0px;
		padding: 22px 0px 8px 0px;
		height: 220px;
	}
	
	.titlebar-h1 .title-text
	{
		padding: 0px 0px 0px 12px;
		bottom: -170px;
    width: 65%;
	}	

	.titlebar-h1 .title-text .heading
	{
		font-size: 22px;
		line-height: 26px;
	}

	.titlebar-h1 .title-text .sub-heading
	{
		font-size: 20px;
		line-height: 24px;
	}	
}

@media (min-width: 992px) 
{
	.titlebar
	{
		margin: 0px 0px 0px 0px;
		padding: 22px 0px 8px 0px;
		height: 160px;
	}
	
	.titlebar .title-text
	{
		padding: 0px 0px 0px 10px;
		bottom: -130px;
	}

	.titlebar .title-text .heading
	{
		font-size: 24px;
  	line-height: 27px;
	}

	
	.titlebar-h1
	{
		margin: 0px 0px 20px 0px;
		padding: 22px 0px 8px 0px;
		height: 280px;
	}
	
	.titlebar-h1 .title-text
	{
		padding: 0px 0px 0px 12px;
		bottom: -230px;
    width: 55%;
	}	

	.titlebar-h1 .title-text .heading
	{
		font-size: 25px;
		line-height: 32px;
	}

	.titlebar-h1 .title-text .sub-heading
	{
		font-size: 23px;
		line-height: 28px;
	}
}

@media (min-width: 1280px) 
{
	.titlebar-h1 .title-text
	{
    width: 46%;
	}	
	
	
}


/* -------------------------------------------------------------------------- */
/* PAGE CONTENT
/* -------------------------------------------------------------------------- */
.page-content
{
	padding: 0px 0px 0px 0px;
	overflow: hidden;
}

.page-content.no-border
{
	border: none;
}


/* -------------------------------------------------------------------------- */
/* SECTION TITLE
/* -------------------------------------------------------------------------- */
.section-title
{
	padding: 40px 0px 20px 0px;
	text-align: center;
	overflow: hidden;
}

.section-title h1,
.section-title h2
{
}

.section-title h3
{
	margin: 0px 0px 0px 0px;
}

.section-title .title-text p
{
	margin: 0px 0px 0px 0px;
}

@media (min-width: 560px) 
{
}


@media (min-width: 768px) 
{
}

@media (min-width: 992px) 
{
	.page-content .section-title
	{
		padding: 60px 0px 25px 0px;
		text-align: center;
	}
}

@media (min-width: 1280px) 
{
}


/* -------------------------------------------------------------------------- */
/* PAGE CONTENT HEADER
/* -------------------------------------------------------------------------- */
.page-content-header
{
	position: relative;
	margin: 0px 0px 0px 0px;
	color: #ffffff;
	height: 400px;
	background: #000000 no-repeat center center / cover
}

.page-content-header::after
{
	content: '';
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 40%;
	background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.85));
	z-index: 100;
}

.page-content-header .page-container
{
	height: 400px;
}

.page-content-header .page-header-text
{
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding: 0px 0px 50px 15px;
	z-index: 110;
	color: #ffffff;
}

.page-content-header .page-header-text p
{
	color: #FFFFFF;
	margin-bottom: 0px;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.page-content-header h3
{
	font-weight: 600;
	font-size: 46px; 
	line-height: 52px;
	margin: 0px 0px 10px 0px;	 
	color: #FFFFFF;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}


/* -------------------------------------------------------------------------- */
/* CONTENT TITLE
/* -------------------------------------------------------------------------- */
.page-content .content-title
{
	margin: 40px 0px 15px 0px;
	text-align: center;
}

.page-content .content-title h1,
.page-content .content-title h2
{
	margin: 0px 0px 0px 0px;	 
}

.page-content .content-title h3
{
	margin: 5px 0px 0px 0px;
	font-weight: 500;
	text-transform: none;
}

.page-content .content-title h4
{
	margin: 0px 0px 0px 0px;
	padding: 12px 0px 0px 0px;
	font-weight: 500;
	text-transform: none;
}

.page-content .content-title h5
{
	margin: 0px 0px 0px 0px;
	padding: 8px 0px 0px 0px;
	text-transform: none;
}


@media (min-width: 560px) 
{
}


@media (min-width: 768px) 
{
}

@media (min-width: 992px) 
{
	.page-content .content-title
	{
		margin: 50px 0px 20px 0px;
		text-align: center;
	}
}

@media (min-width: 1280px) 
{
}



/* -------------------------------------------------------------------------- */
/* CONTENT TEXT
/* -------------------------------------------------------------------------- */
.page-content .one-column
{
	text-align: justify;
}

.page-content .two-column
{
	text-align: justify;
  -webkit-columns: 2 300px;
     -moz-columns: 2 300px;
          columns: 2 300px;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
}

.page-content .one-column h3,
.page-content .one-column h4,
.page-content .one-column h5
{
	text-align: center;
}

.page-content .justify
{
	text-align: justify;
}

.page-content .left
{
	text-align: left;
}

.page-content .center
{
	text-align: center;
}

.page-content .content-text
{
	margin: 0px 0px 20px 0px;
}

.page-content .content-text ul
{
	list-style:none;
	margin: 0px 0px 20px 0px;
	padding: 0px 0px 0px 1px;
	overflow: hidden;
	text-align: left;
}

.page-content .content-text ul li
{
  background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='7' height='14' viewBox='0 0 256 512' xmlns='http://www.w3.org/2000/svg'><path d='M24.707 38.101L4.908 57.899c-4.686 4.686-4.686 12.284 0 16.971L185.607 256 4.908 437.13c-4.686 4.686-4.686 12.284 0 16.971L24.707 473.9c4.686 4.686 12.284 4.686 16.971 0l209.414-209.414c4.686-4.686 4.686-12.284 0-16.971L41.678 38.101c-4.687-4.687-12.285-4.687-16.971 0z' fill='%2399CE12'/></svg>") no-repeat 0px 7px transparent;
  list-style-type: none;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 1px 15px;
  vertical-align: middle;
}

.page-content .content-text table.cenik
{
	width: 100%;
  background: #fff;
	border: 1px solid #e5e5e5;
	margin: 0px 0px 20px 0px;
}

.page-content .content-text table.cenik thead tr
{
	font-weight: 600;
  color: var(--text-inverse);
	background: var(--main-color-1);
	border: 1px solid var(--main-color-1);
	
}

.page-content .content-text table.cenik thead tr td
{
  padding: 2px 10px 5px 10px;
}

.page-content .content-text table.cenik tbody tr td
{
  padding: 6px 10px 6px 10px;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	border-top: 1px solid #f1f1f1;
}

.page-content .content-text table.cenik tr:nth-child(even)
{
	background: #fff;
}

.page-content .content-text table.cenik tbody tr:hover,
.page-content .content-text table.cenik tbody tr:nth-child(even):hover
{
	/*
	background: rgba(44,48,66,0.1);
	*/
	background: rgba(100, 100, 100,0.05);
}

.page-content .content-text table.cenik .right
{
  text-align: right;
}



.page-content blockquote
{
	margin: 30px 0px 40px 0px;
	padding: 28px 25px 10px 40px;
	background: #e3ecf4;
	position: relative;
	font-style: italic;
	line-height: 24px;
	color: #000;
	border-left: 2px solid #b5d5f2;
}

.page-content blockquote::after
{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	left: 30px;
	bottom: -24px;
	border: 12px solid;
	border-color: #e3ecf4 transparent transparent #e3ecf4;
}

.content-button
{
	padding: 20px 0px 0px 0px;
	text-align: center;
}

.content-button a
{
	display: inline-block;
}

@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
	.page-content .one-column h3,
	.page-content .one-column h4,
	.page-content .one-column h5
	{
		text-align: left;
	}
}

@media (min-width: 992px) 
{
	.page-content .content-text
	{
		margin: 0px 0px 20px 0px;
	}	
}

@media (min-width: 1280px) 
{
}

@media (min-width: 1690px) 
{
}


/* -------------------------------------------------------------------------- */
/* CONTENT VIDEO
/* -------------------------------------------------------------------------- */




/* -------------------------------------------------------------------------- */
/* IMAGE GALLERY
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* INSTAGRAM FEED GALLERY
/* -------------------------------------------------------------------------- */




/* -------------------------------------------------------------------------- */
/* SERVICES GRID
/* -------------------------------------------------------------------------- */

.services-grid-section
{
	background: #EFEDEB;
	background: var(--main-color-1);
	padding: 10px 0px 30px 0px;
	margin: 0px 0px 20px 0px;
}

.services-grid
{
	margin: 0px 0px 10px 0px;
	overflow: hidden;
}

.services-grid .grid-item
{
	position: relative;
	margin: 20px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.services-grid .grid-item .grid-item-icon
{
	position: relative;
	text-align: center;
	width: 65px;
	height: 65px;
	margin: 0px auto 3px auto;
	overflow: hidden;
}

.services-grid .grid-item .grid-item-icon img
{
	position: absolute;
	top: 50%;
	left: 50%;
 	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-webkit-transition: all 0.2s ease 0.0s;
	transition: all 0.3s ease 0.0s;
	height: 93%;
	width: 93%;
}

.services-grid .grid-item:hover .grid-item-icon img
{
	height: 100%;
	width: 100%;
}

.services-grid .grid-item:hover
{
	/*
	box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.08);
	*/
}

.services-grid .grid-item .grid-item-text
{
	text-align: center;
	padding: 5px 15px 0px 15px;
	color: var(--text-inverse);
}

.services-grid .grid-item .grid-item-text p
{
	margin: 0px 0px 0px 0px;
}

.services-grid .grid-item .grid-item-text h4
{
	margin: 0px 0px 12px 0px;
	color: var(--text-inverse);
}

.services-grid .grid-item .grid-item-more
{
	padding: 5px 15px 15px 15px;
}


@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
}

@media (min-width: 992px) 
{
	.services-grid
	{
		margin: 0px 0px 0px 0px;
	}

	.services-grid .grid-item
	{
		margin: 35px 0px 15px 0px;
	}

	.services-grid .grid-item .grid-item-icon
	{
		width: 95px;
		height: 95px;
		margin: 0px auto 12px auto;
	}
}

@media (min-width: 1280px) 
{

}

@media (min-width: 1690px) 
{
}

/* -------------------------------------------------------------------------- */
/* SERVICES POST
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* SERVICES SIDEBAR
/* -------------------------------------------------------------------------- */




/* -------------------------------------------------------------------------- */
/* PREDSTAVITEV
/* -------------------------------------------------------------------------- */
.predstavitev
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
 background:linear-gradient(to bottom right,#e8e5e1,#f4f3ef)
}

.predstavitev a
{ 
	text-decoration: none; 
}

.predstavitev a:hover, 
.predstavitev a:focus
{
	outline: 0; 
	text-decoration: underline;
}	

.predstavitev .content-title
{
	padding: 0px 0px 10px 0px;
}


.predstavitev .content-title h5
{
	color: #222;
}

.predstavitev .screen-container
{
	overflow: hidden;
	margin: 0px 0px 0px 0px;
}

.predstavitev  .screen-container.no-margin
{
	margin: 0px 0px 0px 0px;
}

.predstavitev .btn-container
{
	padding: 5px 0px 20px 0px;
	text-align: center;
}

.predstavitev .text-container-left
{
	padding: 25px 20px 10px 20px;
}

.predstavitev .text-container-right
{
	padding: 35px 20px 10px 20px;
}

.predstavitev .image-container-left,
.predstavitev .image-container-right
{
	height: 40vw;
	min-height: 200px;
	overflow: hidden;
	display: none;
}


.predstavitev ul
{
	list-style:none;
	margin: 0px 0px 20px 0px;
	padding: 0px 0px 0px 1px;
	overflow: hidden;
	text-align: left;
}

.predstavitev ul li
{
  background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='18' height='18' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'><path d='M435.848 83.466L172.804 346.51l-96.652-96.652c-4.686-4.686-12.284-4.686-16.971 0l-28.284 28.284c-4.686 4.686-4.686 12.284 0 16.971l133.421 133.421c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-28.284-28.284c-4.686-4.686-12.284-4.686-16.97 0z' fill='%23DE3C2D'/></svg>") no-repeat -1px 5px transparent;
  list-style-type: none;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 25px;
}


.predstavitev-item
{
	position: relative;
	margin: 0px 0px 0px 0px;
	padding: 55px 10px 0px 10px;
}

.predstavitev-item h3
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
}

.predstavitev-item h3 span
{
	top: 10px;
	position: absolute;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 8px 0px;
	text-align: center;
	width: 40px;
	font-weight: 700;
	font-size: 36px;
	color: var(--main-color-1);
}


@media (min-width: 560px) 
{
	.predstavitev .image-container-left,
	.predstavitev .image-container-right
	{
		height: 40vw;
		min-height: 200px;
	}
}

@media (min-width: 768px) 
{
	.predstavitev .image-container-left,
	.predstavitev .image-container-right
	{
		height: 30vw;
		min-height: 350px;
	}
	
}

@media (min-width: 992px) 
{
	.predstavitev .content-title
	{
		padding: 0px 0px 15px 0px;
		text-align: left;
	}

	.predstavitev .btn-container
	{
		padding: 10px 0px 10px 0px;
		text-align: left;
	}

	.predstavitev .image-container-left,
	.predstavitev .image-container-right
	{
		background-size: cover;	
		background-position: right;
		display: block;
		height: initial;
	}

	.predstavitev .text-container-left
	{
		padding: 45px 40px 15px 15px;
	}

	.predstavitev .text-container-right
	{
		padding: 45px 15px 10px 40px;
	}

	.predstavitev .screen-container
	{
		min-height: 40vw;
		margin: 0px 0px 0px 0px;
	}
}

@media (min-width: 1280px) 
{
	.predstavitev h2
	{
	}

	.predstavitev .image-container-left,
	.predstavitev .image-container-right
	{
		background-size: cover;	
	}	
	
	.predstavitev .screen-container
	{
		min-height: 30vw;
		margin: 0px 0px 10px 0px;
	}
}

@media (min-width: 1690px) 
{
	.predstavitev .text-container-left
	{
		padding: 45px 40px 15px 15px;
	}

	.predstavitev .text-container-right
	{
		padding: 45px 15px 15px 40px;
	}

	.predstavitev .screen-container
	{
		min-height: 450px;
	}
}


/* ========================================================================== */
/* VIDEO GALLERY
/* ========================================================================== */
.video-gallery-bgr
{
	padding: 30px 0px 20px 0px;
	background: var(--antracit);
}

.video-gallery
{
	width: 100%;
	padding: 0px 0px 0px 0px;
	display: block;
	overflow: hidden;
}

.video-gallery .video-item
{
	margin: 0px 0px 10px 0px;
}

.video-gallery .video-item-frame
{
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.video-gallery .video-item-frame iframe
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* ========================================================================== */
/* IMAGE GALLERY
/* ========================================================================== */
.highlights-gallery-bgr
{
	margin: 30px 0px 10px 0px;
	padding: 30px 0px 40px 0px;
	background: var(--antracit);
}



.highlights-gallery-bgr .content-title
{
	padding: 0px 0px 10px 0px;
	margin: 5px 0px 10px 0px;
}

.highlights-gallery-bgr .content-title h1,
.highlights-gallery-bgr .content-title h2,
.highlights-gallery-bgr .content-title h4,
.highlights-gallery-bgr .content-title h5
{
  color: var(--footer-text);
}

.highlights-gallery
{
	width: 100%;
	padding: 0px 0px 0px 0px;
	display: block;
	overflow: hidden;
}

.highlights-gallery [class*="col-xs"],
.highlights-gallery [class*="col-sm"],
.highlights-gallery [class*="col-md"],
.highlights-gallery [class*="col-lg"],
.highlights-gallery [class*="col-xl"],
.highlights-gallery [class*="col-xxl"]
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.highlights-gallery .highlights-item
{
	position: relative;
}

.highlights-gallery .highlights-item-image
{
	position: relative;
  width: 100%;
	margin: 0px 0px 0px 0px;
	padding-bottom: 56%;
	float: left;
	overflow: hidden;	
	border: 2px solid var(--antracit);
}

.highlights-gallery .portrait-image
{
	padding-bottom: calc(112% + 4px);
}

.highlights-gallery .highlights-2col .highlights-item-image
{
  width: 50%;
	padding-bottom: 28%;
}

.highlights-gallery .highlights-item-image .image-crop
{
	position: absolute;
	content: " ";
	top: 50%;
	left: 50%;
	width: 101%;
	height: 101%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);

  background-size: cover;	
  background-repeat: no-repeat;
	background-position: center;
	display: block;
	background-color: #aaa; 
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}


.highlights-gallery .highlights-item-image .image-overlay
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background-color: rgba(180, 210, 100, 0.3);
	background-color: rgba(0, 0, 0, 0.3);
}

.highlights-gallery .highlights-item-image:hover .image-crop
{
	-webkit-transform: translate(-50%, -50%) scale(1.06); /* Safari and Chrome */
	-moz-transform: translate(-50%, -50%) scale(1.06); /* Firefox */
	-ms-transform: translate(-50%, -50%) scale(1.06); /* IE 9 */
	-o-transform: translate(-50%, -50%) scale(1.06); /* Opera */
	transform: translate(-50%, -50%) scale(1.06);
}

.highlights-gallery .highlights-item-image:hover .image-overlay
{
	height: 100%;
	opacity: 1;
}

.highlights-gallery .highlights-item-image .overlay-link
{
  position:absolute;
	top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}

.highlights-gallery .highlights-item-image .overlay-link .iconset
{
	font-size: 0px;
	fill: #fff;
	text-align: center;
	-webkit-transition: all 0.3s ease 0.3s;
	transition: all 0.3s ease 0.3s;
}

.highlights-gallery .highlights-item-image:hover .overlay-link .iconset
{
	font-size: 42px;
}






.highlights-gallery .hover-overlay
{
	position: relative;
}

.highlights-gallery .hover-overlay:before
{
	position: absolute;
	content:" ";
	background-color: rgba(0, 0, 0, 0.0);
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	opacity: 0;
  z-index: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}


.highlights-gallery .video-fullwidth
{
	position: relative;
  width: 100%;
	margin: 0px 0px 0px 0px;
	float: left;
	overflow: hidden;	
	border: 2px solid var(--antracit);
}

.highlights-gallery .highlights-item:hover .hover-overlay:before
{
	opacity: 1;
}

@media (min-width: 768px) 
{
	.highlights-gallery
	{
		padding: 0px 10px 0px 20px;
	}
}

@media (min-width: 992px) 
{
	.highlights-gallery .highlights-2col .highlights-item-image
	{
		width: 100%;
		padding-bottom: 56%;
	}
}

/* ========================================================================== */
/* PARTNER LOGOS CAROUSEL
/* ========================================================================== */
.partner-logos
{
	margin: 0px 0px 0px 0px;
	padding: 30px 0px 45px 0px;
	background: none;
	overflow: hidden;
}

.partner-logos img
{
	padding: 0px 5px 0px 5px;
}


/* ========================================================================== */
/* PORTFOLIO GRID
/* ========================================================================== */
.portfolio-grid,
.partner-grid
{
	margin: 0px 0px 0px 0px;
	position: relative;
	overflow: hidden;
}

.portfolio-grid-footer,
.partner-grid-footer
{
	margin: 0px 14px 40px 0px;
	padding: 0px 18px 0px 0px;
  display: block;
	text-align: right;
	position: relative;
}

.portfolio-grid-footer a,
.partner-grid-footer a
{
  color: var(--text);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.portfolio-grid-footer a:hover,
.partner-grid-footer a:hover
{
  color: var(--text);
}


.portfolio-grid-footer i,
.partner-grid-footer i
{
	position: absolute;
  color: var(--text);
	font-size: 1.1em;
	right: 0px;
	top: 0.25em;
}



.portfolio-grid .portfolio-grid-item,
.partner-grid .partner-grid-item
{
	margin: 10px 0px 10px 0px;
	padding: 0px 0px 0px 0px;
	border: 1px solid #e5e5e5;
	background: #fff;
	position: relative;
	overflow: hidden;
}


.portfolio-grid .portfolio-grid-item a:hover,
.partner-grid .partner-grid-item a:hover
{
	text-decoration: none;
}

.portfolio-grid .grid-item-icon
{
	background: var(--main-color-3) none repeat scroll 0 0;
	color: #fff;
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	line-height: 14px;
	padding: 18px 5px 5px;
	width: 42px;
	text-transform: uppercase;
	text-align: center;
	position: absolute;
	top: 0px;
	left: 20px;
	z-index: 100;
}

.portfolio-grid .grid-item-icon img
{
	width: 100%;
}

.portfolio-grid .grid-item-info
{
	font-size: 11px;
	color: #a5a5a5;
	color: var(--text);
	padding: 0px 15px 0px 12px;
	border-bottom: 1px solid #eaeaea;
}

.portfolio-grid .grid-item-info ul
{
	list-style:none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 1px;
	text-align: left;
	overflow: hidden;
}

.portfolio-grid .grid-item-info li
{
	padding: 6px 12px 3px 10px;
	position: relative;
	border-right: 1px solid #e5e5e5;
	float: left;
	overflow: hidden;
}

.portfolio-grid .grid-item-info li:last-child
{
	border-right: none;
	padding-right: 0px;
}

.portfolio-grid .grid-item-info .iconset
{
	height: 1.3em;
	position: relative;
	left: -6px;
	top: 1px;
	fill: var(--light-grey);
}


.portfolio-grid .grid-item-image
{
	position: relative;
  width: 100%;
	margin: 0px 0px 0px 0px;
	padding-bottom: 54%;
	border-bottom: 3px solid var(--main-color-1);
	overflow: hidden;	
}

.partner-grid .grid-item-image
{
	position: relative;
  width: 100%;
	margin: 0px 0px 0px 0px;
	padding-bottom: 45%;
	border-bottom: 1px solid #eaeaea;
	overflow: hidden;	
}

.portfolio-grid .item-price-1
{
	position: absolute;
	bottom: 0px;
	left: 0px;
	color: var(--text-inverse);
	background: var(--main-color-1);
	font-weight: 600;
	line-height: 30px;
	font-size: 18px;
	padding: 1px 20px 0px 24px;
	
}

.portfolio-grid .image-crop,
.partner-grid .image-crop
{
	position: absolute;
	content: " ";
	top: 50%;
	left: 50%;
	width: 101%;
	height: 101%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);

  background-size: cover;	
  background-repeat: no-repeat;
	background-position: center;
	display: block;
	background-color: #aaa; 
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.partner-grid .image-crop
{
	width: 80%;
	height: 80;
	background-color: #fff; 
  background-size: contain;	
}

.portfolio-grid .grid-item-image .image-overlay
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background-color: rgba(180, 210, 100, 0.3);
	background-color: rgba(0, 0, 0, 0.3);
}

.portfolio-grid .grid-item-image:hover .image-crop
{
	-webkit-transform: translate(-50%, -50%) scale(1.04); /* Safari and Chrome */
	-moz-transform: translate(-50%, -50%) scale(1.04); /* Firefox */
	-ms-transform: translate(-50%, -50%) scale(1.04); /* IE 9 */
	-o-transform: translate(-50%, -50%) scale(1.04); /* Opera */
	transform: translate(-50%, -50%) scale(1.04);
}

.portfolio-grid .grid-item-image:hover .image-overlay
{
	height: 100%;
	opacity: 1;
}

.portfolio-grid .grid-item-image .overlay-link
{
  position:absolute;
	top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}

.portfolio-grid .grid-item-image .overlay-link .iconset
{
	font-size: 0px;
	fill: var(--main-color-1);
	fill: #fff;
	text-align: center;
	-webkit-transition: all 0.3s ease 0.3s;
	transition: all 0.3s ease 0.3s;
}

.portfolio-grid .grid-item-image:hover .overlay-link .iconset
{
	font-size: 42px;
}


.portfolio-grid .grid-item-text,
.partner-grid .grid-item-text
{
	padding: 20px 25px 0px 24px;
	min-height: 160px;
	color: var(--text);
}

.portfolio-grid .grid-item-text h4
{
	font-weight: 600;
	margin-bottom: 15px;
}

.partner-grid .grid-item-text h3
{
	color: var(--main-color-1);
	font-weight: 600;
	font-size: 1.2em;
	line-height: 1.2em;
	text-transform: none;
	margin-bottom: 10px;
}

.portfolio-grid .grid-item-text a,
.partner-grid .grid-item-text a
{
  color: var(--text);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.portfolio-grid .grid-item-text a:hover,
.partner-grid .grid-item-text a:hover
{
  color: var(--black);
}



.portfolio-grid .grid-item-footer
{
	padding: 5px 25px 10px 24px;
	overflow: hidden;
	border-top: 1px none #e9e9e9;
	
}

.portfolio-grid .item-raiting
{
	float: left;
	padding: 2px 0px 0px 0px;
	color: #ddd;
}

.portfolio-grid .item-raiting .fas
{
	color: #FFA500;
}

.portfolio-grid .item-price
{
	float: right;
	color: var(--main-color-1);
	font-weight: 600;
	line-height: 30px;
	font-size: 20px;
}

.portfolio-grid .item-price span
{
	font-weight: 700;
	font-size: 24px;
	line-height: 24px;
	padding: 0px 0px 0px 5px;
}



@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
	.portfolio-grid .grid-item-info
	{
		font-size: 13px;
	}

	.portfolio-grid .grid-item-info li
	{
		padding: 6px 15px 3px 10px;
	}
}

@media (min-width: 992px) 
{
	.portfolio-grid .grid-item-info
	{
		font-size: 12px;
	}

	.portfolio-grid .grid-item-info li
	{
		padding: 6px 12px 3px 8px;
	}
}

@media (min-width: 1280px) 
{
	.portfolio-grid .grid-item-info
	{
		font-size: 13px;
	}

	.portfolio-grid .grid-item-info li
	{
		padding: 6px 15px 3px 13px;
	}
}

@media (min-width: 1690px) 
{
}


/* ========================================================================== */
/* PORTFOLIO POST
/* ========================================================================== */
.portfolio-post-page
{
	padding-top: 40px;
	padding-bottom: 45px;
}

.portfolio-post
{
	padding: 0px 0px 0px 0px;
}

.portfolio-post .titlebar
{
	position: relative;
  height: 350px;
	padding: 0px 0px 0px 0px;
}

.titlebar .page-container
{
	align-self: flex-end;
}

.portfolio-post .titlebar::before
{
	position: absolute;
	height: 45%;
	width: 100%;
	content: "";
	background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.0));
}


@media (min-width: 560px) 
{
	.portfolio-post .titlebar
	{
		height: 400px;
	}  	
}

@media (min-width: 768px) 
{
	.portfolio-post .titlebar
	{
		height: 450px;
	}  	
}

@media (min-width: 992px) 
{
	.portfolio-post .titlebar
	{
		height: 500px;
	}  	
}

@media (min-width: 1280px) 
{
	.portfolio-post .titlebar
	{
		height: 550px;
	}  	
}

@media (min-width: 1690px) 
{
	.portfolio-post .titlebar
	{
		height: 600px;
	}  	
}




.portfolio-post .titlebar-text
{
	padding: 0px 0px 0px 0px;
}

.portfolio-post .titlebar-text .titlebar-price
{
	padding: 10px 15px 10px 15px;
	color: var(--text-inverse);
	text-align: center;
	background: var(--main-color-1);
}

.portfolio-post .titlebar-text .titlebar-price .price
{
	font-size:24px;
	line-height: 30px;
	font-weight: 700;
	padding: 0px 0px 1px 0px;
	float: left;
}


.portfolio-post .titlebar-text .titlebar-price .price-dis
{
	font-size: 22px;
	font-weight: 300;
	line-height: 36px;
	padding: 3px 0px 0px 0px;
	float: right;
}

.portfolio-post .titlebar-text .titlebar-price .price-dis span
{
	font-weight: 300;
	text-decoration: line-through;
	padding: 0px 0px 0px 0px;
}




@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
	.portfolio-post .titlebar-text .titlebar-price
	{
		padding: 15px 20px 15px 20px;
	}
	
	.portfolio-post .titlebar-text .titlebar-price .price
	{
		font-size:28px;
		line-height: 36px;
	}
}

@media (min-width: 992px) 
{
}

@media (min-width: 1280px) 
{
}

@media (min-width: 1690px) 
{
}




.portfolio-post-page .booking-container
{
	overflow: hidden;
	padding: 0px 0px 0px 0px;
}

.portfolio-post .post-title
{
	margin: 0px 0px 10px 0px;
}


.portfolio-post .portfolio-post-info
{
	color: var(--text);
	padding: 10px 0px 10px 0px;
	border-bottom: 1px solid #ddd;
}

.portfolio-post .portfolio-post-info ul
{
	list-style: none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 1px;
	text-align: left;
	overflow: hidden;
}

.portfolio-post .portfolio-post-info li
{
	padding: 0px 25px 0px 8px;
	position: relative;
	float: left;
	overflow: initial;

}

.portfolio-post .portfolio-post-info li:last-child
{
	border-right: none;
	padding: 0px 0px 0px 0px;
}

.portfolio-post .portfolio-post-info .iconset
{
	height: 1.3em;
	position: relative;
	left: -7px;
	top: 1px;
	fill: var(--light-grey);
}

.portfolio-post table
{
	width: 100%;
	margin: 40px 0px 30px 0px;
}


.portfolio-post table td
{
	padding: 5px 5px 5px 5px;
}

.portfolio-post table tr
{
	border-top: 1px solid #ddd;
}


.portfolio-post table tr:last-child
{
	border-bottom: 1px solid #ddd;
}

.portfolio-post .list-true ul,
.portfolio-post .list-false ul
{
	list-style:none;
	margin: 0px 0px 0px 15px;
	padding: 3px 0px 3px 0px;
	text-align: left;
}

.portfolio-post .list-true ul li,
.portfolio-post .list-false ul li
{
	padding: 0px 0px 0px 5px;
	position: relative;
}

.portfolio-post .list-true ul li::before,
.portfolio-post .list-false ul li::before
{
  font-family: 'Font Awesome 5 Pro';
	font-weight: 600;
	font-size: 14px; 
  content: "\f054";
	top: 0px;
	left: -15px;
	position: absolute;
}

.portfolio-post .list-true ul li::before
{
	font-size: 13px; 
  content: "\f00c";
	color: #6EC924;
}

.portfolio-post .list-false ul li::before
{
  content: "\f00d";
	color: var(--main-color-1);
}

@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
}

@media (min-width: 992px) 
{
	
	.portfolio-post-page .booking-container
	{
		padding: 0px 0px 50px 0px;
	}
	
	.portfolio-post .portfolio-post-info li
	{
		padding: 0px 26px 0px 10px;
	}

	.portfolio-post .portfolio-post-info .iconset
	{
	}
}

@media (min-width: 1280px) 
{
}

@media (min-width: 1690px) 
{
}


/* -------------------------------------------------------------------------- */
/* BLOG/NEWS GRID
/* -------------------------------------------------------------------------- */
.blog-grid
{
	margin: 10px 0px 40px 0px;
	position: relative;
}

.blog-grid .blog-grid-footer
{
	margin: 20px 0px 0px 0px;
	padding: 15px 0px 0px 0px;
  border-top: 1px solid #e5e5e5;
	overflow: hidden;
}

.blog-grid .blog-grid-item
{
	margin: 0px 0px 15px 0px;
	padding: 0px 0px 0px 0px;
	border: 1px solid #e5e5e5;
	background: #fff;
	position: relative;
	overflow: hidden;
	border-radius: 3px;
  -webkit-box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.05);
}

.blog-grid.owl-carousel .blog-grid-item
{
	margin: 0px 0px 0px 0px;
}

.blog-grid .blog-grid-item a:hover
{
	text-decoration: none;
}

.blog-grid .blog-date
{
	background: var(--main-color-1) none repeat scroll 0 0;
	color: #fff;
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	line-height: 14px;
	padding: 28px 9px 6px;
	text-transform: uppercase;
	text-align: center;
	position: absolute;
	top: 0px;
	left: 20px;
	z-index: 100;
}

.blog-grid .blog-date strong
{
	color: #fff;
	font-size: 22px;
}


.blog-grid .grid-item-info
{
	font-size: 11px;
	color: #a5a5a5;
	color: var(--text);
	padding: 0px 15px 0px 12px;
	border-bottom: 1px solid #eaeaea;
}

.blog-grid .grid-item-info ul
{
	list-style:none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 1px;
	text-align: left;
	overflow: hidden;
}

.blog-grid .grid-item-info li
{
	padding: 6px 12px 3px 10px;
	position: relative;
	border-right: 1px solid #e5e5e5;
	float: left;
}

.blog-grid .grid-item-info li:last-child
{
	border-right: none;
	padding-right: 0px;
}

.blog-grid .grid-item-info .iconset
{
	font-size: 14px;
	fill: var(--main-color-1);
	margin: 0px 4px -2px 0px;
}

.blog-grid .grid-item-image
{
	position: relative;
  width: 100%;
	margin: 0px 0px 0px 0px;
	padding-bottom: 56%;
	border-bottom: 2px none var(--main-color-1);
	overflow: hidden;	
}

.blog-grid .image-crop
{
	position: absolute;
	content: " ";
	top: 50%;
	left: 50%;
	width: 101%;
	height: 101%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);

  background-size: cover;	
  background-repeat: no-repeat;
	background-position: center;
	display: block;
	background-color: #aaa; 
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.blog-grid .grid-item-image .image-overlay
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.8s ease;
	transition: all 0.8s ease;
	background-color: rgba(163, 139, 112, 0.2);
}

.blog-grid .grid-item-image:hover .image-crop
{
  -webkit-filter: grayscale(30%);
  filter: grayscale(30%);	
	-webkit-transform: translate(-50%, -50%) scale(1.03); /* Safari and Chrome */
	-moz-transform: translate(-50%, -50%) scale(1.03); /* Firefox */
	-ms-transform: translate(-50%, -50%) scale(1.03); /* IE 9 */
	-o-transform: translate(-50%, -50%) scale(1.03); /* Opera */
	transform: translate(-50%, -50%) scale(1.03);
}

.blog-grid .grid-item-image:hover .image-overlay
{
	height: 100%;
	opacity: 1;
}

.blog-grid .grid-item-image .overlay-link
{
  position:absolute;
	top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}

.blog-grid .grid-item-image .overlay-link .iconset
{
	font-size: 0px;
	fill: #fff;
	text-align: center;
	-webkit-transition: all 0.3s ease 0.3s;
	transition: all 0.3s ease 0.3s;
}

.blog-grid .grid-item-image:hover .overlay-link .iconset
{
	font-size: 42px;
}

.blog-grid .grid-item-text
{
	padding: 15px 25px 15px 24px;
	min-height: initial;
}

.blog-grid .grid-item-text p
{
	margin: 0px 0px 0px 0px;
}

.blog-grid .grid-item-text h4
{
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 27px;
}

.blog-grid .grid-item-text.ponudba
{
	padding: 10px 15px 8px 14px;
}


.blog-grid .grid-item-text.ponudba table
{
	width: 100%;
}

.blog-grid .grid-item-text.ponudba tr
{
	border-bottom: 1px solid #f5f5f5;
}

.blog-grid .grid-item-text.ponudba tr:last-child
{
	border-bottom: none;
}

.blog-grid .grid-item-text.ponudba td
{
	padding: 3px 0px 2px 10px;
}

.blog-grid .grid-item-text.ponudba .td-caption
{
	font-size: 14px;
	color: #999;
	width: 130px;
}

.blog-grid .grid-item-text.ponudba .td-value
{
}


.blog-grid .blog-grid-item.inactive .grid-item-info
{
	color: #bbb;
}

.blog-grid .blog-grid-item.inactive .grid-item-info .iconset
{
	fill: #ccc;
}

.blog-grid .blog-grid-item.inactive .grid-item-text.ponudba .td-caption
{
	color: #ccc;
}

.blog-grid .blog-grid-item.inactive .grid-item-text
{
	color: #ccc;
}


.blog-grid .grid-item-footer
{
	padding: 0px 25px 16px 24px;
	overflow: hidden;
}

.blog-grid .grid-item-footer.right
{
	text-align: right;
}


.blog-grid .grid-item-footer .read-more
{
	padding: 0px 5px 0px 0px;
	display: inline-block;
}

.blog-grid .grid-item-footer a
{
	color: var(--main-color-1);
}

.blog-grid .grid-item-footer .read-more:hover
{
  text-decoration: underline;
}

.blog-grid .grid-item-footer .edit,
.blog-grid .grid-item-footer .mail
{
	padding: 0px 0px 0px 0px;
	margin: 12px 0px 0px 0px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-webkit-appearance: none; /* 1 */
}

.blog-grid .grid-item-footer .edit:hover,
.blog-grid .grid-item-footer .mail:hover
{
	color: var(--main-color-1);
}

.blog-grid .grid-item-footer .edit .iconset
{
  font-size: 1.0em;
	fill: var(--text);
	fill: var(--main-color-1);
	margin: 0px 7px -3px 0px;
}

.blog-grid .grid-item-footer .mail .iconset
{
  font-size: 1.0em;
	fill: var(--text);
	fill: var(--main-color-1);
	margin: 0px 7px -4px 0px;
}

@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
	.blog-grid .grid-item-info
	{
		font-size: 13px;
	}

	.blog-grid .grid-item-info li
	{
		padding: 6px 15px 3px 10px;
	}
}

@media (min-width: 992px)
{

}

@media (min-width: 1280px) 
{
	.blog-grid .grid-item-info
	{
		font-size: 13px;
	}

	.blog-grid .grid-item-info li
	{
		padding: 6px 15px 3px 10px;
	}
}

@media (min-width: 1690px) 
{
}


.obvestila-carousel.blog-grid
{
	margin: 0px 0px 15px 0px
}


/* -------------------------------------------------------------------------- */
/* BLOG/NEWS POST
/* -------------------------------------------------------------------------- */
.blog-post-page
{
	padding: 0px 0px 0px 0px;
}

.blog-post
{
	margin: 40px 0px 45px 0px;
	overflow: hidden;
}

.blog-post .blog-date
{
	background: var(--main-color-1) none repeat scroll 0 0;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	padding: 56px 15px 8px;
	text-transform: uppercase;
	text-align: center;
	position: absolute;
	top: 0px;
	left: 20px;
	z-index: 100;
}

.blog-post .blog-date strong
{
	color: #fff;
	font-size: 32px;
}


.blog-post .blog-info
{
	font-size: 13px;
	padding: 10px 0px 10px 3px;
	border-bottom: 1px solid #ddd;
	margin: 0px 0px 15px 0px;
	overflow: hidden;
}

.blog-post .blog-info ul
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 1px;
	overflow: hidden;
}

.blog-post .blog-info ul li
{
	display: inline-block;
	padding: 0px 20px 0px 0px;
}

.blog-post .blog-info ul li::before
{
	display: none;
}

.blog-post .blog-info .iconset
{
	font-size: 14px;
	fill: var(--main-color-1);
	margin: 0px 6px -2px 0px;
}

.blog-post .blog-text
{
	margin: 0px 0px 0px 0px;
	padding: 20px 0px 0px 0px;
	text-align: left;
}


.blog-post .blog-text h3,
.blog-post .blog-text h4,
.blog-post .blog-text h5
{
	text-align: left;
}

.blog-post .blog-text .blog-header
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 35px 0px;
}

.blog-post .blog-text .blog-header h1
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}


.blog-post .blog-text .blog-header h5
{
	margin: 13px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	text-transform: none;
}


.blog-post .blog-text ul
{
	margin: 0px 0px 25px 0px;
	padding: 0px 0px 0px 1px;
	overflow: hidden;
}


{
	padding: 3px 0px 3px 20px;
	position: relative;
}


.blog-post .blog-text ul li
{
  background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='7' height='14' viewBox='0 0 256 512' xmlns='http://www.w3.org/2000/svg'><path d='M24.707 38.101L4.908 57.899c-4.686 4.686-4.686 12.284 0 16.971L185.607 256 4.908 437.13c-4.686 4.686-4.686 12.284 0 16.971L24.707 473.9c4.686 4.686 12.284 4.686 16.971 0l209.414-209.414c4.686-4.686 4.686-12.284 0-16.971L41.678 38.101c-4.687-4.687-12.285-4.687-16.971 0z' fill='%23DE3C2D'/></svg>") no-repeat 0px 7px transparent;
  list-style-type: none;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 1px 15px;
  vertical-align: middle;
}


.blog-post blockquote
{
	margin: 30px 0px 40px 0px;
	padding: 28px 25px 10px 40px;
	background: #e3ecf4;
	position: relative;
	font-style: italic;
	line-height: 24px;
	color: #000;
	border-left: 2px solid #b5d5f2;
}

.blog-post blockquote::after
{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	left: 30px;
	bottom: -24px;
	border: 12px solid;
	border-color: #e3ecf4 transparent transparent #e3ecf4;
}


.blog-post .blog-gallery,
.portfolio-post .portfolio-gallery
{
	padding: 11px 0px 0px 0px;
	margin: 0px 0px 0px -3px;
	width: calc(100% + 6px);
	overflow: hidden;
}

.portfolio-post .portfolio-gallery
{
	padding: 11px 0px 25px 0px;
}

.blog-post .gallery-item,
.portfolio-post .gallery-item
{
	position: relative;
	width: 50%;
	padding: 0px 3px 0px 3px;
	margin: 0px 0px 6px 0px;
	float: left;
}

.portfolio-post .gallery-item.double-width
{
	width: 100%;
}

.portfolio-post .gallery-item.double-width .gallery-thumb
{
	padding-bottom: 27.4%;
}

.blog-post .blog-image,
.blog-post .gallery-thumb,
.portfolio-post .portfolio-image,
.portfolio-post .gallery-thumb
{
  width: 100%;
	margin: 0px 0px 0px 0px;
	padding-bottom: 56%;
	border: 1px solid #ddd;
	position: relative;
	overflow: hidden;	
}

.portfolio-post .portfolio-image.original
{
	padding-bottom: 0px;
}


.blog-post .blog-image .image-crop,
.blog-post .gallery-thumb .thumb-crop,
.portfolio-post .portfolio-image .image-crop,
.portfolio-post .gallery-thumb .thumb-crop
{
	position: absolute;
	content: " ";
	top: 50%;
	left: 50%;
	width: 101%;
	height: 101%;
  background-repeat: no-repeat;
	background-position: center;
	display: block;
	background-color: #aaa; 
  background-size: cover;	
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}


.blog-post .blog-image .image-overlay,
.blog-post .gallery-thumb .thumb-overlay,
.portfolio-post .portfolio-image .image-overlay,
.portfolio-post .gallery-thumb .thumb-overlay
{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(180, 210, 100, 0.3);
	background-color: rgba(0, 0, 0, 0.3);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	opacity: 0;
}

.blog-post .blog-image:hover .image-crop,
.portfolio-post .portfolio-image:hover .image-crop
{
  -webkit-filter: grayscale(10%);
  filter: grayscale(10%);	
	-webkit-transform: translate(-50%, -50%) scale(1.02); /* Safari and Chrome */
	-moz-transform: translate(-50%, -50%) scale(1.02); /* Firefox */
	-ms-transform: translate(-50%, -50%) scale(1.02); /* IE 9 */
	-o-transform: translate(-50%, -50%) scale(1.02); /* Opera */
	transform: translate(-50%, -50%) scale(1.02);
}

.blog-post .gallery-thumb:hover .thumb-crop,
.portfolio-post .gallery-thumb:hover .thumb-crop
{
  -webkit-filter: grayscale(10%);
  filter: grayscale(10%);	
	-webkit-transform: translate(-50%, -50%) scale(1.06); /* Safari and Chrome */
	-moz-transform: translate(-50%, -50%) scale(1.06); /* Firefox */
	-ms-transform: translate(-50%, -50%) scale(1.06); /* IE 9 */
	-o-transform: translate(-50%, -50%) scale(1.06); /* Opera */
	transform: translate(-50%, -50%) scale(1.06);
}

.blog-post .blog-image:hover .image-overlay,
.blog-post .gallery-thumb:hover .thumb-overlay,
.portfolio-post .portfolio-image:hover .image-overlay,
.portfolio-post .gallery-thumb:hover .thumb-overlay
{
	height: 100%;
	opacity: 1;
}

.blog-post .blog-image .overlay-link,
.blog-post .gallery-thumb .overlay-link,
.portfolio-post .portfolio-image .overlay-link,
.portfolio-post .gallery-thumb .overlay-link
{
  position:absolute;
	top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}

.blog-post .blog-image .overlay-link .iconset,
.blog-post .gallery-thumb .overlay-link .iconset,
.portfolio-post .portfolio-image .overlay-link .iconset,
.portfolio-post .gallery-thumb .overlay-link .iconset
{
	font-size: 0px;
	fill: var(--main-color-1);
	fill: #fff;
	text-align: center;
	-webkit-transition: all 0.3s ease 0.3s;
	transition: all 0.3s ease 0.3s;
}

.blog-post .gallery-thumb:hover .overlay-link .iconset,
.portfolio-post .gallery-thumb:hover .overlay-link .iconset
{
	font-size: 28px;
}

.blog-post .blog-image:hover .overlay-link .iconset,
.portfolio-post .blog-image:hover .overlay-link .iconset
{
	font-size: 42px;
}

.attachments,
.blog-post-attachments,
.portfolio-post-attachments
{
	margin: 40px 0px 0px 0px;
	padding: 20px 0px 0px 0px;
	border-top: 1px solid #ddd;
}


.attachments a,
.blog-post-attachments a,
.portfolio-post-attachments a
{
	color: #444;
}

.attachments .attachments-item,
.blog-post-attachments .attachments-item,
.portfolio-post-attachments .attachments-item
{
	position: relative;
	overflow: hidden;
	margin: 0px 0px 7px 0px;
	display: block;
}

.attachments .attachments-item .iconset,
.blog-post-attachments .attachments-item .iconset,
.portfolio-post-attachments .attachments-item .iconset
{
	height: 1.6em;
	width: 1.6em;
	position: relative;
	fill: var(--main-color-1);
	fill: #e24526;
	left: 1px;
	margin: 0px 10px -2px -1px;
}

.attachments .attachments-item .iconset.word,
.blog-post-attachments .attachments-item .iconset.word,
.portfolio-post-attachments .attachments-item .iconset.word
{
	fill: #1757bb;
}

.attachments .attachments-item .iconset.excel,
.blog-post-attachments .attachments-item .iconset.excel,
.portfolio-post-attachments .attachments-item .iconset.excel
{
	fill: #2e935d;
}

@media (min-width: 560px) 
{
	.blog-post .gallery-item
	{
		width: 33.333%;
	}
	.portfolio-post .gallery-item
	{
		width: 25%;
	}
	.portfolio-post .gallery-item.double-width
	{
		width: 50%;
	}
}

@media (min-width: 768px) 
{
	.blog-post .blog-text
	{
		text-align: justify;
	}	
}

@media (min-width: 992px)
{
	
	.blog-post-page,
	.portfolio-post-page
	{
		padding: 30px 0px 40px 0px;
	}
	
	.blog-post .blog-gallery,
	.portfolio-post .blog-gallery
	{
		margin: 0px 0px 0px -5px;
		width: calc(100% + 10px);
	}

	.blog-post .gallery-item,
	.portfolio-post .gallery-item
	{
		padding: 0px 5px 0px 5px;
		margin: 0px 0px 10px 0px;
	}
}

@media (min-width: 1280px)
{

}

@media (min-width: 1690px) 
{
}



/* -------------------------------------------------------------------------- */
/* BLOG SIDEBAR
/* -------------------------------------------------------------------------- */
.blog-sidebar
{
	padding: 0px 0px 20px 0px;
}

.blog-sidebar .blog-sidebar-header
{
	margin: 0px 0px 25px 0px;
}

.blog-sidebar .blog-sidebar-item
{
	margin: 0px 0px 40px 0px;
	padding: 0px 0px 0px 50px;
	position: relative;
	overflow: hidden;
}

.blog-sidebar .blog-sidebar-item p
{
	margin: 0px 0px 0px 0px;
}

.blog-sidebar a
{
	color: var(--text);
	text-decoration: none;
}

.blog-sidebar a:hover
{
	text-decoration: none;
}



.blog-sidebar .blog-date
{
	background: var(--main-color-1) none repeat scroll 0 0;
	color: #fff;
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	line-height: 15px;
	padding: 12px 0px 6px;
	text-transform: uppercase;
	text-align: center;
	width: 36px;
	position: absolute;
	top: 3px;
	left: 0px;
	z-index: 100;
}

.blog-sidebar .blog-date strong
{
	color: #fff;
	font-size: 20px;
}


.blog-sidebar .blog-sidebar-item .sidebar-item-text
{
	float: left;
}

.blog-sidebar h3
{
	margin-bottom: 5px;
	padding: 0px 0px 0px 0px;
	text-transform: uppercase;
	position: relative;
}

.blog-sidebar .blog-sidebar-list h5
{
}

.blog-sidebar .blog-sidebar-list h5 a
{
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.blog-sidebar .blog-sidebar-list h5 a:hover
{

}


.blog-sidebar .sidebar-item-image
{
	position: relative;
  width: 100%;
	margin: 0px 0px 0px 0px;
	padding-bottom: 56%;
	border-bottom: 3px none var(--main-color-1);
	overflow: hidden;	
}

.blog-sidebar .blog-sidebar-item .image-crop
{
	position: absolute;
	content: " ";
	top: 50%;
	left: 50%;
	width: 101%;
	height: 101%;
  background-repeat: no-repeat;
	background-position: center;
	display: block;
	background-color: #aaa; 
  background-size: cover;	
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.blog-sidebar .sidebar-item-image .image-overlay
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background-color: rgba(0, 0, 0, 0.2);
}

.blog-sidebar .sidebar-item-image:hover .image-crop
{
	-webkit-transform: translate(-50%, -50%) scale(1.06); /* Safari and Chrome */
	-moz-transform: translate(-50%, -50%) scale(1.06); /* Firefox */
	-ms-transform: translate(-50%, -50%) scale(1.06); /* IE 9 */
	-o-transform: translate(-50%, -50%) scale(1.06); /* Opera */
	transform: translate(-50%, -50%) scale(1.06);
}

.blog-sidebar .sidebar-item-image:hover .image-overlay
{
	height: 100%;
	opacity: 1;
}

.blog-sidebar .sidebar-item-image .overlay-link
{
  position:absolute;
	top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}

.blog-sidebar .sidebar-item-image .overlay-link i
{
	font-size: 0px;
	color: #fff;
	text-align: center;
	-webkit-transition: all 0.3s ease 0.3s;
	transition: all 0.3s ease 0.3s;
}

.blog-sidebar .sidebar-item-image:hover .overlay-link i
{
	font-size: 30px;
}


.blog-sidebar .blog-sidebar-list
{
	overflow: hidden;
}

.blog-sidebar .blog-sidebar-list .blog-info
{
	padding: 0px 0px 0px 1px;
	margin: 0px 0px 0px 0px;
	color: #aaa;
	font-size: 12px;
}

.blog-sidebar .blog-sidebar-list .blog-info i
{
	font-size: 14px;
	color: var(--main-color-1);
	margin: 0px 6px 0px 0px;
}


@media (min-width: 768px) 
{
	.blog-sidebar
	{
		padding: 36px 0px 0px 0px;
	}
}

@media (min-width: 992px) 
{
	.blog-sidebar
	{
		padding: 36px 0px 0px 0px;
	}
}



/* -------------------------------------------------------------------------- */
/* EVENTS
/* -------------------------------------------------------------------------- */
.events-grid
{
	margin: 0px 0px 0px 0px;
	padding: 25px 0px 0px 0px;
	position: relative;
	overflow: hidden;
	border-top: 1px solid #eaeaea;
}

.events-grid .events-grid-item
{
	margin: 0px 0px 25px 0px;
	padding: 0px 0px 5px 0px;
	border-bottom: 1px solid #eaeaea;
	background: none;
	position: relative;
	overflow: hidden;
}

.events-grid .events-grid-item:first-child
{
}


.events-grid .event-date
{
	background: var(--main-color-1) none repeat scroll 0 0;
	color: #fff;
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	line-height: 16px;
	padding: 10px 9px 6px;
	text-transform: uppercase;
	text-align: center;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 100;
}

.events-grid .event-date strong
{
	color: #fff;
	font-size: 22px;
}

.events-grid .grid-item-text
{
	padding: 0px 15px 0px 60px;
}

.events-grid .grid-item-text h4
{
	font-size: 24px; 
	line-height: 29px;   
	margin: -1px 0px 6px 0px;
	padding: 0px 0px 0px 0px;
}

.events-grid .grid-item-text h5
{
	color: var(--dark-grey);
	font-weight: 400;
	font-size: 15px; 
	line-height: 18px; 
	margin-bottom: 12px;
}


/* -------------------------------------------------------------------------- */
/* TEAM
/* -------------------------------------------------------------------------- */
.team
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 20px 0px;
}

.team .team-item 
{
	margin: 0px 0px 30px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
	border: 1px none #ddd;
	background: linear-gradient(rgba(200, 200, 188, 0.8), rgba(250, 250, 240, 0.0));
	background: none;
}


.team .team-item .team-image
{
	position: relative;
	width: 120px;
	height: 160px;
	margin: 0px auto 0px auto;
	overflow: hidden;
	border-bottom: 3px none var(--main-color-1);
}


.team .team-item .team-image img
{
	position: absolute;
	padding: 0px 0px 0px 0px;
	display: block;
	width: 100%;
	max-width: initial;
	left: 50%;
	transform: translate(-50%, 0%);
	-webkit-transform: translate(-50%, 0%);
	transition: all 0.5s ease 0.2s;
}


.team .team-item .team-text
{
	margin: 0px 0px 0px 0px;
	padding: 10px 0px 0px 0px;
	text-align: center;
}

.team .team-item .team-text a
{
	color: var(--text);
}

.team .team-item .team-text h4
{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 15px; 
	line-height: 20px; 
	margin: 0px 0px 0px 0px;
	text-transform: uppercase;
}

.team .team-item .team-text h5
{
	font-family: 'Cairo', sans-serif;
	font-weight: 400;
	font-size: 14px; 
	line-height: 20px; 
	margin: 0px 0px 7px 0px;
	text-transform: none;
	color: #999;
}

@media (min-width: 992px) 
{
	.team .team-item .team-text
	{
		margin: 0px 0px 0px 0px;
		padding: 10px 0px 0px 1px;
	}

	.team .team-item .team-text h4
	{
		font-size: 17px; 
		line-height: 22px; 
		margin: 0px 0px 0px 0px;
	}
}	


/* -------------------------------------------------------------------------- */
/* SERVICES SIDEBAR
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* PREDSTAVITEV
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* CONTACT PAGE
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* GOOGLE MAPS
/* -------------------------------------------------------------------------- */
#gmap
{
	border-top: 1px solid #e5e3df;
	height: 550px;
	background-color: #e5e3df;
	margin-bottom: 0px;
}


/* -------------------------------------------------------------------------- */
/* FOOTER
/* -------------------------------------------------------------------------- */
.footer
{
	margin: 0px 0px 0px 0px;
	padding: 20px 0px 40px 0px;
	color: var(--footer-text);
	background: var(--main-color-1);
	background: var(--footer-bgr);
	position: relative;
}

.footer a,
.footer a:active
{
	color: var(--footer-text);
	text-decoration: none;
  -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.footer a:hover
{
	color: var(--text-inverse);
	cursor: pointer;
	text-decoration: none;
}

.footer .footer-logo
{
}

.footer .footer-logo img
{
	width: 200px;
	margin: 30px 0px 20px 0px;
	padding: 0px 22px 0px 0px;
}	

.footer .footer-intro
{
	padding: 0px 40px 0px 0px;
}	

.footer .footer-intro p
{
	margin: 0px 0px 0px 0px;
}	

.footer .footer-podpis
{
}

.footer .footer-podpis img
{
	width: 220px;
	margin: 10px 0px 0px -5px;
	padding: 0px 0px 0px 0px;
}	

.footer h4
{
	font-size: 18px; 
	line-height: 24px;
	color: var(--text-inverse);
	padding: 39px 0px 16px 0px;
	margin: 0px 0px 0px 0px;
	position: relative;
}

.footer p
{
	padding: 6px 0px 0px 0px;
}

.footer ul
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.footer ul li
{
  background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='6' height='12' viewBox='0 0 256 512' xmlns='http://www.w3.org/2000/svg'><path d='M24.707 38.101L4.908 57.899c-4.686 4.686-4.686 12.284 0 16.971L185.607 256 4.908 437.13c-4.686 4.686-4.686 12.284 0 16.971L24.707 473.9c4.686 4.686 12.284 4.686 16.971 0l209.414-209.414c4.686-4.686 4.686-12.284 0-16.971L41.678 38.101c-4.687-4.687-12.285-4.687-16.971 0z' fill='%23fff'/></svg>") no-repeat 0px 7px transparent;
  list-style-type: none;
  margin: 0;
  padding: 0px 0px 1px 15px;
  vertical-align: middle;
}


.footer .footer-contact-text p
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 20px;
	position: relative;	
}

.footer .footer-contact-text .iconset
{
	width: 0.8em;
	position: absolute;
	left: 0px;
	top: 5px;
	fill: var(--footer-text);
}


.footer .footer-blog-list
{

}

.footer .footer-blog-list .footer-blog-item
{
	padding: 8px 0px 0px 0px;
}

.footer .footer-blog-list .footer-blog-item h5
{
	color: var(--footer-text);
	font-weight: 500;
	font-size: 15px;
	line-height: 20px;
	margin-bottom: 8px;
  -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.footer .footer-blog-list a:hover h5
{
	color: var(--text-inverse);
	cursor: pointer;
	text-decoration: none;
}

.footer .footer-blog-list .blog-date,
.footer .footer-blog-list a:hover .blog-date
{
	color: var(--dark-grey);
	font-size: 12px;
	line-height: 15px;
}


@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
	.footer-banner
	{
		font-size: 26px;
		line-height: 34px;
		text-align: left;
	}

	.footer
	{
		text-align: left;
	}

	.footer .footer-logo
	{
		text-align: left;
	}

	.footer .footer-logo img
	{
		width: 90px;
		margin: 20px 0px 12px 0px;
		padding: 0px 22px 0px 0px;
	}	
	
	.footer .footer-intro
	{
		padding: 0px 10px 0px 0px;
	}	
	
	.footer .footer-podpis img
	{
		width: 220px;
		margin: 15px 0px 0px -5px;
		padding: 0px 0px 0px 0px;
	}		
}

@media (min-width: 992px) 
{
	.footer .footer-intro
	{
		padding: 0px 20px 0px 0px;
	}
	
	.footer .footer-podpis img
	{
		width: 200px;
		margin: 15px 0px 0px -5px;
		padding: 0px 0px 0px 0px;
	}		
}

@media (min-width: 1280px) 
{
	.footer .footer-podpis img
	{
		width: 240px;
		margin: 15px 0px 0px -5px;
		padding: 0px 0px 0px 0px;
	}		
}

@media (min-width: 1690px) 
{
}



/* -------------------------------------------------------------------------- */
/* FOOTER COPYRIGHT
/* -------------------------------------------------------------------------- */
.footer-copyright
{
	background: var(--black);
	color: #ddd;
	font-size:11px;
	text-transform: none;
	width: 100%;
	margin: 0px 0px 0px 0px;
	padding: 10px 0px 8px 0px;
	text-align: center;	
}

.copyright-text
{
	padding: 0px 15px 0px 15px;
	text-align: center;
}

.copyright-author
{
	width: 75px;
	display: inline-block;
}

.footer-copyright a
{
	text-decoration: none;
	color: var(--footer-text);
}

.footer-copyright a:hover
{
	text-decoration: none;
	color: var(footer-text);
}


.footer-copyright p
{
	margin: 0px 0px 0px 0px;
	text-align: center;
}

@media (min-width: 768px) 
{
	.copyright-text
	{
		text-align: left;
		float: left;
	}
	
	.copyright-author
	{
		float: right;
	}
}










/* -------------------------------------------------------------------------- */
/* BUTTONS
/* -------------------------------------------------------------------------- */
.btn
{ 
	font-size: 15px;
	line-height: 21px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	display: inline-block;		
	color: var(--btn-txt);
	background: var(--btn-bgr);
	border: 1px solid var(--btn-brd);
	margin: 0px 0px 0px 0px;
	padding: 11px 30px 12px;
	min-width: 150px;
	outline: none;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-appearance: none; /* 1 */
	border-radius: 3px;
	cursor: pointer;
}
	
.btn:focus
{
	outline: 0;
	text-decoration: none;
}

.btn:hover
{ 
	color: var(--btn-hover-txt);
	background: var(--btn-hover-bgr);
	border: 1px solid var(--btn-hover-brd);
}

.btn-wide
{
	padding-left: 50px;
	padding-right: 50px;
}

@media (min-width: 560px) 
{
	.btn-wide
	{
		padding-left: 80px;
		padding-right: 80px;
	}
}


.btn-full-width
{
	width:100%;
	display:block;
}


.btn-slider
{ 
	font-weight: 500;
	color: #fff;
	background: var(--main-color-1);
	border: 1px solid var(--main-color-1);
	margin: 0px 0px 0px 0px;
	padding: 11px 20px 12px 20px;
	min-width: 150px;
	outline: none;
}

.rev-slider-btn-white .btn-slider
{ 
	font-weight: 600;
	margin: 0px 0px 0px 0px;
	padding: 11px 20px 13px 20px;
	color: var(--btn-white-txt);
	background: var(--btn-white-bgr);
	border: 1px solid var(--btn-white-brd);
	outline: none;
}

.rev-slider-btn-white:hover .btn-slider
{ 
	font-weight: 600;
	margin: 0px 0px 0px 0px;
	padding: 11px 20px 13px 20px;
	color: var(--btn-white-txt);
	background: var(--btn-white-hover-bgr);
	border: 1px solid var(--btn-white-brd);
	outline: none;
}

/* -------------------------------------------------------------------------- */
/* CONTACT SECTION
/* -------------------------------------------------------------------------- */

.podjetje-podatki table
{
	margin: 30px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	width: 100%;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.podjetje-podatki .td-caption,
.podjetje-podatki .td-value
{
	border-bottom: 1px solid #ddd;
}

.podjetje-podatki tr:last-child
{
	border-bottom: none;
}

.podjetje-podatki td
{
}

.podjetje-podatki .td-caption
{
	width: 33.33%;
	text-align: left;
	color: var(--dark-grey);
	padding: 10px 10px 10px 3px;
}

.podjetje-podatki .td-value,
.podjetje-podatki .td-value a
{
	font-weight: 400;
	text-align: left;
	color: var(--text);
	padding: 10px 10px 10px 3px;
}

.podjetje-podatki .td-value em
{
	font-style: normal;
	font-weight: 300;
	font-size: 0.85em;
}

.podjetje-podatki .td-value p
{
	margin: 0px 0px 0px 0px;
}


@media (min-width: 560px) 
{
	.podjetje-podatki li
	{
		font-size: 14px;
	}

	.podjetje-podatki li strong
	{
		font-size: 16px;
	}
}



.contact-section
{
	padding: 60px 0px 60px 0px;
	background: center top url("../img/contact_section_bgr.jpg");
	background-size: cover;
}

.contact-section h3
{
	font-size: 20px; 
	line-height: 26px;
	margin-bottom: 20px; 
}


.contact-section h4
{
	font-size: 17px; 
	line-height: 22px;   
	margin: 0px 0px 8px 0px;
	padding: 0px 0px 0px 0px;
}


.contact-section .contact-container
{
	overflow: hidden;
	background: none;
	display: block;
	margin: 0px 10px 0px 10px;
}

.contact-section .contact-text
{
	width: 100%;
	padding: 30px 30px 30px 30px;
}

.contact-section .contact-text p
{
	padding: 0px 0px 0px 24px;
	margin: 0px 0px 0px 0px;
	position: relative;
}

.contact-section .contact-text .iconset
{
	width: 1em;
	position: absolute;
	left: 0px;
	top: 4px;
	fill: var(--main-color-1);
}


.contact-section .contact-form
{
	width: 100%;
	padding: 30px 30px 30px 30px;
	color: var(--text-inverse);
	background: var(--main-color-1);
}

.contact-section .contact-form h3
{
	color: var(--text-inverse);
}

.contact-section .contact-form .btn
{
  background: var(--btn-black-bgr);
  border: var(--btn-black-brd);
  color: var(--btn-black-txt);
}

.contact-section .contact-form .btn:hover
{
  background: var(--btn-black-hover-bgr);
  border: var(--btn-black-hover-brd);
  color: var(--btn-black-hover-txt);
	
}


@media (min-width: 560px) 
{
	.contact-section
	{
		padding: 60px 0px 60px 0px;
	}
	
	.contact-section h3
	{
		font-size: 28px; 
		line-height: 36px;
		margin-bottom: 24px; 
	}
	
	.contact-section .contact-text
	{
		padding: 45px 50px 40px 50px;
	}

	.contact-section .contact-form
	{
		padding: 45px 50px 30px 50px;
	}
}

@media (min-width: 768px) 
{
	.contact-section
	{
		padding: 80px 0px 80px 0px;
	}

	.contact-section .contact-container
	{
		display: -ms-flex;
		display: -webkit-flex;
		display: flex;
	}

	.contact-section .contact-text
	{
		width: 50%;
		padding: 30px 30px 30px 30px;
		flex:1; 
	}

	.contact-section .contact-form
	{
		width: 50%;
		padding: 30px 30px 30px 30px;
		flex:1; 
	}
}

@media (min-width: 992px)
{
	.contact-section
	{
		padding: 100px 0px 100px 0px;
		margin-bottom: -50px;
	}

	.contact-section .contact-text
	{
		padding: 45px 50px 20px 50px;
	}

	.contact-section .contact-form
	{
		padding: 45px 50px 30px 50px;
	}
}

@media (min-width: 1280px) 
{

}

@media (min-width: 1690px) 
{
}


/* -------------------------------------------------------------------------- */
/* CONTACT FORM
/* -------------------------------------------------------------------------- */
.contact-form select,
.contact-form input[type="text"],
.contact-form textarea
{
	font-weight: 600;
	line-height: 24px;
	width:100%;
	background: none;
	color: var(--text-inverse);
	border: none;
	border-bottom: 1px solid rgba(255,255,255,0.8);
	outline: none;
	display: block;		
	margin-bottom: 5px;
	padding: 10px 10px 3px 3px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-appearance: none; /* 1 */
}

.contact-form textarea
{
	height: 38px;
	max-width: 100%;
	padding: 8px 10px 1px 3px;
	resize: none;
	line-height: 26px;
	border-bottom: none;
	margin-bottom: 0px;
	overflow: none;
}

.contact-form .textarea-wrap
{
	overflow: hidden;
	padding: 4px 0px 1px 0px;
	border-bottom: 1px solid rgba(255,255,255,0.8);
	overflow-y: none;
}

.contact-form input[type="text"]:focus
{
	border-bottom: 1px solid rgba(255,255,255,0.8);
}

.contact-form .input-wrapper
{
	position: relative;
}

.contact-form input.input-error,
.contact-form .selectize-control .input-error ,
.contact-form .selectize-input.input-error 
{
  background-color: rgba(255,255,255,0.5);
	/*
	background-color: #f97a82;
	*/
	color: #fc431e;
}

.contact-form .input-error-text
{
	position: absolute;
	font-size: 11px; 
	line-height: 14px; 
	color: #EA532A;
	height: 14px;
	margin: 0px 0px 0px 2px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	bottom: -15px;
	left: 1px;
}

.contact-form .notes
{
	font-size: 11px; 
	line-height: 14px; 
	color: var(--text-inverse);
	margin: 8px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.contact-form .notes p
{
	margin: 0px 0px 0px 2px;
	padding: 0px 0px 0px 0px;
}


.contact-form .notes a
{
	color: var(--text-inverse);
  text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/* CONTACT FORM - PLACEHOLDER
/* -------------------------------------------------------------------------- */
.contact-form ::-webkit-input-placeholder
{ /* Chrome/Opera/Safari */
	font-weight: 400;
	color: var(--text-inverse);
}
.contact-form ::-moz-placeholder
{ /* Firefox 19+ */
	font-weight: 400;
	color: var(--text-inverse);
}
.contact-form :-ms-input-placeholder
{ /* IE 10+ */
	font-weight: 400;
	color: var(--text-inverse);
}
.contact-form :-moz-placeholder
{ /* Firefox 18- */
	font-weight: 400;
	color: var(--text-inverse);
}
.contact-form ::-moz-placeholder
{
  opacity: 1;
}




/* ========================================================================== */
/* LOGIN
/* ========================================================================== */
#login
{
	color: var(--text);
	background: #111;
	background: no-repeat center center fixed url("../img/bgr_login.jpg");
	background-size: cover;
}

#login p
{
	font-size: 16px;
	text-align: left;
	color: var(--color-text-1);
}

#login h3
{
	text-align: left;
	color: var(--color-text-1);
}

#login .login-logo
{
	width: 100%;
	margin: -30px 0px 35px 0px;
	display: block;
}

#login .login-logo img
{
	width: 150px;
}


#login .login-wrap
{
  position: absolute; 
  top: 40%;
  left: 50%;
	background: none;
	width: 100%;
	overflow: hidden;
	padding: 50px 30px 50px 30px;
	z-index: 1;
	transform: translate(-50%, -40%);
	-webkit-transform: translate(-50%, -40%);
}

#login .login-frame
{
	width: 100%;
	margin: 0 auto;
	padding: 30px 40px 20px 40px;
	background: rgba(255, 255, 255, 1.0);
	background: #f2f2f2;
	box-shadow: 0px 0px 40px 0px rgba(255, 255, 255, 0.2);
	border-radius: 3px;
}

#login #post-response
{
	position: relative;
	display: block;
	margin: 0px 0px 20px 0px;
	padding: 15px 15px 15px 2px;
	line-height: 17px;
  border-radius: 0px;
}


#login #post-response.response-error
{
	padding: 10px 0px 0px 2px;
	color: #666;
	color: #e55763;
	font-size: 13px;
	line-height: 16px;

}

#login #post-response.response-error .iconset
{
	fill: #ffca2d; /* yellow */
	fill: #e55763; /* red */
	font-size: 15px;
	line-height: 15px;
	margin: 0px 6px -3px 0px;
}

#login form
{
	padding: 0px 0px 0px 0px;
}

#login .form-buttons
{
	padding: 10px 0px 0px 0px;
}

#login .input-group
{
	margin-top: 15px;
	position: relative;
	border-collapse: initial;
  display: block;
	overflow: hidden;
}



#login .input-group-icon
{
	position: absolute;
	height: 100%;
	top: 14px;
	left: 9px;
	z-index: 1000;
}

#login .input-group-icon .iconset
{
	fill: #A9CA4B;
	text-align: center;
	width: 22px;
}

#login input[type="text"],
#login input[type="password"]
{
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
	padding: 10px 0px 12px 40px;
	border: 1px solid #BBBBBB;
	background: #fff;
}

#login input[type="text"]:focus,
#login input[type="password"]:focus
{
	border: 1px solid #BBB;
	outline: 0;		
	background: #fff;
}

#login .forgot-password
{
	font-size: 14px;
	float: right;
	padding: 51px 0px 0px 0px;
}

#login .forgot-password a
{
	color: rgba(0,0,0,0.4);
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#login .forgot-password a:hover
{
	color: rgba(0,0,0,0.7);
}

#login .footer
{
	text-align: center;
	color: rgba(0,0,0,0.3);
	font-size: 12px;
	position: fixed;
	bottom: 30px;
	height: 30px;
	width: 100%;
	margin: 0px auto 0px auto;
	padding: 5px 0px 5px 0px;
	z-index: 0;
}

#login .btn
{ 
	font-weight: 600;
	font-size: 16px;
	color: var(--btn-txt);
	background-color: var(--btn-bgr);
	padding: 11px 25px 12px 25px; 
	margin: 10px 5px 20px 0px;
	display: inline-block;
	text-transform: uppercase;
	text-decoration: none !important;
	cursor: pointer;
	border-radius: 3px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#login a.btn
{
	color: #fff;
}

#login .btn:focus
{
	outline: 0;
	color: var(--btn-hover-txt);
}

#login .btn:hover
{ 
	color: var(--btn-hover-txt);
	background-color: var(--btn-hover-bgr);
}



@media (min-width: 480px)
{
	#login .login-frame
	{
		width: 430px;
	}
}

#login .notes .iconset
{
	color: #ffca2d; /* yellow */
	fill: #e55763; /* red */
	font-size: 14px;
	line-height: 17px;
  padding: 0px 0px 0px 0px;
  margin: 0px 5px -2px 0px;
}

#login .notes
{
	color: #777;
	font-size: 13px;
	line-height: 17px;
	padding: 10px 0px 0px 2px;
}

#login .notes strong
{
	font-weight: 600;
}


/* -------------------------------------------------------------------------- */
/* BOOKING CALENDAR
/* -------------------------------------------------------------------------- */
.booking-calendar
{
	width: 100%;
	overflow: hidden;
	margin: 20px 0px 5px 0px;
}

.calendar-week
{
	width: 100%;
	overflow: hidden;
	border: 1px solid #666;
}

.calendar-day
{
	width: 100%;
	overflow: hidden;
	float: initial;
	border-top: 1px solid #666;
	border-right: none;
}

.calendar-day:first-child
{
	border-top: none;
}


.calendar-day:last-child
{
	border-right: none;
}

.calendar-day-head
{
	text-align: center;
	border-bottom: 1px solid #999;
	padding: 8px 0px 8px 0px;
	background-color: #f2f1ef;
}

.calendar-day-head .day-name
{
	font-weight: 700;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 16px;
	margin: 0px 0px 5px 0px;
}

.calendar-day-head .date
{
	font-size: 13px;
	line-height: 13px;
}

.calendar-day-slot
{
	color: #666;
	background-color: #fff;
	font-size: 10px;
	line-height: 12px;
	border-bottom: 1px solid #ccc;
	padding: 2px 0px 0px 3px;
	height: var(--slot-height);
	cursor: pointer;
	position: relative;
}

.calendar-day-slot.past
{
	color: #ddd;
	border-bottom: 1px solid #e5e5e5;
	cursor: no-drop;
}

.calendar-day-slot:nth-child(even)
{
	border-bottom: 1px dotted #ddd;
}

.calendar-day-slot:last-child
{
	border-bottom: none;
}

.slot-booking
{
	color: #313d0d;
	font-size: 12px;
	line-height: 15px;
	padding: 3px 3px 3px 3px;
	position: absolute;
	top: -1px;
	left: 0px;
	width: 100%;
	height: calc(var(--slot-height) + 1px);
	background-color: rgba(197, 224, 130,0.8);
	border: 2px solid #a1bf56;
	opacity: 1;
	z-index: 1;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.slot-booking.locked
{
	cursor: no-drop;
}

.calendar-day-slot.past .slot-booking
{
	color: #abafa1;
	background-color: rgba(235, 239, 225, 0.6);
	border: 1px solid #d8dbce;
	border-top: 2px solid #d8dbce;
	border-bottom: 2px solid #d8dbce;
}

.slot-overlay
{
	position: absolute;
	top: -1px;
	left: 0px;
	width: 100%;
	height: calc(var(--slot-height) + 1px);
	opacity: 0;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	background-color: rgba(136, 182, 28,0.1);
	border: 2px solid #c1d68d;
}

.slot-booking.slot-1
{
	height: calc(var(--slot-height) + 1px);
}

.slot-booking.slot-2
{
	height: calc(2 * var(--slot-height) + 1px);
}

.slot-booking.slot-3
{
	height: calc(3 * var(--slot-height) + 1px);
}

.slot-booking.slot-4
{
	height: calc(4 * var(--slot-height) + 1px);
}

.slot-booking.slot-5
{
	height: calc(5 * var(--slot-height) + 1px);
}

.slot-booking.slot-6
{
	height: calc(6 * var(--slot-height) + 1px);
}

.slot-booking.slot-7
{
	height: calc(7 * var(--slot-height) + 1px);
}

.slot-booking.slot-8
{
	height: calc(8 * var(--slot-height) + 1px);
}

.slot-booking.slot-9
{
	height: calc(9 * var(--slot-height) + 1px);
}

.slot-booking.slot-10
{
	height: calc(10 * var(--slot-height) + 1px);
}

.slot-booking.slot-11
{
	height: calc(11 * var(--slot-height) + 1px);
}

.slot-booking.slot-12
{
	height: calc(12 * var(--slot-height) + 1px);
}

.slot-booking.slot-13
{
	height: calc(13 * var(--slot-height) + 1px);
}

.slot-booking.slot-14
{
	height: calc(14 * var(--slot-height) + 1px);
}

.slot-booking.slot-15
{
	height: calc(15 * var(--slot-height) + 1px);
}

.slot-booking.slot-16
{
	height: calc(16 * var(--slot-height) + 1px);
}

.slot-booking.slot-17
{
	height: calc(17 * var(--slot-height) + 1px);
}

.slot-booking.slot-18
{
	height: calc(18 * var(--slot-height) + 1px);
}

.slot-booking.slot-19
{
	height: calc(19 * var(--slot-height) + 1px);
}

.slot-booking.slot-20
{
	height: calc(20 * var(--slot-height) + 1px);
}

.slot-booking.slot-21
{
	height: calc(21 * var(--slot-height) + 1px);
}

.slot-booking.slot-22
{
	height: calc(22 * var(--slot-height) + 1px);
}

.slot-booking.slot-23
{
	height: calc(23 * var(--slot-height) + 1px);
}

.slot-booking.slot-24
{
	height: calc(24 * var(--slot-height) + 1px);
}



.calendar-day-slot:hover .slot-overlay
{
	opacity: 1;
}

@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
}

@media (min-width: 992px) 
{
	.calendar-day
	{
		border-top: none;
	}

	.calendar-day
	{
		width: 20%;
		float: left;
		border-right: 1px solid #999;
	}
}

@media (min-width: 1280px) 
{

}

@media (min-width: 1690px) 
{
}






/* ========================================================================== */
/* ONLINE FORMS
/* ========================================================================== */
.online-form
{
	width: 100%;
	
}

.online-form .notes
{
	font-size: 13px; 
	line-height: 16px; 
	color: #777;
	margin: 15px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

.online-form .form-footer
{
	width: 100%;
	margin: 25px 0px 12px 0px;
	padding: 0px 0px 0px 0px;
}

.online-form .form-label-wrap
{
	width: 100%;
	height: 16px;
	margin: 0px 0px 0px 0px;
}

.online-form .form-input-wrap
{
	width: 100%;
	display: block;
	margin: 3px 0px 0px 0px;
	height: 42px;
}

.online-form .label,
.online-form .error-msg
{
	color: var(--text);
	font-size: 0.9em;
	line-height: 0.9em;
	margin: 0px 12px 0px 0px;
	display: initial;
	font-weight: normal;
	padding: 0px 0px 0px 0px;
	text-align: left;
	vertical-align: baseline;
	white-space: nowrap;	
	text-transform: none;
	float: left;
}

.online-form .required:after
{
	content: "*";
	color: #EA532A;
	font-size: 14px;
	line-height: 10px;
}

.online-form .error-msg
{
	color: #EA532A;
}


.online-form input[type=text],
.online-form input[type=password],
.online-form select,
.online-form textarea,
.online-form textarea
{
	font-size: 1em;
	line-height: 1.4em;
	color: var(--text);
	font-family: 'Open Sans', Arial, sans-serif;
	padding: 7px 6px 8px 9px;
	margin: 0px 0px 0px 0px;
	border: 1px solid #999;
}

.online-form input[type=text]:focus,
.online-form input[type=password]:focus,
.online-form select:focus,
.online-form textarea:focus,
.online-form textarea:focus
{
	outline: 0;		
	border: 1px solid #666;
}

.online-form input[type=text].input-error,
.online-form input[type=password].input-error,
.online-form .selectize-control.input-error .selectize-input,
.online-form .selectize-input.input-error
{
	border: 1px solid #f1b29d;
  background-color: #fef2ee;
}





/* -------------------------------------------------------------------------- */
/* AUTOCOMPLETE STYLES IN CHROME
/* -------------------------------------------------------------------------- */
input:-webkit-autofill
{
	border: 2px none #5A5556 !important;
	background: #5A5556 !important;
  -webkit-text-fill-color: green !important;
  -webkit-box-shadow: none !important;
}



/* -------------------------------------------------------------------------- */
/* FORM SELECT - SELECTIZE DROP DOWN
/* -------------------------------------------------------------------------- */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder
{
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
}
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after
{
  content: '!';
  visibility: hidden;
}
.selectize-control.plugin-drag_drop .ui-sortable-helper
{
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.selectize-dropdown-header
{
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
}

.selectize-dropdown-header-close
{
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
  font-size: 14px !important;
}
.selectize-dropdown-header-close:hover
{
  color: #000000;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup
{
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child
{
  border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before
{
  display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header
{
  border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value]
{
  position: relative;
  padding-right: 24px !important;
}

.selectize-control.plugin-remove_button [data-value] .remove
{
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #d0d0d0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover
{
  background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button [data-value].active .remove 
{
  border-left-color: #cacaca;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover
{
  background: none;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove
{
  border-left-color: #ffffff;
}

.selectize-control
{
  position: relative;
}

.selectize-dropdown,
.selectize-input,
.selectize-input input
{
  line-height: inherit;
  font-size: inherit;
  font-family: inherit;
  -webkit-font-smoothing: inherit;
}

.selectize-dropdown
{
}

.selectize-input,
.selectize-control.single .selectize-input.input-active
{
  background: #ffffff;
  cursor: text;
  display: inline-block;
}

.selectize-input
{
	font-size: 1em;
	line-height: 1.4em;
	margin: 0px 0px 0px 0px;
	padding: 7px 6px 8px 9px;
	display: inline-block;
	border: 1px solid #999;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
	-webkit-transition: all 0.0s ease-in-out;
	-o-transition: all 0.0s ease-in-out;
	transition: all 0.0s ease-in-out;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	border-radius: 0px;
}

.selectize-control.multi .selectize-input.has-items
{
}

.selectize-input.full
{
  background-color: #ffffff;
}

.selectize-input.disabled,
.selectize-input.disabled *
{
  cursor: default !important;
}

.selectize-input.focus
{
}

.selectize-input.dropdown-active
{
}

.selectize-input > * 
{

}

.selectize-control.multi .selectize-input > div
{
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 1px none #d0d0d0;
}

.selectize-control.multi .selectize-input > div.active
{
  background: #e8e8e8;
  color: var(--text);
  border: 1px none #cacaca;
}

.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active
{
  color: #7d7d7d;
  background: #ffffff;
  border: 0 solid #ffffff;
}

.selectize-input > input
{
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 2px 0 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  display: none !important;
}

.selectize-input > input::-ms-clear
{
  display: none;
}

.selectize-input > input:focus
{
  outline: none !important;
}

.selectize-input::after
{
  content: ' ';
  display: block;
  clear: left;
}

.selectize-input.dropdown-active::before
{
  content: ' ';
  display: block;
  position: absolute;
  background: #fff;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

.selectize-dropdown
{
  position: absolute;
  z-index: 20;
  border: 1px solid #999;
	color: var(--text);
  background: #ffffff;
  margin: 0px 0px 0px 0px;
  border-top: 1px none #999;

  border-radius: 0px 0px 0px 0px;
  -webkit-box-shadow: 0px 3px 6px 3px #fff;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow:    0px 3px 6px 3px #fff;  /* Firefox 3.5 - 3.6 */
  box-shadow:         0px 3px 6px 3px #fff;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
 
 -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-dropdown [data-selectable]
{
  cursor: pointer;
  overflow: hidden;
}

.selectize-dropdown [data-selectable] .highlight
{
  background: rgba(125, 168, 208, 0.3);
}

.selectize-dropdown [data-selectable],
.selectize-dropdown .optgroup-header
{
  padding: 3px 10px;
}

.selectize-dropdown .optgroup:first-child .optgroup-header
{
  border-top: 0 none;
}

.selectize-dropdown .optgroup-header
{
  color: #303030;
  background: #ffffff;
  cursor: default;
}

.selectize-dropdown .active
{
  background-color: var(--main-color-1);
  color: #fff;	
}

.selectize-dropdown .active.create
{
  color: #495c68;
}

.selectize-dropdown .create
{
  color: rgba(48, 48, 48, 0.5);
}

.selectize-dropdown-content
{
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input
{
  cursor: pointer;
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input
{
  cursor: text;
	border: 1px solid #666;
}

.selectize-control.single .selectize-input:after
{
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  right: 3px;
  margin: -3px 8px 0px 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 7px 0 7px;
  border-color: #888 transparent transparent transparent;
}

.selectize-control.single .selectize-input.dropdown-active:after
{
  margin: -3px 8px 0px 0px;
  border-width: 0 7px 7px 7px;
  border-color: transparent transparent #888 transparent;
}

.selectize-control.rtl.single .selectize-input:after
{
  left: 15px;
  right: auto;
}

.selectize-control.rtl .selectize-input > input
{
  margin: 0 4px 0 -2px !important;
}

.selectize-control .selectize-input.disabled
{
  opacity: 0.5;
  background-color: #fafafa;
}


/* -------------------------------------------------------------------------- */
/* FORM SELECT - CUSTOM SELECT
/* -------------------------------------------------------------------------- */
/* The container must be positioned relative: */
.custom-select
{
  position: relative;
}

.custom-select select
{
  display: none; /*hide original SELECT element: */
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected
{
	padding: 10px 10px 10px 15px;
  cursor: pointer;
  border-top: 1px solid rgba(0,0,0,0.15);
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}


.select-selected
{
  background-color: #fff;
  border: 1px solid #888;
	margin-bottom: 10px;
	border-radius: 3px;
}

/* Style the arrow inside the select element: */
.select-selected:after
{
  position: absolute;
  content: "";
  top: 20px;
  right: 12px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-color: #aaa transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after
{
  border-color: transparent transparent #aaa transparent;
  top: 9px;
}


.select-selected.select-placeholder
{
	color: #ccc;
}

/* Style items (options): */
.select-items
{
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border: 1px solid #888;
  border-top: none;
  border-radius: 0px 0px 3px 3px;
  -webkit-box-shadow: 0px 3px 6px 3px #fff;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow:    0px 3px 6px 3px #fff;  /* Firefox 3.5 - 3.6 */
  box-shadow:         0px 3px 6px 3px #fff;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

.select-option
{
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.select-option:first-child
{
  border-top: none;
}

.select-option:last-child
{
}

/* Hide the items when the select box is closed: */
.select-hide
{
  display: none;
}

.same-as-selected
{
	background: #BAF1F2;
}

.select-items div:hover
{
	background: #01C3CC;
	color: #fff;	
}












/* -------------------------------------------------------------------------- */
/* FLEX CONTAINER
/* -------------------------------------------------------------------------- */
.flex-container
{
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
}

.flex-content
{
	flex:1; 
}


/* -------------------------------------------------------------------------- */
/* FIX za anchor linke zaradi stalnega headerja
/* -------------------------------------------------------------------------- */
:target::before
{
    content: "";
    display: block;
    height: 120px; 
    margin: -120px 0 0; 
}


/* -------------------------------------------------------------------------- */
/* TEXT ALIGN
/* -------------------------------------------------------------------------- */
.align-center
{
	text-align: center;
}


/* -------------------------------------------------------------------------- */
/* NO-PADDING NO-MARGIN
/* -------------------------------------------------------------------------- */
.no-padding
{
	padding: 0px !important;
}

.no-margin
{
	margin-bottom: 0px !important;
}

.no-border
{
	border: none !important;
}



/* ======================================================================================================================================================= */
/* BREAKPOINTS
/* ======================================================================================================================================================= */
@media (min-width: 560px) 
{
}

@media (min-width: 768px) 
{
}

@media (min-width: 992px) 
{
}

@media (min-width: 1280px) 
{
}

@media (min-width: 1690px) 
{
}

/* ======================================================================================================================================================= */
/* no blue select background on mobile devices
/* ======================================================================================================================================================= */
.mobile-no-sel
{
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mobile-no-sel:focus
{
	outline: none !important;
}



/*=================================================================================================================*/
/* The Modal (background)
/*=================================================================================================================*/
.modal
{
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 9001;
	padding-top: 0px; /* Location of the box */
	left: 0;
	top: 0px;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	color: #3C4046;
	backdrop-filter: blur(3px);
	overflow: scroll; /* Enable scroll if needed */
}

.modal .hidden
{
	display: none;
}

.modal h3
{
	color: var(--text-inverse);
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	font-size: 16px;
	line-height: 37px;	
	text-transform: none;
}


/* Modal Content */
.modal-content
{
	position: absolute;
	background-color: var(--background);
	background-color: #fff;
	background-color: #F9F8F6;
	margin: 0px auto 10px auto;
	padding: 0px 0px 0px 0px;
	border: 1px solid #888;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
	-webkit-animation-name: fadeIn;
	-webkit-animation-duration: 0.4s;
	animation-name: fadeIn;
	animation-duration: 0.4s;
	width: calc(100% - 20px);
	top: 10px;
	left: 50%;
	-webkit-transform: translate(-50%); /* Safari and Chrome */
	-moz-transform: translate(-50%); /* Firefox */
	-ms-transform: translate(-50%); /* IE 9 */
	-o-transform: translate(-50%); /* Opera */
	transform: translate(-50%);
}

@keyframes fadeIn
{
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes fadeIn
{
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Add Animation */
@-webkit-keyframes animatetop
{
	from {top:-300px; opacity:0} 
	to {top:0; opacity:1}
}

@keyframes animatetop
{
	from {top:-300px; opacity:0}
	to {top:0; opacity:1}
}

/* The Close Button */
.close
{
	float: right;
	font-size: 26px;
	line-height: 31px;
	text-align: center;
	background: none;
	height: 37px;
	width: 56px;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
}

.close:hover,
.close:focus
{
	color: #fff;
	background: #de3c2d;
	text-decoration: none;
	cursor: pointer;
}

.modal-header
{
	padding: 0px 0px 0px 16px;
	background-color: #F9F8F6;
  color: var(--text-inverse);
	background-color: var(--main-color-1);
	border-bottom: 1px none #666;
	height: 38px;
}

.modal-body
{
	padding: 20px 16px 10px 16px;
}

.modal-footer
{
	padding: 0px 16px 8px 16px;
	border-top: 1px none #c5c5c5;
	overflow: hidden;
	text-align: right;
}


.modal .modal-footer-wrapp
{
	width: 100%;
	text-align: left;
	overflow: hidden;
}

.modal .modal-btn-wrapp
{
	width: 100%;
	padding: 5px 0px 0px 0px;
	text-align: right;
	overflow: hidden;
}

.modal .delete
{
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 10px 2px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-webkit-appearance: none; /* 1 */
	float: left;
}

.modal .delete:hover
{
	color: var(--main-color-1);
}

.modal .delete .iconset
{
  font-size: 0.9em;
	fill: var(--main-color-1);
	margin: 0px 7px -2px 0px;
}

.modal .btn
{
	margin: 0px 0px 10px 10px;
	padding: 7px 0px 8px 0px;
  background: var(--btn-trans-bgr);
  border:  1px solid var(--btn-trans-brd);
  color: var(--btn-trans-txt);
	cursor: pointer;
	min-width: 130px;
	text-transform: none;
	font-weight: 500; 
}

.modal .btn:hover
{
	background: var(--btn-trans-hover-bgr);
  border:  1px solid var(--btn-trans-hover-brd);
  color: var(--btn-trans-hover-txt);
}

.modal .option-opt-wrap
{
	overflow: hidden;
	padding: 16px 0px 0px 0px;
	margin: 0px 0px -16px 0px;
}

@media (min-width: 560px) 
{
	.modal-content
	{
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -55%); /* Safari and Chrome */
		-moz-transform: translate(-50%, -55%); /* Firefox */
		-ms-transform: translate(-50%, -55%); /* IE 9 */
		-o-transform: translate(-50%, -55%); /* Opera */
		transform: translate(-50%, -55%);
	}
	
	
	.modal .modal-footer-wrapp
	{
		float: left;
		width: initial;
	}
	
	.modal .modal-btn-wrapp
	{
		float: right;
		width: initial;
	}
}

@media (min-width: 768px) 
{
	.modal-content
	{
	  margin: 0px auto;
		width: 640px;
	}	
}

@media (min-width: 992px) 
{
}

@media (min-width: 1280px) 
{
}

@media (min-width: 1690px) 
{
}
