@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700,900&display=swap');
@import url('https://use.typekit.net/raq8rdd.css');


@font-face {
  font-family: 'icomoon';
  src:  url('/fonts/icomoon.eot?qmfqn1');
  src:  url('/fonts/icomoon.eot?qmfqn1#iefix') format('embedded-opentype'),
    url('/fonts/icomoon.ttf?qmfqn1') format('truetype'),
    url('/fonts/icomoon.woff?qmfqn1') format('woff'),
    url('/fonts/icomoon.svg?qmfqn1#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

:root {
	--color-blue: #091B50;
	--color-mint: #2664d1;
	--color-red: #FF7A7A;
}


a {
	color:var(--color-blue);
}

*:focus {
    outline: none;
}

:focus {
  outline-color: transparent !important;
  outline-style: none !important;
}

textarea:focus, input:focus{
    outline: none;
}

input:focus { outline: none !important; }


[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-company:before {
  content: "\e900";
  color: #999;
}
.icon-user:before {
  content: "\e901";
  color: rgba(0, 0, 0, 0.3);
}


@media (min-width: 1200px) {
  .container {
    max-width: 1430px;
  }
}



*:focus {
    outline: none;
}

.form-control:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

select.form-control, textarea.form-control, input.form-control { 
}


.toast-success {
  background-color: var(--color-green);
}

.katalog-grid {
		display:grid;
		grid-template-columns: repeat( auto-fit, minmax(350px, 1fr) );
		grid-gap: 1rem;
		margin-bottom: 1rem;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size:14px;
	background: #F5F5F5;
	color:var(--color-blue);
}

header {
	height:84px;
	background:#fff;
	font-size: 15px;
	letter-spacing: 0;
	color: rgba(9, 27, 80, 1);
}

header a {
	text-align: center;
	color: rgba(9, 27, 80, 1);
}

header > .container .row {
	height:84px;
}

.mobile-menu-trigger {
	font-size:25px;
	cursor:pointer;
	color:var(--color-blue);
}

.mobile-menu-trigger:hover {
	cursor:pointer;
	color:var(--color-mint);
}

#mobile-top-menu {
	display:none;
	color:var(--color-mint);
	font-family: 'Open Sans';
	font-size:15px;
	font-weight: 600;
	letter-spacing: 0;
	width:100%;
	background: var(--color-blue);
	margin-bottom:1em;
	border-top:solid 2px var(--color-mint);
}

#mobile-top-menu a {
	color:white;
	text-decoration: none;
	padding-left:10px;
	display:inline-block;
	width:100%;
	padding-top:20px;
	padding-bottom:20px;
	height:60px;
}

#mobile-top-menu a:active,
#mobile-top-menu a:hover {
	color:var(--color-blue);
}

#mobile-top-menu > div:nth-child(1) {
	padding:20px 0 20px 0;
}

#mobile-top-menu > div {
	padding:0px 0 0px 0;
	border-bottom:solid 2px var(--color-mint);
	cursor:pointer;
}

#mobile-top-menu > div:hover {
	background:var(--color-mint);
	border-bottom:solid 2px var(--color-blue);
}

#top-menu {
	display:flex;
	justify-content: space-around;
	align-items:stretch;
	text-align: center;
	font-family: 'Open Sans';
	font-size:15px;
	font-weight: 600;
	letter-spacing: 0;
	color: rgba(9, 27, 80, 1);
	height:84px;
}

@media (max-width: 1000px) {
	.container {
	    max-width: 98%;
	}

	header .main-menu {
	}

	header .main-menu > div:nth-child(2) {
		width:350px;
	}

	header .main-menu > div:nth-child(1) {
	}

}

#top-menu div {
	align-self: center;
	padding-top:32px;
	border-bottom:solid 7px transparent;
	-webkit-transition:1s all ease-in-out;
	-moz-transition:1s;
	-o-transition:1s;
	-ms-transition:1s;
	transition:1s;
	height:84px;
}

#top-menu div:hover {
	border-bottom:solid 7px var(--color-mint);
	-webkit-transition:1s all ease-in-out;
	-moz-transition:1s;
	-o-transition:1s;
	-ms-transition:1s;
	transition:1s;
}

#top-menu div.active {
	border-bottom:solid 7px var(--color-mint);
	-webkit-transition:1s all ease-in-out;
	-moz-transition:1s;
	-o-transition:1s;
	-ms-transition:1s;
	transition:1s;
}


#top-menu div a {
	-webkit-transition:.7s all ease-in-out;
	-moz-transition:.7s;
	-o-transition:.7s;
	-ms-transition:.7s;
	transition:.7s;
	display:inline-block;
	height:100%;
}

#top-menu div:hover a {
	text-decoration: none;
	color:var(--color-mint);
	-webkit-transition:.7s all ease-in-out;
	-moz-transition:.7s;
	-o-transition:.7s;
	-ms-transition:.7s;
	transition:.7s;

}

header .main-menu {
	display:grid;
	grid-template-columns: 2fr 6fr 4fr;
	grid-template-rows: 84px;
	align-items:center;
}

header .main-menu > div:nth-child(1) {
	padding-left:15px;
}


header #mobile-top-menu {
	display:none;
	color:var(--color-blue);
	font-size:22px;
}

header #mobile-top-menu:hover {
	color:var(--color-mint);
}

@media only screen and (max-width: 992px) {

	header .main-menu {
		display:grid;
		grid-template-columns: 4fr 2fr 6fr;
		grid-template-rows: 77px;
		align-items:center;
	}

	header #mobile-top-menu {
		display:block;
		text-align:center;
		color:var(--color-blue);
		font-size:22px;
		cursor:pointer;
	}

}




header .main-icons {
	display:flex;
	justify-content: flex-end;
}

header .main-icons .icon {
	background: var(--color-mint);
	color:var(--color-blue);
	border-radius:20px;
	padding-top:6px;
	width:40px;
	height:40px;
	text-align:center;
	font-size:17px;
	margin-left:.5em;
	position:relative;
}

header .main-icons .icon2 {
	background: var(--color-mint);
	color:var(--color-blue);
	border-radius:20px;
	padding-top:6px;
	width:40px;
	height:40px;
	text-align:center;
	font-size:17px;
	margin-left:.5em;
	position:relative;
}


header .main-icons .icon2:hover {
	background: var(--color-blue);
	color:var(--color-mint);
	border-radius: 0;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	background: linear-gradient(to bottom,  var(--color-mint) 0%, var(--color-blue) 60%);

}


header .main-icons .icon .cart-badge {
	position:absolute;
	top:-5px;
	right:-7px;
	width:20px;
	height:20px;
	font-size:10px;
	border-radius:50%;
	padding-top:2px;
	background:var(--color-blue);
	color:var(--color-mint);
	font-weight:700;

}

header .main-icons .icon a:hover {
	color:var(--color-mint);
}

header .main-icons .icon:hover .cart-badge {
	background:var(--color-mint);
	color:var(--color-blue);
}

header .main-icons .icon:hover a {
	color:var(--color-mint);
}

header .main-icons .search {
	height: 40px;
	border-radius:20px;
	background: #F2F2F2 0% 0% no-repeat padding-box;
	display:grid;
	grid-template-columns: 1fr 50px;
}

header .main-icons .search input[type=text] {
	background:transparent;
	height:30px;
	margin-top:5px;
	margin-left:5px;
	padding-left:15px;
	border:none;
	float:left;
	font-family: 'Open Sans';
	font-size:17px;
	line-height: 23px;
	font-weight: 400;
	color:#555;
}

@media only screen and (max-width: 1000px) {
	header .main-icons .search input[type=text] {
		width:100px;
	}
}

header .main-icons .search button.icon{
	float:right;
}

header .main-icons .icon:hover {
	background: var(--color-blue);
	color:var(--color-mint);
	cursor:pointer;
}

#toolbar {
	background:#091B50;
	color:#fff;
	height:33px;
	font-size:12px;
}


.main-flags {
	display:flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items:center;
	height:33px;
}

.main-flags > a > img.active {
	filter:grayscale(0);
}

.main-flags > a > img {
	filter:grayscale(100);
}

.main-flags > a > img:hover {
	filter:grayscale(0) !important;
}

.btn-search {
	background:none;
	border: none;
}

.btn-search:hover {
	color:var(--color-mint);
}

#info-box {
	display:grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	background: #091B50;
	width:100%;
	align-items: center;
	text-align: center;
	font-family: 'Open Sans';
	line-height:19px;
	font-size:14px;
	font-weight:300;
	letter-spacing: 0;
	color:white;
	margin-bottom:3em;
	font-weight: 300;
}

