<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css?family=Big+Shoulders+Text:700|Poppins:400,400i,700&amp;display=swap');

:root {
  --mainFont: 'Poppins';
  --accentFont: 'Big Shoulders Text';
  --pink: #FD9498;
  --blue: #58C1CF;
  --accent: #58C1CF;
  --purple: #5A3D5E;
  --black: #101010;
  --bg: #fff;
  --text: #000;
  --ftb: flex;
  --shadow: 0 20px 50px -15px rgba(0,0,0,0.1);
}

* {
	font-family: var(--mainFont);
	padding: 0;
	margin: 0;
}

::selection {
	text-shadow: none;
	background: var(--accent);
	color: var(--text);
}

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

a:hover {
	text-transform: none;
	color: var(--accent);
}

body {
	font-family: var(--mainFont);
	font-size: 16px;
	background: var(--bg);
	color: var(--text);
}

.page-home {
	background: #fafafa;
}

p {
	font-size: 1em;
	line-height: 1.6em;
}

h3, h3 a {
	font-family: var(--mainFont) !important;
}

h1, h2, h4, h5, h6 {
	font-family: var(--accentFont) !important;
}

h1 a, h2 a, h4 a, h5 a, h6 a {
	font-family: inherit;
}

h1 {
	font-size: 2.5em;
}

h2 {
	font-size: 2.2em;
}

h3 {
	font-size: 1.9em;
}

h4 {
	font-size: 1.6em;
}

h5 {
	font-size: 1.3em;
	max-width: 100%;
}

h6 {
	font-size: 1em;
}

.btn-primary, .bttn, .btn {
	border: 0;
	border-radius: 0;
	background: var(--accent);
	color: var(--bg);
	font-family: var(--mainFont);
	padding: 0.5em 1em;
	font-size: 1.1em;
	line-height: 1.1em;
	display: inline-block;
}

.btn-default {
	background: var(--bg);
	color: var(--accent);
}

.btn:hover, .btn:active, .btn:focus, .bttn:hover, .btn-dark {
	background: var(--purple) !important;
	color: var(--bg) !important;
}

.pagebody-wrapper, .page-product .product-info {
	background: none;
}

/* header */

.shopping, header .container {
	display: var(--ftb);
	align-items: center;
}

#logo {
	margin: 0px auto -40px;
	z-index: 2;
	width: 160px;
	height: 160px;
	border-radius: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg);
	box-shadow: var(--shadow);
}

#logo img {
	max-width: 50%;
}

div.wholepage:not(.page-home) header {
	box-shadow: var(--shadow);
}

header .container, header {
	background: #fff;
}

header .container nav,
header .container .shopping {
	flex: 0 0 40%;
}

.shopping .findPanel {
	position: relative;
	flex-grow: 2;
}

#menu-button {
	display: none;
}

header nav ul {
	padding-left: 0;
	list-style-type: none;
	margin: 0;
}

header nav ul.level-1 {
	display: var(--ftb);
	font-size: 13px;
	align-items: center;
	justify-content: space-between;
}

header nav ul.level-1 &gt; li {
	position: relative;
}

header nav ul.level-1 &gt; li &gt; a {
	text-transform: uppercase;
	color: var(--blue);
}

header nav .level-2 {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	padding: 20px;
	z-index: 30;
	text-align: left;
	display: none;
}

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

	header nav li:hover .level-2 {
		display: block;
		min-width: 200px;
	}

	header nav li:hover .level-2 li {
		margin-top: 1em;
		letter-spacing: 1px;
		text-transform: uppercase;
		font-weight: bold;
	}

	header nav li:hover .level-2 li:hover a {
		text-transform: lowercase;
	}

}

.dropdown-menu {
	left: auto;
	right: 0;
	min-width: 200px;
	padding: 15px;
	color: #000;
}

.cart-options {
	margin-top: 10px;
}

.cart-options a.bttn {
	text-align: center;
}

#nsc_cart_container .item {
	display: flex;
}

#nsc_cart_container .item &gt; a {
	flex: 0 0 60px;
	margin-right: 10px;
}

#nsc_cart_container .item &gt; a img {
	padding: 0;
}

/* homepage */

#slider {
	margin: 0 0 20px;
}

#slider .owl-wrapper-outer {
	overflow: hidden;	
}

#slider img {
	height: 70vh;
	width: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.product-carousel-wrapper.newproduct {
	position: relative;
}

.product-carousel-wrapper.newproduct h3 {
	padding: 1em 0;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 3em;
}

.product-carousel-wrapper.newproduct:before {
	background: var(--purple);
	bottom: 40%;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0.1;
	content: "";
	position: absolute;
}

.product-carousel-wrapper.promotion {
	position: relative;
}

.product-carousel-wrapper.promotion h3 {
	padding: 1em 0;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 3em;
}

