/*================================================================
	CSS dokument - izdelava spletnih strani www.intuitiva.si
================================================================*/

:focus {
	outline: none;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Reset 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* GENERAL
----------------------------------------------------------------*/

html {
	-webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
	height: 100%;
	font-size: 16px;
}
body {
	margin: 0;
	padding: 0;
	line-height: 1.4rem;
    font-family: 'Josefin Sans', sans-serif;
	color: #000;
	font-weight: 300;
	background: rgb(255,255,255);
}
a {
	color: rgba(39,96,172,1.00);
	text-decoration: none;
	position: relative;
}
a.fancy::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 1px;
	background-color: rgba(39,96,172,1.00);

	transform: scaleX(0);
	transform-origin: right;
	transition: transform 200ms ease-in;
}
a:hover {
	text-decoration: underline;
}
p {
	margin: 20px 0;
	letter-spacing: 0.5px;
}
p:first-of-type {
	margin-top: 0;
}
p:last-of-type {
	margin-bottom: 0;
}
h1, h2, h3, h4 {
	padding: 0;
	margin: 0;
	font-weight: 300;
	color: rgba(39,96,172,1.00);
	line-height: 1.2em;
}
h1, h2, h3, h4, h1 a, h2 a, h3 a, h4 a {
	color: rgba(39,96,172,1.00);
}
h1 {
	font-size: 3rem;
}
h2 {
	font-size: 2.4rem;
}
h3 {
	font-size: 2rem;
}
h4 {
	font-size: 1.4rem;
}
strong {
	font-weight: 600;
}
input[type=text], input[type=submit], button, textarea, select  {
	font-size: 16px;
	padding: 0;
    border-radius: 0;
	-webkit-appearance: none;
    font-family: 'Josefin Sans', sans-serif;
}

/* HEADER
----------------------------------------------------------------*/

header, #headerContainer, #header {
	display: flex;
	width: 100%;
	padding: 0;
	flex-flow: column;
}
header a {
	color: rgba(68,68,68,1.00);
}
#headerNotification {
	display: flex;
	flex-flow: column;
	justify-content: center;
	background-color: rgb(235, 34, 44);
	min-height: 48px;
}
#headerNotification #headerNotificationText{
	display: block;
	width: 100%;
	font-size: 0.875rem;
	padding: 10px 10px;
	text-align: center;
	color: #FFF;
	cursor: pointer;
	font-weight: 600;
}
#headerTopContainer {
	display: flex;
	width: 100%;
	background-color: rgba(39,96,172,1.00);
	height: 48px;
	color: #FFF;
	font-size: 0.875rem;
	transition: top 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#headerTopContainer a {
	color: #FFF;
}
#headerTop {
	display: flex;
	width: 100%;
	max-width: 1460px;
	margin: 0 auto;
	flex-flow: row;
	justify-content: space-between;
	position: relative;
}
#headerTopLeft, #headerTopRight {
	display: flex;
	flex-flow: row;
}
#headerTopRight {
	text-transform: uppercase;
}
.headerTopItem {
	display: flex;
	align-self: center;
	margin: 0 20px;
	line-height: 1.9rem;
}
#headerTopMail {
	text-transform: lowercase;
}
#headerTopPhone::before, #headerTopMail::before, #headerTopCart::before, #headerTopLanguage::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	float: left;
	margin: 2px 6px 0 0;
	background-repeat: no-repeat;
	background-position: bottom;
}
#headerTopPhone::before {
	background-image: url("../img/icon-phone-2.svg");
}
#headerTopMail::before {
	background-image: url("../img/icon-mail-2.svg");
}
#headerTopCart::before {
	background-image: url("../img/icon-cart-2.svg");
}
#headerTopLanguage::before {
	background-image: url("../img/icon-globe.svg");
}
#headerTopCart, #headerTopLanguage {
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	cursor: pointer;
}
#headerTopLanguage:hover span {
	text-decoration: underline;
}
#headerTopCart .headerCartNum, #headerTopCart .headerCartText {
	font-weight: 600;
}
#languageSelectList {
	display: flex;
	flex-flow: column;
	width: 100%;
	padding: 20px 0 10px;
	align-items: center;
}
a.languageSelect {
	display: flex;
	width: 100%;
	/*max-width: 400px;*/
	padding: 10px 20px;
	background-color: rgba(0,0,0,0.05);
	line-height: 30px;
	text-transform: uppercase;
}
a.languageSelect:hover {
	text-decoration: none;
	background-color: rgba(0,0,0,0.1);
}
.languageSelect + .languageSelect {
	margin-top: 10px;
}
a.languageSelect::before {
	content: "";
	display: block;
	width: 28px;
	height: 28px;
	float: left;
	margin: 2px 6px 0 0;
	background-repeat: no-repeat;
	background-position: bottom;
	background-image: url("../img/icon-globe.svg");
}
a.languageSelect.lang-sl::before {
	background-image: url("../img/flag-slovenia.svg");
}
a.languageSelect.lang-en::before {
	background-image: url("../img/flag-english.svg");
}
#header {
	display: flex;
	flex-flow: column;
	max-width: 1460px;
	margin: 0 auto;
	padding: 0;
}
#headerLogo {
	display: flex;
	width: 260px;
	margin: 0 0 0 20px;
	flex-shrink: 0;
	flex-flow: column;
}
#logo {
	display: flex;
	width: 100%;
	position: relative;
}
#logo img {
	display: block;
	width: 100%;
	height: auto;
}
#logo::after {
    display: block;
    content: 'SINCE 2012';
    font-weight: 600;
    font-size: .85em;
    position: absolute;
    top: -20px;
    right: -5px;
    font-style: italic;
    color: rgba(39,96,172,1.00);

}

/* HEADER NAVIGATION */

nav#headerNav {
	display: block;
	width: 100%;
	margin: 60px 0 40px;
}
nav#headerNav #headerNavInner {
	display: flex;
	width: 100%;
	flex-flow: row;
	justify-content: space-between;
}
nav#headerNav .headerNavToolbar {
	display: flex;
	flex-flow: row;
	flex-grow: 1;
	justify-content: space-between;
}
nav#headerNav .headerNavSearch {
	display: flex;
	flex-grow: 1;
	flex-flow: row;
	justify-content: flex-end;
	margin-right: 20px;
	max-width: 450px;
}
nav#headerNav .headerNavSearch #searchForm {
	display: flex;
	flex-grow: 1;
	flex-flow: row;
	height: 38px;
	align-self: center;
}
nav#headerNav .headerNavSearch #searchForm button {
	border: 0;
	width: 54px;
	height: 38px;
	background-color: rgba(0,0,0,0.10);
	text-indent: -999px;
	overflow: hidden;
	background-image: url("../img/icon-search.svg");
	background-repeat: no-repeat;
	background-position: 14px center;
	background-size: 24px 24px;
	margin: 0;
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
nav#headerNav .headerNavSearch #searchForm button:hover {
	background-color: rgba(0,0,0,0.20);
	cursor: pointer;
}
nav#headerNav .headerNavSearch input[type=text] {
	display: flex;
	flex-grow: 1;
	height: 38px;
	border-top: 1px solid rgba(0,0,0,0.10);
	border-left: 1px solid rgba(0,0,0,0.10);
	border-bottom: 1px solid rgba(0,0,0,0.10);
	border-right: none;
	padding-left: 16px;
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	margin: 0;
	min-width: 240px;
}
nav#headerNav .headerNavSearch input[type=text]:hover {
	border-top: 1px solid rgba(0,0,0,0.20);
	border-left: 1px solid rgba(0,0,0,0.20);
	border-bottom: 1px solid rgba(0,0,0,0.20);
	border-right: none;
}
nav#headerNav .headerNavRow {
	display: flex;
	margin-left: 30px;
	margin-right: 30px;
}
nav#headerNav .headerNavRow a {
	margin: 0 10px;
	padding: 12px 14px 0;
	font-size: 1.25rem;
	line-height: normal;
	white-space: nowrap;
	align-self: center;
	color: rgba(0,0,0,1.00);
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	font-weight: 600;
	letter-spacing: 1px;
}
nav#headerNav .headerNavRow a:hover {
	text-decoration: none;
	color: rgba(39,96,172,1.00);
}
nav#headerNav .headerNavRow a.selected {
	color: rgba(39,96,172,1.00);
}

/* SECONDARY HEADER NAVIGATION */

#headerNavSecondary, #headerNavSecondaryInner {
	display: flex;
	width: 100%;
}
#headerNavSecondaryInner {
	display: flex;
	width: 100%;
	flex-flow: row;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
	justify-content: center;
}
#headerNavSecondaryInner a {
	margin: 0 10px;
	padding: 7px 10px;
	line-height: normal;
	font-size: .75rem;
	text-transform: uppercase;
	white-space: nowrap;
	align-self: center;
	color: rgba(0,0,0,1.00);
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	font-weight: 300;
	letter-spacing: 1px;
}
#headerNavSecondaryInner a:hover {
	text-decoration: none;
	color: rgba(39,96,172,1.00);
}
#headerNavSecondaryInner a.selected {
	color: rgba(39,96,172,1.00);
}

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


p a.file {
	background: url("../img/icon-file.svg") no-repeat left center;
	padding-left: 26px;
}
p a.file[href*=".txt"] {
	background: url("../img/icon-file-txt.svg") no-repeat left center;
}
p a.file[href*=".xls"], p a.file[href*=".xlsx"] {
	background: url("../img/icon-file-xls.svg") no-repeat left center;
}
p a.file[href*=".doc"], p a.file[href*=".docx"] {
	background: url("../img/icon-file-doc.svg") no-repeat left center;
}
p a.file[href*=".pdf"] {
	background: url("../img/icon-file-pdf.svg") no-repeat left center;
}
a.external {
	background: url("../img/icon-external-link.svg") no-repeat right center;
	padding-right: 20px;
	background-size: 18px;
}
main {
	display: flex;
	width: 100%;
	flex-flow: column;
}
/*body.notFound main {
	margin: 60px 0 120px;
}*/
.animated {
	opacity: 0;
}
section {
	display: flex;
	width: 100%;
	/*font-size: 1.25rem;*/
	line-height: 1.4em;
}
section.title {
	flex-flow: column;
	text-align: center;
}
section.title p:first-of-type {
	margin-top: 20px;
}
section.title h1 {
	margin: 60px auto 0;
}
h1 + h2, h1 + h3, h1 + h4 {
	margin-top: 10px;
}
/*section.title:first-of-type h1 {
	margin: 0 auto;
}*/
.contentContainer {
	margin-top: 40px;
	flex-flow: column;
}
.contentInner {
	display: block;
	width: 100%;
	max-width: 1460px;
	padding: 0 20px;
	margin: 0 auto;
}
.contentInnerHeroImg {
	display: block;
	width: 100%;
	height: auto;
}
.contentInner.grey {
	background-color: #f2f2f2;
	padding: 40px;
}
.contentInner.greyHero {
	background-color: rgba(0,0,0,0.10);
	padding: 40px;
}
.contentImg {
	display: block;
	width: 100%;
	height: auto;
}
.contentContainer h1, .contentContainer h2, .contentContainer h3, .contentContainer h4 {
	margin: 0 0 20px 0;
}
.contentInner p a, .contentInner ul a {
	text-decoration: none;
	color: rgba(39,96,172,1.00);
}
.contentInner p a:hover, .contentInner ul a:hover {
	text-decoration: underline;
}
.contentInner .center {
	text-align: center;
}
.center {
	text-align: center;
}
ul, ol {
	list-style: disc;
	padding-left: 32px;
	margin: 20px 0;
}
ol {
	list-style: decimal;
}
/*ul li, ol li {
	padding: 4px 0;
}*/