@media only screen and (max-width: 992px) {
	#info-box {
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (max-width: 500px) {
	#info-box {
		grid-template-columns: 1fr 1fr;
	}
}


#info-box .item {
	border-bottom:solid 5px transparent;
}

#info-box .item:hover {
	border-bottom:solid 5px var(--color-mint);
	background: var(--color-mint);
	background: radial-gradient(at 50% 200%, var(--color-mint) 0%, #112F5C 58%, #091B50 70%) 0% 0% no-repeat padding-box;
	cursor:pointer;
}


#info-box .active {
	border-bottom:solid 5px var(--color-mint);
	background: var(--color-mint);
	background: radial-gradient(at 50% 200%, var(--color-mint) 0%, #112F5C 58%, #091B50 70%) 0% 0% no-repeat padding-box;
}

#info-box .fa {
	margin-top:20px;
	font-size:50px;
	margin-bottom:22px;
}

#info-box h4 {
	font-size: 17px;
	line-height:23px;
	font-weight: bold;
	font-family: 'Open Sans';
	letter-spacing: 0;
	color: var(--color-mint);
	text-transform: uppercase;
}

#info-box p {
	padding-left:2em;
	padding-right:2em;
}

@media only screen and (max-width:600px) {

	#info-box .item {
		min-height:140px;
	}

	#info-box > .item > p {
		display:none;
	}
}

.partner-box {
	background: #091B50;
	font-family: 'Open Sans';
	line-height:19px;
	font-size:14px;
	font-weight:300;
	letter-spacing: 0;
	color:white;
	margin-bottom:1em;
	font-weight: 300;
}

.partner-box ul {
	list-style:none;
	padding:0;
}

.partner-box ul li {
	font-size:20px;
	line-height: 27px;
}

.partner-box ul li i {
	color:var(--color-mint);
}

.news-box {
	margin-bottom:3em;
}

@media only screen and (max-width: 992px) {
	.news-box {
		grid-template-columns: 1fr 1fr;
	}
}

.news-box .item {
	background: #fff;
}

.news-box .item > .content {
	padding:20px;
	padding-top:10px;
	min-height:180px;
}

.news-box .item > .picture {
	position:relative;
}

.news-box .item > .picture > a > img {
	z-index:1;
	object-fit: cover;
	width:100%;
	height:150px;
}

.news-box .item > .picture > .category {
	position: absolute;
	top:1em;
	left:0;
	background:var(--color-blue);
	z-index:10;

	font-size:12px;
	color:#fff;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 0px 17px 17px 0px;
	padding:8px;
	padding-right:17px;
	padding-left:20px;
	letter-spacing: 1.56px;
}

.news-box .item > .picture > .category a {
	color:white;
}

.news-box .item > .picture > .category a:hover {
	color:var(--color-mint);
	text-decoration: none;
}

.news-box .item > .content > div.date {
	text-align: left;
	font-size:12px;
	line-height:17px;
	font-weight: 700;
	color: #091B50;
	margin-bottom:5px;
	letter-spacing: 1.56px;
}

.news-box .item > .content > h3 {
	text-align: left;
	font-size:20px;
	line-height:24px;
	font-family: museo-slab, serif;
	font-weight: 700;
	color: #091B50;
	height:50px;
	overflow:hidden;
}

.news-box .item > .content > div.preview {
	height:66px;
	overflow: hidden;
}

.news-box .item > .content > h3 > a {
	color:var(--color-blue);
}

.news-box p {
	text-align: left;
	font-size: 13px;
	line-height:17px;
	font-family: 'Open Sans';
	letter-spacing: 0;
	color: #091B50;
}

@media only screen and (max-width: 500px) {
	.news-box {
		grid-template-columns: 1fr;
	}

	.news-box .item {
	}
}


.slider-box {
	margin-bottom:3em;
}


.newsletter-subscribe {
	display:grid;
	grid-template-columns: 6fr 6fr;
	margin-bottom:3em;
	padding-right:10em;
	justify-items: end;
	margin-top:2em;
}

.newsletter-subscribe > .item {
}

.newsletter-subscribe > .item:nth-child(1) {
	text-align:right;
	padding-right:1em;
	padding-top:16px;
}

.newsletter-subscribe > .item:nth-child(2) {
	text-align:left;
	margin:0 auto;
	width:100%;
	justify-self: start;
 	padding-left:1em;
	padding-right:5em;
}


.headline {
	font-size:33px;
	line-height:40px;
	margin:0;
	padding:0;
	font-family: museo-slab, serif;
	letter-spacing: 0;
	color: #091B50;
}


.newsletter-mobile {
	display:none;
	padding-top:50px;
}

.newsletter-box {
	text-align:center;
	padding:0;
	margin-top:1em;
}

.newsletter-box > h4 {
	font-size:37px;
	line-height:40px;
	margin:0;
	padding:0;
	font-family: museo-slab, serif;
	letter-spacing: 0;
	color: #091B50;
	display:inline-block;
	padding-right:2em;
	margin-top:-13px;
	float:right;
}

.newsletter-box > .search {
	height: 49px;
	border-radius:27px;
	background: #ECECEC 0% 0% no-repeat padding-box;
}

.newsletter-button {
	display:inline-block;
}

.newsletter-box > .search {
}

.newsletter-box > .search > form > input[type=text] {
	background:transparent;
	height:30px;
	width:300px;
	max-width:70%;
	margin-top:10px;
	margin-left:15px;
	padding-left:1px;
	border:none;
	float:left;
	font-family: 'Open Sans';
	font-size:17px;
	line-height: 23px;
	font-weight: 400;
	color:#555;
}

.newsletter-box > .search > form > .icon {
	background: var(--color-red);
	color:white;
	border-radius:27px;
	min-width:112px;
	padding-top:5px;
	height:49px;
	text-align:center;
	margin-left:.5em;
	float:right;
	font-family: Arial;
	font-size:15px;
	line-height: 17px;
	letter-spacing: 1.95px;
	text-transform: uppercase;
}

.newsletter-box > .search > .icon:hover {
	background: var(--color-blue);
	color:var(--color-mint);
	cursor:pointer;
}


@media only screen and (max-width: 1300px) {
	.newsletter-subscribe {
		padding-right:0em;
	}	
}

@media only screen and (max-width: 1200px) {

		.newsletter-box > .search > form > input[type=text] {
		width:200px;
	}
}

@media only screen and (max-width: 1000px) {

	.newsletter-subscribe {
		grid-template-columns: 12fr;
	}

	.newsletter-subscribe > .item {
		justify-self: center;
	}

	.newsletter-subscribe > .item:nth-child(2) {
		margin:0 auto !important;
		display:inline-block;
		width:100%;
	}

	.newsletter-box > .search {
		height: 49px;
		border-radius:27px;
		background: #ECECEC 0% 0% no-repeat padding-box;
		margin-left:10em;
		margin-right:10em;
	}

}

@media only screen and (max-width: 800px) {
	.newsletter-box > .search {
		margin-left:0em;
		margin-right:0em;
	}
}


@media only screen and (max-width: 500px) {
	.newsletter-box > .search > form > input[type=text] {
		max-width:200px;
	}
}

@media only screen and (max-width: 499px) {
	.newsletter-box > .search > form > input[type=text] {
		width:100%;
	}

	.newsletter-box > .search > form > .icon {
		clear:both;
		margin-top:1em !important;
		float:left;
	}

	.newsletter-box > .search > form > button[type=submit] {
		margin-bottom:4em;
		margin-left: 30%;
	}

	.newsletter-box {
		height:100px;
		width:100%;
	}

	.newsletter-box > h4 {
		padding:0;
		margin:0;
	}

	.newsletter-subscribe {
		display:none;
	}

	.newsletter-mobile {
		display:block;
	}
}


header .main-icons .search > div.icon{
	float:right;
}


footer {
	background: #091B50;
	background: radial-gradient(at 50% 200%, var(--color-mint) 0%, #112F5C 58%, #091B50 70%) 0% 0% no-repeat padding-box;
	padding-top:51px;
	text-align: left;
	font-family: 'Open Sans';
	font-size:14px;
	line-height:22px;
	font-weight:400;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 1);
}

footer a {
	color:#fff;
}

footer a:hover {
	color:var(--color-mint);
}


footer h4 {
	color:var(--color-mint);
	font-size: 17px;
	line-height:23px;
	font-weight: bold;
	font-family: 'Open Sans';
	letter-spacing: 0;
	text-transform: uppercase;
}

footer .bottom {
	font-size:14px;
	line-height: 22px;
	color:#fff;
	padding-bottom:10px;
}

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


#brand-box {
	margin-bottom:3em;
}