.product-carousel-wrapper.promotion h3 a {
	color: var(--accent);
}

.product-carousel-wrapper.promotion:before {
	background: var(--accent);
	bottom: 40%;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0.1;
	content: "";
	position: absolute;
}

.carousel-item {
	margin: 5px;
}

.carousel-item .caption {
	position: static;
	width: 100%;
	text-align: center;
}

.carousel-item .product-thumbnail-image {
	height: auto;
	display: block;
	background: #fff;
	position: relative;
	margin-bottom: 20px;
}

.carousel-item .product-thumbnail-image:before {
	padding-top: 120%;
	display: block;
	content: "";
}

.carousel-item .product-thumbnail-image img {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	object-position: center center;
	object-fit: contain;
}

.image-carousel .owl-theme .owl-controls .owl-buttons &gt; div.owl-prev {
	left: 0;
	background: #fff;
	border-radius: 0 10px 10px 0;
	opacity: 1;
	margin: -20px 0 0;
	padding: 0;
}

.image-carousel .owl-theme .owl-controls .owl-buttons &gt; *:before {
	text-shadow: none !important;
	width: 40px;
	line-height: 40px;
	text-align: center;
	color: #000;
	font-size: 16px;
}

.image-carousel .owl-theme .owl-controls .owl-buttons &gt; div.owl-next {
	right: 0;
	background: var(--bg);
	border-radius: 10px 0 0 10px;
	opacity: 1;
	margin: -20px 0 0;
	padding: 0;
}

.img-slide {
	position: relative;
}

.slide-caption {
	position: absolute;
	top: 50%;
	max-width: 600px;
	width: 80%;
	margin: 0 auto;
	padding: 50px;
	transform: translateY(-50%);
	z-index: 3;
	left: 0;
	right: 0;
}

#slider .slide-caption {
	color: var(--bg);
	font-size: 2em;
	text-align: center;
	left: auto;
	padding: 0 100px;
	max-width: 800px;
}

.product-list-item.out-of-stock .thumbnail {
	opacity: 0.5;
	z-index: 2;
	position: relative;
}

.img-productflag {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.img-productflag * {
	padding: 5px 10px;
	font-size: 11px;
	text-transform: capitalize;
}

.stock-label {
	background: #eee;
	color: #666;
}

.owl-item .thumbnail,
.product-list .thumbnail {
	min-height: unset;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	flex-grow: 2;
}

.product-list-item {
	position: relative;
	display: flex;
	flex-direction: column;	
}

.owl-item .thumbnail .caption,
.product-list .thumbnail .caption {
	position: relative;
	z-index: 2;
	flex-grow: 2;
	transition: all 0.3s;
}

.thumbnail .caption {
	background: var(--bg);
	padding: 15px;
}


.thumbnail:hover .image-thumb {
	opacity: 0.8;
}

.thumbnail:hover .caption {
	background: #fff;
	margin-top: -50px;
	padding-bottom: 65px;
	box-shadow: 0 -20px 50px -10px rgba(0,0,0,0.1);
}

.owl-item .thumbnail a.product-thumbnail-image,
.product-list .thumbnail a.product-thumbnail {
	height: unset;
	margin-bottom: 0;
	background: var(--accent);
}

.owl-item .thumbnail a.product-thumbnail-image:before,
.product-list .thumbnail a.product-thumbnail:before {
	display: block;
	content: "";
	padding-top: 120%;
}

.owl-item .thumbnail a.product-thumbnail-image img,
.product-list .thumbnail a.product-thumbnail img {
	transform: none;
	-moz-transform: none;
	-webkit-transform: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	object-fit: contain;
	object-position: center center;
	padding: 0;
	transition: all 0.4s;
	transition-delay: 0.2s;
}

.owl-item .thumbnail:hover a.product-thumbnail-image img,
.product-list .thumbnail:hover a.product-thumbnail img {
	mix-blend-mode: overlay;
}

.owl-item .thumbnail .btn, .product-list .thumbnail .btn {
	transform: translateY(100%);
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.4s;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.add-to-basket.inactive {
	filter: grayscale(1);
	pointer-events: none;
}

.owl-item .thumbnail:hover .btn, .product-list .thumbnail:hover .btn {
	transform: translateY(0);
	opacity: 1;
}

div.checkoutbuttonsDiv {
	overflow: visible;
}

/* HACKING */

/* listing */

.page-category #breadcrumbs,
.page-department #breadcrumbs {
	display: none;
}

.category-pictures-panel .thumbnail {
	margin-bottom: 0;
}

.cat-header {
	padding: 80px 0;
	color: var(--purple);
	position: relative;
	grid-column: 1 / -1;
	order: -3;
}

.category-pictures {
	display: none;
}

.cat-header h3 {
	position: relative;
	z-index: 3;
	text-align: center;
	font-size: 3em;
}

.cat-header:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--purple);
	opacity: 0.2;
	z-index: 0;
}