/* VIDEO */

.videoContiner {
    display: block;
    width: 100%;
    height: auto;
}

/* FEATURED */

#featuredSlider .productListImg {
	border: none;
}
.featuredList.featuredList1 {
	border-bottom: 1px solid rgba(0,0,0,0.10);
	background: rgb(255,255,255);
	background: linear-gradient(to top, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0) 100%);
	margin-top: 0;
}
.featuredList.featuredList2 {
	/*border-bottom: 1px solid rgba(0,0,0,0.10);
	background: rgb(255,255,255);
	background: linear-gradient(to top, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0) 100%);*/
	margin-top: 0;
	margin-bottom: 40px;
}
.featuredList .contentInner {
	padding: 40px 0;
}
.featuredListInner {
	display: block;
	width: 100%;
	padding: 0 20px 40px;
	margin: 0 auto;
}
.contentContainer.featuredList h2 {
	margin: 0;
}
.featuredListItem {
	display: flex;
	padding: 0 20px;
}
.featuredList2 .featuredListItem, .simmilarList .featuredListItem {
	flex-grow: 1;
}
.featuredListInner.grid {
	padding: 0 20px 0;
}
#featuredGrid {
	display: flex;
	flex-flow: row wrap;
}
#featuredGrid .featuredListItem {
	width: 25%;
	padding: 20px;
}

/* HOME COLLECTION */

#homeColBox {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	margin: 0 auto;
}
.homeCol {
	display: block;
	width: 33.33%;
	text-align: center;
	padding: 0 20px;
}
/*.homeCol p {
	border-bottom: 1px dotted rgba(39,96,172,1.00);
}
.homeCol:hover p {
	border-bottom: 1px solid rgba(39,96,172,1.00);
}*/
.homeCol a:hover {
	text-decoration: none!important;
}
.homeCol h3 {
	color: rgba(39,96,172,1.00);
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #eaeaea;
}
#homeColLink {
	display: block;
	width: 100%;
	padding-top: 80px;
	text-align: center;
	font-size: 1.2em;
}
.homeProducts img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}
.contentInner.greyHero {
	background-color: rgba(0,0,0,0.10);
	padding: 40px;
	font-size: 1.4rem;
	line-height: 1.4em;
}

/* BIG BUTTON */

.btnCenter {
	display: flex;
	width: 100%;
	flex-flow: row;
	justify-content: center;
	margin: 0 auto;
}
a.bigButton {
	display: flex;
	width: 100%;
	height: 54px;
	background-color: rgba(39,96,172,1.00);
	flex-flow: row;
	justify-content: center;
	cursor: pointer;
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	text-transform: uppercase;
	letter-spacing: 1px;
}
a.bigButton:hover {
	transform: scale(0.97);
	background-color: rgba(50,50,50,1.00);
	text-decoration: none;
}
a.bigButton span {
	display: flex;
	color: #FFF;
	align-self: center;
	line-height: 1.625em;
}

/* COLLECTIONS */

.collectionGallery, .collectionThumbs {
	display: block;
	width: 100%;
}
.collectionHero {
	display: block;
    width: 100%;
    height: auto;
	z-index: 1;
}
.collectionThumbs {
	display: flex;
	margin-top: -8%;
	flex-flow: row;
	padding: 0 10%;
	justify-content: space-between;
	z-index: 2;
	align-items: flex-start;
}
.collectionThumbs img {
	display: block;
	width: 30%;
	height: auto;
	border: 8px solid #FFF;
}

/* NEWS */

.contentInner.newsList {
	display: flex;
	flex-flow: row wrap;
	padding: 0 20px;
}
.newsItemBlock {
	display: flex;
	flex-flow: column;
	width: 100%;
	padding: 40px 20px 0;
}
.newsList .newsItemBlock:nth-of-type(1),
.newsList .newsItemBlock:nth-of-type(2) {
	padding-top: 0;
}
.newsList .newsItemBlock {
	width: 50%;
}
.newsItemBox {
	display: flex;
	flex-flow: column;
	width: 100%;
}
.newsList .newsItemBox {
	border: 1px solid rgba(0, 0, 0, 0);
	padding: 20px;
	flex-grow: 1;
}
.newsList .newsItemBox:hover {
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.newsItemTitle, .newsItemSubtitle {
	display: block;
	margin: 0 auto;
	text-align: center;
}
.newsItemSubtitle {
	width: 100%;
}
.newsItemTitle h1 a:hover {
	text-decoration: none;
}
.newsItemDate {
	display: block;
	font-size: 0.75rem;
	letter-spacing: 1px;
	color: #999;
	margin-bottom: 20px;
	text-align: center;
}
a.newsItemImg {
	transition: transform .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
a.newsItemImg:hover {
	transform: scale(0.97);
}
.newsGallery {
	display: block;
	width: 100%;
}
.newsGallery #newsSlider a, .newsGallery .newsGallerySingle, .newsItemImg, .newsGallery #articleSliderThumbnails .articleThumbnailContainer {
	display: block;
	width: 100%;
	padding-bottom: 100%!important;
	position: relative;
}
.newsGallery #newsSlider img, .newsGallery .newsGallerySingle img, .newsItemImg img, .newsGallery #articleSliderThumbnails .articleThumbnailContainer img {
	display: block;
	width: 100%;
	height: 100%!important;
	object-fit: contain;
	position: absolute;
}
.newsGallery #articleSliderThumbnails {
	margin-top: 20px;
}
.newsItemContent {
	display: flex;
	/*width: 60%;*/
	flex-flow: column;
	margin: 20px auto 0;
	line-height: 1.6em;
}
.newsItemContent h1,
.newsItemContent h2,
.newsItemContent h3,
.newsItemContent h4 {
	margin-bottom: 20px;
}
.newsItemContent ul {
	list-style: disc;
	margin: 20px 0;
	padding-left: 32px;
}
.newsItemContent h2 {
	font-size: 2rem;
}
.newsItemContent h3 {
	font-size: 1.5rem;
	font-weight: 600;
}
.newsItemText {
	display: block;
	letter-spacing: 0.5px;
}
.newsItemText img {
	display: block;
	width: 100%;
	height: auto;
}
.newsItemText a.readMore {
	color: rgba(39,96,172,1.00);
	display: inline-block;
	white-space: nowrap;
}

/* NEWS PAGINATION */

#newsPagination {
	display: flex;
	max-width: 100%;
	margin: 0 auto;
	padding: 60px 20px 0;
}
.newsPaginationInner {
	display: flex;
	flex-flow: row;
	width: 100%;
	max-width: 1460px;
	margin: 0 auto;
	justify-content: center;
}
.nextPost {
	position: relative;
	color: rgba(39,96,172,1.00);
	text-align: center;
}
.nextPost span {
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 110%;
	color: #999;
	font-size: 0.75rem;
	white-space: nowrap;
}

/* MAILLIST */

.maillistBox {
	background-color: rgba(0,0,0,0.03);
    margin: 0!important;
    padding-top: 30px;
    padding-bottom: 40px;
	border-bottom: 1px solid rgba(0,0,0,0.10);
}
.maillistBox a {
	max-width: 400px;
}

/* SHARE */