#brand-box div {
	margin-right:3em;
}

#brand-box div > a > img {
	max-height:30px;
}

@media only screen and (max-width: 500px) {
	#brand-box div > a > img {
		max-height:20px;
	}
}

.btn-red {
	background:#FF7A7A;
	color:white;
	border-radius: 27px;
	height:49px;
	font-size:15px;
	line-height:20px;
	letter-spacing: 1.95px;
	text-transform: uppercase;
	padding-left:2em;
	padding-right:2em;
	font-weight:500;
}

.btn-red:hover {
	color:white;
	background:#EF6A6A;
}

a.btn-red {
	padding-top:12px;
}

.category-list {
	display:grid;
	grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
	grid-gap: 1em;
	margin-bottom:1em;
}


.category-list > .item {
	background:white;
}

.category-list > .item > .picture {
	position: relative;

}

.category-list > .item > .picture img {
	object-fit: contain;
	width:100%;
	height:320px;
	margin-bottom: 1em;
}

.fit-cover > a > img {
	object-fit: cover !important;
}

.r5 > .item > .picture img {
	height:180px;
}

.category-list > .item > .picture > .discount-circle {
	position:absolute;
	top:5px;
	left:5px;
	width:52px;
	height:52px;
	border-radius:26px;
	color:white;
	font-weight:900;
	text-align:center;
	background:var(--color-red);
	font-size:19px;
	font-family:'Source Sans Pro';
	padding-top:12px;
}

.category-list > .item > .picture > .favourite {
	position:absolute;
	right:5px;
	top:0px;
	font-size:20px;
	color:#9ba1b6;
}

.category-list > .item > .picture > .favourite:hover {
	color:var(--color-blue);
	cursor:pointer;

}

.category-list > .item > .details {
	padding-left:1em;
	padding-right:1em;
	color:var(--color-blue);
	margin-bottom:.5em;
}

.category-list > .item > .details > h3 {
	font-size:16px;
	line-height:20px;
	font-weight:400;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 40px;
}

.category-list > .item > .details > h3 > a {
	color:var(--color-blue);
}

.category-list > .item > .details > h3 > a:hover {
}


.category-list > .item > .details > h5 {
	font-size:11px;
	line-height:16px;
	letter-spacing: 1.43px;
	text-transform: uppercase;
	font-weight:700;
	overflow: hidden;
	text-overflow: ellipsis;
	height:40px;
	max-width:200px;
}

.category-list > .item > .details > .discount-price {
	font-size:12px;
	line-height: 17px;
	text-decoration: line-through;
}

.category-list > .item > .details > .info {
	display:grid;
	grid-template-columns: 1fr 1fr;
}

.category-list > .item > .details > .info > .price {
	font-size:19px;
	line-height: 26px;
	font-weight:700;
	color:var(--color-mint);
}

.category-list > .item > .details > .info > .stock {
	font-size:12px;
	line-height: 17px;
	text-align:right;
	align-self: end;
}

.category-list > .item > .options {
	display:grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 42px;
	grid-gap: 1px;
	background:var(--color-mint);
}

.category-list > .item > .options > div {
	background:var(--color-blue);
	color:var(--color-mint);
	align-self: center;
	font-size:12px;
	line-height: 17px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.14px;
	text-align:center;
	padding-top:13px;
	padding-bottom:13px;
}

.category-list > .item > .options > div:hover {
	background:var(--color-mint);
	color:var(--color-blue);
	cursor:pointer;
}

.category-sidebar .brand-list {
	margin-bottom:25px;
	display:flex;
	flex-wrap: wrap;
	justify-content:flex-start;
}

.category-sidebar .brand-list span {
	background:white;
	color:var(--color-blue);
	font-size:14px;
	line-height: 19px;
	letter-spacing: 0.7px;
	font-weight:700;
	padding-left:10px;
	padding-right:10px;
	height:37px;
	border-radius:27px;
	padding-top:8px;
	margin-bottom:7px;
	margin-right:3px;
}

.category-sidebar .brand-list span a {
	color:var(--color-blue);
}

.category-sidebar .brand-list span a:hover {
	color:var(--color-blue);
	text-decoration: none;
}

.category-sidebar .brand-list span.active {
	background:var(--color-blue);
	color:white;
}

.category-sidebar .brand-list span:hover {
	color:var(--color-blue);
	background:var(--color-mint);
	cursor:pointer;
}

.category-sidebar h4 {
	border-top:solid 1px rgba(9, 27, 80, .2);
	padding-top:25px;
	padding-bottom:19px;
	font-weight:700;
	font-size:17px;
	line-height:23px;
	color:var(--color-blue);
}

.navigation-grid {
	display:grid;
	grid-template-columns: 6fr 6fr;
}

.navigation-grid > div.item:nth-child(2) {
	text-align:right;
}

.navigation-grid > div > div.shop-filter {
	display:inline-grid;
	grid-template-columns: 6fr 6fr;
	grid-gap:1em;
}

.navigation-grid > div > div.shop-filter > div.item > .dropdown {
	background:#fff;
	padding:10px;
	border-radius:5px;
	position:relative;
}

.navigation-grid > div > div.shop-filter > div.item > .dropdown > .dropdown-submenu {
	background:#fff;
	position:absolute;
	top:35px;
	right:0;
	z-index:12000;
	padding:10px 20px 10px 20px;
	text-align:left;
	color:var(--color-blue);
	line-height:34px;
	font-weight:700;
	font-size:14px;
	border-top:solid 1px #f5f5f5;
	box-shadow:1px 1px 2px #ccc;
	display:none;
}

.navigation-grid > div > div.shop-filter > div.item > .dropdown:hover > .dropdown-submenu {
	display:inline-block;
}

.navigation-grid > div > div.shop-filter > div.item > .dropdown:hover > .dropdown-submenu > a {
	cursor:pointer;
	display:block;
}

.navigation-grid > div > div.shop-filter > div.item > .dropdown:hover > .dropdown-submenu > a:hover {
	color:var(--color-mint);
	text-decoration: none;
}

.breadcrumbs {
	text-align: center;
	font-size:14px;
	line-height:19px;
	letter-spacing: 0;
	color: #091B50;
	margin-left:0;
}

.breadcrumbs a {
	color: var(--color-blue);
}

.breadcrumbs ul.breadcrumb {
	margin-left:0;
	padding-left:0;	
	background:none;
}

.breadcrumbs ul.breadcrumb li:nth-child(1):before {
	content:'';
	padding-left:0;
	padding-right:0;
}

.breadcrumbs ul.breadcrumb li:before {
	content: '›';
	padding-right:5px;
	padding-left:5px;
}

div#category-menu {
	display:flex;
	flex-wrap: nowrap;
	align-content: center;
	list-style:none;
	font-size:17px;
	line-height:23px;
	color:var(--color-blue);
	justify-content: space-around;
	align-items: center;
	min-height:81px;
}

div#category-menu > div.dropdown > button {
	font-weight: bold;
	color:var(--color-blue);
}
/*
@media only screen and (max-width: 600px) {
	div#category-menu {
		display:block;
		flex-wrap: nowrap;
		flex-flow: column;
		text-align:left;
		margin-top:10px;
	}

	div#category-menu > div {
		width:100%;
		height:60px;
		padding:5px;
	}
}
*/

.underline {
	text-decoration: underline;
}

div#category-menu a {
	color:var(--color-blue);
}

div#category-menu a:hover {
	color:var(--color-blue);
}

.product-box {
	color:var(--color-blue);
	padding-top:15px;
}

.product-box h1 {
	font-size:37px;
	font-weight:700;
	padding-left:0;
	margin-left:0;
	font-family: museo-slab, serif;
}

.product-main-box {
	margin-top:3em;
}

.brand-logo {
	max-width:80px;
	max-height:30px;
}

.price-box {
}

.product-box p {
	font-size:14px;
	line-height:19px;
}

.product-box .price {
	font-size:21px;
	line-height:28px;
	text-transform: strike-through;
}

.product-box .discount {
	font-size:14px;
	line-height:19px;
	color:var(--color-mint);
	margin-top:10px;
}

.product-box .discount-price {
	font-size:42px;
	line-height:50px;
	font-weight:bold;
	color:var(--color-mint);
	margin-top:10px;
}

.product-box .product-details {
	margin-top:3em;
	color:var(--color-blue);
}

.product-box .b1 {
	max-height:300px;
	min-height:300px;
	overflow-y:hidden;
}

.product-box .b2 {
	max-height:300px;
	min-height:300px;
	overflow-y:hidden;
}