section {
	padding: 0;
}

#sortby {
	width: 210px;
	margin: 0 auto 0 0;
	font-size: 12px;
}

#searchresult {
	width: unset;
}

#productlist-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#listing, .category-pictures-panel {
	display: grid;
	grid-gap: 20px;
	flex-grow: 2;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	clear: both;
	padding-bottom: 50px;

}

#listing .thumbnail, .category-pictures-panel .thumbnail {
	box-shadow: none;
}

.thumbnail {
	border: 0;
}

#listing .caption {
	text-align: center;
}

span[id*="dimension"] {
	padding-right: 5px;
}

.matrix-options {
	font-size: 12px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	max-width: 200px;
	margin: 0 auto 0;
}

.thumbnail:hover .matrix-options &gt; a {
	transform: translateY(0);
	opacity: 1;
}

.matrix-options a {
	margin: 5px;
	border: 1px solid #ddd;
	padding: 5px 10px;
	transform: translateY(50px);
	transition: all 0.3s;
	transition-delay: 0.1s;	
	opacity: 0;
	text-decoration: none !important;
}

.matrix-options a.active {
	border-color: var(--purple);
	color: var(--purple);
	font-weight: bold;
}

.matrix-options a:hover {
	color: #000;
	background: #fafafa;
	text-decoration: none;
}

.matrix-options a i {
	display: block;
}

/* forms */

.form-control {
	background-color: var(--bg);
	border: 1px solid var(--accent);
	border-radius: 0;
	padding: 0.5em 1em;
	font-size: 1.1em;
	line-height: 1.1em;
	height: unset;
}

#newsletter {
	display: flex;
	font-size: 0.7em;
}

/* footer */

footer {
	background: rgba(215,239,242,1);
	clear: both;
}

footer .container {
	display: var(--ftb);
	padding: 20px 15px;
	text-align: left;
}

footer .smallprint {
	align-items: center;
	justify-content: space-between;
}

footer .about {
	background: var(--bg);
	padding: 30px;
	margin-top: -40px;
	box-shadow: var(--shadow);
	text-align: center;
	align-self: flex-start;
}

footer .widget {
	margin-left: 40px;
	flex: 1 1 20%;
}

footer .widget.sign-up {
	flex: 2 1 30%;
}

footer .widget.sign-up h5 {
	color: var(--purple);
}

footer .widget.sign-up p {
	font-size: 0.8em;
}

footer h5 {
	color: var(--accent);
	font-size: 1.6em;
	margin: 0;
}

footer .widget h5 {
	margin: 1em 0 0.5em;
}

footer li {
	list-style-type: none;
	margin-bottom: 5px;
}

footer li a {
	color: inherit;
}

footer .container:before,
footer .container:after {
	content: none;
}

p.icon {
	padding-left: 25px;
	position: relative;
}

p.icon i {
	position: absolute;
	left: 0;
	width: 20px;
	text-align: center;
	color: var(--accent);
	line-height: 1.5em;
}

#table-navigation {
	margin-top: 50px;
	color: var(--accent);
}

#details {
	padding: 15px;
}

.breadcrumb {
	display: none;
}

.page-product .product-image&gt;a:first-child {
	border: 0;
	background: #fafafa;
}

.page-product .product-image&gt;a:first-child img {
	mix-blend-mode: darken;
}

.acc {
	border-top: 1px solid #ddd;
}

.acc h3 {
	color: #000;
	font-size: 1.3em;
	margin: 0;
	padding: 0.8em 0;
	cursor: pointer;
}

.acc .tab {
	display: none;
}

.page-product h1 {
	font-family: var(--mainFont) !important;
	font-weight: bold;
	margin-top: 0;
	color: var(--accent);
	font-size: 2.2em;
	line-height: 1.1em;
}

.btn.add-to-cart {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-grow: 2;
}

.form-group.form-inline {
	display: flex;
}

p.pricingDetails span {
	font-size: 1.2em;
}

p.pricingDetails span.priceCurrent {
	color: #000;
	font-weight: normal;
}

#listings {
	display: grid;
	grid-gap: 50px;
	grid-template-columns: 1fr 3fr;
}

.category-pictures-panel, .product-list {
	grid-column: 1 / -1;
}

#panel-filteredsearch {
	order: -2;
}

#panel-filteredsearch ~ .category-pictures-panel, #panel-filteredsearch ~ .product-list {
	grid-column: 2;
	order: -1;
}

/* new  account pages */

.page-account .pagebody-wrapper p, #table-navigation {
	text-align: center;
}

#account-options {
	display: grid;
	grid-template-columns: 120px 120px 120px;
	grid-gap: 30px;
	justify-content: center;
	margin: 50px 0;
}