.newsShareBox {
	display: flex;
	flex-flow: row;
	width: 100%;
	margin-top: 80px;
	justify-content: center;
	position: relative;
}
.newsShareTitle {
	position: absolute;
	display: flex;
	color: #999;
	font-size: 0.75rem;
	white-space: nowrap;
	flex-flow: column;
	justify-content: center;
	bottom: 100%;
}
.newsShare {
	display: flex;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	overflow: hidden;
	opacity: 0.3;
	margin: 8px;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.newsShare.newsShareFb {
	background-image: url("../img/icon-share-facebook.svg");
}
.newsShare.newsShareTwitter {
	background-image: url("../img/icon-share-twitter.svg");
}
.newsShare.newsSharePinterest {
	background-image: url("../img/icon-share-pinterest.svg");
}
.newsShare.newsShareLinkedin {
	background-image: url("../img/icon-share-linkedin.svg");
}
.newsShare.newsShareMail {
	background-image: url("../img/icon-share-mail.svg");
}
.newsShare:hover {
	opacity: 1;
	cursor: pointer;
}

/* PRODUCT LIST */

.productListContainer {
	flex-flow: row;
	align-items: flex-start;
}
.productListInner {
	display: flex;
	width: 100%;
	max-width: 1460px;
	padding: 0;
	margin: 0 auto;
	flex-flow: row wrap;
}
.productListMenu {
	display: none;
}
.productListItem {
	display: flex;
	width: 25%;
	padding: 20px;
	flex-flow: column;
}
/*.productListItem:hover {
	border: 1px solid rgba(0, 0, 0, 0.1);
}*/
.productListFrame {
	display: flex;
	flex-flow: column;
	flex-grow: 1;
	border: 1px solid rgba(0, 0, 0, 0);
	/*padding: 10px;*/
	background-color: #FFF;
}
/*.productListFrame:hover {
	border: 1px solid rgba(0, 0, 0, 0.1);
}*/
.productListImg {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
	/*border: 1px solid rgba(0, 0, 0, 0.1);*/
	/*transition: transform .3s cubic-bezier(0.165, 0.84, 0.44, 1);*/
	/*min-height: 50px;*/
	padding-bottom: 100%!important;
	background-color: #FFF;
}
.productListImg img {
	display: block;
	width: 100%;
	height: 100%!important;
	position: absolute;
	object-fit: contain;
}
/*.productListImg:hover {
	transform: scale(0.97);
}*/
.productListBadge {
	display: flex;
	height: 32px;
	padding: 0 10px;
	flex-flow: column;
	justify-content: center;
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: rgba(39,96,172,1.00);
	color: #FFF;
	z-index: 5;
	/*border-radius: 3px;*/
	font-weight: 300;
}
.productBadge {
	display: block;
	margin-top: 20px;
}
.productBadge:empty {
	display: none;
}
.productBadgeBox {
	display: inline-block;
	font-weight: 600;
	color: #FFF;
	background-color: rgba(39,96,172,1.00);
	padding: 4px 10px;
}
.productListOverlay {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 100%;
	left: 0;
	right: 0;
	height: 100%;
	background-color: rgba(197,171,113,0.85);
	z-index: 2;
	transition: top .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	color: #FFF;
	padding: 10%;
	text-align: center;
	cursor: pointer;
}
.productListImg:hover .productListOverlay {
	top: 0;
}
.productListName {
	display: block;
	width: 100%;
	text-align: center;
	margin: 10px 0;
	cursor: pointer;
	color: rgba(50,50,50,1.00);
}
.productListName:hover {
	color: rgba(39,96,172,1.00);
	text-decoration: none;
}
.productListPrice {
	display: flex;
	width: 100%;
	flex-flow: row;
	justify-content: center;
	margin-bottom: 10px;
}
.productListPrice.discount .productNormalPrice,
.productPrice.discount .productNormalPrice,
.cartItemCol4 .productNormalPrice {
	text-decoration: line-through;
	color: #333;
}
.productListPrice.discount .productDiscountPrice,
.productPrice.discount .productDiscountPrice,
.cartItemCol4 .productDiscountPrice {
	margin-right: 10px;
	color: rgba(240,0,4,1.00);
}
.cartItemCol4 .productDiscountPrice {
	margin-right: 0;
}

/* PRODUCT COLOR */

.productListColor {
	display: flex;
	position: absolute;
	top: 16px;
	right: 16px;
	flex-flow: column;
	z-index: 1;
	width: 24px;
}
.productListColor span {
	display: flex;
	width: 100%;
	padding-top: 100%;
	border-radius: 50%;
}
.productListColor span + span {
	margin-top: 8px;
}

/* FILTER */

.productListToolbar {
	display: flex;
	width: 100%;
	padding: 10px 20px 0;
	margin-top: 20px;
}
.productListToolbarInner {
	display: flex;
	flex-flow: row;
	min-height: 48px;
	padding: 10px 0;
	width: 100%;
	/*background-color: rgba(0,0,0,0.05);*/
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.productListToolbarTitle {
	display: flex;
	align-self: center;
	font-size: 1.4rem;
}

/* SEARCH NO ITEMS */

.productListNoItems {
	display: flex;
	width: 100%;
	padding: 20px;
}
.productListNoItemsInner {
	display: flex;
	width: 100%;
	flex-flow: column;
	justify-content: center;
	min-height: 200px;
	background-color: rgba(0,0,0,0.03);
	align-content: center;
	text-align: center;
	padding: 20px;
}

/* PRODUCT */

.productContainer {
	display: flex;
	width: 100%;
	flex-flow: column;
	margin: 40px 0;
}
.productInner {
	display: flex;
	width: 100%;
	max-width: 1460px;
	margin: 0 auto;
	flex-flow: column;
}
.productInfo {
	display: flex;
	width: 100%;
	flex-flow: row;
}
.productInfo h1 {
	font-size: 2.4rem;
}
.productPrice {
	display: flex;
	flex-flow: row wrap;
	min-height: 24px;
	margin: 20px 0 40px;
	font-size: 1.25rem;
	line-height: 1em;
	font-weight: 600;
}
.productCode {
	color: rgba(39,96,172,1.00);
	margin-bottom: 5px;
	font-size: 0.8125rem;
}
.productGallery, .productDetails {
	display: flex;
	width: 50%;
	flex-flow: row;
	padding: 0 20px;
}
.productGallery {
	display: block;
	padding: 0 20px;
	margin-bottom: 20px;
}
.productGallery #productSlider a, .productGallery .productGallerySingle, .productGallery #productSliderThumbnails .productThumbnailContainer {
	display: block;
	width: 100%;
	padding-bottom: 100%!important;
	position: relative;
}
.productGallery #productSlider img, .productGallery .productGallerySingle img, .productGallery #productSliderThumbnails .productThumbnailContainer img {
	display: block;
	width: 100%;
	height: 100%!important;
	object-fit: contain;
	position: absolute;
}
.productGallery #productSliderThumbnails {
	margin-top: 20px;
}
.productDetailsAlign {
	display: flex;
	width: 100%;
	flex-flow: column;
}
.productShortDescription {
	display: block;
	margin-top: 40px;
}
.addToCart {
	display: flex;
	width: 100%;
	height: 54px;
	background-color: rgba(39,96,172,1.00);
	flex-flow: row;
	justify-content: center;
	cursor: pointer;
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	letter-spacing: 1px;
}
.addToCart:hover {
	transform: scale(0.97);
	background-color: rgba(50,50,50,1.00);
}
.addToCart div {
	display: flex;
	color: #FFF;
	align-self: center;
}
.addToCart div.btnTitle::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	float: left;
	margin: 0 8px 0 0;
	background-repeat: no-repeat;
	background-position: bottom;
	background-image: url("../img/icon-cart-2.svg");
}
.addToCart:not(.processing) div.btnProgress {
	display: none;
}
.addToCart.processing div.btnTitle {
	display: none;
}
.productDescription {
	display: block;
	position: relative;
	padding: 40px 40px 0;
	width: 100%;
	margin: 40px auto 0;
	border-top: 1px solid rgba(0,0,0,0.10);
}
.productDescriptionHead {
	position: absolute;
    margin-bottom: 5px;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #FFF;
    left: 50%;
	transform: translateX(-50%);
    top: -12px;
    padding: 0 4px;
}
.productDescription h1, .productDescription h2, .productDescription h3, .productDescription h4 {
	margin-bottom: 20px;
}
.productDescription img {
	max-width: 100%;
	height: auto;
}
.productOversized {
	display: block;
	margin-top: 20px;
}
.productOversized:hover {
	text-decoration: none;
}
.productOversized span {
	font-size: 0.75rem;
	color: rgba(39,96,172,1.00);
	border-bottom: 1px dotted rgba(0,0,0,0.20);
}
.productOversized span:hover {
	border-bottom: 1px solid rgba(39,96,172,1.00);
	cursor: pointer;
}
.productOversized span::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    float: left;
    margin: 1px 6px 0 0;
    background-repeat: no-repeat;
    background-position: bottom;
	background-image: url("../img/icon-popup.svg");
	background-size: contain;
}
#productVariations {
	display: flex;
	flex-flow: column;
	width: 100%;
	margin-top: 30px;
	position: relative;
}
.variationsTitle {
	position: absolute;
    margin-bottom: 5px;
    font-size: 0.875rem;
	text-transform: uppercase;
	font-weight: 600;
	background-color: #FFF;
	left: 10px;
	top: -12px;
	padding: 0 4px;
}

/* COLOR SELECTION */

#colorGroup {
	display: flex;
	position: relative;
	flex-flow: row;
	margin-top: 20px;
	border: 1px solid rgba(0,0,0,0.10);
	padding: 10px;
}
#productColorHead {
	position: absolute;
    margin-bottom: 5px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #FFF;
    left: 10px;
    top: -12px;
    padding: 0 4px;
}
#productColor {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	justify-content: center;
}
#productColor .colorItem {
	width: 48px;
	height: 48px;
	padding: 4px;
	margin: 5px;
	border-radius: 50%;
	position: relative;
}
#productColor .colorItem:hover {
	padding: 0;
	cursor: pointer;
}
#productColor .colorItem.selected::after {
	content: "";
	display: block;
	position: absolute;
	width: 22px;
	height: 22px;
	bottom: -5px;
	right: -5px;
	background-repeat: no-repeat;
	background-position: bottom;
	background-image: url("../img/icon-checked.svg");
}
#productColor .colorItem.selected {
	padding: 2px;
	border: 2px solid rgba(39,96,172,1.00);
}

#productColor .colorItem .colorContent {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

/* CRUMBLINE
----------------------------------------------------------------*/

.crumblineContainer {
	display: flex;
	width: 100%;
	background-color: rgba(0,0,0,0.05);
	/*border-top: 1px solid rgba(0,0,0,0.10);*/
	/*border-bottom: 1px solid rgba(0,0,0,0.10);*/
}
.crumblineInner {
	display: flex;
	width: 100%;
	padding: 5px 20px;
	max-width: 1460px;
	margin: 0 auto;
}
.crumblineInner ul {
	list-style: none;
	display: flex;
	width: 100%;
	flex-flow: row wrap;
	padding: 0;
	margin: 0;
}
.crumblineInner ul li {
	color: rgba(0,0,0,0.50);
	padding: 0 10px 0 0;
	font-size: 0.625rem;
	margin: 0;
}
.crumblineInner ul li a {
	color: rgba(0,0,0,0.50);
	text-transform: uppercase;
	white-space: nowrap;
}
.crumblineInner ul li.active {
	color: rgba(39,96,172,1.00);
	text-transform: uppercase;
	white-space: nowrap;
}

/* FILTER
----------------------------------------------------------------*/

.productFilter {
	padding: 0 20px 20px;
}
.itemCount {
	display: flex;
	flex-flow: column;
	padding-left: 10px;
	justify-content: center;
	font-size: 0.75rem;
	opacity: 0.5;
}
.filterContainer {
	display: flex;
	width: 100%;
	flex-flow: row;
	padding: 10px;
	background-color: rgba(0,0,0,0.05);
	justify-content: space-between;
}
.filterBox {
	display: flex;
	flex-flow: row;
}
.filterInner {
	display: flex;
	flex-flow: column;
	border-top: 1px solid rgba(0,0,0,0.10);
	border-left: 1px solid rgba(0,0,0,0.10);
	border-bottom: 1px solid rgba(0,0,0,0.10);
}
.filterInner:last-of-type {
	border-right: 1px solid rgba(0,0,0,0.10);
}
.filterItem {
	display: flex;
	text-align: center;
	justify-content: center;
	height: 36px;
	padding: 0 10px;
	min-width: 100px;
	background-color: rgba(255,255,255,1.00);
	font-size: 0.875rem;
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.filterItem span {
	align-self: center;
}
.filterItem:hover {
	background-color: rgba(0, 0, 0, 0.08);
	cursor: pointer;
}
.filterItem.active {
	font-weight: 600;
}
.filterItem span:after {
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.filterItem.desc span:after {
	display: block;
	float: right;
	content: '';
	width: 24px;
	height: 24px;
	background-image: url("/img/icon-sort.svg");
}
.filterItem.asc span:after {
	display: block;
	transform: rotate(180deg);
	float: right;
	content: '';
	width: 24px;
	height: 24px;
	background-image: url("/img/icon-sort.svg");
}

/* PAGINATION
----------------------------------------------------------------*/

#pagination {
	display: flex;
	max-width: 100%;
	margin: 0 auto;
	padding-top: 60px;
}
.paginationInner {
	display: flex;
	flex-flow: row;
	width: 100%;
	max-width: 1460px;
	padding: 0 20px;
	margin: 0 auto;
	justify-content: center;
}
.paginationInner.split {
	justify-content: space-between;
}
#pagination .padding {
	padding: 8px 20px 0;
	color: #999;
}
#pagination a, .paginationDots {
	text-decoration: none;
	min-width: 40px;
	height: 44px;
	text-align: center;
	margin: 0 8px;
	padding: 0 5px;
	font-size: 1.2rem;
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	line-height: 44px;
}
#pagination a.paginationPrev, #pagination a.paginationNext {
	padding: 0 20px;
}
#pagination a:hover {
	background-color: rgba(51,51,51,1.00);
	color: rgba(255,255,255,1.00);
}
#pagination a.active {
	background-color: rgba(39,96,172,1.00);
	color: #fff;
}
#pagination .paginationDots {
	color: rgba(0,0,0,0.30);
	letter-spacing: 3px;
}