.product-box .product-details h4 {
	font-size:37px;
	line-height:45px;
	font-family: museo-slab, serif;
	font-weight:500;
	margin-bottom:1em;
}



.product-box .product-details p {
	font-size: 14px;
	line-height:19px;
	letter-spacing: 0;
	color: #091B50;
	padding-right:2em;
}

@media only screen and (max-width: 600px) {
	.product-details h4, .similiar-products h4 {
		font-size:25px !important;
		line-height:30px;
	}
}

.technical-details {
	display:grid;
	grid-template-columns: minmax(150px, 2.33fr) minmax(150px, 1.33fr);
}

.technical-details > div {
	border-bottom: solid 1px var(--color-blue);
	padding:5px;
}

.bold {
	font-weight:bold;
}

.strike {
	text-decoration: line-through;
}


.technical-details > div:nth-child(4n-6), .technical-details > div:nth-child(4n-7) {
	color:#6071B7;
	border-bottom:solid 1px #b0b8da;
}

.bg-white {
	background:white;
}

.bg-blue {
	background:var(--color-blue);
}

.bg-blue-light {
	background:#6071B7;
}

.bg-mint {
	background:var(--color-mint);
}


.podjetje-grid {
	display:grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 2em;
	margin-bottom:1em;
}

@media only screen and (max-width: 994px) {
	.podjetje-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (max-width: 600px) {
	.podjetje-grid {
		grid-template-columns: 1fr;
	}
}


.podjetje-content {
	margin-bottom:1em;
}

.podjetje-content > h1 {
	margin:0 !important;
	padding-top:1em !important;
	padding-bottom:1em !important;
}

.podjetje-content > p {
	margin:0;
	margin-bottom:2em;
}

.podjetje-main {
	margin:0;
	padding:0;
}

.podjetje-main > h1 {
	margin:0 !important;
	padding-top:0em !important;
	padding-bottom:1em !important;
}

.podjetje-main > p {
	margin:0;
	margin-bottom:2em;
}


.podjetje-grid > .item {
	background:#fff;
	color:var(--color-blue);
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	padding-bottom:1em;
}

.podjetje-grid > .item > .header {
	position:relative;
}


.podjetje-grid > .item > .header > h2, 
.podjetje-grid > .item > .header > a > h2 {
	color:var(--color-blue);
	font-size:17px;
	line-height: 20px;
	font-family: museo-slab, serif;
	font-weight: 500;
	padding-top:10px;
	padding-left:20px;
	height:50px;
	overflow: hidden;

}

.podjetje-grid > .item > .address > ul {
	list-style:none;
	padding-left:1.4em;
}

.podjetje-grid > .item > .address > ul li i {
	padding-right:10px;
	color:var(--color-mint);
}

.podjetje-grid > .item > .address > ul li a {
	color:var(--color-blue);
}

.podjetje-grid > .item > .content {
	padding-left:1.4em;
	padding-right:1.4em;
	font-size:14px;
	line-height: 19px;
	padding-top:20px;
}

.podjetje-grid > .item > .details {
	padding-left:1.4em;
	padding-right:1.4em;
	font-size:11px;
	line-height: 15px;
	padding-bottom:20px;
}

.podjetje-grid > .item .btn {
	padding-top:12px;
}

main#page {
	font-size:14px;
	line-height: 19px;
	font-weight:normal;
	margin-bottom:3em;
}

main#page h1 {
	font-size:37px;
	line-height: 45px;
	font-weight:500;
	padding-top:50px;
	padding-bottom:50px;
	font-family: museo-slab, serif;
	font-weight: 700;
	font-style: normal;
	color:var(--color-blue);
}

main#page h3 {
	font-size:17px;
	line-height: 19px;
	font-weight:700;
	color:var(--color-mint);
}

#contacts-grid {
	display:grid;
	grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
	grid-gap:1em;
}

#contacts-grid > .item {
	background:white;
	text-align: center;
	padding:1em;
	border-radius:10px;
}

#contacts-grid > .item > p {
	margin:0;
	color:var(--color-blue);
	line-height: 24px;
}

#contacts-grid > .item > p > a {
	color:var(--color-blue);
}

#contacts-grid > .item > h2 {
	color:var(--color-mint);
	font: 700 24px/29px museo-slab;
	margin-top:10px;
}

#contacts-grid > .item > h3 {
	color:var(--color-blue);
	font-weight: 700;
	font-size:14px;
	line-height: 19px;
	text-transform: uppercase;
}

#contacts-grid > .item > p > i {
	color:var(--color-mint);
}

#contacts-grid .circle-user {
	background:var(--color-blue);
	border-radius:50%;
	width:42px;
	height:42px;
	color:white;
	font-size:28px;
	padding-top:5px;
	text-align:center;
}

main#page #contact-form {
	background:white;
	border-radius:10px;
	padding:0;
	margin:0;
	font-size:17px;
	line-height: 23px;
	color:var(--color-blue);
}

main#page #contact-form > h3 {
	background:var(--color-mint);
	color:var(--color-blue);
	font-size:24px;
	line-height: 29px;
	font-family: museo-slab;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	padding: 10px 15px 10px 15px;
}

main#page #contact-form > form {
	padding:10px 15px 10px 15px;
}

main#page #contact-form > form input[type=text],
main#page #contact-form > form textarea {
	background:#f5f5f5;
	padding:15px;
	font-size: 17px;
	line-height:23px;
	border:0;
	width:100%;
}

main#page #contact-form > form textarea {
	height:350px;
}

.btn-blue {
	background:var(--color-blue);
	color:white;
	border-radius: 27px;
	min-height:49px;
	font-size:15px;
	line-height:21px;
	letter-spacing: 1.95px;
	text-transform: uppercase;
	padding-left:2em;
	padding-right:2em;
	font-weight:700;
}

.btn-blue:hover {
	color:white;
	background:var(--color-mint);
	color:var(--color-blue);
}

#news-list {
	display:grid;
	grid-gap:2em;
	color:var(--color-blue);
	font-size:13px;
	line-height:17px;
	display:grid;
	grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
	grid-auto-rows: 20px;
}

#news-list > .item > .content {
	background:white;
}

#news-list > .item > .content > .picture {
}

#news-list > .item > .content > .picture > a > img {
	z-index:1;
	object-fit: cover;
	width:100%;
	height:150px;

}

#news-list > .item > .content > .picture > div.category {
	background:var(--color-blue);
	color:white;
	position: absolute;
	top:1em;
	left:0;
	z-index:10;
	font-size:12px;
	color:#fff;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 0px 17px 17px 0px;
	padding:8px;
	padding-right:17px;
	padding-left:20px;
	letter-spacing: 1.56px;
}

#news-list > .item > .content > .picture > div.category > a {
	color:white;
}

#news-list > .item > .content > .picture > div.category > a:hover {
	color:var(--color-mint);
	text-decoration: none;
}

#news-list > .item > .content > .body {
	padding:1em;
}

#news-list > .item > .content > .body > .publish-date {
	font-size:12px;
	line-height:17px;
	font-weight:700;
	letter-spacing: 1.56px;
	text-transform: uppercase;
}

#news-list > .item > .content > .body > h2 {
	font-size:20px;
	line-height:24px;
	font-weight:900;
	font-family: museo-slab, serif;
	margin-top:10px;
	height:50px;
	overflow:hidden;
}

#news-list > .item > .content > .body > h2 > a {
	color:var(--color-blue);
}

#news-list > .item > .content > .body > div.preview {
	height:66px;
	overflow: hidden;
}

main#news {
	font-size:14px;
	line-height: 19px;
	font-weight:normal;
	padding-bottom:1em;
}

main#news h1 {
	font-size:37px;
	line-height: 45px;
	font-weight:500;
	padding-top:50px;
	padding-bottom:0px;
	font-family: museo-slab, serif;
	font-weight: 700;
	font-style: normal;
	color:var(--color-blue);
}

main#news h3 {
	font-size:17px;
	line-height: 19px;
	font-weight:700;
	color:var(--color-mint);
}

main#news > .details {
	font-size:12px;
	line-height:17px;
	font-weight:700;
	letter-spacing: 1.56px;
	text-transform: uppercase;
	margin-bottom:2em;	
}

main#news > .details a {
	color:var(--color-blue);
}

.product-side-gallery {
	display:grid;
	grid-template-columns: 120px;
	grid-gap:.4em;
}

@media only screen and (max-width: 540px) {
	.product-side-gallery {
		margin-top:1em;
		margin-bottom:1em;
		grid-template-columns: repeat(auto-fill, minmax(80px,1fr));

	}
}




.product-side-gallery > div:hover {
	cursor:pointer;
}