.option {
	border-radius: 3px;
	text-align: center;
	transition: all 0.3s;
	font-size: 0.8em;
	box-shadow: 0 10px 10px -15px rgba(0,0,0,0.1);
	text-decoration: none !important;
}

.option:hover, .option:focus, .option:hover:focus {
	text-decoration: none;
	color: #000;
}

.option:hover i {
	color: #43B3D6;
	transform: translateY(-5px);
}

.option i {
	font-size: 4em;
	display: block;
	margin-bottom: 5px;
	transition: all 0.2s;
}

.history-page {
	margin-top: 30px;
}

@media (min-width: 1450px) {

	.container, .cont {
		max-width: 1400px;
	}

}


.cont {
	max-width: 1140px;
	width: 96%;
	margin: 0 auto;
}
/* fixes */

.notice-item-success {
	border-bottom: 5px solid #579604;
	box-shadow: 10px 10px 80px #579604;
}

.notice-item, .notice-item-error, .notice-item-loading, .notice-item-success {
	padding: 20px;
	border-radius: 0;
	background: #fff !important;
	font-family: inherit;
}

.notice-item-success * {
	color: #579604 !important;
}

.notice-item-success h4, .notice-item-success p {
	margin-top: 0;
}

.notice-wrap h4, .notice-wrap p {
	font-family: inherit;
}

.notice-wrap h4 {
	font-size: 1.5em;
}

.notice-wrap span.fa {
	margin-right: 10px;
}

.page-home .product-carousel-wrapper {
	margin-left: 0;
}

#productlist-header &gt; a {
	display: none;
}

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

	header nav ul.level-1 {

	}

	#logo {
		order: -1;
		margin: 0;
		width: 100px;
		height: 100px;
		border-radius: 0;
		box-shadow: none;
	}

	.btn-primary, .bttn, .btn {
		white-space: nowrap;
	}

	header .container nav {
		flex-grow: 2;
		margin-right: 30px;
	}

	#listing, .category-pictures-panel {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	}
}

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

	header .container {
		position: relative;
	}

	header .container nav {
		position: absolute;
		background: #fff;
		padding: 20px;
		left: 0;
		top: 100%;
		width: 100%;
		z-index: 6;
		display: none;
	}

	header nav ul.level-1, header nav ul.level-2 {
		display: block;
		position: static;
		text-align: left;
	}

	header nav ul.level-1 {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: flex-start;
	}

	header nav ul.level-1 &gt; li {
		flex: 0 0 25%;
	}

	header nav ul.level-1 &gt; li &gt; a {
		font-weight: bold;
		font-size: 1.4em;
	}

	header nav ul.level-2 {
		padding: 20px 0;
	}

	header nav ul.level-2 &gt; li &gt; a {
		padding: 5px 0;
		display: block;
	}

	header .container .shopping {
		flex-grow: 2;
	}


	#slider .slide-caption {
		padding: 0 50px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}

	footer .container {
		flex-wrap: wrap;
	}

	footer .widget.sign-up {
		margin-left: 0;
	}

	#menu-button {
		display: block;
		margin-right: auto;
		padding: 5px 10px;
	}

	.product-list .product-list-item {
		width: 100% !important;
	}

	#slider img {
		height: 35vw;
	}

}

@media (min-width: 768px) {

	.container {
		width: 100%;
	}

}

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

	#listings {
		grid-gap: 20px;
	}

	div#panel-filteredsearch,
	#panel-filteredsearch ~ .category-pictures-panel, #panel-filteredsearch ~ .product-list {
		grid-column: 1 / -1;
		padding: 0 15px;
	}
}

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

	footer .container {
		display: block;
	}

	footer .widget {
		margin: 20px 0 0 0;
	}

	header nav ul.level-1 &gt; li {
		flex: 0 0 50%;
	}


	header .container .shopping {
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	header .container .shopping .findPanel {
		order: 2;
		flex-grow: 2;
	}

	footer .form-group {
		margin-bottom: 0;
	}

	#slider .slide-caption {
		padding: 0px;
		font-size: 0.8em;
	}

	.image-carousel .owl-controls {
		visibility: visible;
	}

	.image-carousel .owl-theme .owl-controls .owl-buttons&gt;div {
		height: 30px;
	}

	.image-carousel .owl-theme .owl-controls .owl-buttons &gt; *:before {
		width: 30px;
		line-height: 30px;
	}

	.cat-header {
		padding: 30px 0;
	}

	.cat-header h3 {
		font-size: 2em;
	}

	#listing, .category-pictures-panel {
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	}

	#productlist-header {
		display: block;
	}

	#searchresult {
		font-size: 12px;
		margin: 15px 0;
		padding: 0;
	}


}</pre></body></html>