/* SPINNER */

.spinner {
	align-self: center;
	display: inline-block;
	position: relative;
	width: 64px;
	height: 24px;
}
.spinner div {
	position: absolute;
	top: 7px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(50,50,50,1.00);
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.spinner.bright div {
	background: #FFF !important;
}
.spinner div:nth-child(1) {
	left: 6px;
	animation: spinner1 0.6s infinite;
}
.spinner div:nth-child(2) {
	left: 6px;
	animation: spinner2 0.6s infinite;
}
.spinner div:nth-child(3) {
	left: 26px;
	animation: spinner2 0.6s infinite;
}
.spinner div:nth-child(4) {
	left: 45px;
	animation: spinner3 0.6s infinite;
}
@keyframes spinner1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes spinner3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}
@keyframes spinner2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(19px, 0);
	}
}

/* ZEMLJEVID */

.zemljevidImg img {
	display: block;
    width: 100%;
	height: auto;
}

/* SLIDER
----------------------------------------------------------------*/

#sliderContainer {
	display: block;
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}
.splide__pagination {
	bottom: auto;
	margin-top: 13px;
}
.splide__pagination__page.is-active {
	background-color: rgba(39,96,172,1.00);
	transform: none;
}
.splide__slide {
	display: flex;
}
.splide__pagination li {
	line-height: 0;
}
.splide__slide img {
	width : 100%;
	height: auto;
}
.splide__arrow[disabled] {
	opacity: 0;
}
.productGallery .splide ul li, .productGallery .splide ol li {
	padding: 0;
	display: flex;
	align-items: flex-start;
}
.splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
    border-color: rgba(39,96,172,1.00);
}
.splide__arrow {
    width: 40px;
    height: 80px;
    border-radius: 0;
	background: none;
	background-size: 60%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
.splide__arrow svg {
	display: none!important;
}
.splide__arrow--prev {
	background-image: url("../img/slider-arrow-prev.svg");
	left: 10px;
}
.splide__arrow--next {
	background-image: url("../img/slider-arrow-next.svg");
	right: 10px;
}
.splideItems .splide__arrow--prev {
	left: -32px;
}
.splideItems .splide__arrow--next {
	right: -32px;
}
.splideItems .splide__arrow {
	top: 40%;
}


/* MOBILE MENU
----------------------------------------------------------------*/

#mobileMenuBtn {
	display: none;
	width: 48px;
	height: 48px;
	cursor: pointer;
	align-self: center;
	/*border-radius: 3px;*/
}
/* #mobileMenuBtn:hover {
	background-color: rgba(255,255,255,0.25);
} */
#nav-icon {
  width: 30px;
  height: 22px;
  position: relative;
  margin: 13px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: rgba(255,255,255,1.00);
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
}
#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
  top: 10px;
}
#nav-icon span:nth-child(4) {
  top: 20px;
}
#nav-icon.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}
#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#nav-icon.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

/* FOOTER ADVANTAGES
----------------------------------------------------------------*/

#advantagesContainer {
	display: flex;
	flex-flow: column;
	width: 100%;
	margin: 60px 0;
}
#advantagesInner {
	display: flex;
	flex-flow: row;
	width: 100%;
	max-width: 1460px;
	padding: 0 20px;
	margin: 0 auto;
}
.advantagesItem {
	display: flex;
	flex-flow: column;
	width: 33.33%;
	padding: 30px 0;
	justify-content: center;
}
.advantagesItem:nth-of-type(2) {
	border-left: 1px solid rgba(0,0,0,0.1);
	border-right: 1px solid rgba(0,0,0,0.1);
}
.advantagesItemContent {
	display: flex;
	align-self: center;
	flex-flow: row;
}
.advantagesItemContent div {
	align-self: center;
}
.advantagesIcon {
	display: flex;
	width: 64px;
	height: 64px;
	background-size: contain;
	background-repeat: no-repeat;
}
.icon1 {
	background-image: url("../img/icon-quality.svg");
}
.icon2 {
	background-image: url("../img/icon-shipping.svg");
}
.icon3 {
	background-image: url("../img/icon-secure.svg");
}
.advantagesText {
	display: flex;
	flex-flow: column;
	align-self: center;
	padding-left: 20px;
	text-transform: uppercase;

}
.advantagesText span {
	color: #999;
	font-size: 0.75rem;
	text-transform: none;
}

/* FOOTER
----------------------------------------------------------------*/

footer {
	display: flex;
	flex-flow: column;
	width: 100%;
	margin: 0 auto;
	background-color: rgba(39,96,172,1.00);
	color: rgba(255,255,255,0.50);
	letter-spacing: 1px;
	margin-top: 60px;
}
footer strong {
	color: rgba(255,255,255,1.00);
}
footer a {
	color: rgba(255,255,255,1.00);
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
footer a:hover {
	color: rgba(0,0,0,1.00);
	text-decoration: none;
}
#footerContainer {
	display: flex;
	flex-flow: row;
	width: 100%;
	max-width: 1460px;
	padding: 0 20px;
	margin: 0 auto;
	justify-content: space-between;
}
#footerLinks {
	display: flex;
	width: 100%;
	flex-flow: row;
	justify-content: space-between;
	margin: 30px 0;
}
#footerLinks .linksGroup {
	display: flex;
	width: 25%;
	flex-flow: column;
}
#footerLinks .linksGroup ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#footerLinks .linksGroup ul li {
	display: flex;
	width: 100%;
}
#footerLinks .linksGroup ul li a {
	display: block;
	width: 100%;
	line-height: 2rem;
}
.footerColText {
	display: block;
	width: 100%;
	line-height: 1.8rem;
	padding: 6px 0;
}
.footerContact {
	display: block;
	line-height: 1.9rem;
}
#footerMail {
	text-transform: lowercase;
}

/* COPYRIGHT */

#footerCopyrightContainer {
	display: flex;
	width: 100%;
	flex-flow: row;
	background-color: rgba(255,255,255,1);
	color: rgba(0,0,0,0.50);
}
#footerCopyrightContainer a {
	color: rgba(39,96,172,1.00);
    border-bottom: 1px dotted rgba(0,0,0,0.5);
	line-height: 1.2em;
}
#footerCopyrightContainer a:hover {
	color: rgba(0,0,0,1.00)
}
#copyrightAlign {
	display: flex;
	flex-flow: column;
	width: 100%;
	max-width: 1460px;
	margin: 40px auto;
	padding: 0 20px;
	justify-content: space-between;
}
#foterWebdesign, #footerCopyright, #footerShare, #footerPayment {
	display: flex;
	justify-content: center;
}
#footerCopyrightContainer span.padding {
	padding: 0 10px;
}
#foterWebdesign, #footerCopyright {
	margin-top: 20px;
}
#footerPayment {
	margin-top: 20px;
}
#certBox {
	display: block;
	text-align: center;
	margin-bottom: 20px;
}
#certBox img {
	width: 140px;
	height: auto;
}
.creditCards::after {
	content: '';
	display: inline-block;
	width: 128px;
	height: 20px;
	background-image: url("../img/icon-payment-all.svg");
	background-size: contain;
	margin-left: 8px;
	margin-bottom: -6px;
}

/* COOKIES
----------------------------------------------------------------*/

#cookieBox {
	display: flex;
	width: 100%;
	position: fixed;
	bottom: 0;
	z-index: 1001;
}
#cookieBoxContent {
	display: flex;
	flex-flow: row;
	width: 100%;
	max-width: 1460px;
	padding: 16px 20px;
	background-color: rgba(240, 240, 240, 1);
	border-top: 1px solid #ccc;
	margin: 0 auto;
}
#cookieText {
	display: flex;
	width: 80%;
	flex-flow: column;
	padding-right: 20px;
	padding-left: 56px;
	background-image: url("/img/cookies.svg");
	background-repeat: no-repeat;
	background-size: 46px 46px;
	background-position: left center;
}
#cookieText a{
	white-space: nowrap;
}
div#cookieBoxAgree {
	display: flex;
	height: 48px;
	line-height: 48px;
	background-color: rgba(39,96,172,1.00);
	color: #FFF;
	font-weight: 600;
	width: 20%;
	min-width: 160px;
	justify-content: center;
	white-space: nowrap;
	/*border-radius: 3px;*/
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
div#cookieBoxAgree:hover {
    cursor: pointer;
	text-decoration: none;
	transform: scale(0.97);
	background-color: rgba(50,50,50,1.00);
}
#cookieAccept, #cookieDecline, #cookieText a {
	color: rgba(39,96,172,1.00);
	text-decoration: none;
	cursor: pointer;
}
#cookieText a {
	font-weight: 600;
}
#cookieAccept:hover, #cookieDecline:hover, #cookieText a:hover {
	text-decoration: underline;
}

/* SCROLL TOP */

#scrollTop {
	display: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: rgba(40,40,40,1.00);
	position: fixed;
	right: 20px;
	bottom: 20px;
	box-shadow: 0 2px 5px 0px rgba(0,0,0,0.3);
	transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
	background-image: url("../img/icon-arrow.svg");
	background-position: 50% 45%;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	z-index: 1002;
}
#scrollTop:hover {
	transform: scale(1.2);
	cursor: pointer;
}

/* CART
----------------------------------------------------------------*/