.product-side-gallery > div > img {
	border:solid 2px none;
	width:90px;
	height:90px;
	object-fit: cover;
}

.product-side-gallery >div > img.active {
	border: solid 2px var(--color-mint);
}

@media only screen and (max-width: 320px) {
	.product-side-gallery {
		margin-top:1em;
		margin-bottom:1em;
		grid-template-columns: repeat(auto-fill, minmax(60px,1fr));
	}

	.product-side-gallery > div > img {
		border:solid 2px none;
		width:60px;
		height:60px;
		object-fit: cover;
	}

}

.empty-cart {
	margin:5em 0em 5em 0em;
	font-weight:bold;
	font-size:20px;
}

.shopping-box {
	background:white;
	margin-bottom:1em;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.shopping-box > h4 {
	background:var(--color-mint);
	color:white;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	font-size:17px;
	line-height:23px;
	text-transform: uppercase;
	padding:12px 0 12px 26px;
}

.shopping-box > .body {
	padding:0 26px 1em 26px;
}

.shopping-box h6 {
	color:var(--color-mint);
	font-size:17px;
	line-height:23px;
	font-weight: bold;
	text-transform: uppercase;
}

.shopping-box h5 {
	font-size:13px;
	font-weight:500;
	color:#aaa;
	text-transform: uppercase;
	margin:0;
	padding:0;
	margin-top:20px;
	margin-bottom:5px;
}

.fr {
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}

.shopping-box > .body > ul.type-choose {
	border:solid 2px var(--color-mint);
	border-radius:30px;
	list-style:none;
	margin:0;
	padding:0;
	display:grid;
	grid-template-columns: 6fr 6fr;
	grid-gap: 0;
	margin-bottom:1em;
}

.shopping-box > .body > ul.type-choose > li {
	text-align:center;
	color:var(--color-mint);
	font-weight:900;
	font-size:17px;
	padding:10px 0 10px 0;
	white-space: nowrap;
  	overflow: hidden;
	text-overflow: ellipsis;
}

@media only screen and (max-width: 600px) {
	.shopping-box > .body > ul.type-choose {
		grid-template-columns: 12fr;
	}

	.shopping-box > .body > ul.type-choose > li {
		font-size:14px;
	}
}

.shopping-box > .body > ul.type-choose > li.active {
	background:var(--color-mint);
	color:white;
	border-radius:30px;
}

.shopping-box > .body > ul.type-choose > li:hover {
	cursor:pointer;
}


.shopping-box > .footer {
	background:var(--color-blue);
	color:white;
	font-weight:bold;
	font-size:27px;
	line-height: 42px;
	letter-spacing: 3.51px;
	text-transform: uppercase;
	text-align: center;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	padding: 15px 0 15px 0;
	width:100%;
}

.shopping-box > .footer:hover {
	color:var(--color-blue);
}

.shopping-box > .footer:hover {
	background:var(--color-mint);
}

.shopping-box > .footer:hover > a {
	text-decoration: none;
	color:var(--color-blue);
}

.shopping-box > .footer > a:hover {
	text-decoration: none;
	color:var(--color-blue);
}

.shopping-box > h5 {
	color:var(--color-mint);
	font-size:17px;
	line-height:23px;
	font-weight:bold;
	text-transform: uppercase;
}

.shopping-box > .row {
}

.shopping-box input, .shopping-box select  {
	background:#f5f5f5;
	border-radius:10px;
	border:none;
	padding:0px 15px 0px 15px;
	color:var(--color-blue);
	font-family: 'Open Sans', sans-serif;
	font-size:17px;
}

.shopping-box input[type=text]::placeholder {
	font-family: 'Open Sans', sans-serif;
	font-size:17px;
	color:#ccc;
}

#kosarica-artikli .artikel {
	margin-bottom:.5em;
	display:grid;
	grid-template-columns: 7fr 4fr;
	grid-gap: 1em;
	font-size:12px;
	font-weight:300;
	position:relative;
	border-bottom:solid 2px #eee;
	align-items: start;
}

#kosarica-artikli .article-image {
}

#kosarica-artikli .artikel div h5 {
	font-size:16px;
}

#kosarica-artikli > .artikel div.artikel-opis {
	display:inline-grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto, 30px, 30px;
	justify-items:start;
	align-items:end;
}

#kosarica-artikli > .artikel div.artikel-opis p {
	margin:0;
	padding:0;
	overflow: hidden;
	max-width:98%;
	text-overflow: ellipsis;
}

#kosarica-artikli > .artikel div.artikel-opis p:nth-child(1) {
	font-weight:bold;
}


#kosarica-artikli > .artikel .artikel-odstrani {
	position:absolute;
	font-size:25px;
	top:0;
	left:.2em;
	cursor:pointer;
}

#kosarica-artikli > .artikel .artikel-odstrani:hover {
	color:var(--color-purple);
}

#kosarica-artikli > .artikel div.artikel-opis div {
}

#kosarica-artikli > .artikel div.artikel-opis > h5 {
	font-size:22px;
	font-weight:500;
	color:var(--color-blue);
	font-family: museo-slab, serif;
	letter-spacing: 0;
	margin:0;
	padding:0;
	margin-bottom:20px;
}


#kosarica-artikli .basket-right-box {
	display:inline-grid;
	grid-template-columns: 14fr 2fr;
	padding-bottom:10px;
}

#kosarica-artikli .basket-right-box > div {
	text-align:right;
	padding-left:15px;
}

#kosarica-artikli > .artikel div.artikel-opis > h6 {
	font-size:17px;
	font-weight:500;
	color:var(--color-mint);
	text-transform: uppercase;
	margin:0;
	padding:0;
	margin-bottom:10px;
}


#kosarica-artikli > .artikel div.artikel-opis div:nth-child(3) {
	align-self: end;
	place-self:end;
}

#kosarica-artikli > .artikel div.artikel-opis div:nth-child(3) input {
	border:none;
	background:#f3f6fc;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	height:35px;
	width:50px;
}

#kosarica-artikli .price-box-item {
	padding:0;
	margin:0;
}

#kosarica-artikli > .artikel p {
	margin:0;
	padding:0;
}

#kosarica-artikli > .artikel p.price {
	color:var(--color-mint);
	font-weight:800;
	font-size:24px;
	line-height: 29px;
	font-family: museo-slab, serif;
}

#kosarica-artikli > .artikel p.price > small {
	font-size:14px;
	line-height: 18px;
	font-weight:600;
	display:block;
	color:var(--color-blue);
}


#kosarica-artikli .basket-box {
	display:grid;
	width:100%;
	grid-template-columns: 6fr 3fr;
}

#kosarica-artikli .basket-box > .item {
	place-self: center stretch;
}

#kosarica-artikli .basket-box > .item:nth-child(2) {
	text-align:right;
}

@media only screen and (max-width: 600px) {
	#kosarica-artikli .artikel {
		margin-bottom:.5em;
		display:grid;
		grid-template-columns: 12fr;
		grid-gap: 1em;
		font-size:12px;
		font-weight:300;
		position:relative;
		border-bottom:solid 2px #eee;
		align-items: start;
	}

}

.slider-number {
	display:inline-grid;
	height:30px;
	width:40px;
	text-align:center;
	margin:0;
	align-items: center;
	margin-left:0px;
}

.slider-number div:hover {
	color:var(--color-yellow);
	background:var(--color-purple);
	cursor:pointer;
}

.slider-number div:nth-child(1) {
	border-top-right-radius: 10px;
	background:var(--color-gray);
	height:15px;
}

.slider-number div:nth-child(2) {
	border-bottom-right-radius: 10px;
	background:var(--color-gray);
	height:15px;
}


.slider-number div:nth-child(1):hover {
	border-top-right-radius: 10px;
	background:var(--color-purple);
	color:var(--color-yellow);
}

.slider-number div:nth-child(2):hover {
	border-bottom-right-radius: 10px;
	background:var(--color-purple);
	color:var(--color-yellow);
}

.artikel-quantity {
	display:grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0;
	font-size:10px;
	background:#f5f5f5;
	height:40px;
	width:80px;
	border-radius:10px;
	padding-top:5px;
	margin-bottom:10px;
}

.artikel-quantity .artikel-quantity-input {
	text-align:center;
	font-weight:600;
	font-family: museo-slab, serif;
	color:var(--color-blue);
	font-size:22px;
}

.artikel-quantity-delete i {
	background:var(--color-gray);
	text-align:center;
	font-size:16px;
	color:black;
	cursor:pointer;
}

.artikel-quantity-delete:hover i {
	color:var(--color-mint);
}

.kosarica-skupaj {
	display:grid;
	grid-template-columns: 3fr 1fr;
	grid-template-rows: 34px;
	border-bottom: solid 1px #fff;
	align-items: center;
}

.kosarica-skupaj div {
}

.kosarica-skupaj div:nth-child(2) {
	text-align: right;
}


.cart-suma {
	color:var(--color-blue);
	font-size:17px;
	font-weight:bold;
	text-transform: uppercase;
	padding: 5px 0 5px 0;
}

.cart-suma-shipping {
	color:var(--color-blue);
	font-size:17px;
	font-weight:bold;
	text-transform: uppercase;
	padding: 5px 0 5px 0;
	border-bottom:solid 2px #eee;
}

.cart-suma-total {
	color:var(--color-mint);
	font-size:17px;
	font-weight:bold;
	text-transform: uppercase;
	padding: 5px 0 5px 0;
	border-bottom:solid 2px #eee;
}

@media only screen and (max-width: 600px) {
	.kosarica-skupaj {
		display:grid;
		grid-template-columns: 3fr 1fr;
		grid-template-rows: 34px;
		border-bottom: solid 1px #fff;
		align-items: center;
	}

	.cart-suma, .cart-suma-shipping, .cart-suma-total {
		font-size:14px;
	}

}

#order-problem {
	margin:2em;
	text-align: center;
}

#order-problem h5 {
	color:var(--color-blue);
	font-size:14px;
	line-height: 19px;
	letter-spacing: 0.7px;
	font-weight:600;
}

#order-problem h3 {
	color:var(--color-mint);
	font-size:24px;
	line-height: 29px;
	font-weight:900;
	font-family: museo-slab, serif;
}

.shopping-box .shipping-price-box {
	display:grid;
	grid-template-columns: 1fr 28fr 5fr;
	grid-row-gap: .3em;
	margin-top:1em;
	color:var(--color-blue);
	letter-spacing: 0.7px;
	font-size:14px;
	line-height: 25px;
}

.shopping-box .shipping-price-box div {
	font-weight:normal;
}

.shopping-box .shipping-price-box div:nth-child(3n) {
	text-align:right;
	font-weight:bold;
	font-size:15px;
}

.article-basket {
	display:grid;
	grid-template-columns: 50px 50px auto;
	grid-gap:0;
	margin-top:3em;
	height:64px;
	background:#f5f5f5;
	border-radius:38px;
	max-width:385px;
}

.article-basket div:nth-child(1) {
	text-align:center;
}

.article-basket div:nth-child(2) > input[type=text] {
	margin-top:12px;
	width:40px;
	background:none;
	border:none;
	text-align:center;
	color:var(--color-blue);
	font-size:30px;
	line-height:42px;
	font-weight:700;
	font-family: museo-slab, serif;

}

.article-basket div:nth-child(3) {
	font-size:20px;
	line-height: 30px;
	letter-spacing: 2.6px;
	font-weight:700;
	text-transform: uppercase;
	background:var(--color-mint);
	color: white;
	text-align:center;
	border-radius:38px;
	height:64px;
	padding-top:17px;
}

.article-basket div:nth-child(3):hover {
	background:var(--color-blue);
	color:var(--color-mint);
	cursor:pointer;
}

.article-basket .number-spin {
	font-size:40px;
	text-align:center;
	display:grid;
}

.article-basket .number-spin div {
	height:20px;
	cursor:pointer;
}

.article-basket .number-spin-add {
	font-size:12px;
	padding-top:2px;
}

.article-basket .number-spin-sub {
	font-size:12px;
	padding-top:2px;
}

.article-basket .number-spin div:hover {
	cursor:pointer;
}

.article-basket .number-spin div:nth-child(1) {
	align-self:end;
}

.article-basket .number-spin div:nth-child(2) {
	align-self:start;
}

.product-header {
	border-bottom:solid 5px var(--color-mint);
	margin-bottom:1em;
	display:grid;
	grid-template-columns: 4fr auto;
	align-items: center;
}


.product-header > div:nth-child(1)  {
	align-self: end;
}

.product-header > div > h2 {
	color:var(--color-mint);
	font-size:20px;
	font-weight:700;
	text-transform:uppercase;
}

.product-header > div:nth-child(2)  {
	text-align:right;
	place-self: end;

}

.product-header > div > span  {
	margin-right:0.1em;
	color:white;
	padding:5px;
	height:38px;
	border-radius:19px;
	padding-left:15px;
	padding-right:15px;
	margin-bottom:5px;
}

.product-header > div:nth-child(2) {
	justify-self: end;
	margin-left:1em;
	height:34px;
}

.product-header > div:nth-child(2) > img {
	max-height:25px;
}


@media only screen and (max-width: 800px) {
	.product-header  {
		grid-template-columns: 1fr;
	}

	.product-header > div:nth-child(2)  {
		justify-self: start;
		padding-left:0;
		margin-left:0;
		text-align:start;
	}

	.product-header > div:nth-child(2) {
		margin-top:15px;
	}
}


#product-page {
	margin-top:20px;
}

.category-menu {
	background:#f5f5f5;
	border:none;
}

.dropdown:hover>.dropdown-menu {
  display: block;
}

#category-menu > .dropdown > .dropdown-menu {
	background:var(--color-blue);
	color:var(--color-mint);
	width:300px;
	margin-left:-100px;
	margin-top:-2px;
	text-align:center;
	border-radius:0;
	padding:0;
}

#category-menu > .dropdown > .dropdown-menu > a {
	color:white;
	border-top: 1px solid rgba(89, 223, 196, 0.46);
	font-size:15;
	font-weight:300;
	line-height: 32px;
	padding-top:5px;
	padding-bottom:5px;
}

#category-menu > .dropdown > .dropdown-menu > a:nth-child(1) {
	border-top:0;
}

#category-menu > .dropdown > .dropdown-menu > a:hover {
	background: var(--color-mint);
	color:var(--color-blue);
}

.dropdown-menu li {
	background:var(--color-blue);
	color:white;
}

section#banner {
	margin-bottom:1em;
	max-height:400px;
	width:100%;
}

section#banner img {
	width:100%;
	max-height:400px;
	object-fit: cover;
	border-bottom:solid 5px var(--color-mint);
}

#product {
	background:white;
	margin-bottom:5em;
	padding-bottom:5em;
}

.add-compare {
	background:#f5f5f5;
	padding:10px;
	border-radius:27px;
	margin-top:1em;
	display:inline-block;
	padding:1em 3em 1em 3em;
	cursor:pointer;
	color:var(--color-blue);
	font-size:15px;
	text-transform: uppercase;
	letter-spacing: 1.95px;
	text-align: center;
	font-weight:bold;
	width:100%;
	max-width: 385px;
}

.add-compare:hover {
	background:var(--color-blue);
	color:var(--color-mint);
}

.similiar-products {
	font-weight:500;
	margin-top:3em;
	margin-bottom:3em;
}

.similiar-products > h4, .latest-viewed-products > h4 {
	font-family: museo-slab, serif;
	font-size:37px;
	font-weight:500;
	color:var(--color-blue);
	margin-bottom:1em;
	margin-top:1em;
}

.latest-viewed-products {
	font-family: museo-slab, serif;
	font-weight:500;
	margin-top:3em;
	margin-bottom:3em;
}


.show-more {
	position:relative;
	display:grid;
	grid-template-columns: 1fr;
	padding-top:100px;
	background:none;
	margin-top:-80px;
}

.white-gradient {
	background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 65%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 65%);
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 65%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );	
}

.show-more > .show-more-line {
	height:3px;
	background: var(--color-mint);
	width:100%;
}

.show-more > span {
	cursor:pointer;
	background:var(--color-blue);
	padding:5px;
	border-radius:20px;
	text-align:center;
	color:white;
	width:150px;
	height:35px;
	margin:0 auto;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	font-size:14px;
	margin-top:-20px;
}

.user-box {
	position:relative;
}

header .main-icons .icon2:hover > #user-dropdown {
	display:block;
}


.user-box > #user-dropdown {
	z-index:1;
	display:none;
}

.user-box > #user-dropdown > .header {
	background:var(--color-blue);
	color:var(--color-mint);
	width:300px;	
	height:31px;
	right:0px;
	top:30px;
	border-top-left-radius: 10px;
	position:absolute;
}

.user-box > #user-dropdown > .body {
	right:0px;
	top:60px;
	position:absolute;
	background:var(--color-blue);
	color:var(--color-mint);
	width:300px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	z-index:999999;
}

.user-box > #user-dropdown > .body > ul {
	list-style:none;
	margin:0;
	padding:1em;
	padding-top:0;
	font-size:17px;
	color:white;
}