#cart {
	flex-flow: column;
}
#cartContainer a {
	color: rgba(50,50,50,1.00);
}
#cartContainer {
	display: flex;
	width: 100%;
	max-width: 1460px;
	padding: 0 20px;
	margin: 60px auto 0;
	flex-flow: column;
}
.cartItem, .cartItemRow {
	display: flex;
	flex: 1 1 100%;
	flex-flow: row;
	min-height: 162px;
}
.cartItemBreak {
	display: flex;
	flex-flow: row;
}
.cartItem {
	padding: 20px 0;
	border-top: 1px solid rgba(0,0,0,0.10);
}
.cartItemCol {
	display: flex;
	flex-flow: column;
	justify-content: center;
}
.cartItemCol1 {
	flex: 0 1 182px;
	padding-right: 20px;
}
.cartItemCol1 a {
	display: block;
    width: 100%;
    padding-bottom: 100%!important;
    position: relative;
	min-width: 162px;
    margin: 0 auto;
}
.cartItemCol1 img {
	display: block;
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    position: absolute;
}
.cartItemCol2 {
	padding: 0 20px;
	flex-grow: 1;
}
.cartItemCol2 .cartItemId {
	color: #999;
	padding-bottom: 5px;
}
.cartItemCol2 .cartItemDesc {
	padding-top: 20px;
}
.cartItemCol2 .cartItemDesc:not(.productOversized) span {
	color: #ccc;
	padding: 0 10px;
}
.cartItemCol3 {
	display: flex;
	flex-flow: row nowrap;
	padding: 0 20px;
}
.cartItemCol3 div {
	align-self: center;
}
.itemControls {
	display: flex;
	flex-flow: row nowrap;
	margin-bottom: 20px;
}
.itemMinus, .cartItemMinus, .itemPlus, .cartItemPlus {
	display: block;
	width: 36px;
	height: 36px;
	text-indent: 9999px;
	/*background-color: rgba(0,0,0,0.10);*/
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px 24px;
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 2px solid rgba(39,96,172,1.00);
}
.itemMinus, .cartItemMinus {
	background-image: url(../img/icon-minus.svg);
}
.itemPlus, .cartItemPlus {
	background-image: url(../img/icon-plus.svg);
}
.itemMinus:hover, .cartItemMinus:hover, .itemPlus:hover, .cartItemPlus:hover {
	cursor: pointer;
	background-color: rgba(0,0,0,0.10);
}
.itemMinus.disabled, .cartItemMinus.disabled, .itemPlus.disabled, .cartItemPlus.disabled {
	opacity: .1;
}
.itemMinus.disabled:hover, .cartItemMinus.disabled:hover, .itemPlus.disabled:hover, .cartItemPlus.disabled:hover {
	cursor: auto;
	background-color: rgba(0,0,0,0.10);
}
.itemQty, .cartItemQty {
	width: 50px;
}
.itemQty input, .cartItemQty input {
	width: 100%;
	height: 36px;
	text-align: center;
	font-size: 1.4rem;
	border: none;
}
.cartItemCol4 {
	padding: 0 20px;
	text-align: right;
	flex-flow: column;
	white-space: nowrap;
	min-width: 140px;
}
.cartItemCol5 {
	padding: 0 20px;
	text-align: right;
	white-space: nowrap;
	min-width: 140px;
}
.cartItemCol6 {
	flex: 0 0 48px;
	padding-left: 20px;
}
.cartItemDelBtn {
	display: block;
	width: 36px;
	height: 36px;
	/*background-color: rgba(0,0,0,0.10);*/
	text-indent: 9999px;
	overflow: hidden;
	background-image: url(../img/icon-trash.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px 24px;
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cartItemDelBtn:hover {
	cursor: pointer;
	background-color: rgba(0,0,0,0.10);
}
#cartFooter {
	display: flex;
	width: 100%;
	flex-flow: column;
}
.cartInfo {
	display: block;
	width: 100%;
	padding-top: 40px;
}
.cartInfo ul {
	margin: 0;
	padding: 0 0 0 20px;
}
.cartInfo li {
	margin: 0;
	padding: 5px 0 0 0;
}
.productItemFreeShipping {
	display: block;
	margin: 20px 0;
	font-weight: 600;
	color: rgba(50,50,50,1.00);
	line-height: 26px;
}
.productItemFreeShipping::before {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    float: left;
    margin: 0 6px 0 0;
    background-repeat: no-repeat;
    background-position: bottom;
	background-image: url(../img/icon-approval.svg);
}
.cartSumContainer {
	display: flex;
	width: 100%;
	margin: 0 auto;
	flex-flow: column;
	background-color: #FFF;
	padding: 40px;
	border: 1px solid #ccc;
}
.cartSumRow {
	display: flex;
	flex-flow: row;
}
.cartSumRow.discount {
	color: rgba(240,0,4,1.00);
	text-transform: uppercase;
	font-weight: 600;
}
.cartSumRow1 + .cartSumRow1 {
	margin-top: 5px;
}
.cartSumRow.sumNoTax {
	margin-top: 5px;
	font-size: 0.875rem;
}
.cartSumRow.cartSumRow2 {
	font-size: 1.2rem;
	font-weight: 600;
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #ccc;
}
.cartSumCol {
	display: block;
	width: 50%;
}
.cartSumCol2 {
	text-align: right;
}
#cartEmptyBox, #cartSuccess {
	display: flex;
	width: 100%;
	margin: 80px auto 0;
	flex-flow: column;
}
.cartEmptyBoxMessage {
	display: flex;
	width: 100%;
	max-width: 1460px;
	justify-content: center;
	font-weight: 600;
	margin: 80px auto;
}
#cartEmptyIcon {
	display: block;
	width: 140px;
	height: 140px;
	margin: 0 auto;
	background-image: url("../img/icon-cart.svg");
	background-size: contain;
	background-repeat: no-repeat;
}
#cartSuccessBox {
	display: flex;
	width: 100%;
	padding: 0 20px;
	margin: 40px auto 0;
	flex-flow: column;
	max-width: 1460px;
}
.cartSuccessBoxMessage {
	display: flex;
	flex-flow: column;
	width: 100%;
}
.cartSuccessBoxMessage h3 {
	margin-bottom: 20px;
}
.cartSuccessBoxMessage p a {
	font-weight: 600;
}
#cartStatus {
	margin: 40px 0;
}
#cartFeedbackBox {
	display: flex;
	width: 100%;
	padding: 0 20px;
	margin: 40px auto 0;
	flex-flow: column;
	max-width: 1460px;
}
.cartFeedbackBoxMessage {
	display: flex;
	flex-flow: column;
	width: 100%;
}
.cartFeedbackBoxMessage h3 {
	margin-bottom: 20px;
}
.cartFeedbackBoxMessage p a {
	font-weight: 600;
}
#cartFeedbackBox .orderInfo {
	display: flex;
	width: 100%;
	flex-direction: row;
	max-width: 980px;
	margin: 0 auto;
	padding: 20px 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 0.875rem;
}
#cartFeedbackBox .orderInfo > div {
	width: 33.33%;
	padding: 0 20px;
	text-align: left;
}
#cartFeedbackBox .orderInfo > div p {
	margin-top: 10px;
}
#cartFeedbackBox .orderInfo > div:nth-of-type(1),
#cartFeedbackBox .orderInfo > div:nth-of-type(2) {
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.emptyCartBtn, .successCartBtn {
	display: flex;
	flex-flow: column;
	justify-content: center;
	text-align: center;
	background-color: rgba(50,50,50,1.00);
	height: 48px;
	color: #fff;
	font-weight: 600;
	width: 30%;
	min-width: 200px;
	/*border-radius: 3px;*/
	margin: 40px auto 0;
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.emptyCartBtn:hover, .successCartBtn:hover {
	cursor: pointer;
	background-color: #333;
	text-decoration: none;
	color: #FFF;
}

/* COUPONS */

.couponContainer {
	display: flex;
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
    flex-flow: column;
	padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.10);
}
.productItemCoupon, .couponShown {
	display: flex;
	flex-flow: row;
	margin: 10px auto;
	width: 100%;
	max-width: 760px;
	padding: 0 20px;
}
.couponTitle {
	display: flex;
	padding-right: 20px;
	font-size: 1.25em;
	color: rgba(39,96,172,1.00);
	font-weight: normal;
	align-items: center;
}
.productItemCouponInner, .couponProperties {
	display: flex;
	flex-flow: row;
	flex-grow: 1;
}
.productItemCoupon input[type=text] {
	display: block;
	width: 100%;
	height: 44px;
	font-size: 1rem;
	border: 1px solid rgba(0,0,0,0.10);
	padding-left: 10px;
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.productItemCoupon input[type=text]:hover {
	border: 1px solid #999;
}
.removeCoupon, #couponConfirm {
	display: flex;
	width: 100%;
    height: 44px;
    background-color: rgba(39,96,172,1.00);
    color: #FFF;
    text-transform: uppercase;
    align-items: center;
    border: none;
	padding: 0 20px;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	margin-left: 20px;
}
.removeCoupon:hover, #couponConfirm:hover {
	background-color: #333;
	cursor: pointer;
}
#couponFeedback {
	display: flex;
	justify-content: center;
	font-weight: 600;
	color: rgba(240,0,4,1.00);
	font-size: 0.875rem;
}
.couponCode, .couponValue {
	display: flex;
	font-weight: 600;
	height: 44px;
	align-items: center;
}
.couponBtn {
	display: flex;
}
.couponCode {
	padding-left: 20px;
	background-color: rgba(0,0,0,0.05);
	flex-grow: 1;
}
.couponValue {
	padding: 0 20px;
	background-color: rgba(0,0,0,0.05);
}


/* GIFT */

.iconGift {
	display: inline-block;
	height: 20px;
	margin-top: 1px;
}
.giftRow {
	display: flex;
}
.giftInfo {
	display: inline-block;
    margin-left: 30px;
    line-height: 22px;
	max-height: 22px;
}
#formSelectWrapping {
	width: 100%;
}
#formSelectWrapping .showGiftOrder {
	width: 100%;
}
#formSelectWrapping .giftOrderBox {
	display: flex;
	flex-flow: column;
}
#formSelectWrapping .wrapHolder {
	display: flex;
	flex-flow: row nowrap;
	padding: 10px 10px 0;
}
#formSelectWrapping .wrapItem {
	display: flex;
	width: 33.33%;
	padding: 6px;
}
#formSelectWrapping .wrapItem .wrapContent {
	display: flex;
	flex-direction: column;
	border: 3px solid rgba(0,0,0,0.00);
	border-radius: 10px;
	padding: 5px;
	cursor: pointer;
	position: relative;
}
#formSelectWrapping .wrapItem .wrapContent {
	display: flex;
	flex-direction: column;
	border: 3px solid rgba(0,0,0,0.00);
	border-radius: 10px;
	padding: 5px;
	cursor: pointer;
}
#formSelectWrapping .wrapItem.selected .wrapContent::after {
	content: "IZBRANO";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: rgba(49,192,84,1.00);
	color: rgba(255,255,255,1.00);
	text-align: center;
	padding: 5px 20px 1px;
	font-weight: 600;
	border-top-right-radius: 10px;
	font-size: 0.875em;
}
#formSelectWrapping .wrapItem .wrapContent img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}
#formSelectWrapping .wrapItem.selected .wrapContent {
	border: 3px solid rgba(49,192,84,1.00);
}
.giftDisclaimer {
	font-size: 0.875em;
}

/* FORM */