.user-box > #user-dropdown > .body > ul > li {
	text-align: left;
	padding-top:5px;
	padding-bottom:5px;
	border-bottom:solid 1px #ccc;
	transition:all 1s ease;
}

.user-box > #user-dropdown > .body > ul > li:last-child {
	border-bottom:solid 1px var(--color-blue);
}

.user-box > #user-dropdown > .body > ul > li:hover {
	border-bottom:solid 1px var(--color-mint);
	transition:all 1s ease;
}

.user-box > #user-dropdown > .body a {
	font-size:17px;
	font-weight:500;
	color:white;
	display:inline-block;
	width:100%;
	line-height:30px;
	text-align:left;
}

.user-box > #user-dropdown > .body a > i {
	color:var(--color-mint);
	opacity:.3;
	margin-right:5px;
}

.user-box > #user-dropdown > .body a:hover {
	color:var(--color-mint);
	text-decoration: none;
	transition:all 1s ease;
}

.user-box > #user-dropdown > .body a:hover > i {
	color:var(--color-mint);
	opacity:.8;
	transition:all 1s ease;
}


.bm1 {
	margin-bottom:1em;
}

.bm2 {
	margin-bottom:2em;
}

.bm3 {
	margin-bottom:3em !important;
}

.bm6 {
	margin-bottom:6em !important;
}

.bt12 {
	margin-bottom:12em !important;
}

.bm12 {
	margin-bottom:12em !important;
}

.r1 {
	grid-template-columns: 1fr !important;
}

.r2 {
	grid-template-columns: 1fr 1fr;
}

.r3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.r4 {
	grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
}

@media only screen and (max-width: 600px) {
	.r4 {
		grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
	}
}


.r5 {
	grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
}

.mt1 {
	margin-top:1em;
}

.mt2 {
	margin-top:2em;
}

.mt3 {
	margin-top:3em;
}

.mb1 {
	margin-bottom:1em;
}

.mb2 {
	margin-bottom:2em;
}

.mb3 {
	margin-bottom:3em;
}

.mb4 {
	margin-bottom:4em;
}

.mb6 {
	margin-bottom:5em;
}

.mb6 {
	margin-bottom:6em;
}


.pb1 {
	padding-bottom:1em;
}

.pb2 {
	padding-bottom:2em;
}

.pb3 {
	padding-bottom:3em;
}


.pt1 {
	padding-top:1em !important;
}

.pt2 {
	padding-top:2em !important;
}

.pt3 {
	padding-top:3em;
}


.register-type {
	display:grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 200px;
	background:#F2F2F2;
	margin-bottom:1em;
	font-size:100px;
}

.register-type > .item {
	height:200px;
	text-align:center;
	padding-top:30px;
	cursor:pointer;
	color:#900;
}

.registration-form {
	padding-left:1em;
	padding-right:1em;
	padding-bottom:2em;
}

.register-type > .active {
	background:white;
}

.register-type > .item:hover {
}

p.register-text {
	color:var(--color-blue);
	font-size:14px;
	line-height:20px;
}

.register-form {
	margin-top:0em;
}

.register-box > h4 {
	margin-bottom:0;
}

.registration-form h6 {
	margin-bottom:5px;
	margin-top:20px;
	font-size:12px;
	color:#666;
	padding-left:0px;
	font-weight:bold;
}

.register-box input[type=text], 
.register-box input[type=password], 
.register-box input[type=email],
.register-box select {
	border:0;
	background:#f5f5f5;
	font-size:17px;
	padding:5px;
	padding-left:15px;
	color:#444;
	font-weight:300;
}

.register-box input[type=text]::placeholder, 
.register-box input[type=password]::placeholder, 
.register-box input[type=email]::placeholder {
	color:#ccc;
}

.register-company-form {

}

.register-private-form {
	display:none;
}

#compare-header {
	display:grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-gap:1em;
	margin-top:1em;
	border-bottom:solid 10px #f5f5f5;
	padding-bottom:0;
}
 
#compare-header > .item {
	padding:0;
}

#compare {
	display:grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-gap:1em;
	margin-bottom:2em;
}

#compare ul.details-list {
	list-style:none;
	margin:0;
	padding:0;
}

#compare ul.details-list > li {
	border-bottom:solid 1px rgba(9, 27, 80, .4);
	padding-bottom:5px;
	padding-top:5px;
	height:38px;
	text-overflow: ellipsis;
	overflow: hidden; 
	text-align:center;
	font-size:14px;
	line-height:25px;
	color:var(--color-blue);
}

#compare ul.details-list > li:last-child {
	border-bottom:solid 2px rgba(9, 27, 80, .5);
}

#compare ul.details-list > li:first-child {
	border-top:solid 2px rgba(9, 27, 80, .5);
}


#compare ul.details-list > li:hover {
	background:var(--color-mint);
	color:var(--color-blue);
}

#compare li.remove-bar {
	background:#eee;
	color:var(--color-blue);
	font-weight:700;
	cursor:pointer;
}


.main-item {
	text-align:left;
	color:var(--color-blue);
	font-size:14px;
	padding-right:1em;
	padding-left:0em;
}

.main-item > h1 {
	font-size:37px;
	font-family: museo-slab, serif;
	font-weight:500;
	margin-top:1em;
	padding-left:0;
	margin-left:0;
	text-align:left;
}

.main-item > p {
	text-align:left;
	color:var(--color-blue);
	font-size:14px;
	padding-right:1em;
	padding-left:0em;
}


@media only screen and (max-width: 700px) {
	.compare-page {
		width:100%;
		overflow-x: auto;
	}

	.compare-content {
		min-width:1000px;
	}
	.main-item > h1 {
		font-size:20px;
	}
	
	.main-item {
	}

	.compare-page .category-list > .item > .picture img {
	    object-fit: contain;
	    width: 100%;
	    height: 100px;
	    margin-bottom: 1em;
	}

}


.flickity-viewport {
	width:100%;
}

#compare-box {
	position:fixed;
	bottom:0;
	padding:1em;
	width:100%;
	text-align:center;
	font-size:17px;
	font-weight:600;
	background:#900;
	background:var(--color-mint);
	color:var(--color-blue);
	z-index:20000;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	opacity:.92;
	display:none;
}

#compare-box > a {
	background:var(--color-blue);
	color:var(--color-mint);
	border-radius:5px;
	padding:5px;
	font-weight:900;
	font-size:14px;
}

#compare-box > a:hover {
	color:white;
	text-decoration: none;
}

#compare-box > div.close {
	cursor:pointer;
}

#compare-box > span.compare-num-box {
	font-size:14px;
}

#compare-mini-box {
	position:fixed;
	bottom:0;
	width:50px;
	right:0;
	padding:1em;
	text-align:center;
	font-size:17px;
	font-weight:600;
	background:#900;
	background:var(--color-mint);
	color:var(--color-blue);
	z-index:20000;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	opacity:.92;
	display:none;
	cursor:pointer;
}

.payment-list {
}

.payment-list > div {
	margin-top:10px;
	margin-bottom:10px;
}

.brand-img {
	filter:grayscale(100);
}

.grayscale {
	filter:grayscale(100);
}

.brand-img:hover {
	filter:grayscale(0);
}


#timeline-content {
}


/* Timeline */
.timeline {
	border-left: 4px solid var(--color-mint);
	margin: 0px 65px;
	position: relative;
	padding: 50px;
	list-style: none;
	text-align: left;
	font-weight: 100;
	width:97%;
	color:var(--color-blue);
	margin-bottom:2em;
}

@media only screen and (max-width: 500px) {
	.timeline {
		width:70vw;
	}
}

.timeline h2,
.timeline h3 {
	font-family: museo-slab, serif;
	font-weight:500;
	font-size:20px !important;
	line-height:26px !important;
}

.timeline .event {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 25px;
  margin-bottom: 50px;
  position: relative;
}

.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.timeline .event:before,
.timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline .event:before {
  left: -200.0px;
  color: var(--color-blue);
  content: attr(data-date);
  text-align: right;
  font-weight: 600;
  font-size:16px;
  min-width: 120px;
}

.timeline .event:after {
  box-shadow: 0 0 0 4px var(--color-mint);
  left: -57.85px;
  background: #313534;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  content: "";
  top: 5px;
}


.mobile-search .search {
	height: 40px;
	border-radius:10px;
	background: #F2F2F2 0% 0% no-repeat padding-box;
	display:grid;
	grid-template-columns: 1fr 50px;
	margin-left:10px;
	margin-right:10px;
}

.mobile-search .search input[type=text] {
	background:transparent;
	height:30px;
	margin-top:5px;
	margin-left:5px;
	padding-left:15px;
	border:none;
	float:left;
	font-family: 'Open Sans';
	font-size:17px;
	line-height: 23px;
	font-weight: 400;
	color:#555;
}

.mobile-search .search .icon{
	float:right;
	font-size:25px;
	text-align:center;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.mobile-search .search .icon:hover {
	background: var(--color-blue);
	color:var(--color-mint);
	cursor:pointer;
}

.bg-blue {
	background:var(--color-blue);
	min-height:250px;
	position:relative;
}

.first-row {
	text-align:center;
	width:100%;
	height:100%;
	background-color:var(--color-blue);
	background-image: url(/images/vse-za-dom2.jpg);
	background-position: top center;
	background-repeat: repeat-x;
	object-fit: contain;
	min-height:250px;
	margin:0;
	margin-bottom:1em;
}

.first-row h3 {
	text-decoration: none;
	color:white;
	text-align:center;
	font-size:25px;
	position:absolute;
	bottom:1em;
	left:0;
	right:0;
	padding:0;
	width:100%;
}

.first-row > .picture {
	height:200px;
}

@media only screen and (max-width: 575px) {
	.first-row {
		height:340px;
	}

	.first-row h3 {
		bottom:2em;
	}
}


.product-list {
	/*display:flex;
	flex-wrap: nowrap;
	overflow:hidden;
	justify-content: space-around;
	*/
}

.product-list .item {
	background:white;
	min-width:250px;
}

.product-list .item > .picture {
	position: relative;

}

.product-list .item > .picture img {
	object-fit: contain;
	width:100%;
	height:280px;
	margin-bottom: 1em;
}

.fit-cover > a > img {
	object-fit: cover !important;
}

.r5 > .item > .picture img {
	height:180px;
}

.product-list .item > .picture > .discount-circle {
	position:absolute;
	top:5px;
	left:5px;
	width:52px;
	height:52px;
	border-radius:26px;
	color:white;
	font-weight:900;
	text-align:center;
	background:var(--color-red);
	font-size:19px;
	font-family:'Source Sans Pro';
	padding-top:12px;
}

.product-list .item > .picture > .favourite {
	position:absolute;
	right:5px;
	top:0px;
	font-size:20px;
	color:#9ba1b6;
}

.product-list .item > .picture > .favourite:hover {
	color:var(--color-blue);
	cursor:pointer;

}

.product-list .item > .details {
	padding-left:1em;
	padding-right:1em;
	color:var(--color-blue);
	margin-bottom:.5em;
}

.product-list .item > .details > h3 {
	font-size:16px;
	line-height:20px;
	font-weight:400;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 40px;
}

.product-list .item > .details > h3 > a {
	color:var(--color-blue);
}

.product-list .item > .details > h3 > a:hover {
}


.product-list .item > .details > h5 {
	font-size:11px;
	line-height:16px;
	letter-spacing: 1.43px;
	text-transform: uppercase;
	font-weight:700;
	overflow: hidden;
	text-overflow: ellipsis;
	height:40px;
	max-width:200px;
}

.product-list .item > .details > .discount-price {
	font-size:12px;
	line-height: 17px;
	text-decoration: line-through;
}

.product-list .item > .details > .info {
	display:grid;
	grid-template-columns: 1fr 1fr;
}

.product-list .item > .details > .info > .price {
	font-size:19px;
	line-height: 26px;
	font-weight:700;
	color:var(--color-mint);
}

.product-list .item > .details > .info > .stock {
	font-size:12px;
	line-height: 17px;
	text-align:right;
	align-self: end;
}

.product-list .item > .options {
	display:grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 42px;
	grid-gap: 1px;
	background:var(--color-mint);
}

.product-list .item > .options > div {
	background:var(--color-blue);
	color:var(--color-mint);
	align-self: center;
	font-size:12px;
	line-height: 17px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.14px;
	text-align:center;
	padding-top:13px;
	padding-bottom:13px;
}

.product-list .item > .options > div:hover {
	background:var(--color-mint);
	color:var(--color-blue);
	cursor:pointer;
}

ul.products-mobile-menu {
	list-style:none;
	margin:0;
	padding:0px;
	font-size:15px;
	font-family:'Open Sans';
	width:100%;
}

ul.products-mobile-menu li {
	padding: 15px 0 15px 0;
	border-bottom:solid 1px #fff;
}

ul.products-mobile-menu li > a {
	color:var(--color-blue);
}

ul.products-mobile-menu li > ul {
	list-style:none;
	margin:0;
	padding:0;
	display:none;
}

.page-link {
    color: var(--color-blue);
    font-weight:700;
    background-color: white;
    border: 1px solid #dee2e6;
}

.page-item.active .page-link {
    color: var(--color-blue);
    background-color: var(--color-mint);
    border-color: #dee2e6;
}

.page-link:hover {
  color: var(--color-blue);
  text-decoration: none;
  background-color: var(--color-mint);
  border-color: #dee2e6;
}

.page-item.disabled .page-link {
    color: var(--color-blue);
    background-color: #f0f0f0;
    border-color: #dee2e6;
}

.form-control:focus {
    border:solid 1px var(--color-mint);
    background:#eee;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.user-layout {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100vh;
	background:rgba(255,255,255,0.93);
	z-index:40000;
	display:grid;
	grid-template-columns: 1fr;
	grid-auto-rows: 100vh;
	justify-items:center;
	align-items:center;
	display:none;
}

.user-layout > ul {
	list-style:none;
	margin:0;
	padding:0;
	width:100%;
	margin-top:3em;
	place-self: center;
}

.user-layout > ul > li {
	width:100%;
	padding:10px 0 10px 0;
	text-align:center;
	text-transform: uppercase;
}

.user-layout > ul > li > a {
	color:var(--color-blue);
	font-size:22px;
	line-height:28px;
	font-weight:600;
}

.user-layout > ul > li:hover a {
	color:var(--color-mint);
	text-decoration: none;
	cursor:pointer;
}

.user-layout .user-layout-close {
	position:absolute;
	bottom: 0px;
	left:0;
	height:40px;
	width:100%;
	text-align:center;
	cursor:pointer;
	background:var(--color-blue);
	color:white;
	font-size:17px;
	text-transform: uppercase;
	z-index:40001;
	cursor:pointer;
	padding-top:8px;
}

.minh {
	min-height:600px;
}

.p0 {
	padding:0;
}

.basket-info {
	margin-top:2em;
	margin-bottom:1em;
}

.table-grid {
  display: grid;
  border-collapse: collapse;
  min-width: 100%;
  grid-template-columns: 
    minmax(150px, 1fr)
    minmax(150px, 1.67fr)
    minmax(150px, 1.67fr)
    minmax(150px, 1.67fr)
    minmax(150px, 1.67fr);
}

.table-grid thead,
.table-grid tbody,
.table-grid tr {
  display: contents;
}

.table-grid th,
.table-grid td {
  padding: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.table-grid th {
  position: sticky;
  top: 0;
  background: var(--color-mint);
  color:var(--color-blue);
  text-align: left;
  font-weight: normal;
  font-size: 1.1rem;
  color: white;
}

.table-grid th:last-child {
  border: 0;
}

.table-grid td {
  padding-top: 10px;
  padding-bottom: 10px;
}

.table-grid tr:nth-child(even) td {
	background:#eee;
}

.categories-list {
	list-style:none;
	margin:0;
	padding:0;
}

.categories-list > li {
	background:var(--color-blue);
	color:var(-color-mint);
	border-bottom:solid 1px rgba(255,255,255,.9);
	font-weight:bold;
}

.categories-list > li > a {
	color:white;
	text-decoration: none;	
	padding:1em;
	display:block;
}

.categories-list > li:hover {
	background:var(--color-mint);
}
.categories-list > li:hover > a {
	color:var(--color-blue);
}
/*
.tp-bullets {
	margin-bottom:-0px;
	background:red;
}

.x-slider-scroll-bottom.bottom {
bottom: 40px;
}
*/

.flexslider {
    margin: 0 !important;
}

.hidden {
	display:none
}

.footer-banners {
	background:white;
	margin-top:1em;
	padding-top:2em;
}

.footer-banners h5 {
	font-size:17px;
	line-height:22px;
	margin:0;
	padding:0;
}

.footer-banners > div {
	padding:.5em;
}
.footer-banners img {
	max-height:50px;
}

@media only screen and (max-width: 600px) {

	.footer-banners h5 {
		font-size:13px;
		line-height:16px;
		margin-bottom:0;
	}

}


/* Slider */
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
	width:100%;
	height:30px;
	object-fit:contain;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