#formContainer {
	background-color: rgba(206,208,210,0.40);
}
.formContainerInner {
	display: flex;
	width: 100%;
	max-width: 1460px;
	margin: 0 auto;
	flex-flow: column;
	padding: 20px 0;
}
#formContainer input[type=text], #formContainer textarea, #formContainer select, #productVariations select {
	display: block;
	width: 100%;
	height: 44px;
	font-size: 1rem;
	border: 1px solid rgba(0,0,0,0.10);
	padding-left: 10px;
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#pagination select {
	display: block;
	height: 44px;
	font-size: 1rem;
	border: 1px solid rgba(0,0,0,0.10);
	padding-left: 10px;
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#formContainer select, #pagination select, #productVariations select {
	-webkit-appearance: none;
	background-image: url("../img/icon-dropdown-arrow.svg");
	background-repeat: no-repeat;
	background-position: center right 10px;
	padding-right: 40px;
	border-radius: 0;
	background-color: #FFF;
	cursor: pointer;
}
#formContainer select:disabled {
	background-image: none;
}
#formContainer input[type=text]:hover, #formContainer textarea:hover, #pagination select:hover {
	border: 1px solid #999;
}
#formContainer select:disabled:hover {
	cursor: not-allowed;
}
#formContainer select:hover {
	border: 1px solid #999;
	cursor: pointer;
}
#formContainer textarea {
	height: auto;
	min-height: 133px;
}
.formBlock {
	display: flex;
	flex: 0 1 100%;
	padding: 20px 10px;
	flex-flow: row wrap;
}
.formBlock .formRow {
	flex: 0 1 100%;
}
.formBlock .formRow.split50 {
	flex: 0 1 50%;
}
.formBlock .formRow.split70 {
	flex: 0 1 70%;
}
.formBlock .formRow.split30 {
	flex: 0 1 30%;
}
.formBlock .formRow.split20 {
	flex: 0 1 20%;
}
.formBlock .formRow.padding {
	padding-right: 20px;
}
#formType .formRowRadioGroup {
	display: flex;
	flex-flow: row;
	font-weight: bold;
	justify-content: center;
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
#formType .formRowRadioGroup .formRowRadio:nth-of-type(2) {
	margin-left: 20px;
}
.formRowName, .taxNumber {
	padding: 20px 0 ;
	font-weight: 600;
}
.formRowName, .formRowNameDelivery {
	padding: 20px 0 5px 0;
	font-weight: 600;
}
.formRowName span.formRequired, .formRowNameDelivery span.formRequired, .formRowCheckbox span.formRequired {
	color: rgba(240,0,4,1.00);
	font-family: Verdana;
}
.formRowName span.formDescription, .formRowNameDelivery span.formDescription {
	font-weight: 300;
}
.rowSubmit {
	display: flex;
	flex: 0 1 100%;
	flex-flow: row;
}
.formRowRadio {
	margin-top: 5px;
}
.formRowCheckboxGroup {
	padding: 40px 0;
}
.formRowCheckbox.important {
	border: 3px solid rgba(240,0,4,1.00);
	padding: 20px;
	background-color: #FFF;
}
.formRowCheckbox.important a {
	color: rgba(240,0,4,1.00);
	white-space: nowrap;
}
.formRowCheckbox.important a.legal {
	margin-left: 30px;
}
.alternateAddress {
	border-top: 1px solid #ccc;
	padding-top: 40px;
}
#formPhone {
	border-top: 1px solid #ccc;
	padding-top: 20px;
}
.status .error {
	display: block;
	color: rgba(240,0,4,1.00);
	font-weight: 600;
	margin-top: 10px;
}
.status .error:before {
	content: "";
	display: block;
	background: url("../img/icon-warning.svg");
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	float: left;
	padding: 0 5px 0 0;
}
#formSubmitBtn {
	display: flex;
	width: 100%;
	height: 64px;
	font-size: 1.25rem;
	background-color: rgba(39,96,172,1.00);
	color: #FFF;
	text-transform: uppercase;
	justify-content: center;
	align-self: flex-end;
	border: none;
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#formSubmitBtn:hover {
	cursor: pointer;
	background-color: rgba(50,50,50,1.00);
}
#formSubmitBtn span {
	align-self: center;
}
#contentForm {
	display: block;
}
#form {
	display: block;
	float: left;
	width: 100%;
}
.formBlock input[type="checkbox"], .formBlock input[type="radio"]  {
	margin: 0 8px 0 0;
}
.formObvezno {
	font-weight: bold;
	color: #E10003;
	padding-left: 4px;
}
input.textbox, textarea {
	font-family: "Encode Sans", Verdana, Arial, Helvetica, sans-serif;
	display: block;
	width: 100%;
	border: 1px solid #ccc;
	background-color: #fff;
	padding: 5px;
	font-size: 1rem;
	line-height: normal;
}
input.textbox {
	height: 32px;
}
input.button {
	font-family: "Encode Sans", Verdana, Arial, Helvetica, sans-serif;
	background-color: rgba(39,96,172,1.00);
	border: none;
	color: #fff;
	height: 44px;
	padding: 0 50px;
	font-size: 1.2rem;
}
input.button:hover {
	cursor: pointer;
	background-color: #333;
}
.formValidation {
	padding: 10px;
	font-weight: bold;
	color: #E10003;
	padding-bottom: 10px !important;
}
.mailConsent {
	display: block;
	padding: 5px 0 20px 30px;
	font-style: italic;
	color: #666;
	font-size: 0.875rem;
}
.mailConsentToggle {
	display: inline-block;
	color: rgba(39,96,172,1.00);
	cursor: pointer;
	font-weight: 600;
}
.mailConsentToggle:hover {
	text-decoration: underline;
}

.paypalContainer,
.cardContainer {
	display: flex;
	align-items: center;
	position: relative;
	height: 22px;
}

.paypalContainer,
.cardContainer img {
	display: inline-block;
}

.radioLabel {
	display: inline-block;
    margin-left: 4px;
    vertical-align: top;
    line-height: 1.2em;
}

.iconPaypal,
.iconCard {
	height: 20px;
}

#cardPayment {
	display: flex;
	flex: 0 1 100%;
	padding: 20px;
	flex-flow: row wrap;
	border: 3px solid rgba(49,192,84,1.00);
	margin-top: 40px;
	background-color: rgba(49,192,84,0.1);
	position: relative;
}

#cardPayment h2 {
	color: rgba(49,192,84,1.00);
	font-size: 1.6em;
	margin-bottom: 10px;
}
#cardPayment .formRowName, #cardPayment p {
	font-size: 1rem;
}

#cardPayment .iconSecure {
	display: block;
	width: 38px;
	height: 38px;
	position: absolute;
	top: -19px;
	left: 50%;
	margin-left: -19px;
	z-index: 1;
}

#stripeCard,
#stripeExpiry,
#stripeCvc {
	border: 1px solid #CED0D2;
	background: #FFFFFF;
	padding: 5px;
}

#cardSecurity {
	background-image: url('/img/icon-card-security-code.svg');
	background-repeat: no-repeat;
	background-position: top 3px right 8px;
	background-size: 36px 36px;
}

.formCVC {
	font-size: 0.875em;
	float: right;
	color: rgba(0,0,0,1.00);
	cursor: pointer;
	border-bottom: 1px dotted rgba(0,0,0,1.00);
}

.formCVC:hover {
	border-bottom: 1px solid rgba(0,0,0,1.00);
}

.cvcImg {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 400px;
	height: auto;
}


/* CHECKBOX */

.checkboxContainer {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.checkboxContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkboxCheckmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	background-color: rgba(245,245,245,1.00);
	border: 1px solid rgba(180,180,180,1.00);
}

.checkboxContainer:hover input ~ .checkboxCheckmark {
	background-color: rgba(180,180,180,1.00);
}
.checkboxContainer input:checked ~ .checkboxCheckmark {
	background-color: rgba(39,96,172,1.00);
	border: 1px solid rgba(39,96,172,1.00);
}
.checkboxCheckmark:after {
	content: "";
	position: absolute;
	display: none;
}
.checkboxContainer input:checked ~ .checkboxCheckmark:after {
	display: block;
}
.checkboxContainer .checkboxCheckmark:after {
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* RADIO */

.radioContainer {
	display: block;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.radioContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.radioCheckmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	background-color: rgba(245,245,245,1.00);
	border: 1px solid rgba(180,180,180,1.00);
	border-radius: 50%;
}
.radioContainer:hover input ~ .radioCheckmark {
	background-color: rgba(180,180,180,1.00);
}
.radioContainer input:checked ~ .radioCheckmark {
	background-color: rgba(39,96,172,1.00);
	border: 1px solid rgba(39,96,172,1.00);
}
.radioCheckmark:after {
	content: "";
	position: absolute;
	display: none;
}
.radioContainer input:checked ~ .radioCheckmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.radioContainer .radioCheckmark:after {
	top: 6px;
	left: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/* CUSTOM MODAL
----------------------------------------------------------------*/

#modalMessage {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.65);
	z-index: 110;
}
#modalMessage div.modalMessageInner {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #FFF;
	display: flex;
	flex-flow: column;
	width: 90%;
	padding: 24px;
	text-align: center;
	max-width: 800px;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
    color: #000;
}
#modalMessage.hidden {
	display: none;
}
.modalTitle {
	font-size: 1.6rem;
	line-height: 1.2em;
	margin: 10px 0;
}
.modalContent {
	display: flex;
	width: 100%;
	/*margin-top: 20px;*/
}
#modalMessage div.modalMessageInner div.modalClose {
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    width: 48px;
	height: 48px;
	background-image: url("../img/icon-close.svg");
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#modalMessage div.modalMessageInner div.modalClose:hover {
	background-color: rgba(0,0,0,0.10);
}
.modalMessageButtons {
	display: flex;
	width: 100%;
	flex-flow: row;
	margin-top: 40px;
	justify-content: center;
}
.modalButton {
	display: flex;
	flex-flow: column;
	width: 50%;
	max-width: 300px;
	height: 48px;
	/*border-radius: 3px;*/
	margin: 0 10px;
	justify-content: center;
	text-transform: uppercase;
	vertical-align: middle;
	line-height: 1em;
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 2px solid rgba(50,50,50,1.00);
	color: rgba(50,50,50,1.00);
	cursor: pointer;
}
.modalButton:hover {
	background-color: rgba(39,96,172,1.00);
	border: 2px solid rgba(39,96,172,1.00);
	color: #FFF;
}
.modalButton.primary {
	background-color: rgba(50,50,50,1.00);
	color: #FFF;
}
.modalButton.primary:hover {
	background-color: rgba(39,96,172,1.00);
	border: 2px solid rgba(39,96,172,1.00);
}

.modalError {
	width: 100%;
	font-size: 18px;
}

/* CUSTOM MODAL ADDED TO CART
----------------------------------------------------------------*/

.modalAddedItem {
	display: flex;
	width: 100%;
	flex-flow: column;
}
.modalAddedItemImg {
	display: block;
	width: 50%;
	padding-bottom: 50%!important;
	position: relative;
	margin: 0 auto;
}
.modalAddedItemImg img {
	display: block;
	width: 100%;
	height: 100%!important;
	object-fit: contain;
	position: absolute;
}
.modalAddedItemInfo {
	display: flex;
	flex-flow: column;
	width: 100%;
	margin-top: 10px;
}
.modalAddedCustomImg {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* NOTIFY
----------------------------------------------------------------*/

.notifyjs-corner .notifyjs-container {
	padding: 0 8px 8px;
}
.notifyjs-shop-base {
	font-weight: bold;
	padding: 15px 25px;
	background-color: #B9E3FD;
	white-space: nowrap;
}
.notifyjs-shop-error {
	color: #B73434;
	background-color: #F6C7C7;
}
.notifyjs-shop-success {
	color: #158330;
	background-color: #C8ECD1;
}
.notifyjs-shop-info {
	color: #007BB1;
	background-color: #B9E3FD;
}
.notifyjs-shop-warn {
	color: #B17300;
	background-color: #FFEBA7;
}

/* CONTENT WIDTHS
----------------------------------------------------------------*/

.width12 {
	max-width: 1460px;
}
.width10 {
	max-width: 1220px;
}
.width8 {
	max-width: 980px;
}
.width6 {
	max-width: 740px;
}
.width4 {
	max-width: 500px;
}
.width2 {
	max-width: 260px;
}

@media only screen and (min-width: 1460px) {

	/* COOKIES */

	#cookieBoxContent {
		border-left: 1px solid #ccc;
		border-right: 1px solid #ccc;
	}

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

	/*#headerLogo {
		width: 220px;
	}*/

	/* PRODUCT */

	.productListInner {
		padding: 0 10px;
	}
	.productListItem {
		padding: 10px;
	}

	/* FILTER */

	.productListToolbar {
		padding: 10px 10px 0;
	}
	.productFilter {
		padding: 0 10px 10px;
	}

	/* SEARCH NO ITEMS */

	.productListNoItems {
		padding: 10px;
	}

}
@media only screen and (min-width: 1024px) {

	/* HEADER */

	#mobileHeaderContainer {
		display: none!important;
	}
	#mobileMenuContainer, #mobileLogo {
		display: none;
	}
	body.shop .headerNav2Row {
		display: flex!important;
	}

	/* PRODUCT LIST WITH MENU */

	.productListContainer {
		width: 100%;
		max-width: 1460px;
		margin: 0 auto;
	}
	.listMenu .productListInner {
		width: 75%;
	}
	.listMenu .productListMenu {
		display: flex;
		width: 25%;
		min-width: 340px;
		padding: 0 20px;
		margin: 30px auto;
		flex-flow: column;
	}
	.listMenu .productListTitle {
		display: flex;
		flex-flow: column;
		height: 48px;
		justify-content: center;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		/*background-color: rgba(0,0,0,0.05);*/
		margin-bottom: 16px;
		font-size: 1.4rem;
	}
	.listMenu .productListMenu ul {
		list-style: none;
		padding: 0;
		margin: 0;
		/*border-bottom: 1px solid rgba(224, 237, 222, 1);*/
	}
	/* .listMenu .productListMenu > ul {
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	} */
	.listMenu .productListMenu ul li {
		display: block;
		margin: 0;
		padding: 0;
		/*border-top: 1px solid rgba(0, 0, 0, 0.1);*/
	}
	.listMenu .productListMenu ul li div {
		display: block;
		position: relative;
		padding-right: 24px;
	}
	.listMenu .productListMenu ul li.active > a, .listMenu .productListMenu ul li.active > div a {
		font-weight: 600;
		color: rgba(39,96,172,1.00);
	}
	.listMenu .productListMenu ul li a {
		display: flex;
		position: relative;
		min-height: 44px;
		flex-flow: column;
		justify-content: center;
		padding: 5px 0;
	}
	.listMenu .productListMenu ul li a:hover {
		text-decoration: none;
		color: rgba(39,96,172,1.00);
	}
	.listMenu .productListItem {
		width: 33.33%;
	}
	.listMenu .productListMenu ul ul li {
		margin-left: 10px;
		border: none;
		font-size: 0.90rem;
	}
	.listMenu .productListMenu ul ul li a {
		min-height: 38px;
	}
	.listMenu .toggle {
		display: block;
		width: 20px;
		height: 20px;
		position: absolute;
		top: 50%;
		right: -3px;
		transform: translateY(-50%);
	}
	.listMenu .toggle::before {
		content: "";
		position: absolute;
		display: block;
		width: 2px;
		height: 14px;
		background: rgba(50,50,50,1.00);
		top: 3px;
		right: 9px;
		opacity: 1;
		transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.listMenu .toggle::after {
		content: "";
		position: absolute;
		display: block;
		width: 14px;
		height: 2px;
		background: rgba(50,50,50,1.00);
		top: 9px;
		right: 3px;
		opacity: 1;
		transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.listMenu .toggle:hover {
		cursor: pointer;
		background-color: rgba(0,0,0,0.05);
	}
	.listMenu li.expanded > div span.toggle::before {
		transform: rotate(-90deg);
	}

	/* NEWS */
/*
	 .newsItem .contentContainer {
		margin-top: 0px;
	}
*/
	/* FEATURED */

	.featuredList.featuredList1 .featuredListInner {
		margin-top: -20px;
	}

}
@media only screen and (min-width: 1025px) { /* no padding for iPad and below*/

	/* SLIDER */

	/*#homeSlider .splide__slide {
		padding: 20px 20px 0 20px;
	}*/
	#sliderContainer {
		margin-top: 20px;
	}

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

	/* PRODUCT LIST WITH MENU */

	.listMenu .productListMenu {
		margin: 30px auto;
	}

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

	/* HEADER */

	#headerTopLeft, #headerLogo, nav#headerNav .headerNavRow, #headerNavSecondary {
		display: none!important;
	}
	#header {
		margin-top: 54px;
	}
	nav#headerNav {
		margin: 0;
	}
	#headerContainer {
		height: 96px;
	}
	#headerTopContainer {
		position: fixed;
		z-index: 1000;
		top: 0;
		height: 54px;
	}
	#headerTopContainer.nav-up {
		top: -54px;
	}

	/* SEARCH */

	nav#headerNav .headerNavSearch,
	nav#headerNav .headerNavSearch #searchForm,
	.headerNavToolbar {
		width: 100%;
		margin: 0;
	}
	/* nav#headerNav .headerNavSearch input[type="text"] {
	} */
	nav#headerNav .headerNavSearch input[type="text"],
	nav#headerNav .headerNavSearch input[type="text"]:hover {
		border-radius: 0;
		border: none;
		border-bottom: 1px solid rgba(0,0,0,0.10);
		flex: 1;
		height: 42px;
	}
	nav#headerNav .headerNavSearch #searchForm button {
		background-color: rgba(0,0,0,0);
		border-bottom: 1px solid rgba(0,0,0,0.10);
		border-radius: 0;
		height: 42px;
	}

	/* MOBILE HEADER */

	#mobileHeaderContainer {
		display: flex;
		flex-flow: row;
		padding-left: 10px;
	}
	#mobileLogo {
		display: block;
		position: absolute;
		top: 15px;
		left: 50%;
	}
	#mobileLogo, #mobileLogo img {
		display: block;
		height: 19px;
		width: auto;
	}
	#mobileLogo img {
		margin-left: -50%;
	}

	/* HEADER NAVIGATION */

	nav#headerNav .headerNavSearch {
		max-width: 100%;
	}

	/* CONTENT */

	h1 {
		font-size: 2.6rem;
	}
	h2, .productInfo h1 {
		font-size: 2.2rem;
	}
	h3 {
		font-size: 1.8rem;
	}
	h4 {
		font-size: 1.4rem;
	}
	section.title:first-of-type h1, section.title h1, .contentContainer, #lineItemContainer, #cartContainer, .productContainer, #cartEmptyBox {
		margin-top: 40px;
	}

	/* NEWS */

	.newsItem .newsItemBlock {
		padding: 0;
		margin-top: 20px;
		width: 100%;
	}
	.newsList .newsItemBox:hover {
		border: 1px solid rgba(0, 0, 0, 0);
	}

	/* FEATURED */

	#featuredGrid .featuredListItem {
		width: 33.33%;
		padding: 10px;
	}
	.featuredListInner.grid, .featuredListInner {
		padding-left: 10px;
		padding-right: 10px;
	}
	.featuredList .contentInner {
		padding: 40px 0;
	}
	.featuredListItem {
		padding: 0 10px;
	}
	.productListColor {
		width: 18px;
	}

	/* ADVANTAGES */

	.advantagesItem {
		width: 100%;
	}
	.advantagesItemContent {
		flex-flow: column;
		text-align: center;
	}
	.advantagesIcon {
		margin-bottom: 10px;
	}
	.advantagesText {
		padding-left: 0;
	}

	/* PRODUCT LIST */

	.productListItem {
		padding: 10px;
		width: 33.33%;
	}
	.productListName {
		font-size: 1rem;
		margin: 10px 0;
	}
	.productListPrice {
		flex-flow: column;
		/*font-size: 0.875rem;*/
	}
	.productListPrice span {
		text-align: center;
	}
	.productListPrice.discount .productDiscountPrice {
		margin-right: 0;
	}
	.productListOverlay {
		display: none!important;
	}
	.productListFrame:hover {
		border: 1px solid rgba(0, 0, 0, 0);
	}

	/* PRODUCT LIST WITH MENU */

	.listMenu .productListInner {
		width: 100%;
	}
	.productListMenu {
		display: none!important;
	}

	/* PRODUCT */

	.productContainer .slick-prev, .productContainer .slick-next  {
		top: auto;
		bottom: -76px;
		width: 48px;
		height: 48px;
	}
	.productContainer .slick-prev {
		left: 21px;
	}
	.productContainer .slick-next {
		right: 21px;
	}
	.productContainer .slick-dots {
		margin: 10px 0 0 0;
	}

	/* FILTER */

	.filterContainer {
		margin: 0 auto;
	}
	.productListToolbar {
		margin-top: 0px;
	}

	/* FOOTER */

	#footerLinks {
		width: 100%;
		margin: 25px 0;
	}
	#footerLinks .linksGroup {
		width: 50%;
	}
	#footerLinks .linksGroup ul li a {
		line-height: 2rem;
	}

	/* MOBILE MENU OPEN */

	#mobileMenuBtn {
		display: flex !important;
	}

	/* NOTIFY */

	.notifyjs-corner {
		width: 100%;
		text-align: right;
	}

	/* SPLIDE FIX */

	.splide__arrows {
		display: none!important;
	}

	/* CART */

	.cartItemRow {
		flex-flow: row wrap;
	}
	.cartItemBreak {
		flex: 0 1 100%;
		order: 4;
		margin-top: 20px;
		flex-flow: row wrap;
	}
	.cartItemCol2 {
		padding: 0;
		order: 2;
		flex: 1 1 0%;
	}
	.cartItemCol6 {
		order: 3;
	}
	.cartItemCol4 {
		flex: 1;
		text-align: left;
	}
	.cartItemCol5 {
		display: flex;
		padding-right: 0;
		flex: 1;
	}

	/* COPYRIGHT */

	#footerCopyright {
		flex-flow: column;
	}
	.footerCopyrightCol {
		display: block;
		text-align: center;
	}
	.footerCopyrightCol + .footerCopyrightCol {
		margin-top: 5px;
	}
	.footerCopyrightCol > span:first-of-type {
		display: none;
	}

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

	/* HEADER CART BUTTON*/

	#headerTopCart {
		margin: 0;
		position: relative;
		margin-right: 8px;
	}
	#headerTopLanguage {
		position: relative;
	}
	#headerTopCart::before, #headerTopLanguage::before {
		float: none;
		width: 28px;
		height: 28px;
		margin: 10px;
	}
	#headerTopCart .headerCartText, #headerTopCart .headerCartSum, #headerTopCart .headerCartEmpty {
		display: none;
	}
	#headerTopCart .headerCartInfo {
		display: flex;
		flex-flow: column;
		line-height: 22px;
		position: absolute;
		background-color: rgba(220,0,0,1.00);
		height: 22px;
		min-width: 22px;
		border-radius: 50%;
		bottom: 2px;
		right: 4px;
		z-index: 5;
		padding: 0 5px;
	}
	#headerTopLanguage span {
		display: flex;
		flex-flow: column;
		line-height: 18px;
		position: absolute;
		background-color: rgba(39,96,172,1.00);
		height: 18px;
		min-width: 18px;
		border-top-left-radius: 50%;
		bottom: 4px;
		right: 6px;
		z-index: 5;
		padding: 0 5px;
		font-size: 0.857em;
	}
	#headerTopCart .headerCartInfo .headerCartNum {
		margin: 0 auto;
	}
	/* #headerTopCart:hover {
		background-color: rgba(255,255,255,0.25);
	} */


	/* COOKIES */

	#cookieBoxContent {
		flex-flow: column;
	}
	#cookieText, div#cookieBoxAgree {
		display: block;
		width: 100%;
		padding: 0;
		text-align: center;
	}
	#cookieText {
		background: none;
	}
	div#cookieBoxAgree {
		margin-top: 16px;
	}

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

	/* CONTENT */

	.contentImg.square {
		width: 60%;
		margin: 0 auto;
	}

	/* PRODUCT */

	.productDetailsAlign {
		padding-top: 10%;
	}

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

	/* CONTENT */

	.contentContainer, #lineItemContainer, .productShortDescription, #cartEmptyBox {
		margin-top: 40px;
	}
	.contentInner.greyHero, .contentInner.grey {
		padding: 20px;
	}
	.homeCol {
		width: 100%;
		margin-bottom: 40px;
	}
	#homeColLink {
		padding-top: 0;
	}

	/* FILTER */

	.productListToolbar {
		padding: 10px 5px 0;
	}
	.productFilter {
		padding: 0 5px 10px;
	}

	/* SEARCH NO ITEMS */

	.productListNoItems {
		padding: 0 5px 10px;
	}

	/* SEARCH */

	nav#headerNav .headerNavSearch input[type="text"] {
		padding-left: 10px;
	}

	/* CRUMBLINE */

	.crumblineInner {
		padding: 5px 10px;
	}

	/* PRODUCT LIST */

	.productListInner {
		padding: 0 5px;
	}
	.productListItem {
		padding: 5px;
	}
	.productListPrice {
		margin-bottom: 10px;
	}

	/* FEATURED */

	#featuredGrid .featuredListItem {
		padding: 5px;
	}
	.featuredListInner.grid, .featuredListInner {
		padding-left: 5px;
		padding-right: 5px;
	}
	.featuredList .contentInner {
		padding: 20px 10px;
	}
	.featuredListItem {
		padding: 0 5px;
	}

	/* PRODUCT */

	.productContainer {
		margin-top: 0;
	}
	.productInfo {
		flex-flow: column;
	}
	.productGallery {
		width: 100%;
		padding-top: 0;
	}
	.productDetails {
		width: 100%;
	}
	.productName, .productBadge, .productCode {
		text-align: center;
	}
	.productBadge {
		margin-top: 20px;
		margin-bottom: 0;
	}
	.productBadge:empty {
		display: none;
	}
	.productPrice {
		justify-content: center;
		margin: 20px 0;
	}
	.productDescription {
		margin: 40px 0 0;
		padding-left: 20px;
		padding-right: 20px;
	}

	/* ADVANTAGES */

	#advantagesInner {
		flex-flow: column;
		width: 100%;
	}
	.advantagesItem {
		border: none!important;
	}

	/* COUPONS */

	.productItemCoupon, .couponShown {
		flex-flow: column;
	}
	.couponTitle {
		margin-bottom: 20px;
	}

	/* PAGINATION */

	#pagination .padding {
		padding: 0 10px;
	}
	#pagination {
		margin: 0 auto;
	}
	#pagination a, .paginationDots {
		font-size: 1rem;
	}
	span.paginationHide {
		display: none;
	}

	/* CUSTOM MODAL */

	#modalMessage div.modalMessageInner {
		width: 95%;
	}
	.modalMessageButtons {
		flex-flow: column;
		margin-top: 0;
	}
	.modalButton {
		width: 100%;
		margin: 10px 0 0 0;
		max-width: 100%;
	}
	.modalTitle {
		margin: 0 30px 10px;
	}
	.modalAddedItemInfo {
		margin: 10px 0;
	}
	#modalMessage div.modalMessageInner div.modalClose {
		top: 16px;
		right: 16px;
	}

	/* NOTIFY */

	.notifyjs-corner {
		text-align: center;
	}
	.notifyjs-shop-base {
		white-space: normal;
	}

	/* 404 */

	body.notFound main {
		margin: 40px 0 20px;
	}

	/* CART */

	.formBlock {
		display: flex;
		flex: 0 1 100%;
		padding: 20px;
		flex-flow: row wrap;
	}
	.formBlock .formRow {
		flex: 0 1 100%;
	}
	.formBlock .formRow.split50 {
		flex: 0 1 100%;
	}
	.formBlock .formRow.split70 {
		flex: 0 1 100%;
	}
	.formBlock .formRow.split30 {
		flex: 0 1 100%;
	}
	.formBlock .formRow.split20 {
		flex: 0 1 100%;
	}
	.formBlock .formRow.padding {
		padding-right: 0px;
	}
	.itemControls {
		justify-content: center;
	}

	/* FOOTER */

	footer {
		margin-top: 40px;
	}
	#footerContainer {
		flex-flow: column;
	}
	.footerContact {
		margin: 0 auto;
	}
	#footerLinks {
		flex-flow: row wrap;
		width: 100%;
	}
	#footerLinks .linksGroup {
		width: 100%;
		text-align: center;
	}
	.linksGroup + .linksGroup {
		padding-top: 20px;
		margin-top: 20px;
		border-top: 1px solid rgba(255,255,255,0.10);
	}
	.footerColText {
		text-align: center;
	}
	#advantagesContainer {
		margin: 40px 0;
	}
	.advantagesItem {
		padding: 10px 0;
	}

	/* NEWS */

	.contentInner.newsList {
		max-width: 470px;
	}
	.newsPaginationInner {
		padding-bottom: 40px;
		border-bottom: 1px solid rgba(0,0,0,0.10);
	}
	.contentInner.newsList {
		padding: 0 10px;
	}
	.newsList .newsItemBlock {
		padding-left: 10px;
		padding-right: 10px;
	}
	.newsList .newsItemBlock {
		width: 100%;
	}
	.newsList .newsItemBox {
		padding: 0px;
	}
	.newsItemBlock + .newsItemBlock {
		margin-top: 40px;
	}
	.newsItemBlock + .newsItemBlock .newsItemBox {
		border-top: 1px solid rgba(0,0,0,0.10);
		padding-top: 40px;
	}
	.newsItemContent {
		width: 100%;
		margin-top: 40px;
	}
	.newsItemBlock:last-of-type .newsItemBox {
		border-bottom: 1px solid rgba(0,0,0,0.10);
		padding-bottom: 40px;
	}

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

	/* CONTENT */

	h1 {
		font-size: 2rem;
	}
	h2, .productInfo h1 {
		font-size: 1.8rem;
	}
	h3 {
		font-size: 1.6rem;
	}
	h4 {
		font-size: 1.25rem;
	}

	section.title:first-of-type h1, section.title h1, .contentContainer, #lineItemContainer, #cartContainer, .productContainer, #cartEmptyBox {
		margin-top: 20px;
	}

	/* HEADER */

	.headerTopItem {
		margin: 0;
	}

	/* HOME COLLECTION */

	.homeCol {
		padding: 0 5px;
	}
	.contentContainer.collection .contentInner {
		padding: 0 5px;
	}

	/* COLLECTIONS */

	.collectionThumbs {
		display: flex;
		margin-top: 0;
		flex-flow: row;
		padding: 5px;
		justify-content: center;
		padding-bottom: 0;
	}
	.collectionThumbs img {
		display: block;
		width: 33.33%;
		height: auto;
		border: 5px solid #FFF;
		border-bottom: 0;
	}

	/* CART */

	.cartItemRow {
		position: relative;
	}
	/*.cartItemBreak {
		flex-flow: column;
	}*/
	.cartItemCol1 {
		padding: 0;
		margin: 0 auto;
	}
	.cartItemCol2 {
		flex: 1 0 100%;
		margin-top: 10px;
		order: 3;
		text-align: center;
	}
	.cartItemCol3 {
		flex: 1;
		padding: 0 10px 0 0;
		justify-content: flex-end;
	}
	.cartItemCol4 {
		padding: 0 0 0 10px;
		flex-grow: 1;
	}
	.cartItemCol5 {
		width: 100%;
		padding: 20px 0 0;
		text-align: center;
		flex: auto;
	}
	.cartItemCol6 {
		position: absolute;
		top: 0;
		right: 0;
		padding: 0;
	}
	.cartSumContainer {
		padding: 20px;;
	}

	/* PRODUCT LIST */

	.productListItem {
		width: 50%;
	}

	/* PRODUCT */

	.productGallery {
		padding: 0;
	}

	/* FILTER */

	.productListToolbarInner {
		justify-content: center;
	}
	.filterBox {
		width: 100%;
	}
	.filterInner {
		width: 33.33%;
	}
	.filterItem {
		width: 100%;
		min-width: 100%;
	}
	.shop .itemCount {
		display: none;
	}
	.shop.productsSearch .itemCount {
		display: flex;
	}

	/* FEATURED */

	#featuredGrid .featuredListItem {
		width: 50%;
	}

	/* COUPONS */

	.productItemCouponInner, .couponProperties {
		flex-flow: row wrap;
	}
	.removeCoupon, #couponConfirm {
		margin-left: 0;
		flex: auto;
		justify-content: center;
	}
	.couponBtn {
		width: 100%;
		padding-top: 10px;
	}

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

	/* HOME COLLECTION */

	.homeCol {
		width: 100%;
		margin-bottom: 40px;
	}
	.homeCol:last-of-type {
		margin-bottom: 0px;
	}

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

	/* PRODUCT LIST */

	/*.productListItem {
		width: 100%;
	}*/

	/* CUSTOM MODAL ADDED TO CART */

	.modalAddedItemImg {
		width: 100%;
		padding-bottom: 100%!important;
	}

}
