/* input(7873,43): run-time error CSS1030: Expected identifier, found '['
input(7873,48): run-time error CSS1031: Expected selector, found '='
input(7873,48): run-time error CSS1025: Expected comma or open brace, found '='
input(9971,1): run-time error CSS1019: Unexpected token, found '<'
input(10014,1): run-time error CSS1019: Unexpected token, found '<'
input(10014,2): run-time error CSS1019: Unexpected token, found '/' */
/*! perfect-scrollbar - v0.5.8
* http://noraesae.github.com/perfect-scrollbar/
* Copyright (c) 2014 Hyunje Alex Jun; Licensed MIT */
.ps-container.ps-active-x>.ps-scrollbar-x-rail,.ps-container.ps-active-y>.ps-scrollbar-y-rail{display:block}.ps-container>.ps-scrollbar-x-rail{display:none;position:absolute;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;border-radius:4px;opacity:0;-ms-filter:"alpha(Opacity=0)";filter:alpha(opacity=0);-webkit-transition:background-color .2s linear,opacity .2s linear;-moz-transition:background-color .2s linear,opacity .2s linear;-o-transition:background-color .2s linear,opacity .2s linear;transition:background-color .2s linear,opacity .2s linear;bottom:3px;height:8px}.ps-container>.ps-scrollbar-x-rail>.ps-scrollbar-x{position:absolute;background-color:#aaa;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;border-radius:4px;-webkit-transition:background-color .2s linear;-moz-transition:background-color .2s linear;-o-transition:background-color .2s linear;transition:background-color .2s linear;bottom:0;height:8px}.ps-container>.ps-scrollbar-x-rail.in-scrolling{background-color:#eee;opacity:.9;-ms-filter:"alpha(Opacity=90)";filter:alpha(opacity=90)}.ps-container>.ps-scrollbar-y-rail{display:none;position:absolute;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;border-radius:4px;opacity:0;-ms-filter:"alpha(Opacity=0)";filter:alpha(opacity=0);-webkit-transition:background-color .2s linear,opacity .2s linear;-moz-transition:background-color .2s linear,opacity .2s linear;-o-transition:background-color .2s linear,opacity .2s linear;transition:background-color .2s linear,opacity .2s linear;right:3px;width:8px}.ps-container>.ps-scrollbar-y-rail>.ps-scrollbar-y{position:absolute;background-color:#aaa;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;border-radius:4px;-webkit-transition:background-color .2s linear;-moz-transition:background-color .2s linear;-o-transition:background-color .2s linear;transition:background-color .2s linear;right:0;width:8px}.ps-container>.ps-scrollbar-y-rail.in-scrolling{background-color:#eee;opacity:.9;-ms-filter:"alpha(Opacity=90)";filter:alpha(opacity=90)}.ps-container:hover>.ps-scrollbar-x-rail,.ps-container:hover>.ps-scrollbar-y-rail{opacity:.6;-ms-filter:"alpha(Opacity=60)";filter:alpha(opacity=60)}.ps-container:hover>.ps-scrollbar-x-rail.in-scrolling,.ps-container:hover>.ps-scrollbar-y-rail.in-scrolling{background-color:#eee;opacity:.9;-ms-filter:"alpha(Opacity=90)";filter:alpha(opacity=90)}.ps-container:hover>.ps-scrollbar-x-rail:hover{background-color:#eee;opacity:.9;-ms-filter:"alpha(Opacity=90)";filter:alpha(opacity=90)}.ps-container:hover>.ps-scrollbar-x-rail:hover>.ps-scrollbar-x{background-color:#999}.ps-container:hover>.ps-scrollbar-y-rail:hover{background-color:#eee;opacity:.9;-ms-filter:"alpha(Opacity=90)";filter:alpha(opacity=90)}.ps-container:hover>.ps-scrollbar-y-rail:hover>.ps-scrollbar-y{background-color:#999}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@-webkit-keyframes shake {
	10%, 90% {
		-webkit-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}

	20%, 80% {
		-webkit-transform: rotate(10deg);
		-ms-transform: rotate(10deg);
		transform: rotate(10deg);
	}

	30%, 50%, 70% {
		-webkit-transform: rotate(-20deg);
		-ms-transform: rotate(-20deg);
		transform: rotate(-20deg);
	}

	40%, 60% {
		-webkit-transform: rotate(20deg);
		-ms-transform: rotate(20deg);
		transform: rotate(20deg);
	}
}

@-moz-keyframes shake {
	10%, 90% {
		-webkit-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}

	20%, 80% {
		-webkit-transform: rotate(10deg);
		-ms-transform: rotate(10deg);
		transform: rotate(10deg);
	}

	30%, 50%, 70% {
		-webkit-transform: rotate(-20deg);
		-ms-transform: rotate(-20deg);
		transform: rotate(-20deg);
	}

	40%, 60% {
		-webkit-transform: rotate(20deg);
		-ms-transform: rotate(20deg);
		transform: rotate(20deg);
	}
}

@keyframes shake {
	10%, 90% {
		-webkit-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}

	20%, 80% {
		-webkit-transform: rotate(10deg);
		-ms-transform: rotate(10deg);
		transform: rotate(10deg);
	}

	30%, 50%, 70% {
		-webkit-transform: rotate(-20deg);
		-ms-transform: rotate(-20deg);
		transform: rotate(-20deg);
	}

	40%, 60% {
		-webkit-transform: rotate(20deg);
		-ms-transform: rotate(20deg);
		transform: rotate(20deg);
	}
}



@-webkit-keyframes swiping {
	30%, 70% {
		-webkit-transform: rotate(-70deg);
		-ms-transform: rotate(-70deg);
		transform: rotate(-70deg);
	}

	60%, 100% {
		-webkit-transform: rotate(10deg);
		-ms-transform: rotate(10deg);
		transform: rotate(10deg);
	}
}

@-moz-keyframes swiping {
	30%, 70% {
		-webkit-transform: rotate(-70deg);
		-ms-transform: rotate(-70deg);
		transform: rotate(-70deg);
	}

	60%, 100% {
		-webkit-transform: rotate(10deg);
		-ms-transform: rotate(10deg);
		transform: rotate(10deg);
	}
}

@keyframes swiping {
	30%, 70% {
		-webkit-transform: rotate(-70deg);
		-ms-transform: rotate(-70deg);
		transform: rotate(-70deg);
	}

	60%, 100% {
		-webkit-transform: rotate(10deg);
		-ms-transform: rotate(10deg);
		transform: rotate(10deg);
	}
}


@-webkit-keyframes widthplay {
	30% {
		width: 55%;
		opacity: .2;
	}
	65% {
		width: 50%;
		opacity: .6;
	}
	100% {
		width: 100%;
		opacity: .4;
	}
}

@-moz-keyframes widthplay {
	30% {
		width: 55%;
		opacity: .2;
	}
	65% {
		width: 50%;
		opacity: .6;
	}
	100% {
		width: 100%;
		opacity: .4;
	}
}

@keyframes widthplay {
	30% {
		width: 55%;
		opacity: .2;
	}
	65% {
		width: 50%;
		opacity: .6;
	}
	100% {
		width: 100%;
		opacity: .4;
	}
}


@-webkit-keyframes updating {
	100% {
		-webkit-transform: rotate(-360deg);
		-ms-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@-moz-keyframes updating {
	100% {
		-webkit-transform: rotate(-360deg);
		-ms-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@keyframes updating {
	100% {
		-webkit-transform: rotate(-360deg);
		-ms-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}


@-webkit-keyframes emailing {
	0% {
		-webkit-transform: scale(.2);
		-ms-transform: scale(.2);
		transform: scale(.2);
		opacity: 0;
	}
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

@-moz-keyframes emailing {
	0% {
		-webkit-transform: scale(.2);
		-ms-transform: scale(.2);
		transform: scale(.2);
		opacity: 0;
	}
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes emailing {
	0% {
		-webkit-transform: scale(.2);
		-ms-transform: scale(.2);
		transform: scale(.2);
		opacity: 0;
	}
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}


@-webkit-keyframes stars {
	0%{
		-webkit-transform: scale(.8) rotate(-15deg);
		-ms-transform: scale(.8) rotate(-15deg);
		transform: scale(.8) rotate(-15deg);
	}
	25% {
		-webkit-transform: scale(.8) rotate(15deg);
		-ms-transform: scale(.8) rotate(15deg);
		transform: scale(.8) rotate(15deg);
	}
	40% {
		-webkit-transform: scale(1.2) rotate(0deg);
		-ms-transform: scale(1.2) rotate(0deg);
		transform: scale(1.2) rotate(0deg);
	}
	100% {
		-webkit-transform: scale(1) rotate(0deg);
		-ms-transform: scale(1) rotate(0deg);
		transform: scale(1) rotate(0deg);
	}
}
@-moz-keyframes stars {
	0%{
		-webkit-transform: scale(.8) rotate(-15deg);
		-ms-transform: scale(.8) rotate(-15deg);
		transform: scale(.8) rotate(-15deg);
	}
	25% {
		-webkit-transform: scale(.8) rotate(15deg);
		-ms-transform: scale(.8) rotate(15deg);
		transform: scale(.8) rotate(15deg);
	}
	40% {
		-webkit-transform: scale(1.2) rotate(0deg);
		-ms-transform: scale(1.2) rotate(0deg);
		transform: scale(1.2) rotate(0deg);
	}
	100% {
		-webkit-transform: scale(1) rotate(0deg);
		-ms-transform: scale(1) rotate(0deg);
		transform: scale(1) rotate(0deg);
	}
}

@keyframes stars {
	0%{
		-webkit-transform: scale(.8) rotate(-15deg);
		-ms-transform: scale(.8) rotate(-15deg);
		transform: scale(.8) rotate(-15deg);
	}
	25% {
		-webkit-transform: scale(.8) rotate(15deg);
		-ms-transform: scale(.8) rotate(15deg);
		transform: scale(.8) rotate(15deg);
	}
	40% {
		-webkit-transform: scale(1.2) rotate(0deg);
		-ms-transform: scale(1.2) rotate(0deg);
		transform: scale(1.2) rotate(0deg);
	}
	100% {
		-webkit-transform: scale(1) rotate(0deg);
		-ms-transform: scale(1) rotate(0deg);
		transform: scale(1) rotate(0deg);
	}
}

@-webkit-keyframes loader {
	0% {
		border-width: 3px;
	}
	15% {
		opacity: 1;
	}
	100% {
		border-width: 3px;
		opacity: 0;
		width: 50px;
		height: 50px;
	}
}
@-moz-keyframes loader {
	0% {
		border-width: 3px;
	}
	15% {
		opacity: 1;
	}
	100% {
		border-width: 3px;
		opacity: 0;
		width: 50px;
		height: 50px;
	}
}
@keyframes loader {
	0% {
		border-width: 3px;
	}
	15% {
		opacity: 1;
	}
	100% {
		border-width: 3px;
		opacity: 0;
		width: 50px;
		height: 50px;
	}
}



/*********** CSS RESET **********/

* {
	margin: 0;
	outline: none;
	padding: 0;
	text-decoration: none;
	box-sizing: border-box;
}
*:before, *:after {
	font-family: "emporium-icons";
	box-sizing: border-box;
}
html {
	margin: 0 !important;
	-webkit-text-size-adjust: none;
}
ol, ul {
	list-style: none;
}
a img {
	border: none;
}
a:active {
	outline: none;
}
button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
	margin: 0;
	border: 0;
	padding: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input::-moz-placeholder {
	opacity: 1;
}
input:-webkit-autofill {
	-webkit-box-shadow: inset 0 0 0 1000px #fff;
}
script {
	display: none !important;
}


/*********** GLOBAL STYLES **********/


@font-face {
	font-family: 'emporium-icons';
	src: url('../Themes/Emporium/Content/icons/emporium-icons.woff') format('woff'),
		 url('../Themes/Emporium/Content/icons/emporium-icons.svg#emporium-icons') format('svg');
	font-weight: normal;
	font-style: normal;
}

body {
	max-width: 100%;
	overflow-x: hidden; 
	background-color: #fff;
	font: normal 14px 'Roboto', sans-serif;
	color: #000;
	direction: rtl;
} 

/*
body {
      direction: rtl;
    background-color: #f3f3f3;
    font-family: 'Assistant', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #221305;
}*/

table {
	width: 100%;
	border-collapse: collapse;
}
p {
	line-height: 20px;
}
a {
	color: inherit;
	cursor: pointer;
}
img {
	max-width: 100%;
}
a img {
	opacity: 0.99; /*firefox scale bug fix*/
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea, select {
	height: 45px;
	border: 1px solid #e7e7e7;
	border-radius: 3px;
	padding: 0 20px;
	vertical-align: middle;
	font-size: 15px;
	color: #8c8c8c;
	font-family: 'Roboto', sans-serif;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill { /* Chrome/Opera/Safari */
	color: #8c8c8c !important;
}



input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #8c8c8c;
}

input[type="text"]::-moz-input-placeholder,
input[type="password"]::-moz-input-placeholder,
input[type="email"]::-moz-input-placeholder,
input[type="tel"]::-moz-input-placeholder,
textarea::-moz-input-placeholder { /* Firefox 19+ */
	color: #8c8c8c;
}
input[type="text"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
textarea::-ms-input-placeholder { /* IE 10+ */
	color: #8c8c8c;
}
input[type="text"]::input-placeholder,
input[type="password"]::input-placeholder,
input[type="email"]::input-placeholder,
input[type="tel"]::input-placeholder,
textarea::input-placeholder { /* Firefox 18- */
	color: #8c8c8c;
}




textarea {
	min-height: 150px;
	padding: 15px 20px;
}
select {
	min-width: 50px;
	padding: 0 6px;
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}

input[type="checkbox"],
input[type="radio"] {
	position: absolute;
	right: -9999px;
}

input[type="checkbox"],
input[type="radio"],
input[type="checkbox"] + *,
input[type="radio"] + * {
	vertical-align: middle;
}


input[type="radio"] + label,
input[type="checkbox"] + label {
	font-weight: 300;
	color: #8c8c8c;
	user-select: none;
	cursor: pointer;
}

input[type="radio"] + label:before,
input[type="checkbox"] + label:before {
	content: "";
	display: inline-block;
	margin-left: 10px;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	border: 1px solid #e7e7e7;
	vertical-align: text-top;
	background-color: #fff;
}

input[type="checkbox"] + label:before {
	border-radius: 0;
}

input[type="radio"]:checked + label:before,
input[type="checkbox"]:checked + label:before{
	margin-right: 1px;
	margin-top: 1px;
	width: 16px;
	height: 16px;
	box-shadow: 0 0 0 1px #e7e7e7;
	border: 3px solid #fff;
	background-color: #97c300;
}


input[type="button"],
input[type="submit"],
button {
	cursor: pointer;
}
label, label + * {
	vertical-align: middle;
}

.product-grid,
.category-grid,
.topic-block,
.news-list-homepage {
	position: relative;
	z-index: 0; /* giving priority to header and header-menu */
	margin: 0 auto 50px;
}

.product-grid:last-child,
.category-grid:last-child,
.topic-block:last-child,
.news-list-homepage:last-child {
	margin-bottom: 0;
}


.master-wrapper-content {
	overflow: hidden;
	padding: 40px 10px 80px;
}

.master-wrapper-content select,
.k-window select {
	height: 45px;
	width: auto;
	max-width: 100%;
	padding: 0 20px 0 35px;
	border: 1px solid #e7e7e7;
	border-radius: 3px;
	background: #fff url('../Themes/Emporium/Content/img/select-arrow-dark.svg') no-repeat left 15px center; 
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.master-wrapper-content select::ms-expand,
.k-window select::ms-expand {
	display: none;
}

.master-column-wrapper:after {
	content: "";
	display: block;
	clear: both;
}

.center-2 .product-grid,
.center-2 .category-grid,
.center-2 .topic-block {
	width: 100%;
}
.center-2,
.side-2 {
	margin: 0 0 50px;
}

.side-2:last-child {
	margin-bottom: 0;
}

.page {
	min-height: 200px;
	text-align: center;
}
.page-title {
	padding: 0 10px;
	margin: 0 0 25px;
	text-align: center;
}
.page-title h1 {
	font-size: 26px;
	color: #444444;
}
.page:after,
.page-title:after,
.page-body:after {
	content: "";
	display: block;
	clear: both;
}
.buttons {
	text-align: center;
}
.link-rss {
	display: none;
	width: 24px;
	height: 24px;
	font-size: 0 !important;
}

.link-rss:before {
	content: "\73";
	display: block;
	font-size: 24px;
	color: #8c8c8c;
	text-transform: none;
	font-weight: normal;
	transition: color .2s ease;
}

.link-rss:hover:before {
	color: #97c300;
}

.category-description ul,
.manufacturer-description ul,
.full-description ul,
.topic-html-content ul,
.topic-page ul,
.post-body ul,
.custom-tab ul {
    margin: 12px 0;
    padding: 0 36px 0 0;
    list-style: disc;
    text-align: right;
    font-size: 15px;
    color: #8c8c8c;
    font-weight: 400;
}
.category-description ol,
.manufacturer-description ol,
.full-description ol,
.topic-html-content ol,
.topic-page ol,
.post-body ol,
.custom-tab ol {
    margin: 12px 0;
    padding: 0 36px 0 0;
    list-style: decimal;
    text-align: right;
    font-size: 15px;
    color: #8c8c8c;
    font-weight: 400;
}
.category-description p,
.manufacturer-description,
.vendor-description,
.manufacturer-description p,
.vendor-description p,
.full-description p,
.topic-html-content p,
.topic-page p,
.post-body p,
.news-body p,
.custom-tab p,
.ui-dialog-content p {
    margin: 10px 0;
    line-height: 1.5;
    font-size: 15px;
    color: #8c8c8c;
    font-weight: 400;
}


/*********** GLOBAL FORMS ***********/


.fieldset, .section {
	position: relative;
	margin: 0 0 20px;
}
.fieldset .title,
.section .title {
	margin: 0 0 10px;
}
.fieldset .title strong,
.section .title strong {
	font-weight: 300;
	font-size: 16px;
	color: #444;
}
.form-fields {
	position: relative;
	font-size: 14px;
	line-height: 1.5;
	color: #444;
}

.form-fields > a {
	display: inline-block;
	color: #8c8c8c;
	text-decoration: underline;
}

.inputs {
	position: relative;
	margin: 20px 0 0;
	text-align: center;
	white-space: nowrap; /*fix for 'required' elements*/
	font-size: 0;
}

.inputs:first-child {
	margin-top: 0;
}


.inputs:after {
	content: "";
	display: block;
	clear: both;
}
.inputs > label {
	display: inline-block;
	max-width: calc(100% - 10px);
	width: auto;
	font-size: 15px;
	margin: 0 0 8px;
	font-weight: bold;
	color: #444444;
	text-align: right;
	white-space: normal;
}

.inputs > .required {
	position: absolute;
	top: 0;
	left: 0;
}

.inputs > * {
    float: right;
    clear: both;
}

.inputs.reversed > * {
	float: none;
}

.inputs input[type="text"],
.inputs input[type="password"],
.inputs input[type="email"],
.inputs input[type="tel"],
.inputs select,
.inputs textarea {
	height: 45px;
	color: #8c8c8c;
	border-radius: 3px;
	width: 100%;
	vertical-align: middle;
}

.inputs select:only-of-type {
	width: 100%;
}

.inputs .option-list {
	display: inline-block;
	vertical-align: middle;
	white-space: normal;
}
.inputs .option-list li {
	float: right;
	margin: 0 0 15px 10px;
}
.inputs .option-list label {
	display: inline;
	width: auto;
	margin: 0 3px;
}
.login-form-in-header .inputs.reversed {
	text-align: center;
}
.required {
	margin: 0 5px 0 0; /*siblings offset*/
	font-size: 15px;
	color: #444;
	font-weight: 700;
}
.message-error,
.field-validation-error,
.field-validation-error *,
.username-not-available-status,
.poll-vote-error, .password-error {
    display: block;
    margin: 2px 0 0;
    font-size: 13px;
    color: #ff4f60;
    font-weight: 700;
    text-align: right;
    white-space: normal;
}

.page-body > .message-error,
.enter-address > .message-error,
.payment-info form > .message-error {
	line-height: 1.5;
	margin-bottom: 15px;
}

.input-validation-error {
	border-bottom: 2px solid #ff4f60 !important;
}

.field-validation-valid,
.username-available-status {
	display: block;
	line-height: 17px;
	font-size: 13px;
	color: #97c300;
	font-weight: 700;
}
.captcha-box {
	margin: 25px 0 0;
	text-align: center;
	line-height: 0; /*firefox line-height bug fix*/
}
.captcha-box > div {
	display: inline-block;
}
.captcha-box input {
	height: auto;
}


/*********** GLOBAL TABLES ***********/


.table-wrapper {
	overflow-x: auto;
}
.cart,
.data-table,
.compare-products-table,
.forums-table-section table {
	margin: 0 0 20px;
	border-collapse: initial;
	border-spacing: 0px;
}
.cart th,
.data-table th,
.forums-table-section th {
	border-top: 1px solid #eee;
	background-color: #f9f9f9;
	padding: 20px;
	white-space: nowrap;
	font-size: 17px;
	color: #959595;
	font-weight: 300;
}
.cart td,
.data-table td,
.forums-table-section td {
	min-width: 50px;
	border-bottom: 1px solid #eee;
	background-color: #fff;
	padding: 20px;
	font-size: 15px;
	color: #444;
	font-weight: 400;
}

td.product-picture {
	font-size: 0 !important;
}

td.product-picture a {
	display: inline-block;
	width: 80px;
}

.data-table td {
	font-size: 17px;
}

.cart th:first-child,
.data-table th:first-child,
.forums-table-section th:first-child,
.cart td:first-child,
.data-table td:first-child,
.forums-table-section td:first-child {
	border-right: 1px solid #eee;
}

.cart th:last-child,
.data-table th:last-child,
.forums-table-section th:last-child,
.cart td:last-child,
.data-table td:last-child,
.forums-table-section td:last-child {
	border-left: 1px solid #eee;
}

.cart tr:first-child th:first-child,
.data-table tr:first-child th:first-child,
.forums-table-section table tr:first-child th:first-child {
	border-top-right-radius: 3px;
}

.cart tr:first-child th:last-child,
.data-table tr:first-child th:last-child,
.forums-table-section table tr:first-child th:last-child {
	border-top-left-radius: 3px;
}

.cart tr:last-child td:first-child,
.data-table tr:last-child td:first-child,
.forums-table-section table tr:last-child td:first-child {
	border-bottom-right-radius: 3px;
}

.cart tr:last-child td:last-child,
.data-table tr:last-child td:last-child,
.forums-table-section table tr:last-child td:last-child {
	border-bottom-left-radius: 3px;
}

td .attributes {
	padding: 20px 0;
	margin: 0;
}

.cart a,
.data-table a,
.compare-products-table a,
.forums-table-section a {
	color: #97c300;
}

.cart .product a,
.data-table .product a,
.compare-products-table .product a,
.forums-table-section .product a {
	color: #444;
	transition: all .2s ease;
}

.cart .product a:hover,
.data-table .product a:hover,
.compare-products-table .product a:hover,
.forums-table-section .product a:hover {
	color: #97c300;
}

.cart .edit-item a,
.data-table .edit-item a,
.compare-products-table .edit-item a,
.forums-table-section .edit-item a {
	color: #97c300;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
}

.cart .attributes,
.data-table .attributes,
.compare-products-table .attributes,
.forums-table-section table .attributes {
	font-size: 15px;
	color: #8c8c8c;
	max-width: none;
}

.cart td.date,
.data-table td.date,
.compare-products-table td.date,
.forums-table-section td.date {
	white-space: nowrap;
}

td.product-picture {
	font-size: 0;
}

.select,
.select-boxes {
	position: relative;
	overflow: hidden;
}
.select input[type="checkbox"],
.select-boxes input[type="checkbox"] {
	position: absolute;
	right: -9999px;
}

.select label,
.select-boxes label {
	display: block !important;
	width: 17px;
	height: 17px;
	border-radius: 0;
	border: 1px solid #eeeeee;
	vertical-align: text-top;
	background-color: #fff;
	cursor: pointer;
}

.select input[type="checkbox"]:checked + label,
.select-boxes input[type="checkbox"]:checked + label {
	margin-right: 1px;
	margin-top: 1px;
	width: 16px;
	height: 16px;
	box-shadow: 0 0 0 1px #e7e7e7;
	border: 3px solid #fff;
	background-color: #97c300;
}


.select label:before,
.select-boxes label:before {
	content: none !important;
	display: none !important;
}

.cart .product,
.data-table .product,
.data-table .message,
.data-table .info,
.data-table .name,
.forum-table .forum-details,
.forum-table .topic-details {
	text-align: right;
}
.cart .remove-from-cart,
.cart .add-to-cart,
.data-table .select-boxes,
.data-table .order {
	text-align: center;
}
.cart .unit-price {
	white-space: nowrap;
}
.cart .qty-input,
.cart .qty-dropdown {
	margin: -5px 0;
	padding: 0 7px;
	width: 40px;
	height: 40px;
	font-size: 14px;
	color: #444;
	text-align: center;
	background-position: left 10px center
}
.cart .qty-dropdown {
	text-align: right;
	padding: 0 5px 0 20px;
}

.cart .subtotal span {
	display:  inline-block;
	color: #444;
	white-space: nowrap;
	font-weight: 700;
}
.cart .subtotal .discount,
.cart .discount-additional-info {
	white-space: nowrap;
	font-size: 12px;
}

.cart .remove-from-cart {
	position: relative;
}
.cart .remove-from-cart button {
	/*position: absolute;
	top: 0; right: 0;
	bottom: 0; left: 0;
	margin: auto;*/
	width: 24px;
	height: 24px;
	border: none;
	background: none;
	transition: 0.2s ease;
}
.cart .remove-from-cart button:after {
    content: "\7a";
	display: block;
    font-size: 18px;
	color: #444;
}
.cart .remove-from-cart button:hover {
	transform: rotate(-90deg);
}

.td-title {
	font-weight: 300;
	color: #8c8c8c;
}

.td-title + span {
	display: inline-block;
	vertical-align: middle;
}

.button-1 {
	border: none;
	height: 45px;
	padding: 0 25px;
	border-radius: 3px;
	background-color: #eebe00;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	transition: all .2s ease;
}

.button-1:hover {
	background-color: #e8af00;
}


/*********** NOTIFICATIONS & POPUPS  ***********/


.bar-notification {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1040;
	width: 100%;
	padding: 20px 6%;
	min-height: 60px;
	color: #fff;
	overflow: hidden;
}
.bar-notification.success {
	background-color: rgba(151,195,0,.8);
}
.bar-notification.warning {
	background-color: rgba(255,79,96,.8);
}
.bar-notification.error {
	background-color: rgba(255,79,96,.8);
}
.bar-notification .content {
	float: right;
	max-width: calc(100% - 50px);
	font-size: 15px;
	color: #fff;
	font-weight: 700;
	margin: 0 0 0 10px;
}
.bar-notification .content a {
	color: #fff;
	text-decoration: underline;
}
.bar-notification .close {
	float: left;
	cursor: pointer;
	opacity: 0.7;
	font-size: 0;
}

.bar-notification .close:before {
	content: "\7a";
	display: block;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	font-size: 20px;
	color: #fff;
	text-transform: none;
	font-weight: normal;
}

.bar-notification .close:hover {
	opacity: 1;
}

.noscript {
	background-color: #ff9;
	padding: 10px;
	text-align: center;
}

.ajax-loading-block-window {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1030;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(255,255,255,.7);
}

.ajax-loading-block-window:before,
.ajax-loading-block-window:after {
	content:"";
	position: fixed;
	display: inline-block;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border: 0px solid #97c300;
	border-radius: 50%;
	-webkit-animation: loader 1.6s cubic-bezier(0, 0, 0.09, 0.99) infinite;
	-moz-animation: loader 1.6s cubic-bezier(0, 0, 0.09, 0.99) infinite;
	animation: loader 1.6s cubic-bezier(0, 0, 0.09, 0.99) infinite;
}

.ajax-loading-block-window:after {
	animation-delay: .8s;
}

.ui-dialog {
	position: absolute !important;
	left: 50% !important;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	padding-bottom: 30px;
	width: 600px !important;
	max-width: 95%;
	box-shadow: 0 0 20px rgba(0,0,0,.15);
	background-color: #fff;
	z-index: 1050;
}
.ui-dialog-titlebar {
    display: block;
    padding: 25px 0;
    margin: 0 auto;
    width: calc(100% - 100px);
    font-size: 22px;
    text-transform: none;
    font-weight: 700;
    color: #444;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.ui-dialog-titlebar .ui-dialog-title {
	font-size: 22px;
	font-weight: 700;
	color: #444;
}

.ui-dialog-titlebar button {
	position: absolute;
	top: 25px;
	left: 25px;
	border: none;
	background: transparent;
	overflow: hidden;
	font-size: 0;
	text-align: center;
	opacity: 0.5;
}

.ui-dialog-titlebar button:before {
	content: "\7a";
	text-transform: none;
	font-weight: normal;
	font-size: 20px;
	line-height: 24px;
}

.ui-dialog-titlebar button:hover {
	opacity: 0.9;
}
.ui-dialog-content {
	padding: 0 30px;
	height: auto !important;
	overflow: auto;
}
.ui-dialog-content .page {
	min-height: 0;
	text-align: center;
}
.ui-dialog-content .page-title {
	margin: 0 0 12px;
	padding: 0;
}
.ui-dialog-content .page-title h1 {
	font-size: 15px;
	text-transform: uppercase;
	color: #8c8c8c;
}
.ui-dialog-content .tooltip {
	margin: 5px 0;
	line-height: 20px;
}
.ui-dialog-content button {
	margin-top: 20px;
}

.eu-cookie-bar-notification {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 1050;
	width: 90%;
	max-width: 600px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 3px;
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
	background-color: #fff;
	padding: 20px;
	text-align: center;
}
.eu-cookie-bar-notification .text {
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 15px;
	color: #8c8c8c;
}
.eu-cookie-bar-notification button {
	height: 45px;
	margin: 10px 0 20px;
	border: none;
	background-color: #eebe00;
	border-radius: 3px;
	padding: 0 25px;
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	transition: all .1s ease;
}
.eu-cookie-bar-notification button:hover {
	background-color: #e8af00;
}
.eu-cookie-bar-notification a {
	display: block;
	font-size: 13px;
	color: #8c8c8c;
	font-weight: 700;
	text-transform: uppercase;
}

.scroll-back-button {
    display: none !important;
    position: fixed;
    bottom: 20px;
    right: 6vw;
    width: 50px;
    height: 50px;
    border: 1px solid #97c300;
    border-radius: 3px;
    text-align: center;
    background: rgba(255,255,255,.6);
    cursor: pointer;
}

.scroll-back-button:before {
    content: '\77';
    display: inline-block;
    position: absolute;
    color: #97c300;
    font-size: 14px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    -ms-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
}


/*********** HEADER ***********/




.admin-header-links {
	background-color: #333;
	text-align: center;
	color: #fff;
}
.admin-header-links .impersonate {
	display: inline-block;
}
.admin-header-links a,
.admin-header-links span {
	display: inline-block;
	margin: 0 10px;
	line-height: 35px;
	font-weight: bold;
}

.header { 
	margin: 0 auto;
	text-align: center;
}
.header:after { 
	content: "";
	display: block;
	clear: both;
}

.header-logo a {
	display: inline-block;
	max-width: 100%;
	line-height: 0; /*firefox line-height bug fix*/
}
.header-logo a img {
	max-width: 100%;
	max-height: 45px;
}
.header-links-wrapper {
	position: relative;
	margin: 0 0 20px;
}

.personal-button {
	position: relative;
}

.profile-menu-box {
	position: absolute;
	top: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-top: 25px;
	width: 150px;
	padding: 10px 0;
	border-radius: 3px;
	background: #fff;
	font-size: 14px;
	opacity: 0;
    visibility: hidden;
	text-align:right;
	pointer-events: none;
	box-shadow: 0 0 20px rgba(0,0,0,.16);
	z-index: 1020;
	transition: all .2s ease;
}

.profile-menu-box:after {
	content: " ";
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #ffffff;
	border-width: 8px;
	margin-left: -8px;
}

.profile-menu-box.open {
	margin-top: 8px;
	opacity: 1;
    visibility: visible;
	pointer-events: auto;
}
.profile-menu-box > a,
.header-form-holder > a {
	display: block !important;
	padding: 10px 17px;
	color: #444444;
}
.profile-menu-box span:before,
.profile-menu-box a:before {
	display: inline-block !important;
	color: #8e8e8e;
	font-size: 17px;
	vertical-align: middle;
	margin-left: 10px;
	min-width: 20px;
	font-weight: normal;
	text-transform: none;
}

.close-side-menu {
	display: none;
}


/*********** FLYOUT CART MOBILE ***********/



a.ico-cart {
	display: inline-block;
	font-size: 13px;
	color: #8c8c8c;
	transition: color .2s ease;
}

a.ico-cart:before {
	display: block;
	margin-bottom: 4px;
	font-size: 26px;
	color: #8e8e8e;
	transition: color .2s ease;
}

.mini-shopping-cart .close-side-menu {
	display: none;
}

.mini-shopping-cart .flyout-cart-scroll-area {
	position: relative;
	width: 100%;
	padding: 20px 0 0;
	background-color: #fff;
}

.flyout-lower {
	background-color: #f6f6f6;
	border-radius: 0 3px 3px 0;
}

.mini-shopping-cart:after {
	content: "";
	display: block;
	clear: both;
}

.mini-shopping-cart .count {
	float: right;
	padding: 20px 15px 20px 0;
}
.mini-shopping-cart .count a {
	font-size: 14px;
	color: #8c8c8c;
}

.mini-shopping-cart .count a:hover {
	color: #97c300;
	text-decoration: none;
}

.mini-shopping-cart .count a:before {
	content: "\64";
	display: inline-block;
	vertical-align: bottom;
	margin: 0 0 0 5px;
	font-size: 20px;
}

.flyout-cart-scroll-area > p {
	padding: 0 20px 20px;
	font-size: 14px;
	color: #8c8c8c;
	text-align: center;
}

.flyout-cart .items {
	position: relative;
	padding: 0 10px;
	margin-bottom: 15px;
	border-radius: 3px 3px 0 0;
	background: #fff;
	text-align: right;
	overflow: hidden;
}

.mini-shopping-cart .item {
	overflow: hidden;
	margin: 15px 0 0;
}
.mini-shopping-cart .item.first {
	margin-top: 0;
}
.mini-shopping-cart .picture {
	float: right;
	width: 78px;
	height: auto;
	border: 1px solid #eee;
	border-radius: 3px;
	text-align: center;
	overflow: hidden;
	font-size: 0;
}
.mini-shopping-cart .picture a {
	display: block;
	position: relative;
	overflow: hidden;
}
.mini-shopping-cart .picture a:before {
	content: "";
	display: block;
	padding-top: 100%;
	margin: 0;
}
.mini-shopping-cart .picture img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 100%;
}

.mini-shopping-cart .product {
	position: relative;
	margin: 0 90px 0 30px;
	text-align: right;
}

.mini-shopping-cart .product:after {
    content: "";
    display: block;
    clear: both;
}

.mini-shopping-cart .product .remove-item {
	position: absolute;
	top: 0;
	left: -30px;
	right: auto;
	font-size: 0;
	width: 18px;
	height: 18px;
	text-align: center;
	border-radius: 2px;
	background-color: #f1f1f1;
	text-decoration: none;
	transition: all .1s ease;
}

.mini-shopping-cart .product .remove-item:after {
	content: "\7a";
	display: block;
	font-size: 8px;
	line-height: 18px;
	color: #8e8e8e;
	transition: all .1s ease;
}

.mini-shopping-cart .product .remove-item:hover {
	background-color: #e9e9e9;
	text-decoration: none;
}

.mini-shopping-cart .product .remove-item:hover::after {
	text-decoration: none;
}

.mini-shopping-cart .name a {
	display: block;
	margin: 0 0 5px;
	font-size: 14px;
	color: #444444;
}
.mini-shopping-cart .attributes{
	padding: 0;
	margin: 0 0 5px;
	font-size: 14px;
	color: #8c8c8c;
}

.mini-shopping-cart .right {
	display: inline-block;
}

.mini-shopping-cart .quantity {
    margin: 0 0 0 4px;
    font-size: 0;
    color: #8c8c8c;
    float: right;
}

.mini-shopping-cart .quantity span {
	display: inline-block;
	font-weight: bold;
	font-size: 16px;
}

.mini-shopping-cart .quantity:after {
	content: "x";
	display: inline-block;
	margin-right: 3px;
	font-size: 16px;
	font-weight: 700;
	color: #8c8c8c;
	text-transform: none;
	font-family: "Roboto";
}

.mini-shopping-cart .price {
	font-size: 16px;
	font-weight: bold;
	color: #97c300;
	float: left;
}

.mini-shopping-cart .totals {
	float: left;
	padding: 20px 0 20px 15px;
	font-size: 15px;
	text-align: left;
	color: #8c8c8c;
}
.mini-shopping-cart .totals strong {
	display: inline-block;
	color: #97c300;
	font-size: 18px;
}
.mini-shopping-cart .buttons {
	padding: 0 15px 15px;
	margin-bottom: 0;
	text-align: left;
	clear: both;
}
.mini-shopping-cart .buttons button {
	display: inline-block;
	width: 100%;
	padding: 0 15px;
}
.mini-shopping-cart button + button {
    margin-top: 10px;
    background-color: #ddd;
    color: #8c8c8c;
}
.mini-shopping-cart .buttons button:hover {
    background-color: #e8af00;
}
.mini-shopping-cart button + button:hover {
    background-color: #d1d1d1 !important;
}

/******** LOGIN FORM IN HEADER ********/



.profile-menu-box.login-form-in-header {
	padding: 20px 0 0;
	width: 255px;
}

.login-form-in-header .fieldset {
	margin: 0;
}

.login-form-in-header .returning-wrapper .form-fields {
	padding: 0;
	min-height: 0;
}

.login-form-in-header .form-fields {
	font-size: 0;
}

.login-form-in-header .external-authentication > * {
	padding: 20px;
	background-color: #f6f6f6;
	border-radius: 0 0 3px 3px;
}

.login-form-in-header form {
	padding: 0 20px;
}

.login-form-in-header .external-authentication {
	margin: 0;
}

.login-form-in-header .in-header-register {
	text-align: center;
}

.login-form-in-header .in-header-register .register-button {
	display: inline-block;
	background-color: transparent;
	border: none;
	padding: 15px 20px 15px 0;
	font-size: 12px;
	text-transform: uppercase;
	color: #8c8c8c;
	font-weight: bold;
	background: url('../Themes/Emporium/Content/img/register-icon.png') right center no-repeat;
	transition: all .2s ease;
}

.login-form-in-header .in-header-register .register-button:hover {
	color: #97c300;
}

.login-form-in-header .title {
	display: none;
}

.login-form-in-header .inputs {
	margin: 6px 0 0;
}

.login-form-in-header .inputs:first-child {
	margin-top: 0;
}

.login-form-in-header .inputs label {
	display: none;
}

.login-form-in-header .forgot-password {
	width: 100%;
}

.login-form-in-header .inputs.reversed {
	margin: 0 0 15px;
}

.login-form-in-header .inputs.reversed label {
	display: inline-block;
	width: auto;
	margin: 0;
	font-size: 12px;
	line-height: 17px;
	height: 17px;
	color: #8c8c8c;
	text-align: right;
	cursor: pointer;
	user-select: none;
}

.login-form-in-header .inputs.reversed label:before {
	vertical-align: text-bottom;
}

.inputs.reversed input[type="checkbox"] {
	position: absolute;
	right: -9999px;
}

.inputs.reversed input[type="checkbox"] + label {
	cursor: pointer;
}

.login-form-in-header .inputs input[type="text"],
.login-form-in-header .inputs input[type="email"],
.login-form-in-header .inputs input[type="password"] {
	height: 45px;
	padding: 0 15px 0 35px;
	line-height: 45px;
	border-radius: 3px;
}

.login-form-in-header .inputs input:focus + .inputs-icons {
	color: #97c300;
}

input + .inputs-icons {
	position: absolute;
	top: 0;
	left: 15px;
	right: auto;
}

.inputs-icons {
	display: none;
	font-size: 15px;
	color: #8e8e8e;
	line-height: 45px;
	font-family: "emporium-icons";
}

.button-1.checkout-as-guest-button {
	margin: 0 0 10px 10px; 
	background-color: #f1f1f1;
	color: #8c8c8c;
}
.button-1.checkout-as-guest-button:hover {
	background-color: #eaeaea;
}

.login-form-in-header .inputs-icons {
	display: inline-block;
	text-transform: lowercase;
}

.login-form-in-header .login-button {
	display: block;
	width: 100%;
	border: none;
	height: 45px;
	border-radius: 3px;
	background-color: #eebe00;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
}

.login-form-in-header .login-button:hover {
	background-color: #e8af00;
}

.login-form-in-header a.facebook-btn {
	display: block;
	width: 100%;
	height: 35px;
	border-radius: 3px;
	line-height: 35px;
	background-color: #3270ab;
	color: #fff !important;
	font-size: 13px;
	text-transform: uppercase;
	text-align: center;
	background-image: none !important;
}

.login-form-in-header a.facebook-btn:hover {
	background-color: #4065a3;
}

.login-form-in-header a.facebook-btn:before {
	content: "\6e";
	display: inline-block;
	margin-left: 10px;
	font-size: 17px;
	color: #fff !important;
	text-transform: none;
}

.login-form-in-header a.facebook-btn:after {
	content: "log in with facebook";
	display: inline-block;
	font-family: "Roboto";
}

.login-form-in-header .forgot-password {
	display: block;
	margin-bottom: 15px;
}

.login-form-in-header .forgot-password a {
	display: block;
	width: 100%;
	background-color: #f6f6f6;
	padding: 5px 10px;
	font-size: 11px;
	color: #8c8c8c;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}



/******** END OF LOGIN FORM IN HEADER ********/



.header-links ul {
	display: inline-block;
	font-size: 0;
}

.ico-wishlist:before {
	content: "\63";
}

.ico-cart:before {
	content: "\64";
}

.personal-button > span:before,
.ico-account:before {
	content: "\61";
}

.profile-menu-box .ico-inbox {
	font-size: 0;
}

.ico-inbox span {
	font-size: 14px;
	vertical-align: middle;
}

.ico-inbox:before {
	content: "\41";
}

.ico-compare:before {
	content: "\62";
}

.ico-logout:before {
	content: "\42";
}

.ico-login:before {
	content: "\78";
}

.ico-register:before {
	content: "\79";
}

.search-box {
	position: relative;
}
.search-box form {
	position: relative;
}
.search-box form:after {
	content: "";
	display: block;
	clear: both;
}
.search-box input.search-box-text {
	float: right;
	height: 45px;
	border: 1px solid #eeeeee;
	border-left: 0;
	font-size: 14px;
	color: #959595;
	border-radius: 0 3px 3px 0;
}

.search-box input.search-box-text::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #959595;
}
.search-box input.search-box-text::-moz-placeholder { /* Firefox 19+ */
	color: #959595;
}
.search-box input.search-box-text:-ms-input-placeholder { /* IE 10+ */
	color: #959595;
}
.search-box input.search-box-text:-moz-placeholder { /* Firefox 18- */
	color: #959595;
}

.search-box .search-box-button {
	float: right;
	width: 45px;
	height: 45px;
	padding: 0;
	border: none;
	background: #ccc url('../Themes/Emporium/Content/img/search-button.png') center no-repeat;
	font-size: 0;
	border: 1px solid #eeeeee;
	border-right: 0;
	border-radius: 3px 0 0 3px;
}

.search-box .search-box-button:hover {
	background-color: #e8af00;
}

.ui-helper-hidden-accessible {
	display: none;
}
.ui-autocomplete {
	position: absolute;
	padding: 5px 0;
	max-width: 100%;
	border-radius: 0 0 3px 3px;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 0 0 13px rgba(0,0,0,.1);
	z-index: 1070;
}

.ui-autocomplete li:first-child {
	border-top: none;
}
.ui-autocomplete a {
	display: block;
	padding: 5px 10px;
	text-align: right;
	font-size: 14px;
	color: #444444;
}
.ui-autocomplete a.ui-state-focus {
	background-color: #f6f6f6;
}
.ui-autocomplete img {
	display: inline-block;
	width: 50px;
	margin-left: 10px;
	border: 1px solid #eeeeee;
	border-radius: 2px;
	vertical-align: middle;
}
.ui-autocomplete span {
	display: inline-block;
	vertical-align: middle;
	max-width: calc(100% - 60px);
}

.header-selectors-wrapper {
	font-size: 0;
}
.header-selectors-wrapper > div {
	display: inline-block;
	margin: 0 5px 10px;
	vertical-align: middle;
}

.language-list {
	max-width: 100%;
	font-size: 0;
}
.language-list li {
	display: inline-block; 
	margin: 0 1px; 
}
.language-list a { 
	display: block;
	position: relative;
	width: 32px;
	height: 32px;
	line-height: 0;
}
.language-list img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.slider-wrapper.theme-custom {
	margin: 0 auto 30px; /*overrides default slider*/
}


/*********** FOOTER ***********/



.footer {
	border-top: 3px solid #f6f6f6;
	background-color: #fff;
	text-align: center;
    overflow: hidden;
}

.footer-upper {
	margin: 55px 0;
	overflow: hidden;
}

.footer-logo {
	margin: 0 0 25px;
}

.footer-block a {
	font-size: 15px;
	color: #959595;
	transition: color .2s ease;
}

.footer-block a:hover {
	color: #97c300;
}

.footer .newsletter .title {
	margin: 0 0 13px;
	font-size: 15px;
	color: #8c8c8c;
	text-transform: none;
}

.newsletter .title strong {
	font-weight: normal;
}

.newsletter-email { 
	display: block;
	overflow: hidden; 
	max-width: 255px;
	margin: 0 auto;
}
.newsletter-email .newsletter-subscribe-text {
	float: right;
	width: calc(100% - 47px);
	height: 47px;
	border-radius: 0 3px 3px 0;
	border-left: 0;
}

.newsletter-email .newsletter-subscribe-text:focus {
	border-color: #e7e7e7;
}

.newsletter-email .newsletter-subscribe-text::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #959595;
}
.newsletter-email .newsletter-subscribe-text::-moz-placeholder { /* Firefox 19+ */
	color: #959595;
}
.newsletter-email .newsletter-subscribe-text:-ms-input-placeholder { /* IE 10+ */
	color: #959595;
}
.newsletter-email .newsletter-subscribe-text:-moz-placeholder { /* Firefox 18- */
	color: #959595;
}

.newsletter-email .newsletter-subscribe-button {
	float: right;
	width: 47px;
	height: 47px;
	padding: 0;
	border: none;
	border-radius: 3px 0 0 3px;
	background: #eebe00 url('../Themes/Emporium/Content/img/subscribe-button.png') center no-repeat;
	font-size: 0;
	transition: all .2s ease;
}

.newsletter-email .newsletter-subscribe-button:hover {
    background-color: #e8af00;
}
.newsletter-email .options {
	height: 0;
	overflow: hidden;
	clear: both;
}
.newsletter-validation, 
.newsletter-result {
	margin: 10px 0;
	line-height: 20px;
	font-size: 13px;
	color: #444;
}
.newsletter-validation .please-wait {
	display: none !important; 
}

.footer-middle {
	margin-bottom: 50px;
	overflow: hidden;
}

.footer-middle .social-icons,
.footer-middle .pay-options {
	margin-top: 40px;
}

.pay-options img {
	margin: 0 2px;
    max-width: 30px;
}

.social-sharing ul {
	font-size: 0;
}
.social-sharing li {
	display: inline-block;
	margin: 0 3px;
}
.social-sharing a {
	display: block;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
}
.social-sharing a:before {
	display: block;
	font-size: 22px;
	color: #8e8e8e;
	transition: color .2s ease;
}

.social-sharing a:hover:before {
	color: #97c300;
}

.social-sharing .facebook:before {
	content: "\6e";
}
.social-sharing .twitter:before {
	content: "\6f";
}
.social-sharing .google:before {
	content: "\70";
}
.social-sharing .pinterest:before {
	content: "\44";
}
.social-sharing .instagram:before {
	content: "\74";
}
.social-sharing .linkedin:before {
	content: "\75";
}
.social-sharing .vimeo:before {
	content: "\71";
}
.social-sharing .youtube:before {
	content: "\72";
}
.social-sharing .rss:before {
	content: "\73";
}

.footer-lower {
	overflow: hidden;
	font-size: 11px;
}
.footer-lower > div {
	display: block;
	margin: 5px 10px 0;
	color: #a0a0a0;
	font-size: 14px;
}

.footer-lower > div:first-child {
	margin-top: 0;
}

.footer-lower > div a {
	color: #ededed;
}
.footer-lower .theme-selector {
	margin: 15px 0 0;
}
.theme-selector select {
	width: 170px;
	height: 36px;
}

.footer-block ul {
	display: none;
	padding: 10px 0;
	background-color: #f6f6f6;
}

.footer-block ul li {
	padding: 8px;
}

.footer-block {
	border-bottom: 1px solid #eeeeee;
}

.footer-block:first-child {
	border-top: 1px solid #eeeeee;

}

.footer .title {
	margin-bottom: 15px;
	text-transform: uppercase;
	color: #444444;
	font-size: 14px;	
}

.footer-block .title {
	position: relative;
	margin: 0;
	padding: 15px 45px;
	text-transform: uppercase;
	color: #444444;
	font-size: 14px;
	cursor: pointer;
}

.footer-block .title:before,
.footer-block .title:after {
	content: "\77";
	position: absolute;
	display: inline-block;
	top: 50%;
	right: 20px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 9px;
	color: #97c300;
	text-transform: none;
	transition: all .3s ease;
}

.footer-block .title:after {
	right: auto;
	left: 20px;
}

.footer-block .title.open:before,
.footer-block .title.open:after {
	-webkit-transform: translateY(-50%) rotate(180deg);
	-ms-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
}

.footer-lower {
	padding: 30px 20px;
	background-color: #444444;
}



/*********** SMALL PRODUCT CAROUSELS ***********/


.small-products .nop-jcarousel.product-grid .slick-carousel {
    margin: 0 !important;
}

.small-products .nop-jcarousel .slick-slide {
    padding: 0 !important;
}

.small-products .item-box {
    border-radius: 3px !important;
    overflow: hidden;
    max-height: 120px;
}

.small-products .item-box .product-item {
    font-size: 0;
}

.small-products .item-box .product-item > div {
    display: inline-block;
    vertical-align: top;
}

.small-products .item-box .prices .actual-price {
    display: block;
    margin: 0;
}

.small-products .item-box .product-item > div:first-child {
    width: 120px;
}
.small-products .item-box .picture {
    margin: 0;
    border-radius: 0;
}

.small-products .item-box .picture > a:before {
     padding-top: 100%;
}

.small-products .item-box .details {
    width: calc(100% - 120px);
    padding: 13px;
    text-align: right;
}

.small-products .item-box .prices {
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.small-products .item-box .buttons,
.small-products .item-box .btn-wrapper {
    display: none;
}

.small-products .item-box .product-title,
.small-products .item-box .title {
    padding: 0;
    height: auto;
    max-height: 39px;
}

.small-products .item-box .prices > *:last-child:not(:empty) {
    margin: 0;
}

.two-row-carousels {
	padding: 0 20px;
}

.two-row-carousels .product-grid .title {
	font-size: 24px;
}

.two-row-carousels:after {
	content: "";
	display: block;
	clear: both;
}

.two-row-carousels .slick-slide {
	min-height: 241px;
}

.two-row-carousels .slick-arrow {
	position: absolute;
	top: auto;
	bottom: 101px;
	width: 40px;
	height: 40px;
	background-color: #fff;
	cursor: pointer;
	border: 1px solid #eee;
	border-radius: 50%;
	text-align: center;
	font-size: 0;
	transition: all .2s ease;
	z-index: 1;
}

.two-row-carousels .slick-arrow:before {
	display: block;
	color: #d0d0d0;
	font-size: 12px;
	line-height: 40px;
	transition: all .2s ease;
	text-transform: none;
}

.two-row-carousels .slick-arrow:hover {
	background-color: #97c300;
	border: 1px solid #97c300;
}

.two-row-carousels .slick-arrow:hover:before {
	color: #fff;
}

.two-row-carousels .slick-prev:before {
	content: "\6a";
}

.two-row-carousels .slick-prev {
	right: 0;
	margin-right: -20px;
}

.two-row-carousels .slick-next:before {
	content: "\6b";
}

.two-row-carousels .slick-next {
	left: 0;
	margin-left: -20px;
}

.two-row-carousels .slick-list {
	border: 1px solid #eee;
	border-radius: 3px;
}

.two-row-carousels .slick-slide > div {
	font-size: 0;
}
.two-row-carousels .slick-slide > div:first-child {
	border-bottom: 1px solid #eee;
}

.two-row-carousels .item-box {
	float: none !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 0 !important;
	height: 0; /*hidden until fully loaded*/
	overflow: hidden;
}

.two-row-carousels .slick-slide .item-box {
	height: auto;
}




/*********** LEFT/RIGHT COLUMN ***********/



.block {
	border: 1px solid #eee;
	border-radius: 3px;
	margin: 0 0 10px;
	text-align: center;
}
.block .title {
	position: relative;
	padding: 14px 50px 14px 20px;
	font-size: 17px;
	color: #444444;
	background-color: #f6f6f6;
	cursor: pointer;
	text-align: right;
}
.block .title strong {
	font-weight: 300;
	display: block;
}

.block .title:before {
	content: "\77";
	display: inline-block;
	position: absolute;
	right: 25px;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
	font-size: 10px;
	color: #97c300;
	text-transform: none;
	transition: all .4s ease;
}

.block .title.open:before {
	-webkit-transform: translateY(-50%) rotate(0deg);
	-ms-transform: translateY(-50%) rotate(0deg);
	transform: translateY(-50%) rotate(0deg);
}

.block .listbox {
	display: none;
	padding: 18px;
	text-align: right;
}
.block .listbox:after {
	content: "";
	display: block;
	clear: both;
}

.block .poll {
	padding: 10px 0;
}

.block .list li.active > a {
	color: #97c300;
	font-weight: bold;
}
.block .list a {
	display: inline-block;
	padding: 8px 0;
	font-size: 15px;
	color: #8c8c8c;
	transition: all .2s ease;
}

.block-recently-viewed-products a.product-picture {
	padding: 0;
}

.block .list a:hover {
	color: #97c300;
}

.block .list .product-picture {
	display: none;
}

.block .sublist {
	padding: 0 15px;
}

.block .view-all {
	margin: 7px 0;
}
.block .view-all a {
	display: block;
	margin: 15px 0 0;
	font-weight: bold;
	font-size: 13px;
	text-transform: uppercase;
	color: #97c300;
	transition: all .2s ease;
}

.block .view-all a:hover {
	color: #5c7600;
}

.block .tags {
	margin: 0 0 10px;
}
.block .tags ul {
	font-size: 0;
}
.block .tags li,
.product-tags-all-page li {
	display: inline-block;
	position: relative;
	margin: 0 10px;
	overflow: hidden;
	font-size: 16px !important; /*setting base size*/
}
.block .tags li a,
.product-tags-all-page li a {
	float: right;
	line-height: 30px;
	color: #8c8c8c;
	transition: all .2s ease;
}

.block .tags li a:hover,
.product-tags-all-page li a:hover {
	color: #97c300
}

.poll > strong {
	display: block;
	margin: 0 0 20px;
	font-size: 18px;
	color: #97c300;
}
.poll-options,
.poll-results {
	margin: 0 0 15px;
	overflow: hidden;
}
.home-page-polls .poll-options li {
	margin-bottom: 5px;
	text-align: right;
}

.home-page-polls .poll .buttons {
	margin-top: 30px;
}
.home-page-polls .poll-total-votes {
	margin-top: 0;
}

.home-page-polls .answer label {
	display: block;
	border: 1px solid #eeeeee;
	border-radius: 3px;
	padding: 20px;
	font-size: 16px;
	font-weight: bold;
	color: #444444;
	cursor: pointer;
	transition: all .2s ease;
}

.home-page-polls .answer input[type="radio"]:checked + label:before {
	border: 4px solid #fff;
	background-color: #97c300;
}

.home-page-polls .answer:hover label {
	background-color: #f6f6f6;
}

.home-page-polls .poll {
	max-width: 500px;
	margin: 0 auto;
}

.poll .buttons,
.poll-total-votes {
	margin-top: 15px;
}

.poll .buttons button {
	padding: 10px 20px;
	border: none;
	background-color: #f1f1f1;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 13px;
	color: #8c8c8c;
	transition: all .2s ease;
}
.poll .buttons button:hover {
    background-color: #e8af00;
    color: #fff;
}
.home-page-polls .poll button {
	border-radius: 3px;
	background-color: #eebe00;
	padding: 15px 30px;
	color: #fff;
}

.poll-total-votes {
	display: block;
	margin: 10px 0 0;
	font-weight: bold;
	text-align: left;
	font-size: 13px;
	text-transform: uppercase;
	color: #8c8c8c;
}

.block .poll .buttons {
	text-align: right;
}

.block .poll-options li,
.poll-results li {
	display: block;
	margin-bottom: 15px;
	font-size: 15px;
	color: #8c8c8c;
	text-align: right;
}

.block .poll-options li:last-child{
	margin-bottom: 0;
}

.block .poll-results li:last-child {
	margin-bottom: 10px;
}


.home-page-polls {
	text-align: center;
	margin: 0 10px 50px;
}
.home-page-polls .title {
	margin: 0 0 20px;
	font-size: 28px;
	color: #444444;
}
.home-page-polls .title strong {
	font-weight: bold;
}

.answer {
	position: relative;
	overflow: hidden;
}

.answer input[type="radio"] {
	position: absolute;
	right: -9999px;
}

.answer label {
	display: block;
	padding: 7px 0;
	font-size: 15px;
	color: #8c8c8c;
	cursor: pointer;
	transition: all .2s ease;
}

.block .answer label:hover {
	color: #97c300;
}
.block .answer:after {
	content: "";
	display: block;
	clear: both;
}

.answer span:last-child {
	float: left;
	font-size: 13px;
}

.answer span strong {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	font-size: 15px;
	color: #444444;
}
.answer label:before {
	content: "";
	display: inline-block;
	margin-left: 10px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid #eeeeee;
	vertical-align: bottom;
	background-color: #fff;
}

.answer input[type="radio"]:checked + label:before {
	margin-right: 1px;
	width: 17px;
	height: 17px;
	margin-left: 9px;
	box-shadow: 0 0 0 1px #e7e7e7;
	border: 3px solid #fff;
	background-color: #97c300;
}


.block.product-filters .listbox {
	color: #444444;
	padding: 18px 30px;
	font-size: 15px;
}
.product-filters .listbox .filter-title {
	padding: 5px 0px;
	color: #444;
	font-size: 15px;
}
.product-filters .selected-price-range {
	overflow: hidden;
	margin: 5px 0 12px;
	font-size: 15px;
}
.product-filters .selected-price-range .from {
	float: left;
}
.product-filters .selected-price-range .to {
	float: right;
}
.product-filters .listbox .filter-content .group {
	padding: 0px 0px 0px 0px;
}
.product-filters .listbox .filter-content .name {
	padding: 5px 0px 3px 0px;
}
.product-filters .listbox .filter-title strong {
	font-size: 16px;
}
.product-filters .listbox .filter-title strong,
.product-filters .listbox .filter-content .name strong {
	font-weight: 400;
}
.product-filters .listbox .product-spec-filter .filter-content {
	padding: 10px 0px 10px 0px;
}
.product-filters .listbox .filter-content li.item {
	padding: 8px 0px;
}
.product-filters .ui-slider {
	position: relative;
	width: auto;
	height: 10px;
	margin: 0 10px 22px;
	max-width: 257px;
	padding: 10px 0 0;
	border-bottom: 3px solid #c5c5c5;
}
.product-filters .ui-slider-range {
	position: absolute;
	height: 3px;
	background-color: #97c300;
}
.product-filters .ui-slider-handle {
	position: absolute;
	top: 2px;
	width: 19px;
	height: 19px;
	margin-left: -8px;
	background: #fff;
	border: 1px solid #97c300;
	border-radius: 50%;
}
.product-filters .ui-slider-handle span {
	position: absolute;
	top: -35px;
	left: 50%;
	margin-left: -19px;
	min-width: 38px;
	height: 18px;
	padding: 0 2px;
	line-height: 18px;
	color: rgba(255,255,255,.7);
	font-size: 11px;
	text-align: center;
	background: #2c2c2c;
}
.product-filters .ui-slider-handle span:before {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 50%;
	margin-left: -2px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 3px 0 3px;
	border-color: #2c2c2c transparent transparent transparent;
}


/********** CATEGORY PAGE **********/



.breadcrumb {
    margin: 0 20px 5px;
	text-align: center;
}

.center-1 .breadcrumb {
	margin-bottom: 20px;
}

.breadcrumb ul {
	font-size: 0;
}
.breadcrumb li {
	display: inline-block;
	font-size: 14px; /*reset zeroing*/
	line-height: 1.5;
	color: #a9a9a9;
}

.breadcrumb li:last-child span {
    display: none;
}

.breadcrumb li > a,
.breadcrumb li > span,
.breadcrumb li > strong {
	margin: 0 3px;
	transition: color .2s ease;
}
.breadcrumb strong {
	font-weight: normal;
}
.breadcrumb a:hover,
.breadcrumb a:hover span {
	color: #97c300;
}

.breadcrumb .delimiter {
	display: inline-block;
	margin-left: 5px;
	font-size: 0;
}

.breadcrumb .delimiter:before {
	content: "\6b";
	display: block;
	font-size: 7px;
}

.category-description,
.manufacturer-description,
.vendor-description,
.contact-vendor {
	margin: 0 0 40px;
}
.contact-vendor-button {
	border: none;
	padding: 0 25px;
	height: 45px;
	background-color: #eebe00;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 3px;
	transition: all .1s ease;
}

.contact-vendor-button:hover {
    background-color: #e8af00;
}

.filters-button-wrapper {
    display: none !important;
}

.product-selectors {
	margin: 0 0 20px;
	text-align: center;
	font-size: 0;
}
.product-selectors:after {
	content: "";
	display: block;
	clear: both;
}

.product-selectors .product-sorting,
.product-selectors .product-page-size {
	width: calc(50% - 4px);
	display: inline-block;
	vertical-align: top;
}

.product-selectors .product-page-size {
	margin-right: 8px;
}
.product-selectors select {
	display: block;
	padding: 0 20px 0 40px;
	width: 100%;
	height: 50px;
	border: none;
	background-color: #f1f1f1;
	background-image: url('../Themes/Emporium/Content/img/select-arrow-dark.svg');
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	color: #8c8c8c;
	text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#products-pagesize-desktop {
	display: none;
}

.product-selectors .product-viewmode {
	display: none;
}
.product-selectors .product-viewmode span {
	vertical-align: middle;
}
.product-selectors .product-viewmode a {
	display: inline-block;
	width: 30px;
	height: 45px;
	margin: 0 0 0 8px;
	background-position: center;
	background-repeat: no-repeat;
	vertical-align: middle;
	font-size: 0;
	opacity: 0.5;
}

.product-selectors .product-viewmode a:last-child {
	margin: 0;
}

.product-selectors .product-viewmode a.grid {
	background-image: url('../Themes/Emporium/Content/img/view-grid.png');
}
.product-selectors .product-viewmode a.list {
	background-image: url('../Themes/Emporium/Content/img/view-list.png');
}
.product-selectors .product-viewmode a.selected {
	opacity: 1;
}

.item-grid:after {
	content: "";
	display: block;
	clear: both;
}

.item-box {
	position: relative;
	width: 49%;
	float: right;
	margin: 0 2% 2% 0;
	border: 1px solid #eeeeee;
	background-color: #fff;
	border-radius: 3px;
	overflow: hidden;
}

.item-box:nth-child(2n+1) {
	margin-right: 0;
	clear: both;
}

.item-box .picture {
	z-index: 1;
	overflow: hidden;
	background-color: #fff;
	margin: 0 0 5px;
	border-radius: 2px 2px 0 0;
}
.item-box .picture > a {
	display: block;
	position: relative;
    overflow: hidden;
}
.item-box .picture > a:before {
	content: "";
	display: block;
	padding-top: 100%;
}
.item-box .picture > a img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	max-width: none;
	height: 100%;
}

.item-box .manufacturer-item .picture > a img,
.item-box .vendor-item .picture > a img {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	max-width: 100%;
	height: auto;
}

.item-box .details {
	padding: 10px;
}

.item-box .product-title,
.item-box .title {
	height: 39px;
	margin: 0 0 7px;
	overflow: hidden;
	font-size: 15px;
	font-weight: normal;
	color: #444444;
}
.item-box .product-title a,
.item-box .title a {
	display: block;
}
.item-box .sku {
	display: none; /*remove if you want to show sku*/
	font-size: 13px;
	color: #8c8c8c;
	margin-bottom: 5px;
}
.item-box .product-rating-box {
	display: inline-block;
	margin: 0 0 8px;
}
.item-box .rating {
	background: url('../Themes/Emporium/Content/img/rating1.gif') right repeat-x;
	width: 65px;
	height: 12px;
}
.item-box .rating div {
	background: url('../Themes/Emporium/Content/img/rating2.gif') right repeat-x;
	height: 12px;
}
.item-box .description {
	display: none; /*hidden by design*/
	height: 30px;
	margin: 0 0 10px;
	overflow: hidden;
}
.item-box .description a {
	display: block;
	overflow: hidden;
}
.item-box .prices {
	overflow: hidden;
}

.item-box .prices *:empty {
	display: none;
}

.item-box .prices * {
	display: inline-block;
}

.item-box .old-price {
	font-size: 14px;
	color: #999;

}

.old-product-price span:last-child {
    text-decoration: line-through !important;
}


.item-box .actual-price {
	font-size: 18px;
	color: #97c300;
	font-weight: bold;
}

.item-box .old-price + .actual-price,
.item-box .actual-price + .tax-shipping-info {
	margin-right: 5px;
}

.item-box .tax-shipping-info {
    color: #8c8c8c;
}
.item-box .tax-shipping-info a {
	color: #97c300;
}

.item-box .base-price-pangv {
    color: #8c8c8c;
}
.item-box .buttons {
	display: none;
	font-size: 0;
}
.item-box button {
	height: 40px;
	padding: 0 5%;
	vertical-align: middle;
	border: none;
	text-overflow: ellipsis;
	overflow: hidden;
}

.item-box .button-2 {
	width: 100%;
	background-color: #f1f1f1;
	border-radius: 3px;
	font-weight: bold;
	font-size: 14px;
	color: #8c8c8c;
	text-transform: uppercase;
	transition: all .2s ease;
}

.item-box .buttons .button-2:hover {
	background-color: #eebe00;
	color: #fff;
}

.item-box .product-rating-box {
	margin-bottom: 10px;
}

.item-box .btn-wrapper {
	display: none;
	font-size: 0;
}

.item-box .btn-wrapper .button-2 {
	margin-right: 4px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 0;
	border-radius: 30px;
	background-color: #f1f1f1;
	border: 0;
	font-size: 0;
	backface-visibility: hidden;
	transition: all .1s ease;
}
.item-box .btn-wrapper button:before {
	transition: all .1s ease;
	text-transform: none;
	font-weight: normal;
	font-size: 18px;
	color: #8e8e8e;
}
.item-box .btn-wrapper .add-to-wishlist-button:before {
	content: "\63";
}

.item-box .btn-wrapper .add-to-compare-list-button:before {
	content: "\62";
}

.item-box .btn-wrapper button:hover {
	background-color: #97c300;
}


.item-box .btn-wrapper button:hover:before {
	color: #fff;
}

.home-page-category-grid,
.sub-category-grid,
.manufacturer-grid {
	margin: 0 auto 45px;
}  

.home-page-category-grid .item-box {
	background-color: #f6f6f6;
}

.category-grid .item-box {
	border: none;
}

.category-grid .item-box .picture {
	border: none;
	background: transparent;
	margin: 0;
}
.category-grid .item-box .picture a:before {
	padding-top: 73.33%;
}

.vendor-item .picture,
.manufacturer-item .picture {
	margin-bottom: 0
}

.vendor-item .title,
.manufacturer-item .title,
.category-grid .item-box .title {
	margin-bottom: 0;
	height: auto;
}

.vendor-item .title a,
.manufacturer-item .title a,
.category-grid .item-box .title a {
	display: block;
    padding: 16px 15px;
	font-size: 13px;
	color: #444444;
	font-weight: bold;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-overflow: ellipsis;
	white-space: nowrap; 
	overflow: hidden;
	transition: color .2s ease;
}

.sub-category-grid .item-box .title a {
	white-space: normal;
	text-overflow: initial;
}

.vendor-item:hover .title a,
.manufacturer-item:hover .title a,
.category-grid .item-box:hover .title a {
	color: #97c300;
}

.home-page-advantages {
	margin-bottom: 45px;
	overflow: hidden;
}

.advantages-item {
	padding: 10px 15px;
	margin-bottom: 5px;
	background-color: #f6f6f6;
	overflow: hidden;
	text-align: right;
}

.advantages-item > div {
	display: inline-block;
	vertical-align: middle;
}

.advantages-item .description {
	display: none;
}

.advantages-item .picture {
	width: 40px;
	height: 40px;
}

.advantages-item .picture img {
	max-height: 100%;
	max-width: 100%;
}

.advantages-item .info {
	width: calc(100% - 55px);
	padding-right: 10px;
}

.advantages-item .title {
	font-size: 15px;
	color: #444444;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.advantages-item .title a {
	transition: all .2s ease;
}

.advantages-item .title a:hover {
	color: #97c300;
}

.product-grid .title {
	margin: 0 0 25px;
	font-size: 28px;
	color: #444444;
	font-weight: bold;
	text-align: center;
}

.pager {
	margin: 0 0 20px;
}

.pager:last-child {
	margin-bottom: 0;
}
.pager ul {
	text-align: center;
	font-size: 0;
}
.pager li {
	display: inline-block;
	margin: 0 5px;
	vertical-align: middle;
}
.pager li a,
.pager li span {
	display: block;
	width: 38px;
	height: 38px;
	line-height: 37px;
	border-radius: 50%;
	text-align: center;
	font-size: 15px; /*reset zeroing*/
	cursor: pointer;
	color: #8c8c8c;
	transition: all .3s ease;
}
.pager li a:hover,
.pager li span {
	color: #fff;
	background-color: #97c300;
	border-color: #97c300 !important;
}

.pager li a:hover::before {
	color: #fff;
}

.pager li a:before {
	display: block;
	font-size: 12px;
	color: #d0d0d0;
	line-height: 37px;
	transition: all .3s ease;
}

.pager li.previous-page a,
.pager li.next-page a,
.pager li.first-page a,
.pager li.last-page a {
	font-size: 0;
	background-color: #fff;
}

.pager li.previous-page a:hover,
.pager li.next-page a:hover,
.pager li.first-page a:hover,
.pager li.last-page a:hover {
	background-color: #97c300;
}

.previous-page a,
.next-page a,
.first-page a,
.last-page a {
	border: 1px solid #e4e4e4;
}

.previous-page a:before,
.next-page a:before {
	content: "\6a";
}

.next-page a:before {
	content: "\6b";
}

.first-page a:before {
	content: "\57";
}
.last-page a:before {
	content: "\56";
}


/********** PRODUCT PAGE **********/


.product-details-page .product-grid {
	width: 100%;
}

.mobile-name-holder {
	margin-bottom: 30px;
}

.mobile-name-holder .breadcrumb {
	margin: 0 0 20px;
}

.product-essential {
	margin: 0 0 20px;
}
.product-essential:after {
	content: "";
	display: block;
	clear: both;
}
.gallery {
	margin: 0 auto 40px;
	max-width: 500px;
}
.gallery .picture {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	border-radius: 3px;
	overflow: hidden;
	background-color: #fff;
	text-align: center;
	font-size: 0;
}
.gallery .picture:before {
	content: "";
	display: block;
	width: 100%;
	padding-top: 100%;
}

.gallery .picture img {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	max-height: 100%;
}

.gallery .picture-thumbs {
	margin: 10px 0 0;
	overflow: hidden;
	text-align: center;
	font-size: 0;
}
.gallery .thumb-item {
	display: inline-block;
	position: relative;
	width: 85px;
	margin: 0 4px 10px;
	border-radius: 3px;
	border: 1px solid #eeeeee;
	overflow: hidden;
	background-color: #fff;
	cursor: pointer;
}

.gallery .thumb-item:before {
	content: "";
	display: block;
	padding-top: 100%;
}

.gallery .thumb-item img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}

.overview {
	position: relative;
	margin: 0 0 20px;
}
.product-name .manufacturers,
.overview .manufacturers {
	font-size: 15px;
	color: #8c8c8c;
}

.product-name .manufacturers .value,
.overview .manufacturers .value {
	display: inline-block;
	color: #97c300;
}

.product-name .manufacturers .value:hover,
.overview .manufacturers .value:hover {
	color:#7c9a16;
}
.discontinued-product {
	margin: 0 0 20px;
	color: #ff4f60;
}
.overview .product-name {
	margin: 0 0 25px;
}

.product-name h1 {
	margin-bottom: 10px;
	font-size: 26px;
	color: #444444;
	font-weight: bold;
}
.overview .short-description {
	margin: 0 0 30px;
	padding: 0 10px;
	font-size: 16px;
	line-height: 1.5;
	color: #8c8c8c;
}
.product-reviews-overview {
	margin: 0 0 20px; /*not present in variant-overview*/
}
.product-review-box {
	display: inline-block;
	margin: 0 0 5px;
}
.product-review-box .rating {
	width: 65px;
	height: 12px;
	background: url('../Themes/Emporium/Content/img/rating1.gif') right repeat-x;
}
.product-review-box .rating div {
	height: 12px; 
	background: url('../Themes/Emporium/Content/img/rating2.gif') right repeat-x;
}
.product-no-reviews a {
	font-size: 14px;
	color: #8c8c8c;
	transition: color .2s ease;
}

.product-review-links a:hover,
.product-no-reviews a:hover {
	color: #97c300;
}

.product-review-links {
	font-size: 14px;
	color: #8c8c8c;
}

.product-review-links a,
.product-review-links span {
	display: inline-block;
}

.product-review-links .separator {
	display: inline-block;
	margin: 0 5px;
}

.product-review-links a {
	transition: color .2s ease;
}

.overview .compare-products {
	margin-bottom: 40px;
}

.compare-products .add-to-compare-list-button {
	font-size: 12px;
	line-height: 16px;
	font-weight: bold;
	color: #8c8c8c;
	text-transform: uppercase;
	border: none;
	background: transparent;
	transition: all .2s ease;
}

.compare-products .add-to-compare-list-button:before {
	content: "\62";
	display: inline-block;
	vertical-align: text-bottom;
	margin-left: 10px;
	font-size: 18px;
	color: #8c8c8c;
	text-transform: none;
	font-weight: normal;
	transition: all .2s ease;
}

.compare-products .add-to-compare-list-button:hover,
.compare-products .add-to-compare-list-button:hover:before {
	color: #97c300;
}

.compare-products .add-to-compare-list-button:hover:before {
	-webkit-transform: rotate3d(1,0,0,180deg);
	-ms-transform: rotate3d(1,0,0,180deg);
	transform: rotate3d(1,0,0,180deg);
}

.overview .stock,
.variant-overview .stock {
	display: inline-block;
	padding: 10px 20px;
	margin: 0 0 20px;
	font-weight: bold;
	font-size: 13px;
	color: #8c8c8c;
	text-transform: uppercase;
	background-color: #f6f6f6;
	border-radius: 2px;
}

.overview .stock .label,
.variant-overview .stock .label {
	display: none;
}

.back-in-stock-subscription { 
	margin: 0 0 15px;
	font-size: 0;
	backface-visibility: hidden;
}

.back-in-stock-subscription:before {
	content: "\45";
	display: inline-block;
	margin-left: 7px;
	vertical-align: bottom;
	color: #8c8c8c;
	font-size: 17px;
	transition: color .2s ease;
}

.back-in-stock-subscription:hover:before {
	color:#97c300;
	-webkit-animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
	-moz-animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
	animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
}

.back-in-stock-subscription button {
	background: transparent;
	border: none;
	font-size: 12px;
	font-weight: bold;
	color: #8c8c8c;
	text-transform: uppercase;
	transition: color .2s ease;
}

.overview .additional-details,
.variant-overview .additional-details {
	margin-bottom: 30px;
}

.overview .additional-details div,
.variant-overview .additional-details div {
	margin: 0 0 5px;
	font-size: 15px;
	color: #8c8c8c;
}

.overview .additional-details div .value,
.variant-overview .additional-details div .value {
	display: inline-block;
	color: #444444;
}

.overview .additional-details div .value a,
.variant-overview .additional-details div .value a {
	color: #97c300;
	text-decoration: none;
}

.overview .additional-details div .value a:hover,
.variant-overview .additional-details div .value a:hover {
	color: #7c9a16;
}

.overview .delivery {
	margin: 20px 0 10px;
}
.variant-overview .delivery {
	margin: 20px 0 0;
}
.delivery .free-shipping {
	color: #8c8c8c;
	font-size: 14px;
} 
.delivery .delivery-date {
	font-size: 14px;
	color: #8c8c8c;
}
.free-shipping + .delivery-date {
	margin: 5px 0 0;
}

.download-sample {
	font-size: 0;
	margin: 30px 0;
}

.download-sample a {
	font-size: 13px;
	color: #97c300;
	font-weight: bold;
	text-transform: uppercase;
}

.download-sample a:before {
	content: "\4a";
	display: inline-block;
	margin-left: 10px;
	font-size: 18px;
	text-transform: none;
	font-weight: normal;
	vertical-align: text-bottom;
}

.overview-buttons div {
	display: inline-block;
	margin: 0 5px 10px;
}

.attributes {
	padding: 10px;
	font-size: 15px;
	text-align: right;
	margin: 0 auto 20px;
}

.attributes:only-child {
	margin-bottom: 0;
}

.attributes-wrapper > div {
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

.attributes-wrapper > div.product-prices-box {
	max-width: none;
}

.attributes dl {
	overflow: hidden; 
}
.attributes dt,
.attributes .attribute-label,
.giftcard label {
	display: block;
	font-size: 15px;
	margin: 0 0 5px;
	white-space: nowrap; 
	font-weight: bold;
	color: #444444;
}

.attributes dt,
.attributes dd {
	text-align: center;
}

.attributes dd li {
	text-align: right;
}

.attributes .required {
	color: #444444;
}

.attributes dd {
	margin: 0 0 20px;
}

.attributes dd:last-child {
	margin-bottom: 0;
}

.attributes li {
	margin: 8px 0 10px;
}
.attributes dd select,
.product-details-page .attributes dd select:only-child {
	max-width: 100%;
}

.product-details-page .attributes dd select {
	max-width: calc(100% - 60px);
}

.attributes select + .qty-box {
	margin-top: 10px;
}

.attributes dd input[type="text"],
.attributes dd input[type="password"],
.attributes dd input[type="tel"],
.attributes dd input[type="email"],
.attributes dd select:only-child {
	width: 100%;
	line-height: 45px;
}

.attributes option.disabled {
	color: #ddd;
}
.attributes li.disabled {
	pointer-events: none;
	opacity: 0.5;
}
.attributes li.disabled label {
	text-decoration: line-through;
}
.attribute-squares li.disabled {
	position: relative;
	opacity: 1;
}
.attribute-squares li.disabled:before {
	content: "\7a";
	position: absolute;
	top: 1px; bottom: 1px;
    left: 1px; right: 1px;
	border-radius: 2px;
	background-color: #fff;
	text-align: center;
	font-size: 19px;
	line-height: 30px;
	color: rgb(255,79,96);
}

.attributes.rental-attributes {
	font-size: 0;
}

.attributes.rental-attributes > div {
	display: inline-block;
	width: 49%;
}

.attributes.rental-attributes > div:nth-child(2n) {
	margin-right: 2%
}

.attributes.rental-attributes > div:only-child {
	width: 100%;
	margin-left: 0;
}

.attributes.rental-attributes input {
	height: 45px;
	padding: 0 20px;
	border-radius: 3px;
	text-align: right;
}

.product-estimate-shipping {
	margin: 20px 0 10px;
	color: #8c8c8c;
}
.product-estimate-shipping a {
	display: block;
}
.product-estimate-shipping i {
	display: inline-block;
	transform: rotate(45deg);
	margin: 0 9px 3px 0;
	border: solid black;
	border-width: 0 1px 1px 0;
	padding: 3px 3px;
}
.product-estimate-shipping .shipping-loading {
	display: none !important; /*disable preloader*/
}
.product-estimate-shipping .shipping-title {
	margin: 0 0 5px;
	font-size: 15px;
}
.product-estimate-shipping .shipping-price {
	margin: 0 5px 0 0;
	vertical-align: middle;
	color: #000;
}
.product-estimate-shipping .shipping-address {
	white-space: nowrap;
	font-size: 12px;
}
.product-estimate-shipping .shipping-address span {
	display: inline-block;
    max-width: calc(100% - 30px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-estimate-shipping .shipping-date {
	margin: 15px 0 0;
	font-size: 14px;
}

.product-social-buttons {
	margin-bottom: 30px;
}

.product-social-label {
	display: inline-block;
	margin-bottom: 20px;
	font-size: 15px;
	font-weight: bold;
	color: #444444;
}

.product-social-sharing li {
	display: inline-block;
	margin: 0 5px;
	vertical-align: top;
}

.product-social-sharing li a {
	display: block;
	font-size: 0;
	backface-visibility: hidden;
}

.product-social-sharing li a:before,
.email-a-friend:before {
	display: block;
	font-size: 22px;
	color: #8e8e8e;
	transition: all .5s ease;
}

.product-social-sharing li a:hover:before,
.product-social-sharing .email-a-friend:hover:before {
	-webkit-transform: rotate3d(0,1,0,360deg);
	-ms-transform: rotate3d(0,1,0,360deg);
	transform: rotate3d(0,1,0,360deg);
}

.product-social-sharing a.twitter:before {
	content: "\6f";
}

.product-social-sharing a.facebook:before {
	content: "\6e";
}

.product-social-sharing a.pinterest:before {
	content: "\44";
}

.product-social-sharing a.google:before {
	content: "\70";
}

.product-social-sharing .email-a-friend:before {
	content: "\6d";
	position: absolute;
	top: 0;
	right: 0;
	pointer-events: none;
}

.product-social-sharing .email-a-friend {
	position: relative;
}

.product-social-sharing .email-a-friend button {
	width: 22px;
	height: 22px;
	border: none;
	background: transparent;
	font-size: 0;
}

.product-social-sharing li a:hover:before,
.email-a-friend:hover:before {
	color: #97c300;
}

.attributes .qty-box {
	margin: 0 5px 0 0;
}
.attributes .qty-box label {
	display: none;
}
.attributes .qty-box input[type="text"] {
	width: 50px;
    height: 45px;
    text-align: center;
    border-radius: 3px;
}


.gender label,
.option-list li label,
.inputs.accept-consent label,
td.remove-from-cart label,
td.add-to-cart label,
.terms-of-service label,
.terms-of-agreement label,
.selector label,
.use-reward-points label {
    display: inline-block;
    font-size: 15px;
    cursor: pointer;
    transition: all .2s ease;
}

.attributes .datepicker {
	width: 100%;
	text-align: center;
}
.ui-datepicker {
	width: 280px;
	background-color: #fff;
	text-align: center;
	box-shadow: 0 0 15px rgba(0,0,0,.1);
	border-radius: 3px;
	overflow: hidden;
}
.ui-datepicker-header {
	position: relative;
	height: 32px;
	background-color: #97c300;
	color: #fff;
	overflow: hidden;
}
.ui-datepicker-header a {
	position: absolute;
	top: 0;
	z-index: 1;
	width: 40px;
	height: 32px;
	line-height: 32px;
	font-size: 0;
	transition: all .2s ease;
}

.ui-datepicker-header a:hover {
	background-color: rgba(0,0,0,.1);
}

.ui-datepicker-header a:before {
	display: block;
	font-size: 10px;
	color: #fff;
}

.ui-datepicker-header a.ui-datepicker-prev {
	right: 0;
}
.ui-datepicker-header a.ui-datepicker-prev:before {
	content: "\6a";
}
.ui-datepicker-header a.ui-datepicker-next {
	left: 0;
}

.ui-datepicker-header a.ui-datepicker-next:before {
	content: "\6b";
}
.ui-datepicker-title {
	position: relative;
	z-index: 0;
	line-height: 32px;
	letter-spacing: 1px;
	font-weight: bold;
	text-transform: uppercase;
}
.ui-datepicker-calendar th {
	background-color: #f6f6f6;
}
.ui-datepicker-calendar th,
.ui-datepicker-calendar td {
	width: 14.285%;
}

.ui-datepicker-calendar th span,
.ui-datepicker-calendar td a {
	display: block;
	font-size: 14px;
	color: #8c8c8c;
	min-height: 32px;
	line-height: 32px;
	border-radius: 3px;
	transition: all .2s ease;
}

.ui-datepicker-calendar th span {
	font-size: 13px;
}

.ui-datepicker-calendar td a:hover {
	background-color: #f1f1f1;
}

.ui-datepicker-calendar a.ui-state-active:hover,
.ui-datepicker-calendar a.ui-state-active {
	background-color: #97c300;
	color: #fff;
}

.attribute-squares {
	font-size: 0;
}
.attribute-squares li {
	display: inline-block;
	margin: 0 5px 5px;
	line-height: normal !important;
	text-align: center;
}
.attribute-squares label {
	display: block;
	margin: 0 !important;
	overflow: hidden;
}
.attribute-squares input[type="radio"] {
	position: absolute;
	left: auto;
	z-index: -1;
	opacity: 0;
	margin-top: -25px;
}
.attribute-squares span {
	display: block;
	user-select: none;
}
.attribute-square {
	display: block !important;
	width: 100px !important;
	height: 100px !important;
	border: 2px solid #e7e7e7;
	border-radius: 3px;
	cursor: pointer;
}
.selected-value .attribute-square {
	border-color: #868686;
}

.image-squares .tooltip-container {
    position: absolute;
    display: block;
    width: 200px;
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #eeeeee;
    text-align: center;
    visibility: hidden;
    border-radius: 5px;
}
.image-squares .tooltip-container:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -7px;
    width: 0; height: 0;
    border-bottom: 7px solid #eeeeee;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
}
.image-squares .tooltip-container:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -6px;
    width: 0; height: 0;
    border-bottom: 6px solid #f6f6f6;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
}
.image-squares li:hover .tooltip-container {
    visibility: visible;
    margin-left: -83px;
    margin-top: 5px;
    z-index: 999;
}
.image-squares .tooltip-header {
    background-color:#f6f6f6;
    height:25px;
    border-top-right-radius:4px;
    border-top-left-radius:4px;
    padding-right:10px;
    padding-top:5px;
    text-align:right;
    color: #8c8c8c;
    width: 198px;
    font-size: 13px;
    border-bottom: 1px #EEEEEE solid;
}
.image-squares .tooltip-body {
    margin:5px;
}
.image-squares .tooltip-body img {
    border: 0px #FFF;
    width: 190px;
}

.giftcard {
	margin: 0 0 20px;
	overflow: hidden;
	clear: both;
}
.giftcard div {
	margin: 0 0 20px;
}
.giftcard label {
	display: block;
	margin: 0 0 5px;
}
.giftcard input,
.giftcard textarea {
	width: 100%;
	height: 45px;
	line-height: 45px;
	border-radius: 3px;
}
.giftcard textarea{
	height: 150px;
	line-height: 1.5;
}

.overview .prices,
.variant-overview .prices {
	margin: 10px 0;
	overflow: hidden;
	font-size: 14px;
	color: #8c8c8c
}
.overview .prices > div,
.variant-overview .prices > div {
	margin: 0 0 5px;
}

.overview .prices > div label,
.overview .prices > div span,
.variant-overview .prices > div label,
.variant-overview .prices > div span {
	display: inline-block;
}

.overview .old-product-price,
.variant-overview .old-product-price {
	color: #8c8c8c;
	text-decoration: line-through;
}
.overview .old-product-price span,
.overview .old-product-price label,
.variant-overview .old-product-price span,
.variant-overview .old-product-price label {
	font-size: 17px;
}

.overview .non-discounted-price,
.variant-overview .non-discounted-price {
	font-size: 14px;
	color: #8c8c8c;
}
.overview .product-price,
.variant-overview .product-price {
	font-size: 25px;
	color: #97c300;
	font-weight: bold;
}

.grouped-product-box {
	margin-bottom: 40px;
}

.grouped-product-box label {
	display: none;
	margin: 0 0 15px;
	color: #787878;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 13px;
}

.grouped-btn {
	display: block;
	max-width: 320px;
	height: 45px;
	line-height: 45px;
	margin: 0 auto;
	padding: 0 15px;
	text-align: center;
	background-color: #f1f1f1;
	border-radius: 3px;
	font-size: 13px;
	color: #8c8c8c;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	text-transform: uppercase;
	font-weight: bold;
	transition: all .2s ease;
}

.grouped-btn:before {
	content: "\4b";
	display: inline-block;
	vertical-align: bottom;
	margin-left: 10px;
	font-size: 12px;
	color: #8e8e8e;
	text-transform: none;
	transition: all .2s ease;
}

.grouped-btn:hover {
	background-color: #eebe00;
	color: #fff;
}

.grouped-btn:hover:before {
	color: #fff;
}

.grouped-btn span {
	display: inline-block;
	vertical-align: top;
	margin-left: 5px;
}

.grouped-btn strong {
	display: inline-block;
	vertical-align: top;
}

.tier-prices {
	margin: 20px 0 30px;
	font-size: 15px;
	color: #8c8c8c;
}

.tier-prices .title {
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: bold;
	color: #444444;
}
.tier-prices .prices-table {
	border: 1px solid #e7e7e7;
	overflow: hidden;
	border-radius: 3px;
}
.tier-prices .prices-row {
	float: right;
	width: 50%;
}
.tier-prices .prices-row > div {
	padding: 10px;
}
.tier-prices .item-price {
	color: #97c300;
}

.tier-prices .tbody {
	border-right: 1px solid #e7e7e7;
}

.customer-entered-price {
	margin: 30px 0;
	overflow: hidden;
	padding: 10px;
}
.customer-entered-price .price-input {
	margin-bottom: 5px;
}
.customer-entered-price .price-input label {
	display: block;
	font-size: 15px;
	margin: 0 0 5px;
	font-weight: bold;
	color: #444444;
}
.customer-entered-price .enter-price-input {
	border-radius: 3px;
	height: 45px;
	width: 150px;
	text-align: center;
}
.customer-entered-price .price-range {
	color: #8c8c8c;
}

.overview .add-to-cart {
	display: inline-block;
	vertical-align: top;
	margin: 0 0 10px;
	width: calc(100% - 55px);
	max-width: 330px;
}

.variant-overview .add-to-cart {
	display: inline-block;
}

.variant-overview .add-to-wishlist {
	display: inline-block;
	vertical-align: top;
	font-size: 0;
	margin-right: 5px;
}

.overview .min-qty-notification,
.variant-overview .min-qty-notification {
	margin: 0 0 10px;
	font-size: 14px;
	color: #8c8c8c;
}
.overview .add-to-cart-panel {
	position: relative;
	font-size: 0;
}

.variant-overview .add-to-cart-panel {
	position: relative;
	font-size: 0;
	display: inline-block;
	vertical-align: top;
}

.overview .qty-label,
.variant-overview .qty-label {
	position: absolute;
	right: -25px;
	line-height: 36px;
	display: none !important;
}
.overview .qty-input,
.variant-overview .qty-input,
.overview .qty-dropdown,
.variant-overview .qty-dropdown {
	border-radius: 3px;
	height: 45px;
	padding: 12px;
	text-align: center;
	color: #444444;
	font-size: 14px;
	vertical-align: top;
}

.overview .qty-dropdown,
.variant-overview .qty-dropdown {
	margin-left: 10px;
	width: 73px;
	padding: 0 17px 0 33px;
	border: 1px solid #e7e7e7;
	border-radius: 3px;
	background: url(../Themes/Emporium/Content/img/select-arrow-dark.svg) no-repeat left 15px center;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.variant-overview .qty-dropdown,
.variant-overview .add-to-cart-qty-wrapper {
	margin-left: 5px;
}

.overview .qty-input,
.variant-overview .qty-input {
	padding-left: 27px;
	width: 80px;
}

.variant-buttons-wrapper {
	font-size: 0;
}

.overview .qty-dropdown + .add-to-cart-button {
	width: calc(100% - 85px);
	max-width: 250px;
}

.overview .add-to-cart-qty-wrapper + .add-to-cart-button {
	padding: 0;
	width: calc(100% - 90px);
	max-width: 250px;
	margin-left: 0 !important;
}

.add-to-cart-qty-wrapper {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin-left: 10px;
}

/*iOS bug fix start*/
.add-to-cart-qty-wrapper {
	width: 80px;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px #e7e7e7;
    text-align: right;
}
.add-to-cart-qty-wrapper .qty-input,
.add-to-cart-qty-wrapper .qty-dropdown {
	width: 62px;
	border: none;
    background: none;
    padding-left: 9px;
}/*iOS bug fix end, makes buttons clickable*/

.add-to-cart-qty-wrapper .plus,
.add-to-cart-qty-wrapper .minus {
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	display: inline-block;
	width: 15px;
	height: 18px;
	margin: 3px;
	background-color: #f1f1f1;
	text-align: center;
	font-family: "emporium-icons";
	font-size: 7px;
	line-height: 18px;
	color: #8e8e8e;
	cursor: pointer;
	user-select: none;
	transition: all .2s ease;
}

.add-to-cart-qty-wrapper .minus {
	top: auto;
	bottom: 0;
}

.add-to-cart-qty-wrapper .plus:hover,
.add-to-cart-qty-wrapper .minus:hover {
	background-color: #eaeaea;
}

.overview .add-to-cart-button,
.variant-overview .add-to-cart-button {
	padding: 0 15px;
	font-size: 15px;
	vertical-align: top;
	text-align: center;
	text-overflow: ellipsis;
    overflow: hidden;
}

.variant-overview .add-to-cart-button {
	padding: 0 14px;
	width: 140px;
}

.overview .add-to-wishlist {
	display: inline-block;
	margin-right: 5px;
}

.overview .add-to-wishlist button {
	display: block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border: none;
	border-radius: 3px;
	font-weight: bold;
	color: #8c8c8c;
	font-size: 0;
	text-transform: uppercase;
	text-align: center;
	background-color: #f1f1f1;
	transition: all .1s ease;
}

.overview .add-to-wishlist button:hover {
	background-color: #eaeaea;
}

.overview .add-to-wishlist button:before {
	content: "\63";
	display: inline-block;
	vertical-align: bottom;
	color: #8c8c8c;
	font-size: 17px;
	text-transform: none;
	font-weight: normal;
}

.pre-order-availability-date {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #8c8c8c;
}

.pre-order-availability-date label {
    vertical-align: top;
}

/* ===== קופסה עם מסגרת ורדיוס אמיתי (גם למעלה) ===== */
.product-specs-box {
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  overflow: hidden;           /* חותך פינות של הכותרת והטבלה */
  background: #fff;
  margin: 0 0 24px;
}

/* הכותרת בלי מסגרת משלה – יושבת בתוך הקופסה המעוגלת */
.product-specs-box .title {
  background: #f0f0f0;
  color: #333;
  text-align: center;
  font-weight: 700;
  padding: 10px 14px;
  border: 0;                  /* בלי מסגרת – המסגרת בחוץ */
}

/* גוף הטבלה בלי מסגרת נוספת */
.product-specs-box .table-wrapper {
  border: 0;
  background: transparent;
  overflow-x: hidden;         /* כבר אין צורך בגלילה רוחבית במובייל עם הסטאקינג */
}

.product-specs-box .data-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.95rem;
}

.product-specs-box .data-table tbody tr { border-top: 1px solid #ececec; }
.product-specs-box .data-table tbody tr:first-child { border-top: 0; }

.product-specs-box .data-table td {
  padding: 14px 16px;
  vertical-align: middle;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.product-specs-box .data-table td.spec-name {
  width: 25%;
  text-align: right;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

.product-specs-box .data-table td.spec-value {
  text-align: right;
  color: #000;
  line-height: 1.55;
}

/* ===== מובייל: כרטיסים במקום טבלה רחבה ===== */
/* ===== Mobile: two-column spec table like screenshot ===== */
/* הסתרת שורת הכותרת המדומה במובייל */
@media (max-width: 768px) {
  /* עמודת התווית: שוברת שורות במקום אליפסיס */
.product-specs-box .data-table td.spec-name {
  width: 34%;                /* שנה ל־30–40% לפי הצורך */
  max-width: none;
  text-align: right;
  font-weight: 700;
  color: #6a6a6a;

  white-space: normal;       /* מאפשר ירידת שורה */
  overflow: visible;         /* לא חותך תוכן */
  text-overflow: clip;       /* בלי … */
  word-break: break-word;    /* שוברת מילים ארוכות */
  overflow-wrap: anywhere;   /* עוזר לעברית/אנגלית מעורב */
  line-height: 1.4;
  vertical-align: middle;
}

/* עמודת הערך – כמו שהיה (שוברת שורות) */
.product-specs-box .data-table td.spec-value {
  width: 66%;
  text-align: right;
  color: #000;
  line-height: 1.55;
  word-break: break-word;
  overflow-wrap: anywhere;
}
}

.attributes-wrapper {
	margin-bottom: 30px;
	border: 1px solid #eeeeee;
	border-radius: 3px;
	padding: 10px;
}

.product-variant-line .attributes-wrapper {
	border: none;
}

.product-tags-list {
	font-size: 0;
}

.product-tags-box {
	margin: 50px 0 85px;
}

.product-tags-box:last-child {
	margin-bottom: 0;
}

.product-tags-box .title {
	margin-bottom: 20px;
}

.product-tags-list li {
	display: inline-block;
	color: #8c8c8c;
	font-size: 16px; /*reset zeroing*/
}
.product-tags-list li.separator {
	margin: 0 3px 0 5px;
}
.product-tags-list a {
	display: inline-block;
	line-height: 24px;
	color: #97c300;
	transition: color .2s ease;
}

.product-tags-list a:hover {
	color: #7c9a16;
}

.product-collateral > div.product-variant-list {
	margin: 50px 0;
}
.product-variant-line {
	margin: 0 0 15px;
	border: 1px solid #eeeeee;
	border-radius: 3px;
	padding: 30px 10px;
}
.product-variant-line:after {
	content: "";
	display: block;
	clear: both;
}
.variant-picture {
	position: relative;
	width: 100%;
	max-width: 330px;
	max-height: 330px;
	margin: 0 auto 15px;
	border-radius: 3px;
	overflow: hidden;
}

.variant-picture img {
	max-width: 100%;
}

.variant-overview {
	width: 100%;
}
.variant-overview .variant-name {
	margin: 0 0 10px;
	font-size: 22px;
	color: #444444;
	font-weight: 700;
}
.variant-overview .variant-description {
	margin: 0 0 15px;
	line-height: 1.5;
	font-size: 15px;
	color: #8c8c8c;
}
.variant-overview .add-to-wishlist-button {
	display: block;
	float: none;
	clear: both;
	width: 45px;
	height: 45px;
	margin: 0 auto;
	font-size: 0;
	border: none;
	background-color: #f2f2f2;
	border-radius: 3px;
	transition: all .1s ease;
}

.variant-overview .add-to-wishlist-button:before {
	display: block;
	content: "\63";
	font-size: 20px;
	color: #8e8e8e;
	transition: all .2s ease;
}

.variant-overview .add-to-wishlist-button:hover {
	background-color: #eaeaea;
}

.ui-tabs {
	margin: 0 0 20px;
}
.ui-tabs .ui-tabs-nav {
	overflow: hidden;
	text-align: center;
}
.ui-tabs .ui-tabs-nav li {
	display: inline-block;
	margin: 0 15px;
}
.ui-tabs .ui-tabs-nav li a {
	display: inline-block;
	padding: 15px;
	font-size: 15px;
	letter-spacing: 1px;
	font-weight: 700;
	color: #8c8c8c;
	border-bottom: 2px solid transparent;
	text-transform: uppercase;
	transition: all .1s ease;
}

.ui-tabs .ui-tabs-nav li a:hover {
	color: #97c300;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, 
.ui-tabs .ui-state-active.ui-tabs-active a {
	color: #97c300;
	border-bottom: 2px solid #97c300;
}

.ui-tabs .ui-tabs-panel {
	background-color: #f6f6f6;
	padding: 40px 20px;
	margin: 0 -10px;
}
.ui-tabs .ui-tabs-hide {
	display: none;
}



/********** ESTIMATE SHIPPING **********/



.estimate-shipping-popup {
	position: relative;
	max-width: 800px;
	margin: auto;
	background-color: #fff;
	padding: 25px;
	transform: scale(0.8);
	transition: all 0.2s ease;
	opacity: 0;
}
.estimate-shipping-popup strong {
	visibility: hidden;
	font-weight: 300;
    text-transform: uppercase;
    color: #222;
}
.mfp-ready .estimate-shipping-popup {
	transform: scale(1);
	opacity: 1;
}
.mfp-removing .estimate-shipping-popup {
	transform: scale(0.8);
	opacity: 0;
}
.estimate-shipping-popup-zoom-in.mfp-removing {
	transition: all 0.3s ease;
	opacity: 0;
}

.estimate-shipping-row {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	position: relative;
}
.estimate-shipping-row-item {
	flex: 0 1 100%;
}

.mfp-container .address-item {
	display: block;
	width: auto;
	margin: 10px 0 0 !important;
	border: none;
	padding: 0;
}
.mfp-container .address-item + div {
	padding: 0 15px 0 0;
}
.estimate-shipping-address-control {
	width: 100%;
}
select.estimate-shipping-address-control {
	padding: 0 20px 0 27px;
	background: #fff url(../Themes/Emporium/Content/img/select-arrow-dark.svg) no-repeat left 10px center;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}
.mfp-container .address-item .required {
    position: absolute;
	top: -6px; left: -9px;
}
.mfp-container .shipping-options {
	position: relative; /*preloader referrence*/
	margin: 10px 0 30px;
}
.mfp-container .shipping-header-item {
	align-self: flex-end;
	border: none !important;
	padding: 12px 5px !important;
	font-size: 15px;
	white-space: nowrap;
    text-overflow: ellipsis;
}
.mfp-container .shipping-options-body {
	display: table;
	table-layout: fixed;
	width: 100%;
	border: 1px solid #f0f0f0;
	border-collapse: collapse;
}
.mfp-container .shipping-option {
	display: table-row;
	font-size: 14px;
	cursor: pointer;
}
.mfp-container .shipping-option.active {
	background-color: #f2f2f2;
}
.mfp-container .shipping-option > div {
	display: table-cell;
	border-top: 1px solid #f0f0f0;
	padding: 12px 11px 11px;
}
.mfp-container .shipping-item {
	overflow: hidden;
	padding: 8px 0;
	overflow-wrap: break-word;
}
.estimate-shipping-row-item-radio {
	flex: 0 0 30px;
	width: 24px;
}
.estimate-shipping-radio {
	display: none;
}
.estimate-shipping-radio:checked + label:before {
	margin: 0 !important;
	position: relative;
	bottom: 1px;
}
.estimate-shipping-radio:checked + label:after {
	display: none;
}

.apply-shipping-button-container {
	text-align: center;
}
.mfp-container .apply-shipping-button {
	min-width: 120px;
    border: none;
	height: 45px;
	padding: 0 25px;
	border-radius: 3px;
	background-color: #eebe00;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	transition: all .2s ease;
}
.mfp-container .apply-shipping-button:hover {
	background-color: #e8af00;
}

.mfp-container .no-shipping-options {
	padding: 30px 15px;
	text-align: center;
}
.mfp-container .message-failure {
	margin: 10px 0 -5px;
}

@media all and (max-width: 600px) {

	.estimate-shipping-popup {
		padding: 25px 3%;
	}
	.mfp-container .shipping-address {
		flex-flow: column;
	}
	.mfp-container .address-item {
		width: 100%;
	}
	.mfp-container .address-item + div {
		padding: 0;
	}
}




/********** PRODUCT REVIEWS **********/




.product-reviews-page h1 a {
	font-style: italic;
	transition: all .1s ease;
}

.product-reviews-page h1 a:hover {
	color: #8c8c8c;
}

.write-review .title,
.comment-form-btn  {
	position: relative;
	height: 45px;
	margin: 0 0 45px;
}

.write-review .title strong,
.comment-form-btn strong {
	position: absolute;
	display: inline-block;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	padding: 0 25px;
	height: 45px;
	max-width: 100%;
	border-radius: 3px;
	font-size: 14px;
	line-height: 45px;
	text-transform: uppercase;
	font-weight: 700;
	background-color: #eebe00;
	color: #fff;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	cursor: pointer;
	transition: all .3s ease;
}
.write-review .title strong span,
.comment-form-btn strong span {
	transition: all .1s ease;
}

.product-reviews-page .title strong:before,
.comment-form-btn strong:before,
.close-comment-form:before {
	display: inline-block;
	vertical-align: bottom;
	margin-left: 10px;
	font-size: 16px;
	text-transform: none;
	font-weight: normal;
	transition: all .1s ease;
}

.product-reviews-page .title .close-review-form,
.comment-form-btn .close-comment-form {
	background-color: #e5e5e5;
	color: #8c8c8c;
	width: 0;
	max-width: 0;
	padding: 0;
	opacity: .4;
}


.product-reviews-page .title .close-review-form:before,
.comment-form-btn .close-comment-form:before {
	content: "\76";
	color: #8c8c8c;
	font-size: 12px;
}

.product-reviews-page .title .write-review-title:before {
	content: "\79";
	color: #fff;
	opacity: .6;
}
.product-reviews-page .title .close-review-form:hover {
	background-color: #eaeaea;
}

.product-reviews-page .title .write-review-title:hover {
	background-color: #e8af00;
}

.comment-form-btn .open-comment-form,
.product-reviews-page .title .write-review-title {
	transition: width .3s ease .3s, max-width .3s ease .3s, padding .3s ease .3s, opacity .3s ease .3s, background-color .2s ease 0s;
	opacity: 1;
}

.comment-form-btn.open .open-comment-form,
.product-reviews-page .title.open .write-review-title {
	width: 0;
	max-width: 0;
	padding: 0;
	opacity: .4;
	transition-delay: 0s;
}

.comment-form-btn .open-comment-form span,
.comment-form-btn .open-comment-form:before,
.product-reviews-page .title .write-review-title span,
.product-reviews-page .title .write-review-title:before {
	opacity: 1;
}

.comment-form-btn.open .open-comment-form span,
.comment-form-btn.open .open-comment-form:before,
.product-reviews-page .title.open .write-review-title span,
.product-reviews-page .title.open .write-review-title:before {
	opacity: 0;
}

.comment-form-btn.open .close-comment-form,
.product-reviews-page .title.open .close-review-form {
	width: auto;
	max-width: 280px;
	padding: 0 25px;
	opacity: 1;
	transition: width .3s ease .3s, max-width .3s ease .3s, padding .3s ease .3s, opacity .3s ease .3s, background-color .2s ease 0s;
}

.comment-form-btn .close-comment-form:before,
.comment-form-btn .close-comment-form span,
.product-reviews-page .title .close-review-form span,
.product-reviews-page .title .close-review-title:before {
	opacity: 0;
}

.comment-form-btn.open .close-comment-form:before,
.comment-form-btn.open .close-comment-form span,
.product-reviews-page .title.open .close-review-form span,
.product-reviews-page .title.open .close-review-title:before {
	opacity: 1;
}

.write-review {
	margin: 0 0 50px;
	text-align: center;
}

.write-review-collapse {
	display: none;
	padding: 20px;
	max-width: 740px;
	margin: 0 auto;
	border-radius: 3px;
	border: 1px solid #eeeeee;
	background-color: #fff;
}

.write-review .form-fields {
	margin: 0 0 15px;
}

.write-review .review-rating {
	text-align: center;
	margin-top: 20px;
}

.write-review .review-rating > label {
	display: block;
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: 700;
}

.review-rating .tooltip {
    position: relative;
}

.review-rating .tooltip:hover .tooltiptext {
    opacity: 1;
}

.review-rating .tooltiptext {
    position: absolute;
    bottom: 100%;
    margin-bottom: 10px;
    background: #e5e5e5;
    left: 50%;
    padding: 8px 15px;
    border-radius: 3px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-weight: normal;
    color: #444;
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease;
}

.review-rating .tooltiptext:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-top-color: #e5e5e5;
    border-width: 8px;
    margin-left: -8px;
}

.review-rating ul {
	font-size: 0;
	vertical-align: middle;
}

.rating-options {
	display: inline-block;
	overflow: hidden;
	font-size: 0;
}

.write-review .rating-options * {
	float: right;
}

.write-review .rating-options input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.write-review .rating-options label {
	position: relative;
	display: inline-block;
	width: 25px;
	height: 25px;
	background-position: 0 0;
	background-size: contain;
	font-size: 0;
	cursor: pointer;
}

.write-review .rating-options label:before,
.write-review .rating-options input[type="radio"]:checked + label:before {
	display: inline-block;
	content: "\e900";
	color: #ffcd46;
	font-size: 25px;
	border: none;
	background-color: transparent;
	box-shadow: none;
	margin: 0;
	width: 25px;
	height: 25px;
	line-height: 1;
	transition: all .2s ease;
}

.write-review .rating-options:hover label:before {
	color: #ffcd46 !important; 
}

.write-review .rating-options:hover label:hover:before,
.write-review .rating-options:hover input:checked ~ label:before,
.write-review .rating-options input:checked ~ label:hover:before {
	color: #ffcd46; 
}

.write-review .rating-options label:hover ~ label:before {
	color: #e0e0e0 !important; 
}

.write-review .rating-options:hover input:checked ~ label:hover ~ label:before,
.write-review .rating-options input:checked ~ label:hover ~ label:before,
.write-review .rating-options input:checked ~ label ~ label:before {
	color: #e0e0e0; 
}

.write-review .rating-options input:checked + label:before {
	-webkit-animation: stars .7s linear;
	-moz-animation: stars .7s linear;
	animation: stars .7s linear;
}


.write-review .review-rating li.first {
	color: #ff4f60;
}

.write-review .product-review-links,
.write-review .product-review-box {
	margin: 0 0 15px;
}

.write-review .product-review-links a {
	font-size: 16px;
	color: #8c8c8c;
	font-weight: 700;
	transition: all .1s ease;
}

.write-review .product-review-links a:hover {
	color: #444;
}

.write-review .captcha-box {
	margin: 15px 0 0;
}
.write-review .button-1 {
	display: block;
	border: none;
	padding: 0 25px;
	height: 45px;
	width: 100%;
	border-radius: 3px;
	background-color: #eebe00;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	transition: all .2s ease;
}
.write-review .button-1:hover {
	background-color: #e8af00;
}

.product-reviews-page .result,
.product-reviews-page .message-error {
	margin: 0 0 20px;
}
.product-review-list {
	overflow: hidden;
	margin-bottom: 30px;
	border: 1px solid #e7e7e7;
	background-color: #fff;
	border-radius: 3px;
}

.product-review-list:last-child {
	margin-bottom: 0;
}

.product-review-item {
	border-bottom: 1px solid #e7e7e7;
	padding: 30px 20px;
	text-align: center;
	overflow: hidden;
}
.product-review-item:last-child {
	border-bottom: 0;
}

.product-review-item .product-review-box {
	display: block;
	margin-bottom: 12px;
	margin: 0 0 5px;
}

.product-review-item .product-review-box .rating {
	margin: 0 auto;
}

.product-review-item .review-item-head {
	margin: 0 0 15px;
	text-align: center;
}

.product-review-item .review-title {
	font-size: 15px;
	font-weight: 400;
	color: #444;
}

.product-review-item .review-text {
	margin: 0 0 25px;
	font-size: 15px;
	color: #8c8c8c;
}

.review-type-rating-ext .review-title {
    display: none;
}

.product-review-item .review-text:last-child {
	margin-bottom: 0;
}

.product-review-item .review-info {
	margin: 0 0 10px;
}

.product-review-item .review-info .avatar {
	margin: 15px 0;
	font-size: 0;
}
.product-review-item .review-info .avatar a {
	display: block;
	font-size: 0;
	line-height: normal;
}

.product-review-item .review-info a,
.product-review-item .review-info span span {
	display: inline-block;
	font-weight: 300;
	font-size: 17px;
	line-height: 18px;
	color: #8c8c8c;
	transition: all .1s ease;
}

.product-review-item .review-info .user,
.product-review-item .review-info .user a {
	font-size: 17px;
	color: #8c8c8c;
}

.product-review-helpfulness {
	margin-top: 30px;
}

.product-review-item .review-info a:hover {
	color: #444;
}

.product-review-item .review-info span span {
	font-size: 14px;
}

.product-review-item .review-info span {
	display: block;
	vertical-align: middle;
	line-height: 18px;
}

.product-review-item .review-info .separator {
	margin: 0 5px;
	font-size: 18px;
	font-weight: 300;
	visibility: hidden;
}

.product-review-item .review-info span label {
	display: none;
}

.product-review-helpfulness > span {
	display: block;
	margin-top: 10px;
	font-size: 15px;
	color: #8c8c8c;
}


.product-review-helpfulness > span:first-child {
	margin-top: 0;
}
.vote-stats > span {
	display: inline-block;
	margin: 0 3px;
}

.product-review-helpfulness .vote {
	display: inline-block;
	padding: 5px 5px 0 5px;
	font-size: 0;
	cursor: pointer;
}

.product-review-helpfulness .vote:before {
	display: block;
	font-size: 20px;
	color: #8c8c8c;
	transition: all .2s ease;
}

.product-review-helpfulness .vote:hover:before {
	color: #97c300;
}

.product-review-helpfulness .vote:first-child:before {
	content: "\46";
}

.product-review-helpfulness .vote:last-child:before {
	content: "\47";
}

.product-review-helpfulness .vote:first-child:hover:before {
	content: "\e902";
}

.product-review-helpfulness .vote:last-child:hover:before {
	content: "\e901";
}

.product-review-helpfulness .result {
	margin: 0 10px 0 0;
}

.product-review-item .reply {
	margin: 30px 0 0;
	padding: 15px;
	border-radius: 3px;
	background-color: #f6f6f6;
}
.product-review-item .reply-header {
	margin: 0 0 10px;
	font-weight: 700;
	font-size: 15px;
	color: #444;
}

.product-review-item .reply-text {
	font-size: 14px;
}


/********** WISHLIST & COMPARE LIST **********/



.wishlist-content {
	margin: 0 0 20px;
}
.wishlist-content > .message-error {
	margin: 0 0 20px !important;
	text-align: center;
}
.wishlist-content .tax-shipping-info {
	margin: 0 0 30px;
	font-size: 15px;
	color: #444;
}

.wishlist-content .cart {
	margin-bottom: 30px;
} 

.wishlist-content .buttons {
	font-size: 0;
}
.wishlist-content .button-2 {
	position: relative;
	display: block;
	border: none;
	height: 45px;
	width: 255px;
	line-height: 45px;
	padding: 0 20px;
	margin: 0 auto 7px;
	background-color: #f1f1f1;
	border-radius: 3px;
	font-size: 14px;
	text-transform: uppercase;
	color: #8c8c8c;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all .1s ease;
}

.wishlist-content .button-2:hover {
	background-color: #eaeaea;
}

.wishlist-content .wishlist-add-to-cart-button:before {
	content: "\64";
}

.update-wishlist-button,
.email-a-friend-wishlist-button {
	position: relative;
	overflow: hidden;
}

.update-wishlist-button span,
.email-a-friend-wishlist-button span {
    position: relative;
    z-index: 1;
}

.update-wishlist-button:before {
	content: "\59";
}

.update-wishlist-button:hover:before {
	-webkit-animation: updating 1s linear infinite;
	-moz-animation: updating 1s linear infinite;
	animation: updating 1s linear infinite;
}

.update-wishlist-button:hover::after {
    height: 100%;
    opacity: .6;
    transition: all .5s ease-in;
}

.email-a-friend-wishlist-button:before {
	content: "\6d";
}

.email-a-friend-wishlist-button:hover:before {
	-webkit-animation: emailing .2s linear;
	-moz-animation: emailing .2s linear;
	animation: emailing .2s linear;
}


.wishlist-page .share-info {
	margin: 70px -10px 50px;
	background-color: #f9f9f9;
	padding: 30px 20px;
}

.wishlist-page .share-label {
	display: block;
	margin-bottom: 10px;
	font-size: 15px;
	color: #8c8c8c;
}
.wishlist-page .share-info a {
	display: block;
	font-size: 15px;
	color: #97c300;
}

.compare-products-page .page-body {
	text-align: center;
}

.compare-products-page .clear-list {
	position: relative;
	display: inline-block;
	padding: 0 25px;
	margin: 0 0 8px;
	font-weight: 700;
	border-radius: 3px;
	color: #8c8c8c;
	background-color: #f6f6f6;
	font-size: 13px;
	height: 45px;
	line-height: 45px;
	text-transform: uppercase;
	overflow: hidden;
	transition: all .2s ease;
}

.compare-products-page .clear-list span {
    position: relative;
    z-index: 1;
}

.compare-products-page .clear-list:before {
	content: "\5a";
	position: relative;
	display: inline-block;
	vertical-align: bottom;
	margin-left: 10px;
	font-size: 20px;
	color: #8c8c8c;
	text-transform: none;
	font-weight: normal;
	transition: all .2s ease !important;
	z-index: 1;
}

.compare-products-page .clear-list:hover:before {
	-webkit-animation: swiping 0.82s cubic-bezier(0.035, 0.225, 0.885, 0.290) both;
	-moz-animation: swiping 0.82s cubic-bezier(0.035, 0.225, 0.885, 0.290) both;
	animation: swiping 0.82s cubic-bezier(0.035, 0.225, 0.885, 0.290) both;
}

.compare-products-table {
	display: none;
}

.compare-products-mobile {
	border-top: 1px solid #f1f1f1;
	border-bottom: 1px solid #f1f1f1;
	margin: 0 -10px;
}

.compare-products-mobile .compare-section > ul {
	padding: 17px 10px;
	text-align: right;
	overflow: hidden;
}

.compare-products-mobile .product {
	overflow: hidden;
}

.compare-products-mobile .product .item {
	position: relative;
}

.compare-products-mobile .product-name {
	padding-left: 40px;
	font-size: 15px;
	color: #444;
	font-weight: 700;
}

.compare-products-mobile .item {
	padding: 3px 10px;
}

.compare-products-mobile .item .picture,
.compare-products-mobile .item img {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	max-width: 50px; 
}

.compare-products-mobile .item .details,
.compare-products-mobile .item > span,
.compare-products-mobile .item > p {
	display: inline-block;
	vertical-align: middle;
	max-width: calc(100% - 63px);
	font-size: 15px;
	font-weight: 400;
	color: #8c8c8c;
}

.compare-products-mobile .item p {
	vertical-align: top;
	margin-bottom: 20px
}


.compare-products-mobile .title {
	padding: 15px 20px;
	font-size: 17px;
	color: #8c8c8c;
	font-weight: 300;
	background-color: #f6f6f6;
}

.compare-section.product .title {
	display: none;
}

.compare-products-page .remove-button {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 3px;
	background-color: #f1f1f1;
	text-align: center;
	font-size: 0;
	border: none;
	transition: all .1s ease;
}

.compare-products-page .remove-button:hover {
	background-color: #e9e9e9;
}

.compare-products-page .remove-button:before {
	content: "\4d";
	display: block;
	color: #8c8c8c;
	font-size: 16px;
}

.compare-products-mobile .remove-button {
	position: absolute;
	top: 8px;
	left: 5px;
	right: auto;
}

.compare-products-mobile .price .item span {
	font-size: 17px;
	font-weight: 700;
	color: #97c300;
}

.compare-products-page .attribute-squares {
    display: inline-block;
    vertical-align: middle;
}
.compare-products-page .attribute-square {
	margin: 0  auto;
}


/*********** TOPICS ***********/



.topic-block {
	margin: 0 auto 30px;
	padding: 0 10px;
	text-align: center;
	max-width: 1000px;
}
.home-page .topic-block {
	margin: 0 0 30px;
}
.topic-block-title {
	margin: 0 0 20px;
}

.topic-block-title h1 {
	font-weight: 700;
	color: #444;
}

.topic-block-title h2 {
	font-weight: 700;
	color: #8c8c8c;
}
.topic-block-body p {
	line-height: 1.5;
	font-size: 16px;
	color: #8c8c8c;
	font-weight: 400;
}

.topic-block-body li {
	font-size: 15px;
	color: #8c8c8c;
	line-height: 2;
}

.topic-block a,
.topic-page a {
	text-decoration: underline;
}
.topic-page .page-body {
	line-height: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.topic-page ul,
.topic-page ol {
	font-size: 15px;
	line-height: 1.5;
	color: #8c8c8c;
}


.home-page .topic-block {
	margin: 0 auto 50px;
	text-align: center;
}
.home-page .topic-block-title h2 {
	font-size: 28px;
	color: #444444;
}

.home-page .topic-block-body {
	padding: 0 10px;
}

.popup-window .topic-page {
	padding: 15px;
}

.not-found-page p {
	margin: 30px 0;
}

.topic-password {
	text-align: center;
}
.enter-password-title {
	margin: 0 0 20px;
	color: #8c8c8c;
	font-size: 15px;
}
.enter-password-form {
	display: inline-block;
	overflow: hidden;
}
.enter-password-form input[type="password"] {
	float: right;
	width: calc(100% - 100px);
	height: 36px;
	border-radius: 0 3px 3px 0;
}
.enter-password-form button {
	float: right;
	width: 100px;
	height: 36px;
	border: none;
	border-radius: 3px 0 0 3px;
	padding: 0 20px;
}
.password-error {
	margin: 0 0 10px;
}


/*********** CONTACT & EMAIL A FRIEND ***********/



.contact-page .form-fields,
.email-a-friend-page .form-fields,
.apply-vendor-page .form-fields {
	margin: 0 0 15px;
}
.contact-page .message-error,
.email-a-friend-page .message-error,
.apply-vendor-page .message-error {
	margin: 0 0 10px;
}

.contact-page .topic-block {
	margin-bottom: 40px;
}

.email-a-friend-page .title {
	margin: 0 0 30px;
	font-size: 16px;
}
.email-a-friend-page .title h2 {
	font-size: 16px;
	font-weight: 300;
}
.email-a-friend-page .title a {
	color: #97c300;
}

.apply-vendor-page .terms-of-service {
	margin: 30px 0;
}

.bb-code-editor-wrapper {
	margin-bottom: 5px;
}


/********** REGISTRATION, LOGIN, ACCOUNT PAGES  **********/



.login-page .title strong,
.registration-page .title strong {
	font-weight: 300;
	color: #8c8c8c;
}

.registration-page .page-title + .message-error {
	margin-bottom: 30px;
}

.gender {
	font-size: 0;
}
.gender span:first-child {
	display: inline-block;
	margin-left: 40px;
}
.gender label {
	display: inline-block;
	padding: 8px 0;
	width: auto !important;
	cursor: pointer;
	font-weight: 300;
}

.gender input:checked + label {
	color: #444;
}

.date-picker-wrapper {
	width: 100%;
}

.date-of-birth .date-picker-wrapper select {
	border-radius: 0;
	padding: 0 10px 0 25px;
	width: 46%;
	background: #fff url(../Themes/Emporium/Content/img/select-arrow-dark.svg) no-repeat left 10px center;
}

.date-of-birth .date-picker-wrapper select:first-child {
	border-radius: 0 3px 3px 0;
	width: 27%;
}
.date-of-birth .date-picker-wrapper select:last-child {
	border-radius: 3px 0 0 3px;
	width: 27%;
}

.date-of-birth select + select {
	margin: 0 -1px 0 0;
}
#check-availability-button {
	display: block;
	border: none;
	border-radius: 3px;
	vertical-align: top;
	background-color: #f1f1f1;
	color: #8c8c8c;
	text-transform: uppercase;
	padding: 0 20px;
	margin: 10px auto 0;
	height: 45px;
	font-size: 13px;
	font-weight: 700;
	transition: all .1s ease;
}

#check-availability-button:hover {
	background-color: #eaeaea;
}

#username-availabilty {
	display: block;
	margin: 5px 0 0;
	text-align: center;
	font-size: 13px;
}
#username-availabilty:empty {
	display: none;
}

.login-page .forgot-password {
	font-size: 13px !important;
	font-weight: 700 !important;
}

.vat-status, .vat-note {
	display: block;
	margin: 5px 0 0;
	text-align: center;
	font-size: 12px; /*reset zeroing*/
	white-space: normal;
}
.inputs.accept-consent {
    margin: 0 0 20px;
    text-align: center;
}
.inputs.accept-consent .read {
	font-size: 15px;
	color: #97c300;
	cursor: pointer;
	transition: all .1s ease;
}

.center-2 .product-list .item-box .buttons .button-2:hover {
	background-color: #e8af00;
}

.email-a-friend-page .button-1:only-child,
.contact-page .buttons .button-1:only-child,
.forum-edit-page .button-1:only-child,
.registration-page .button-1:only-child,
.apply-vendor-page .button-1:only-child {
	width: 100%;
}

.forum-edit-page .buttons,
.private-message-send-page .buttons,
.move-topic-page .buttons {
	font-size: 0;
}

.forum-edit-page .buttons button,
.private-message-send-page .buttons button,
.move-topic-page .buttons button {
	width: 49%;
	margin: 0 2% 0 0;
}

.forum-edit-page .buttons button:nth-child(2n+1),
.private-message-send-page .buttons button:nth-child(2n+1),
.move-topic-page .buttons button:nth-child(2n+1) {
	margin-right: 0;
}

.account-page .button-1,
.return-request-page .button-1,
.user-agreement-page .button-1 {
	width: auto;
	min-width: 125px;
}

.account-page .save-customer-info-button {
	min-width: 100px !important;
}

.registration-result-page .result {
	margin: 0 0 30px;
	color: #8c8c8c;
}

.login-page .in-header-register {
	display: none;
}

.page.login-page {
	text-align: center;
}

.login-page .page-title,
.registration-page .page-title {
	text-align: center;
}

.login-page .customer-blocks {
	margin: 0 0 50px;
}

.login-page .customer-blocks:after {
	content: "";
	display: block;
	clear: both;
}

.login-page .customer-blocks + .topic-block {
	margin-bottom: 50px;
}

.login-page .new-wrapper,
.login-page .returning-wrapper form,
.registration-page .page-body,
.email-a-friend-page .page-body form,
.password-recovery-page .page-body,
.private-message-send-page .page-body,
.contact-page .page-body form,
.apply-vendor-page .page-body form,
.forum-edit-page .page-body,
.form-style,
.move-topic-page .page-body {
	max-width: 600px;
	margin: 0 auto 30px;
	border: 1px solid #eee;
	border-radius: 3px;
}

.registration-page .page-body,
.email-a-friend-page .page-body form,
.contact-page .page-body form,
.apply-vendor-page .page-body form,
.forum-edit-page .page-body,
.password-recovery-page .page-body,
.private-message-send-page .page-body,
.move-topic-page .page-body {
	max-width: none;
	margin-bottom: 0;
}

.registration-page,
.email-a-friend-page,
.contact-page,
.apply-vendor-page,
.forum-edit-page,
.password-recovery-page,
.private-message-send-page,
.move-topic-page {
	max-width: 800px;
	margin: 0 auto;
}

.email-a-friend-page .page-body form,
.contact-page .page-body form,
.apply-vendor-page .page-body form,
.forum-edit-page .page-body,
.form-style,
.password-recovery-page .page-body,
.private-message-send-page .page-body,
.move-topic-page .page-body {
	padding: 40px 20px;
}

.login-page .title,
.registration-page .title {
	margin: 0;
	padding: 18px;
	font-size: 18px;
	color: #8c8c8c;
	background-color: #f9f9f9;
	border-radius: 3px 3px 0 0;
	text-align: center;
}


.login-page .topic-block-title h2 {
	color: #444;
}

.title + .message-error {
	margin: 20px 20px 0;
}

.login-page .title strong {
	font-weight: 300;
}

.login-page .text {
	padding: 30px 20px 20px;
	font-size: 16px;
	line-height: 1.8;
	font-weight: 400;
	color: #8c8c8c;
}

.new-wrapper .text:before {
	content: "\79";
	display: block;
	margin-bottom: 15px;
	font-size: 55px;
	line-height: initial;
	color: #c6c6c6;
}

.returning-wrapper .form-fields,
.registration-page .form-fields {
	padding: 30px 20px 20px;
}

label[for="Newsletter"],
.inputs.accept-consent label {
    color: #444 !important;
}

.login-page .buttons,
.registration-page .buttons {
	padding: 10px 20px 20px;
}

.login-page .inputs.reversed label,
.login-page .inputs.reversed span {
	margin: 0;
	width: auto;
	font-size: 13px; /*reset zeroing*/
	color: #8c8c8c;
	font-weight: 400;
}

.login-page .inputs.reversed label {
	float: right;
	clear: none;
}
.login-page .inputs.reversed span {
	float: left;
	clear: none;
}

.login-page .inputs.reversed a:hover {
	color: #444;
}

.login-page .inputs.reversed input[type="checkbox"] + label:before {
	vertical-align: bottom;
}

.login-page .returning-wrapper .external-authentication {
	clear: both;
}

.login-page .external-authentication > * {
	margin: 30px -10px 0;
	padding: 30px 0;
	width: calc(100% + 20px);
	background-color: #f9f9f9;
	text-align: center;
}

.login-page .external-authentication .buttons {
	margin: 0;
	padding: 0;
}

.external-authentication .title {
	display: none;
}
.password-recovery-page .tooltip {
	margin: 0 0 20px;
	font-size: 15px;
	color: #8c8c8c;
	line-height: 1.5;
}
.password-recovery-page .result {
	margin: 0 0 5px;
	font-weight: bold;
}

.select-navigation {
	padding: 20px;
	background-color: #f6f6f6;
	text-align: center;
}

.select-navigation select {
	background-color: #fff;
	width: 300px;
}

.html-account-page .side-2 {
	margin-bottom: 3px;
}

.html-account-page .master-wrapper-content {
	padding: 40px 0 0;
}

.account-page {
	padding: 40px 10px;
	background-color: #f6f6f6;
}

.account-page .data-table {
	text-align: center;
}

.account-page .fieldset {
	margin-bottom: 40px;
}

.registration-page .fieldset {
	margin-bottom: 20px;
}

.account-page .section > .title,
.reward-points-overview,
.forum-subscriptions-page .description {
	text-align: center;
}

.account-page .title {
	margin-bottom: 20px;
	font-size: 18px;
	color: #8c8c8c;
	text-align: center;
}

.account-page .title strong {
	font-size: 18px;
	color: #8c8c8c;
	font-weight: 300;
}

.customer-info-page .page-body,
.change-password-page .page-body,
.check-gift-card-balance-page .page-body,
.avatar-page .page-body,
.address-edit-page .page-body,
.vendorinfo-page .page-body {
    padding: 20px;
    max-width: 740px;
    margin: 0 auto;
    border-radius: 3px;
    border: 1px solid #eeeeee;
    background-color: #fff;
}

.account-page .inputs {
	text-align: right;
}

.account-page .button-2 {
	border: none;
	padding: 0 20px;
	height: 40px;
	line-height: 40px;
	border-radius: 3px;
	vertical-align: top;
	background-color: #f1f1f1;
	font-size: 13px;
	color: #8c8c8c;
	text-transform: uppercase;
	font-weight: 700;
	transition: all .1s ease;
}

.account-page .button-2:hover {
	background-color: #eaeaea;
}

.account-page .button-2.return-items-button {
	display: block;
	width: auto;
	height: auto;
	margin: 20px auto 0;
	padding: 0;
	background-color: transparent;
	transition: all .2s ease;
}

.account-page .button-2.return-items-button:before {
	content: "\4f";
	display: inline-block;
	vertical-align: bottom;
	margin-left: 10px;
	font-size: 14px;
	color: #8c8c8c;
	text-transform: none;
	font-weight: normal;
	transition: all .2s ease;
}

.account-page .button-2.return-items-button:hover,
.account-page .button-2.return-items-button:hover:before {
	color: #97c300;
}

.account-page .edit-address {
	margin: 0 0 20px;
}
.account-page .description,
.reward-points-overview,
.result {
	margin-bottom: 20px;
    line-height: 1.5;
    font-size: 17px;
    color: #8c8c8c;
    font-weight: 300;
    text-align: center;
}

.result {
	text-align: center;
}
.html-account-page .multi-factor-authentication-page .page-title {
	padding: 0 0 0 0;
}

.multi-factor-authentication-page .page-body {
	width: 90%;
	margin: 0 auto;
}

.multi-factor-authentication-page .page-body .description {
	text-align: right;
	line-height: 26px;
}

.multi-factor-authentication-page .form-fields {
	position: relative;
	padding: 30px 15px;
	background-color: #ffffff;
	border-radius: 3px;
	border: 1px solid #eeeeee;
}

.multi-factor-authentication-page .fieldset {
	padding: 20px 0px 0px 0px;
}

.account-page.multi-factor-authentication-page .buttons {
	text-align: center;
	margin: 40px auto 10px;
}

.multi-factor-authentication-page .payment-method .method-list li {
	padding: 0;
}

.multi-factor-authentication-page .payment-method .payment-logo {
	text-align: center;
}

.multi-factor-authentication-config-page table {
	margin: 20px 0px;
}

.multi-factor-authentication-config-page .buttons {
	margin-top: 20px;
}

.account-page.multi-factor-authentication-page .payment-method .method-list input[type="radio"] + label:before {
	position: initial;
	left: 0;
	top: 0;
	margin-top: 2px;
	transform: none;
}

.account-page.multi-factor-authentication-page .payment-method .method-list li {
	max-width: 740px;
	padding: 30px 65px;
}
.address-item,
.add-button,
.order-item,
.request-item {
	padding: 40px 20px;
	margin-bottom: 20px;
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 3px;
	vertical-align: top;
}

.add-button:before {
	display: block;
	margin-bottom: 40px;
	content: "\55";
	font-size: 100px;
	color: #8e8e8e;
}

.address-item .title,
.order-item .title,
.request-item .title {
	margin-bottom: 12px;
	color: #444;
}

.address-item .title strong,
.order-item .title strong,
.request-item .title strong {
	font-weight: 700;
	color: #444;
	font-size: 18px;
}

.email-to-revalidate,
.email-to-revalidate-note {
	display: inline-block;
	margin: 10px 5px;
	vertical-align: top;
	font-size: 12px; /*reset zeroing*/
	white-space: normal;
}

.address-item .info,
.order-item .info {
	margin: 0 0 30px;
}

.address-item .info span,
.order-item .info span {
	display: inline-block;
}

.address-item li,
.order-item li,
.request-item li {
	margin-bottom: 3px;
	font-size: 16px;
	color: #959595;
	line-height: 1.3;
}
.address-item li label,
.address-item li a,
.address-item li span,
.order-item li label,
.order-item li a,
.order-item li span,
.request-item li label,
.request-item li a,
.request-item li span {
	display: inline-block;
}

.address-list-page .info li > label,
.order-list-page .info li > label {
	display: none;
}

.address-item .name,
.address-item .email {
	font-weight: 700;
	font-size: 16px;
	color: #444;
}

.address-item .email {
	margin-bottom: 10px;
}

.button-2.edit-address-button,
.button-2.delete-address-button {
	border: none;
	border-radius: 3px;
	width: 40px;
	height: 40px;
	margin: 0 2px;
	background-color: #f1f1f1;
	background-position: center;
	background-repeat: no-repeat;
	font-size: 0;
}

.button-2.edit-address-button {
	background-image: url('../Themes/Emporium/Content/img/edit-icon.png');
}

.button-2.delete-address-button {
	background-image: url('../Themes/Emporium/Content/img/delete-icon.png');
}

.return-request-list-page a {
	font-weight: bold;
	color: #444;
}
.return-request-list-page .comments {
	margin: 15px 0 0;
}

.user-agreement-page .terms-of-agreement {
	margin: 0 0 20px;
	text-align: center;
}

.reward-points-overview {
	margin: 0 0 15px;
}

.avatar-page .message-error {
	margin: 0 0 10px;
}
.avatar-page .fieldset {
	margin: 0 auto 30px;
	text-align: center;
}
.avatar-page .image {
	margin: 0 0 10px;
}

.account-page .button-1 {
	height: 40px;
	line-height: 40px;
	font-size: 13px;
	font-weight: 700;
}

.avatar-page .info {
	margin: 0 0 30px;
	font-size: 15px;
	color: #959595;
	text-align: center;
}

.account-page.avatar-page .buttons {
	text-align: center;
}

.avatar-page .upload-image {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.avatar-page .upload-image + label {
	display: inline-block;
	cursor: pointer;
}

.avatar-page .upload-image.valid + label {
	background-color: #97c300;
	color: #fff;
}

.avatar-page .upload-image.valid + label:hover {
	background-color: #5c7600;
}

.avatar-page .upload-image.valid + label:before {
	content: "\30";
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	color: #fff;
	text-transform: lowercase;
	font-size: 13px;
}

.avatar-page .upload-image:focus + label,
.avatar-page .upload-image + label:hover {
    background-color: #eaeaea;
}

.vendorinfo-page .vendor-picture {
	margin: 10px 0 0;
	text-align: center;
}
.vendorinfo-page .vendor-picture img {
	display: block;
	margin: 0 auto 10px;
}

.reward-points-history {
	margin-bottom: 0;
}


.gdpr-tools-page .form-fields + .buttons {
    margin-top: 30px;
}

.check-gift-card-balance-page .captcha-box {
    margin-bottom: 25px;
}

/********** SHOPPING CART **********/



.order-progress {
	margin: 0 0 40px;
	text-align: center;
}

.order-progress ul {
	font-size: 0;
}

.order-progress li {
	display: inline-block;
}

.order-progress a {
	position: relative;
	width: 50px;
	height: 50px;
	display: block;
	font-size: 0; /*reset zeroing*/
}

.order-progress a:before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 15px;
	height: 15px;
	background-color: #eee;
	border-radius: 50%;
	border: 0;
	color: #fff;
	box-shadow: none;
	z-index: 1;
	transition: all .5s ease 0s, color .4s ease .4s;
}

.order-progress .active-step.last a:before {
	content: "\64";
	font-size: 20px;
	text-indent: -2px;
	background-color: #fff;
	width: 50px;
	height: 50px;
	color: #8e8e8e;
	line-height: 43px;
	text-align: center;
	font-weight: normal;
	text-transform: none;
	border: 3px solid #97c300;
	box-shadow: 0 0 15px rgba(0,0,0,.2);
}

.order-progress a:after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	top: 50%;
    left: auto;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	height: 3px;
	background-color: #eee;
	z-index: 0;
}

.order-progress li:first-child a:after,
.order-progress li:last-child a:after {
	width: 50%;
}

.order-progress li:first-child a:after {
	left: 0;
	right: auto;
}

.order-progress .active-step a {
	cursor: pointer;
}

.order-progress .active-step:not(.last) a:hover:before {
	background-color: #97c300;
	width: 20px;
	height: 20px;
	transition: all .3s ease;
}

.order-progress li.inactive-step a {
	cursor: default;
}

.checkout-buttons .button-1 {
	width: 100%;
	font-size: 15px;
}

.no-data {
	text-align: center;
	font-size: 15px;
	color: #8c8c8c;
}

.shopping-cart-page .common-buttons button,
.shopping-cart-page .estimate-shipping-button,
.shopping-cart-page .cart-collaterals .button-2,
.checkout-page .button-2,
.order-details-page .page-title a,
.order-details-page .repost .button-2 {
	display: inline-block;
	border: none;
	height: 45px;
	line-height: 45px;
	padding: 0 25px;
	margin: 0 2px;
	background-color: #173035;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: white;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all .1s ease;
}
.shopping-cart-page .common-buttons button:hover,
.shopping-cart-page .estimate-shipping-button:hover,
.shopping-cart-page .cart-collaterals .button-2:hover,
.checkout-page .button-2:hover,
.order-details-page .page-title a:hover,
.order-details-page .repost .button-2:hover {
	background-color: #eaeaea;
}

.shopping-cart-page .common-buttons {
	margin-bottom: 50px;
	font-size: 0;
}

.shopping-cart-page .common-buttons button,
.shopping-cart-page .estimate-shipping-button {
	position: relative;
	display: block;
	margin: 0 auto 7px;
	padding: 0 20px;
	width: 255px;
}

.shopping-cart-page .common-buttons button:before,
.shopping-cart-page .estimate-shipping-button:before,
.wishlist-content .button-2:before {
	position: relative;
	display: inline-block;
	vertical-align: bottom;
	margin-left: 10px;
	font-size: 20px;
	color: #8c8c8c;
	font-weight: normal;
	text-transform: none;
	transition: all .2s ease !important;
	z-index: 1;
}

.shopping-cart-page .estimate-shipping-button:before {
	content: '\e66d';
}

.shopping-cart-page .continue-shopping-button:before {
	content: "\64";
}

.update-cart-button:before {
	content: "\59";
}

.clear-cart-button:before {
	content: "\5a";
}

.clear-cart-button:hover:before {
	-webkit-animation: swiping 0.82s cubic-bezier(0.035, 0.225, 0.885, 0.290) both;
	-moz-animation: swiping 0.82s cubic-bezier(0.035, 0.225, 0.885, 0.290) both;
	animation: swiping 0.82s cubic-bezier(0.035, 0.225, 0.885, 0.290) both;
}

.clear-cart-button span,
.update-cart-button span {
	position: relative;
	z-index: 1;
}

.update-cart-button:hover:before {
	-webkit-animation: updating 1s linear infinite;
	-moz-animation: updating 1s linear infinite;
	animation: updating 1s linear infinite;
}

.shopping-cart-page .tax-shipping-info {
    margin: 0 0 30px;
    font-size: 14px;
    color: #444;
}

.shopping-cart-page .product-grid {
	clear: both;
	float: right;
	width: 100%;
	margin: 70px 0 0;
}

.remove-discount-button,
.remove-gift-card-button {
	width: 16px;
	height: 16px;
	border-radius: 3px;
	margin: 0 5px 0 0;
	border: none;
	background: #f1f1f1 url('../Themes/Emporium/Content/img/close.png') center no-repeat;
	cursor: pointer;
}

.remove-discount-button:hover,
.remove-gift-card-button:hover {
	background-color: #e9e9e9;
}

.shopping-cart-page .message-error {
	margin: 0 0 20px !important;
	font-size: 13px;
}

.shopping-cart-page .order-summary-content > .message-error {
	text-align: center;
}

.cart-options {
	margin: 0;
	text-align: center;
}

.cart-options >*:last-child {
	margin-bottom: 2px;
}

.cart-options .common-buttons {
	font-size: 0;
}
.cart-options .common-buttons button {
	min-width: 150px;
	margin: 0 5px 5px;
}
.cart-options .checkout-attributes {
	text-align: right;
}

.cart-options .checkout-attributes dl {
	max-width: 400px;
	margin: 0 auto;
}

.cart-options .checkout-attributes dt {
	margin: 0 0 5px;
	font-weight: bold;
}
.cart-options .checkout-attributes dd {
	margin: 0 0 15px;
}

.cart-options .checkout-attributes li {
	line-height: 24px;
}

.section.options {
	margin-bottom: 3px;
}

.checkout-attributes,
.selected-checkout-attributes {
	padding: 30px 20px;
	margin: 20px 0 0;
	border-radius: 3px;
	background-color: #f6f6f6;
	font-size: 15px;
	color: #444;
}

.cart-footer:after {
	content: "";
	display: block;
	clear: both;
}

.cart-footer .total-info {
	margin: 0 0 30px;
}

.cart-footer .total-info:only-child {
	margin: 0;
}

.totals {
	border-radius: 3px;
	padding: 50px 20px;
	background-color: #f6f6f6;
}

.totals > div {
	max-width: 400px;
	margin-left: auto !important;
	margin-right: auto !important;
}


.cart-total td {
	width: 50%;
	padding: 7px 5px;
	font-size: 16px;
	color: #444;
	font-weight: 400;
}

.cart-total td span {
	display: inline-block;
}

.cart-total td label {
	display: inline-block;
	font-size: 16px;
	color: #444;
	font-weight: 400;
}

.order-total td label,
.order-total td span {
	font-size: 22px;
	color: #97c300;
	font-weight: 700;
}

.cart-total-left {
	text-align: right;
}

.cart-total-right {
	text-align: left;
}

.cart-total .order-total {
	font-size: 16px;
	color: #97c300;
}
.terms-of-service {
	margin: 0 0 30px;
	text-align: center;
}
.terms-of-service input[type="checkbox"] + label {
	display: inline;
	cursor: pointer;
	font-weight: 400;
	font-size: 16px;
}

.terms-of-service input[type="checkbox"] + label:before {
	vertical-align: middle;
}

.terms-of-service .read {
	display: inline-block;
	margin: 0 3px 0 0;
	font-size: 15px;
	font-weight: 400;
	cursor: pointer;
	color: #97c300;
}

.terms-of-service .read:hover {
	color: #7c9a16;
}

.cart-footer .addon-buttons > img:first-child,
.cart-footer .addon-buttons > p:first-child {
	margin: 20px 0 0;
}

.cart-collaterals {
	max-width: 100%;
	margin: 0 auto 30px;
}
.cart-collaterals > div {
	border: 1px solid #eee;
	border-radius: 3px;
	margin: 0 0 10px;
	overflow: hidden;
}

.cart-collaterals > div > .title {
	position: relative;
	display: block;
	height: 60px;
	padding: 0 20px 0 20px;
	margin: 0;
	line-height: 60px;
	color: #444;
	font-size: 18px;
	font-weight: 300;
	text-align: center;
	background-color: #f6f6f6;
	border-radius: 3px 3px 0 0;
	cursor: pointer;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: all .1s ease;
}
.cart-collaterals > div > .title a {
	display: block;
	margin: 0 -20px;
	padding: 0 20px;
}

.cart-collaterals > div > .title:hover {
	color: #97c300;
}

.cart-collaterals > div > .title:before {
	content: "\57";
	position: absolute;
	display: inline-block;
	top: 50%;
	right: 20px;
    left: auto;
	font-size: 10px;
	color: #97c300;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-transform: none;
	transition: all .3s ease;
}

.cart-collaterals .deals .title.open:before {
	-webkit-transform: translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
}

.cart-collaterals > div > .list {
	display: none;
	padding: 30px 20px;
}

.cart-collaterals .title {
	margin: 0 0 10px;
	font-size: 18px;
	color: #444; 
}
.cart-collaterals .hint {
	margin: 0 0 20px;
	font-size: 15px;
	color: #8c8c8c;
}

.cart-collaterals .coupon-code {
	overflow: hidden;
	font-size: 0;
}
.cart-collaterals .coupon-code input[type="text"],
.cart-collaterals .coupon-code input[type="email"],
.cart-collaterals .coupon-code input[type="tel"] {
	float: right;
	width: calc(100% - 105px);
}
.cart-collaterals .coupon-code button {
	float: right;
	width: 100px;
	padding: 0 15px;
	height: 45px;
	margin: 0 5px 0 0;
	border-radius: 3px;
}
.cart-collaterals .message-failure {
	margin: 5px 0 0;
	color: #ff4f60;
	font-size: 13px;
	font-weight: 700
}
.cart-collaterals .message-success {
	margin: 5px 0 0;
	color: #97c300;
	font-size: 13px;
	font-weight: 700
}
.cart-collaterals .current-code {
	margin: 7px 0 0;
	color: #444;
	font-size: 14px;
}

.coupon-code + .current-code{
	margin-top: 10px;
}

.cart-collaterals .shipping-results {
	margin: 30px 0 0;
}
.cart-collaterals .shipping-results li {
	margin: 10px 0 0;
	font-size: 14px;
	color: #8c8c8c;
}

.cart-collaterals .shipping-results li strong {
	color: #444;
}

.cart-collaterals .shipping-results li:first-child {
	margin-top: 0;
}

.cart-collaterals .shipping-results .option-description {
	font-weight: 400;
}

.coupon-box + .giftcard-box,
.shipping-options .buttons {
	margin-top: 30px;
}

.estimate-shipping-result {
	margin-top: 20px;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	color: #ff4f60;
}


/********** CHECKOUT **********/



.checkout-page .section {
	margin: 0 0 50px;
}

.checkout-page .section .title {
	margin: 0 0 30px;
	text-align: center;
}

.checkout-page .add-button:before {
	content: none;
	display: none;
}

.checkout-page .select-billing-address > .title {
	display: none;
}

.checkout-page .order-summary > .title strong {
	font-size: 24px;
	font-weight: 700;
}

.checkout-page .min-amount-warning {
	display: block;
    margin: 0 0 25px;
	text-align: center;
	font-size: 13px;
    color: #ff4f60;
    font-weight: 700;
}

.ship-to-same-address,
.pickup-in-store {
	margin-top: 40px !important;
	text-align: center;
}

.ship-to-same-address input[type="checkbox"] + label,
.pickup-in-store input[type="checkbox"] + label {
	font-weight: 700;
	color: #444;
}

.pickup-in-store .description {
	margin: 10px 0 0;
	font-size: 15px;
	color: #8c8c8c;
	font-weight: 400;
}

.pickup-points .message-error {
	text-align: center;
	margin: 20px 0 !important;
}

.checkout-page .address-grid {
	overflow: hidden;
	font-size: 0;
}

.address-grid > div {
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
}







.checkout-page .message-error {
    text-align: center;
    margin-top: 25px;
}

.checkout-page .multiple-locations {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    color: #97c300;
}

.checkout-page .add-button .btn-holder:before {
    display: block;
    margin-bottom: 40px;
    content: "\55";
    font-size: 100px;
    color: #8e8e8e;
    transition: all .3s ease;
}

.checkout-page .add-button .btn-holder.open:before {
	color: #97c300;
}

.checkout-page .add-button .enter-address {
	display: none;
}

.checkout-page .btn-holder {
	position: relative;
	padding-bottom: 45px;
}

.checkout-page .btn-holder label {
	position: absolute;
	display: inline-block;
	top: auto;
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	line-height: 45px;
	max-width: 280px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
	transition: all .3s ease;
}


.add-button .btn-holder .open-address-form {
	transition: width .3s ease .3s, max-width .3s ease .3s, padding .3s ease .3s, opacity .3s ease .3s, background-color .2s ease 0s;
	opacity: 1;
}

.add-button .btn-holder.open .open-address-form {
	max-width: 0;
	padding: 0;
	opacity: .4;
	transition-delay: 0s;
}
.checkout-page .btn-holder .close-address-form {
	max-width: 0;
	padding: 0;
	opacity: .4;
}

.add-button .btn-holder.open .close-address-form {
	max-width: 280px;
	padding: 0 25px;
	opacity: 1;
	transition: width .3s ease .3s, max-width .3s ease .3s, padding .3s ease .3s, opacity .3s ease .3s, background-color .2s ease 0s;
}

.checkout-page .edit-address {
	padding-top: 40px;
	margin: 0 0 30px;
}

.checkout-page .address-box {
	margin: 0 0 25px;
}
.checkout-page .address-item li {
	padding: 2px 0;
}

.checkout-page .address-item li label,
.checkout-page .address-item li span {
	display: inline-block;
}

.checkout-page .address-item li.name {
	margin: 0;
}
.checkout-page .address-item li.country {
	margin: 5px 0 0;
	font-size: 16px;
}

.checkout-page .pickup-points .title {
	display: none;
	margin: 0 0 40px;
}
.checkout-page .select-pickup-point {
	text-align: center;
}
.checkout-page .select-pickup-point li {
	display: inline-block;
	margin: 0 5px;
	font-size: 15px;
	color: #444;
	font-weight: 700;
}
.checkout-page .select-address select {
	max-width: 100%;
}
.checkout-page .pickup-points-map {
	height: 300px;
	margin: 20px 0 0;
}

.payment-logo {
	margin-bottom: 10px;
}

.shipping-method .method-list,
.payment-method .method-list {
	margin: 0 0 30px;
}
.shipping-method .method-list li,
.payment-method .method-list li {
	position: relative;
	border: 1px solid #eee;
	border-radius: 3px;
	padding: 22px 70px 22px 22px;
	/* max-width: 560px; */
	text-align: right;
	margin: 0 auto 10px;
	background: #f6f6f6;
}

.shipping-method .method-list li:has(input[type="radio"]:checked),
.payment-method .method-list li:has(input[type="radio"]:checked) {
    background-color: #e8fbe9; /* ירוק פסטלי */
    border-color: #4caf50;
}




.shipping-method .method-list li label,
.payment-method .method-list li label {
	display: block;
	width: 100%;
	font-weight: 700;
	color: #444;
	font-size: 18px;
}
.shipping-method .method-list input[type="radio"] + label:before,
.payment-method .method-list input[type="radio"] + label:before {
	position: absolute;
	top: 50%;
	right: 25px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.shipping-method .method-description,
.payment-method .payment-description {
	margin: 5px 0 0;
	font-size: 16px;
	color: #8c8c8c;
	font-weight: 400;
}

.shipping-method .pickup-points ~
.method-list[style*="display: none;"] ~ .buttons {
	display: none;
}
.checkout-page .select-pickup-point label {
	display: none;
}

.use-reward-points {
	margin: 0 0 30px;
	text-align: center;
}
.payment-info .info {
	margin: 0 0 30px;
}

.payment-info .info table {
	max-width: 800px;
	border: 1px solid #eee;
	border-radius: 3px;
	margin: 0 auto;
}

.payment-info .info td {
	padding: 5px;
}

.payment-info .info tr:first-child td {
	padding-top: 30px;
}

.payment-info .info tr:last-child td {
	padding-bottom: 30px;
}

.payment-info .info td label {
	font-size: 14px;
}

.payment-info .info td:first-child {
	text-align: left;
}

.payment-info .info td:only-child {
	text-align: center;
}

.payment-info .info td + td {
	text-align: right;
}

.payment-info .info td select:only-of-type,
.payment-info .info td input:only-of-type {
	width: 100% !important;
	max-width: 250px;
}

.payment-info .info td p {
	margin: 10px 0;
	font-size: 16px;
	color: #444;
}

.message-error.validation-summary-errors {
	text-align: center;
}

.order-confirm-page .order-review-data .billing-info .title,
.order-confirm-page .order-review-data .shipping-info .title,
.opc .order-review-data .billing-info .title,
.opc .order-review-data .shipping-info .title {
	margin: -45px -20px 30px;
	height: 60px;
	line-height: 60px;
	background-color: #f9f9f9;
	border-radius: 3px 3px 0 0;
}

.order-review-data > div .info-list .name,
.order-review-data > div .title {
	margin-bottom: 10px;
}

.order-review-data > div .info-list .name,
.order-review-data > div .title strong {
	font-weight: 700;
	font-size: 16px;
	color: #444;
}

.confirm-order .terms-of-service {
	text-align: center;
}

.order-completed .details {
	max-width: 800px;
	border: 1px solid #eee;
	border-radius: 3px;
	padding: 30px;
	margin: 0 auto 30px;
	text-align: center;
}
.order-completed .details a {
	display: inline-block;
	margin: 20px 0 0;
	padding: 0 20px;
	max-width: 100%;
	height: 45px;
	line-height: 45px;
	background-color: #eee;
	color: #8c8c8c;
	border-radius: 3px;
	font-size: 13px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-weight: 700;
	text-transform: uppercase;
}

.order-completed .order-number {
	font-size: 18px;
	font-weight: 700;
	color: #97c300;
}

.opc {
	max-width: 1000px;
	margin: 0 auto;
}

.opc > li {
	border: 1px solid #eee;
	border-radius: 3px;
	margin-bottom: 10px;
	overflow: hidden;
}

.opc > li:last-child {
	margin-bottom: 0;
}

.opc .step-title {
	position: relative;
	height: 60px;
	line-height: 60px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #f6f6f6;
	padding: 0 40px;
	text-align: center;
}


.opc > li.allow:not(.active) .step-title:after {
	content: "\30";
	position: absolute;
	display: inline-block;
	top: 0;
	left: 20px;
	right: auto;
	color: #97c300;
	font-size: 20px;
	line-height: 60px;
}

.opc input[type="checkbox"] ~ label:before {
	content: "";
	display: inline-block;
	margin-left: 10px;
	width: 17px;
	height: 17px;
	border: 1px solid #eeeeee;
	vertical-align: text-top;
	background-color: #fff;
}
.opc input[type="checkbox"]:checked ~ label:before {
	margin-right: 1px;
	width: 16px;
	height: 16px;
	box-shadow: 0 0 0 1px #e7e7e7;
	border: 3px solid #fff;
	background-color: #97c300;
}

.opc  input[type="checkbox"] ~ label {
    font-weight: 700;
    color: #444;
}

.opc .ship-to-same-address,
.opc .pickup-in-store {
	margin-top: 0 !important;
}

.opc .section.new-billing-address,
.opc .section.new-shipping-address {
	max-width: 600px;
	margin: 0 auto;
}

.opc .allow .step-title,
.opc .allow .step-title .number,
.opc .allow .step-title .title {
	cursor: pointer;
}

.opc .step-title .number,
.opc .step-title .title {
	display: inline-block;
	font-size: 18px;
	color: #444;
	font-weight: 300;
}
.opc .step-title .number {
    margin: 0 0 0 5px;
}
.opc > li.active .step-title .number,
.opc > li.active .step-title .title {
	font-weight: 700;
	color: #97c300;
}

.opc .step {
	padding: 40px 20px;
	overflow: hidden;
}
.opc .section {
	margin: 0 0 15px;
	text-align: center;
}
.opc .section > label,
.opc .select-pickup-points > label {
	display: block;
	font-weight: 700;
	color: #444;
	font-size: 15px;
	margin: 0 0 10px;
}

.opc .payment-info .info {
	margin: 0;
}

.opc .payment-info .info table {
	border: none;
}

.opc input[type="text"],
.opc input[type="email"],
.opc input[type="tel"],
.opc input[type="password"],
.opc select:only-of-type {
	max-width: 100%;
}

.opc select {
	padding: 0 20px 0 27px;
	background: #fff url(../Themes/Emporium/Content/img/select-arrow-dark.svg) no-repeat left 10px center;
}

.opc .buttons {
	margin-bottom: 0;
	font-size: 0;
}
.opc .pickup-points .buttons {
	display: none;
}

.opc #opc-confirm_order .buttons,
.opc #opc-payment_info .buttons,
.opc .checkout-data > div:not(.section) {
    float: right;
    clear: both;
    width: 100%;
    margin: 30px 0 0;
}

.opc .back-link {
	display: inline-block;
	vertical-align: top;
	margin: 0 10px 10px 0;
}
.opc .back-link small {
	display: none;
}
.opc .back-link a {
	display: block;
	padding: 0 20px;
	border-radius: 3px;
	background-color: #eee;
	height: 45px;
	min-width: 95px;
	line-height: 45px;
	color: #959595;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.opc .back-link,
.opc .back-link + .button-1 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.opc .please-wait {
	display: block;
	margin: 10px 0 0;
}

.opc .terms-of-service {
	text-align: center;
}


/*********** ORDER DETAILS & RETURN REQUEST ***********/



.order-review-data,
.order-details-area,
.shipment-details-area {
	margin: 0 0 50px; 
	overflow: hidden;  
}

.order-details-page,
.order-overview {
	text-align: center;
}

.order-review-data > div,
.order-details-area > div,
.shipment-details-area > div {
	padding: 45px 20px;
	margin: 0 0 20px;
	border: 1px solid #eee;
	border-radius: 3px;
	text-align: center;
}
.order-review-data > div > div,
.order-details-area > div > div,
.shipment-details-area > div > div {
	margin-bottom: 40px;
}

.order-review-data > div > div:last-child,
.order-details-area > div > div:last-child,
.shipment-details-area > div > div:last-child {
	margin-bottom: 0;
}

.order-review-data li,
.order-details-area li,
.shipment-details-area li {
	padding: 2px 0; 
	font-size: 16px;
	color: #8c8c8c;
}
.order-review-data .title,
.order-details-area .title,
.shipment-details-area .title {
	margin: 0 0 15px;
	font-size: 18px;
	color: #444;
}

.order-details-page .page-title {
	margin: 0 0 40px;
	overflow: hidden;
}
.order-details-page .page-title h1 {
	margin: 0 0 30px;
}
.order-details-page .order-overview {
	margin: 0 0 40px;
	line-height: 20px;
}

.order-details-page .order-overview .order-number {
	margin-bottom: 15px;
	font-size: 20px;
	font-weight: 700;
	color: #97c300;
}

.order-overview-content li {
	font-size: 16px;
	color: #8c8c8c;
	line-height: 1.5;
	font-weight: 300;
}

.order-overview-content li strong {
	display: inline-block;
	color: #444;
}

.order-details-page .tax-shipping-info {
	margin: 0 0 10px;
	font-size: 15px;
	color: #444;
}

.order-details-page .actions {
	margin: 20px 0 0;
	overflow: hidden;
	font-size: 0;
}

.order-details-page .actions button {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	margin: 5px 0 0;
	padding: 0 20px;
	height: 45px;
	border-radius: 3px;
	border: none;
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
}

.order-details-page .actions button:first-child {
	margin-top: 0;
}

.order-details-page .actions .button-2 {
	background-color: #e7e7e7;
	color: #8c8c8c;
}

.section.shipments {
	margin-bottom: 50px;
}

td.view-details a,
td.download a {
	display: inline-block;
	padding: 10px 20px;
	margin: -7px 0;
	border-radius: 3px;
	background-color: #f1f1f1;
	color: #8c8c8c;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	transition: all .2s ease;
}

td.view-details a:hover,
td.download a:hover {
	background-color: #eaeaea;
}

.downloadable-products-page td.order a {
	color: #444;
}

.return-request-file > div {
	display: inline-block;
	width: 100%;
	vertical-align: middle;
	font-size: 13px;
	overflow: hidden;
}

.qq-uploader .qq-upload-drop-area,
.qq-uploader .qq-upload-list {
	float: right;
	width: calc(100% - 45px);
	height: 45px;
	line-height: 45px;
	border: 1px solid #e7e7e7;
	border-right: none;
	border-radius: 3px;
	background-color: #fff;
	padding: 0 20px 0 0;
	text-align: right;
	font-size: 13px;
	color: #000;

}

.qq-uploader .qq-upload-button {
	width: 45px;
	height: 45px;
	line-height: 45px;
	padding: 0;
	display: inline-block;
	float: left;
	border: none;
	border-radius: 3px 0 0 3px;
	background-color: #eebe00;
	font-size: 0;
	transition: all .2s ease;
}

.qq-uploader .qq-upload-button:before {
	content: "\e903";
	font-size: 16px;
	color: #fff;
}
.qq-uploader .qq-upload-button:hover {
	background-color: #e8af00;
}

.return-request-page .qq-upload-list li {
	background-color: transparent !important;
	font-size: 13px;
	color: #444 !important;
	padding: 0 !important;
	line-height: 45px;
}

.qq-uploader .qq-upload-drop-area,
.qq-uploader .qq-upload-extra-drop-area {
	width: calc(100% - 45px);
	height: 100%;
	min-height: 45px;
	background: #fff9e0;
	text-align: right;
}

.qq-uploader .qq-upload-drop-area span {
	top: 0;
	right: 0;
	margin: 0;
}


/*********** SEARCH & SITEMAP ***********/


.search-page .search-input .fieldset {
	margin: 0;
}

.search-page .search-input form {
	background-color: #f6f6f6;
	margin: 0 -10px 40px;
	padding: 30px 0;
}

.search-input input + label {
	display: inline;
	margin: 0 2px 0 0;
}
.basic-search {
	padding: 0 20px 30px;
}

.advanced-search {
	padding: 30px 20px;
	border-top: 2px solid #fff;
}

.basic-search > .inputs,
.advanced-search > .inputs {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.search-page .search-input form .buttons {
	padding: 0 20px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.search-page .search-input form button {
	width: 100%;
}

.advanced-search .price-range {
	display: block;
	width: 100%;
	font-size: 0;
}
.advanced-search .price-range input {
	width: calc(50% - 5px);
	font-size: 13px;
}

.advanced-search .price-range input:nth-child(2) {
	margin-right: 10px;
}

.search-input .warning,
.search-results .result {
	display: block;
	margin: 10px 0 0; 
	font-weight: normal;
	color: #ff4f60;
}
.search-results {
	margin: 30px 0 0;
}

.sitemap-page .description {
	margin: 0 auto 30px;
	max-width: 1000px;
	font-size: 15px;
	color: #8c8c8c;
	text-align: center;
}

.sitemap-page .entity {
	border: 1px solid #eee;
	border-radius: 3px 3px 0 0;
	border-bottom: none;
	padding: 30px 20px;
	text-align: center;
}


.sitemap-page .entity + .entity {
	border-radius: 0;
}

.sitemap-page .entity:last-child {
	border-radius: 0 0 3px 3px;
	border-bottom: 1px solid #eee;
}

.sitemap-page .entity-title {
	margin: 0 0 20px;
}
.sitemap-page .entity-title h2 {
	font-size: 17px;
	color: #444;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.sitemap-page .entity-body {
	line-height: 24px;
}
.sitemap-page li {
	display: inline-block;
	margin: 0 5px;
}
.sitemap-page a {
	display: block;
	padding: 5px;
	color: #97c300;
	font-size: 15px;
	transition: all .2s ease;
}

.sitemap-page a:hover {
	color: #7c9a16;
}

.sitemap-page a:empty {
	display: none;
}


/********** BLOG & NEWS **********/

.block-blog-archive .year {
	margin-top: 10px;
}

.year strong {
	display: block;
	cursor: default;
}

.blog-page .post,
.news-items .news-item {
	position: relative;
	margin: 0 0 20px;
	border: 1px solid #eeeeee;
	border-radius: 3px;
	overflow: hidden;
}

.blog-page .post-details,
.news-items .news-item {
	padding: 30px 15px;
}

.center-2 .blog-page .post,
.center-2 .news-items .news-item {
	text-align: right;
}

.blog-page .post:after,
.news-items .item:after {
	content: "";
	display: block;
	clear: both;
}
.post-title,
.news-title {
	display: block;
	margin: 0 0 20px;
	font-size: 25px;
	font-weight: 300;
	color: #444444;
}
.post-date,
.news-date {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.3px;
	color: #97c300;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.post-date + .read-comments {
	margin-right: 15px;
} 

.post-body,
.news-body {
	line-height: 1.5;
	font-size: 16px;
	color: #8c8c8c;
	font-weight: 400;
}

.post-body + .buttons,
.news-body + .buttons {
	margin-top: 25px;
}

.post-body p:first-child,
.news-body p:first-child {
	margin-top: 0;
}

.back-to-all-button {
	display: inline-block;
	margin: 0 auto 20px;
	width: auto;
	text-align: center;
	font-size: 13px;
	color: #959595;
	text-transform: uppercase;
	font-weight: 700;
	transition: all .2s ease;
}

.back-to-all-button:before {
	content: "\6a";
	display: inline-block;
	margin-left: 7px;
	color: #959595;
	text-transform: none;
	font-weight: normal;
	font-size: 10px;
	transition: all .2s ease;
}

.back-to-all-button:hover,
.back-to-all-button:hover:before {
	color: #97c300;
}

.blogpost-page .page-title,
.news-item-page .page-title {
	margin-bottom: 15px;
}

.blogpost-page .post-date,
.news-item-page .news-date {
	display: block;
	margin-bottom: 25px;
}

.blogpost-page .post-body,
.news-item-page .news-body {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 900px;
	text-align: justify;
}

.blogpost-page .post-body {
	border-bottom: 1px solid #eee;
	padding: 0 30px;
	margin: 0 -10px 20px;
}

.blog-page .tags, 
.blogpost-page .tags {
	margin: 0 0 5px;
	overflow: hidden;
}
.blog-page .tags label,
.blogpost-page .tags label {
	display: inline-block;
	font-size: 0;
}

.blog-page .tags label:before,
.blogpost-page .tags label:before {
	content: "\58";
	display: inline-block;
	margin-left: 7px;
	font-size: 16px;
	color: #8c8c8c;
}

.blog-page .tags ul,
.blogpost-page .tags ul {
	display: inline-block;
	font-size: 0;
}
.blog-page .tags li,
.blogpost-page .tags li {
	display: inline-block;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
}

.blog-page .tags li.separator,
.blogpost-page .tags li.separator {
	margin: 0 3px 0 5px;
}
.blog-page .tags a,
.blogpost-page .tags a {
	display: inline-block;
	color: #97c300;
	line-height: 24px;
	transition: all .2s ease;
}

.blog-page .tags a:hover,
.blogpost-page .tags a:hover {
	color: #7c9a16;
}

.blog-posts .buttons,
.news-items .buttons {
	text-align: right;
}
.blog-posts .read-more,
.news-items .read-more {
	display: inline-block;
	padding: 0 25px;
	border-radius: 3px;
	background-color: #eebe00;
	height: 45px;
	line-height: 45px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	transition: all .2s ease;
}

.blog-posts .read-more:hover,
.news-items .read-more:hover {
    background-color: #e8af00;
}

.read-comments {
	font-size: 13px;
	color: #8c8c8c;
	font-weight: 700;
	transition: all .2s ease;
}

.read-comments:before {
	content: "\52";
	display: inline-block;
	vertical-align: middle;
	margin-left: 7px;
	font-weight: normal;
	text-transform: none;
	color: #8c8c8c;
	font-size: 16px;
	transition: all .2s ease;
}

.read-comments:hover,
.read-comments:hover:before {
	color: #97c300;
}

.new-comment {
	padding: 40px 20px;
}

.comment-list {
	padding: 0 10px 40px;
}

.new-comment,
.comment-list {
	margin: 70px -10px 0;
	background-color: #f6f6f6;
}

.new-comment > *,
.comment {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.new-comment + .comment-list {
	margin-top: 0;
}

.new-comment .title {
	margin: 0 auto 20px;
}

.new-comment .title strong {
	font-weight: 700;
	font-size: 26px;
	color: #444;
}

.new-comment form {
	display: none;
}

.comment-form-btn strong:before {
	display: inline-block;
	vertical-align: bottom;
	margin-left: 10px;
	font-size: 16px;
	text-transform: none;
	font-weight: normal;
}

.open-comment-form:hover {
	background-color: #e8af00;
}
.open-comment-form:before {
	content: "\52";
	color: #fff;
}

.new-comment .notifications {
	font-size: 15px;
	color: #8c8c8c;
}
.new-comment .result {
	margin: 20px 0 0;
	color: #97c300;
}

.comment-list .comment {
	background-color: #fff;
	border: 1px solid #eee;
	border-top: none;
	padding: 30px 20px;
	text-align: right;
}

.comment-list .comment:first-child {
	border-top: 1px solid #eee;
	border-radius: 3px 3px 0 0;
}

.comment-list .comment:last-child {
	border-radius: 0 0 3px 3px;
}


.new-comment .form-fields {
	padding-top: 30px;
	margin: 0 auto 15px;
	max-width: 500px;
}

.new-comment textarea {
	width: 100%;
}

.comment-list .title {
	margin: 0 0 10px;
	font-weight: bold;
}

.blog-comment:after,
.news-comment:after {
	content: "";
	display: block;
	clear: both;
}
.comment-info {
	margin: 0 0 15px;
	font-size: 0;
	overflow: hidden;
}
.comment-info .username {
	display: inline-block;
	margin-bottom: 3px;
	font-size: 17px;
	color: #444;
	font-weight: 700;
}
.comment-info .avatar {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 70px;
	height: 70px;
	overflow: hidden;
}
.comment-info .avatar img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-width: 100%;
	height: auto;
	margin: auto;
}
.name-and-time {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	width: calc(100% - 80px);
	text-align: right;
}
.comment-time {
	font-size: 14px;
	color: #aaa;
}
.comment-body,
.comment-text {
	font-size: 15px;
	color: #8c8c8c;
	line-height: 1.5;
}

.news-item-page .inputs:first-child label {
	display: block;
}

.news-list-homepage {
	margin: 0 auto 50px;
	text-align: center;
}
.news-list-homepage .title {
	margin: 0 0 7px;
	font-size: 28px;
	color: #444444;
}
.news-list-homepage .title strong {
	font-weight: bold;
}

.news-list-homepage .view-all {
	margin-bottom: 15px;
}

.news-list-homepage .view-all a {
	display: inline-block;
	line-height: 32px;
	color: #97c300;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: bold;
    transition: all .2s ease;
}

.news-list-homepage .view-all a:after {
	content: "\57";
	display: inline-block;
	margin-right: 7px;
	font-size: 8px;
	color: #97c300;
	vertical-align: bottom;
	text-transform: none;
	transition: all .2s ease;
}

.news-list-homepage .view-all a:hover,
.news-list-homepage .view-all a:hover:after {
    color: #7c9a16;
}

.post-details,
.news-item {
	padding: 30px 15px;
}

/********** FORUM & PROFILE **********/


.forums-main-page .topic-block {
	margin-bottom: 0;
}

.forums-main-page .topic-block-title h2 {
	color: #444;
	font-size: 28px;
}

.forums-header {
	margin: 0 0 30px;
	text-align: center;
}
.forums-header:after {
	content: "";
	display: block;
	clear: both;
}
.current-time {
	margin: 27px 0 30px;
	color: #97c300;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
}
.forum-search-box {
	margin: 0 0 45px;
	text-align: center;
}
.forum-search-box {
	display: block;
	padding: 0 !important;
	margin: 0 auto 20px;
	width: 100%;
	max-width: 600px;
}

.forum-search-box form {
	padding: 0 !important;
}

.forum-search-box .basic {
	overflow: hidden;
	margin: 0 0 15px;
}

.forum-search-box.search-box input.search-box-text {
	padding: 0 15px 0 5px;
	width: calc(100% - 45px);
	height: 45px;
}

.forum-search-box.search-box .search-box-button {
	float: right;
	width: 45px;
	height: 45px;
	border: none;
	background: #ccc url('../Themes/Emporium/Content/img/search-button.png') center no-repeat;
	font-size: 0;
	border: 1px solid #eeeeee;
	border-right: 0;
	border-radius: 3px 0 0 3px;
}

.forum-search-box.search-box .search-box-button:hover {
	background-color: #97c300;
}

.forum-search-box .advanced > a {
	font-size: 15px;
	color: #8c8c8c;
	transition: color .2s ease
}
.forum-search-box .advanced > a:hover {
	color: #97c300;
}

.forum-search-page .basic-search .forum-search-text {
	text-align: center;
	font-size: 15px;
}

.forum-search-page .basic-search .forum-search-text::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #aaa;
}
.forum-search-page .basic-search .forum-search-text::-moz-placeholder { /* Firefox 19+ */
	color: #aaa;
}
.forum-search-page .basic-search .forum-search-text:-ms-input-placeholder { /* IE 10+ */
	color: #aaa;
}
.forum-search-page .basic-search .forum-search-text:-moz-placeholder { /* Firefox 18- */
	color: #aaa;
}

.forum-search-page .inputs.reversed {
	text-align: center;
}

.forum-search-page .advanced-search {
	margin: 0 -10px 30px;
	padding: 30px;
	max-width: 800px;
	background-color: #f6f6f6;
}
.forum-search-page .search-error {
	padding: 15px;
	margin: 30px 0 0;
	font-size: 13px;
	color: #ff4f60;
	font-weight: 700;
	text-align: center;
}

.forum-search-page .fieldset {
	margin: 0;
}

.forum-search-page .search-results {
	margin: 40px 0 0;
}

.no-result {
	font-size: 15px;
	color: #8c8c8c;
	text-align: center;
}


/* forum group */

.forums-table-section {
	margin: 0 0 50px;
}
.forums-table-section a {
	vertical-align: middle;
}
.forums-table-section-title {
	margin: 0 0 25px;
	overflow: hidden;
	text-align: center;
}
.forums-table-section-title > a,
.forums-table-section-title strong {
	font-size: 24px;
	font-weight: 700;
	color: #444;
}
.forums-table-section .view-all a {
	display: inline-block;
	margin-top: 10px;
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
    border-radius: 3px;
    background-color: #eebe00;
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    transition: all .2s ease;
}
.forums-table-section .view-all a:hover {
	background-color: #e8af00;
}

.forums-table-section .image div {
	font-size: 0;
	width: 24px;
	height: 24px;
	margin: auto;
}

.forums-table-section .image div:before {
	content: "\32";
	display: block;
	color: #8e8e8e;
	font-size: 24px;
	font-weight: normal;
	text-transform: none;
}


.forums-table-section .image div.sticky:before {
	color: #ffa20f;
}
.forums-table-section .image div.announcement:before {
	color: #e5323f;
}

.forums-table-section .latest-post {
	white-space: nowrap;
}

/* forum-page, topic-page */



.forum-page .forum-info,
.forum-topic-page .topic-name,
.forum-page .forum-name {
	margin: 0 0 30px;
	text-align: center;
}
.forum-page .forums-table-section {
	margin: 0;
}

.forum-page .forum-description {
	margin-top: -5px;
}

.forum-page .forum-description p {
	font-size: 15px;
	color: #8c8c8c;
}

.forum-actions,
.topic-actions {
	margin: 0 0 25px;
	font-size: 0;
	text-align: center;
}

.forum-actions .actions a,
.topic-actions .actions a {
	display: inline-block;
	padding: 0 10px;
	margin: 0 6px 6px 0;
	width: calc(50% - 3px);
	height: 45px;
	line-height: 45px;
	font-size: 13px;
	color: #8c8c8c;
	text-transform: uppercase;
	font-weight: 700;
	background-color: #f1f1f1;
	border-radius: 3px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	transition: all .2s ease;
}

.topic-actions .actions a:nth-child(2n),
.forum-actions .actions a:nth-child(2n+1) {
	margin-right: 0;
}

.topic-actions .pager {
	margin-top: 50px;
}

.pager.upper {
	display: none;
}

.forum-actions .actions a:hover,
.topic-actions .actions a:hover {
	background-color: #eaeaea;
}

.forum-actions .actions a:before,
.topic-actions .actions a:before,
.topic-post .post-actions a:before {
	display: inline-block;
	vertical-align: bottom;
	margin-left: 10px;
	color: #8c8c8c;
	font-size: 17px;
	text-transform: none;
	font-weight: normal;
}

.forum-actions .actions a.edit-topic-button,
.topic-actions .actions a.edit-topic-button {
	width: 100%;
	margin: 0 0 6px;
}

.forum-actions .actions .new-topic:before {
	content: "\52";
}

.forum-actions .actions .watch-forum:before,
.topic-actions .actions .watch-forum:before,
.topic-actions .watch-topic-button:before {
	content: "\31";
}

.topic-actions .reply-topic-button:before {
	content: "\4f";
}
.topic-actions .move-topic-button:before {
	content: "\33";
}
.topic-actions .edit-topic-button:before {
	content: "\4c";
}
.topic-actions .delete-topic-button:before {
	content: "\4d";
}
.topic-actions.lower .actions {
	display: none;
}

.forum-table a {
	display: inline-block;
	color: #444;
	font-weight: 700;
	transition: color .2s ease;
}

.forum-table a:hover {
	color: #97c300;
}

.forum-details .forum-title a,
.topic-details .topic-title a {
	font-size: 18px;
}

.forum-description,
.topic-details .topic-pager,
.topic-details .topic-starter,
.topic-details .topic-starter,
td.latest-post {
	font-size: 16px;
	color: #8c8c8c;
}

 .forum-page .pager {
 	margin-top: 30px;
 }

 td.topics,
 td.posts,
 td.views,
 td.replies,
 td.votes {
 	font-weight: 700;
 }


/* topic post */

.topic-post {
	margin: 0 0 20px;
	border: 1px solid #eee;
	border-radius: 3px;
	overflow: hidden;
}
.topic-post:after {
	content: "";
	display: block;
	clear: both;
}

.topic-post .post-head {
	padding: 0 17px;
	background-color: #f6f6f6;
	text-align: right;
	height: 45px;
}

.topic-post .post-time {
	display: inline-block;
}

.topic-post .post-time span,
.topic-post .post-time label {
	display: inline-block;
	color: #aaa;
	font-size: 14px;
	line-height: 43px;
}


.topic-post .post-link-button {
	float: left;
	font-size: 15px;
	font-weight: 700;
	line-height: 43px;
	color: #8c8c8c;
}

.topic-post .post-info {
	padding: 15px 10px;
	text-align: right;
	font-size: 0;
}
.topic-post .user-info {
	position: relative;
	display: inline-block;
	vertical-align: top;
	min-height: 105px;
	padding-right: 120px;
}
.topic-post .username {
	display: block;
	margin-bottom: 5px;
	font-size: 17px;
	color: #444;
	font-weight: 700;
}
.topic-post .avatar {
	position: absolute;
	display: inline-block;
	top: 0;
	right: 0;
	vertical-align: top;
	width: 105px;
	overflow: hidden;
	font-size: 0;
}
.topic-post .avatar a {
	display: block;
}
.topic-post .avatar img {
	max-width: 100%;
}
.topic-post .user-stats {
	margin: 0 0 15px;
	font-size: 14px;
	color: #8c8c8c;
	line-height: 1.1;
}

.topic-post .user-stats span {
	display: inline-block;
	margin: 0 3px 0 0;
}
.topic-post .pm-button {
	display: inline-block;
	margin: 0;
	padding: 0;
	height: auto;
	background-color: transparent;
	font-size: 13px;
	line-height: 16px;
}

.topic-post .pm-button:before {
	position: static;
	margin-left: 10px;
	vertical-align: bottom;
	color: #97c300;
}

.topic-post .post-actions {
	font-size: 0;
	text-align: left;
	overflow: hidden;
}
.topic-post .post-actions > div {
	display: inline-block;
	float: left;
	vertical-align: top;
}
.topic-post .post-actions a {
	display: inline-block;
	vertical-align: top;
	margin: 0 5px 0 0;
	font-size: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: #f1f1f1;
	border-radius: 3px;
	text-align: center;
	transition: all .2s ease;
}

.topic-post .post-actions a:hover {
	background-color: #eaeaea;
}

.topic-post .post-actions a:before {
	margin: 0;
}

.topic-post .post-actions .edit-post-button:before {
	content: "\4c";
}
.topic-post .post-actions .delete-post-button:before {
	content: "\4d";
}

.topic-post .post-actions .quote-post-button {
	width: auto;
	padding: 0 25px;
	background-color: #eebe00;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
}

.topic-post .post-actions .quote-post-button:hover {
	background-color: #e8af00;
}

.topic-post .post-content {
	padding: 20px;
}

.topic-post .post-body {
	position: relative;
	text-align: right;
	font-size: 15px;
	margin-bottom: 40px;
}

.topic-post .user-posted-image,
.latest-posts .user-posted-image {
	max-width: 100%;
	height: auto;
}
.topic-post .quote,
.latest-posts .quote {
	margin: 10px 0;
	background-color: #f6f6f6;
	border-radius: 3px;
	padding: 15px 10px;
}
.topic-post .post-actions > div.post-vote {
	float: right;
}
.topic-post .post-vote > span {
	display: inline-block;
	vertical-align: top;
	width: 25px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
}

.topic-post .post-vote > span:before {
	display: block;
	font-size: 20px;
	color: #8c8c8c;
	text-align: center;
}

.topic-post .post-vote > .vote.up:before {
	content: "\46";
}
.topic-post .post-vote > .vote.down:before {
	content: "\47";
}

.topic-post .post-vote > .vote.up:hover:before {
	content: "\e902";
	color: #97c300;
}

.topic-post .post-vote > .vote.down:hover:before {
	content: "\e901";
	color: #97c300;
}

.topic-post .post-vote > div {
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
	text-align: center;
	font-size: 14px;
	line-height: 40px;
	font-weight: 700;
	color: #8c8c8c;
}
.topic-post .signature {
	border-top: 1px dashed #eee;
	padding: 20px 0 0;
	margin-bottom: 30px;
	font-size: 15px;
	color: #aaa;
	text-align: right;
}

/* forum edit & send message */


.forum-edit-page strong,
.private-message-send-page a {
	font-size: 18px;
	font-weight: normal;
	vertical-align: middle;
}
.forum-edit-page .buttons,
.private-message-send-page .buttons {
	margin: 15px 0 0;
	text-align: center;
}

.forum-edit-page .buttons button,
.move-topic-page .buttons button,
.private-messages .buttons button {
	min-width: 115px;
	border: none;
	padding: 0 25px;
	height: 45px;
	color: #fff;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all .1s ease;
}

.forum-edit-page button.button-2,
.move-topic-page button.button-2,
.private-messages button.button-2 {
	color: #8c8c8c;
	background-color: #f1f1f1;
}

.forum-edit-page button.button-2:hover,
.move-topic-page button.button-2:hover,
.private-messages button.button-2:hover {
	background-color: #dfdfdf;
}

.forum-edit-page .inputs span {
	vertical-align: middle;
	margin-right: 5px;
	font-size: 12px; /*reset zeroing*/
}

.private-message-send-page .message label {
	display: none;
}

/* inbox & view message */


.private-message-view-page .buttons .button-2 {
	background-color: #f1f1f1;
}

.private-messages .page-title {
	text-align: center;
}

.private-messages-page td.date {
	white-space: normal;
}

.private-messages-page .td-title {
	display: none;
}

.private-messages .data-table a,
.private-messages .data-table td {
	color: #8c8c8c;
	font-weight: 400;
}

.private-messages-page td,
.private-messages-page th {
	text-align: right;
}

.private-messages-page .data-table .pm-unread {
	color: #444;
	font-weight: 700;
}

.private-messages-page .buttons button {
	width: 80%;
	max-width: 200px;
	margin: 0 5px;
}

.private-messages-page button + button {
	margin-top: 15px;
}

.private-message-view-page .view-message {
	border: 1px solid #eee;
    border-radius: 3px;
    padding: 30px 20px;
    margin: 0 auto 30px;
    max-width: 800px;
}
.private-message-view-page .message-head li {
	margin-bottom: 10px;
	font-size: 15px;
	color: #8c8c8c;
}
.private-message-view-page .message-head label {
	display: inline-block;
	font-weight: 300;
}
.private-message-view-page .message-head {
	margin-bottom: 30px;
}
.private-message-view-page .message-head span {
	font-weight: 700;
	margin: 0 5px 0 0;
	vertical-align: middle;
}

.private-message-view-page .message-body {
	font-size: 15px;
	line-height: 1.5;
	font-weight: 400;
	color: #8c8c8c;
}

.private-message-view-page .message {
	display: block !important;
	margin: 15px 0;
	border: 1px solid #ccc;
	padding: 15px;
}

.private-message-view-page .buttons {
	font-size: 0;
}

.private-message-view-page .reply-pm-button,
.private-message-view-page .delete-pm-button {
	display: inline-block;
	width: calc(40% - 5px);
	margin-bottom: 10px;
	max-width: 150px;
}

.private-message-view-page .reply-pm-button {
	margin-left: 10px;
}

.private-message-view-page .back-pm-button {
	display: block;
	margin: 0 auto;
	width: 80%;
	max-width: 310px;
}

/* profile page  */

.profile-info-box {
	overflow: hidden;
	border: 1px solid #eee;
	border-radius: 3px;
	padding: 30px 20px;
	max-width: 650px;
	margin: 0 auto;
	background-color: #fff;
	text-align: center;
}
.profile-info-box .avatar {
	margin: 0 auto 20px;
	font-size: 0;
}
.profile-info-box .profile-stats {
	margin: 0 0 10px;
}
.profile-info-box .title {
	margin: 0 0 13px;
	font-size: 16px;
	color: #444;
}

.profile-info-box .avatar {
	max-width: 180px;
	border-radius: 3px;
	overflow: hidden;
}

.profile-info-box .stats {
	font-size: 15px;
	color: #8c8c8c;
	font-weight: 300;
}

.profile-info-box .stats li {
	margin-bottom: 6px;
}

.profile-info-box .stats span {
	display: inline-block;
	font-weight: 700;
}

.profile-page .ui-tabs-nav,
.private-messages-page .ui-tabs-nav {
	font-size: 0;
}

.profile-page .ui-tabs-nav li,
.private-messages-page .ui-tabs-nav li {
	max-width: calc(50% - 10px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin: 0 5px;
}

.profile-page .topic {
	padding: 30px 20px;
	background-color: #fff;
	border: 1px solid #eee;
	border-top: 0;
}

.profile-page .topic:first-child {
	border-top: 1px solid #eee;
	border-radius: 3px 3px 0 0;
}

.profile-page .topic:last-child {
	border-radius: 0 0 3px 3px;
}
.profile-page .topic:only-child {
	border-radius: 3px;
}

.profile-page .topic-title {
	margin: 0 0 7px;
	font-size: 16px;
}

.profile-page .topic-title label {
	display: inline-block;
	font-weight: 300;
	color: #8c8c8c;
}

.profile-page .topic-title a {
	font-weight: 700;
	color: #444;
}
.profile-page .topic-data {
	color: #8c8c8c;
	font-size: 14px;
	margin-bottom: 15px;
	font-weight: 300;
}

.profile-page .topic-data label {
	display: inline-block;
}

.profile-page .topic-body {
	font-size: 15px;
	font-weight: 400;
	color: #8c8c8c;
	line-height: 1.5;
}

.pm-button {
	position: relative;
	display: inline-block;
	border: none;
	height: 45px;
	line-height: 45px;
	max-width: 80%;
	padding: 0 55px 0 25px;
	margin: 15px auto 0;
	background-color: #f1f1f1;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: #8c8c8c;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: background-color .1s ease, padding .3s ease;
}

.pm-button:before {
	content: "\6d";
	position: absolute;
	display: inline-block;
	top: 0;
	right: 25px;
	font-size: 20px;
	color: #8c8c8c;
	text-transform: none;
	transition: all .3s linear !important;
	font-weight: normal;
}

.pm-button:hover::before {
	-webkit-animation: emailing .2s linear;
	-moz-animation: emailing .2s linear;
	animation: emailing .2s linear;
}

.csharpcode {
	margin: 10px 0;
	padding: 10px 15px;
	color: #444;
	white-space: normal;
	text-align: right;
	border: 1px dotted #cacaca;
	border-radius: 3px;
}
.table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  font-family: 'Arial', sans-serif;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.data-table colgroup col:first-child {
  width: 25%;
}

.data-table th, 
.data-table td {
  padding: 12px 15px;
  text-align: right;
  border: 1px solid #ddd;
  font-size: 16px;
}

.data-table th {
  background-color: #0a66c2;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}

.data-table tr:nth-child(even) {
  background-color: #f3f3f3;
}

.data-table tr:nth-child(odd) {
  background-color: #ffffff;
}

.data-table tbody tr:hover {
  background-color: #dfe9f6;
}

.data-table td.spec-name {
  font-weight: bold;
  color: #333;
}

.data-table td.spec-value {
  color: #555;
}




<style>
/* Read-more container */
.ofk-readmore { max-width: 980px; margin: 0 auto 16px; position: relative; }

/* Collapsed state */
.ofk-readmore__content {
  max-height: 140px; /* visible height when collapsed */
  overflow: hidden;
  position: relative;
  transition: max-height .35s ease;
}

/* Fade-out hint at the bottom */
.ofk-readmore__content::after {
  content: "";
  position: absolute; inset-inline: 0; bottom: 0; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events: none;
}

/* Expanded state */
.ofk-readmore__content.is-expanded {
  max-height: 2000px; /* large enough to fit full text */
}
.ofk-readmore__content.is-expanded::after { display: none; }

/* Button style */
.ofk-readmore__btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 16px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  background: #1aa45b; /* CTA */
  color: #fff;
  font-size: 14px;
}

/* Mobile: show פחות גובה התחלתי */
@media (max-width: 576px) {
  .ofk-readmore__content { max-height: 100px; }
}
</style>
/* ===== Unified spec table (clean) ===== */

/* שני המבנים הנתמכים */
#specification-table,
.specifications ul {
  direction: rtl;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.95rem;
}

/* שורה אחת – שתי עמודות: תווית | ערך */
#specification-table > li,
.specifications ul > li {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 8px 16px;
  padding: 14px 16px;
  border-top: 1px solid #ececec;
}
#specification-table > li:first-child,
.specifications ul > li:first-child {
  border-top: 0;
}

/* תווית (ימין) */
#specification-table .product-spec__label,
.specifications ul > li > strong {
  grid-column: 1 / 2;
  text-align: right;
  color: #000;
  font-weight: 700;
  white-space: nowrap;
  margin: 0;
}

/* ערך (ימין) */
#specification-table .product-spec__value,
.specifications ul > li > span {
  grid-column: 2 / 3;
  text-align: right;
  color: #000;
  line-height: 1.55;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* טקסטים טכניים בתוך הערך: כיוון LTR */
#specification-table .product-spec__value span,
.specifications ul > li > span span {
  direction: ltr;
  unicode-bidi: bidi-override;
}

/* מקרה קצה: ערך שהוא טקסט/אלמנט אחר אחרי <strong> */
.specifications ul > li > strong + *:not(span) {
  grid-column: 2 / 3;
  text-align: right;
  color: #000;
}

/* רקע לבן + מסגרת + פינות מעוגלות */
#specification-table,
.specifications ul {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  margin: 0 0 24px;
  padding: 0;
}


.product-essential .picture {
    background: #fff !important;
}
.product-page .picture {
    background-color: #ffffff;
}



/* רספונסיביות */
@media (max-width: 768px) {
  #specification-table > li,
  .specifications ul > li {
    grid-template-columns: 1fr;
    align-items: start;
  }
  #specification-table .product-spec__label,
  .specifications ul > li > strong {
    margin-bottom: 6px;
  }


}

@media all and (max-width: 480px) {
	.private-messages-page thead {
		display: none;
	}

	.private-messages-page .data-table,
	.private-messages-page tbody,
	.private-messages-page tr,
	.private-messages-page td {
		display: block;
	}

	.private-messages-page tr {
		margin: 0 0 20px;
		border: 1px solid #eee !important;
		border-radius: 3px;
	}

	.private-messages-page tr:last-child {
		margin: 0;
	}

	.private-messages-page td {
		border-left: none !important;
		border-right: none !important;
		background-color: #fff;
		text-align: center;
	}

	.private-messages-page td:first-child {
		border-radius: 3px 3px 0 0 !important;
		border-top: 0 !important;
	}

	.private-messages-page td:last-child {
		border-radius: 0 0 3px 3px !important;
		border-bottom: 0;
	}

	.private-messages-page .select label {
		margin: 0 auto;
	}

	.private-messages-page .select input[type="checkbox"]:checked + label {
		margin-right: auto;
		margin-bottom: 1px;
	}
	.private-messages-page .td-title {
		display: inline-block;
	}
}


@media all and (max-width: 1024px) {


	/*.order-details-page .data-table .attributes,
	.shipment-details-page .data-table .sku,*/
	.order-details-page .shipments thead,
	.order-details-page .products thead,
	.order-list-page .recurring-payments thead,
	.return-request-page .data-table thead,
	.shipment-details-page .data-table thead,
	.downloadable-products-page .data-table thead,
	.reward-points-history .data-table thead,
	.wishlist-page thead,
	.cart thead {
	    display: none;
	}

	.order-details-page .shipments .data-table,
	.order-details-page .shipments tbody,
	.order-details-page .shipments tr,
	.order-details-page .shipments td,
	.order-details-page .products .data-table,
	.order-details-page .products tbody,
	.order-details-page .products tr,
	.order-details-page .products td,
	.order-list-page .recurring-payments td,
	.order-list-page .recurring-payments tr,
	.return-request-page .data-table tbody,
	.return-request-page .data-table tr,
	.return-request-page .data-table td,
	.shipment-details-page .data-table,
	.shipment-details-page .data-table tbody,
	.shipment-details-page .data-table tr,
	.shipment-details-page .data-table td,
	.reward-points-history .data-table tr,
	.reward-points-history .data-table td,
	.downloadable-products-page .data-table tr,
	.downloadable-products-page .data-table td,
	.wishlist-page tbody,
	.wishlist-page tr,
	.wishlist-page td,
	.cart tbody,
	.cart tr,
	.cart td {
		display: block;
	}

	.order-details-page .shipments tr,
	.order-details-page .products tr,
	.return-request-page .data-table tr,
	.shipment-details-page .data-table tr,
	.order-list-page .recurring-payments tr,
	.reward-points-history .data-table tr,
	.downloadable-products-page .data-table tr,
	.wishlist-page tr,
	.cart tr {
		margin: 0 0 20px;
		border: 1px solid #eee !important;
		border-radius: 3px;
	}

	.downloadable-products-page .data-table td.product,
	.reward-points-history .data-table td.message {
		text-align: center;
	}

	.order-details-page .products tr,
	.cart tr,
	.wishlist-page tr {
		position: relative;
		background-color: #fff;
		overflow: hidden;
		padding-bottom: 70px;
	}

	.order-details-page .shipments tr:last-child,
	.order-details-page .products tr:last-child,
	.shipment-details-page .data-table tr:last-child,
	.return-request-page .data-table tr:last-child,
	.order-list-page .recurring-payments tr:last-child,
	.reward-points-history .data-table tr:last-child,
	.downloadable-products-page .data-table tr:last-child
	.wishlist-page tr:last-child,
	.cart tr:last-child {
		margin-bottom: 0;
	}

	.order-details-page .shipments td,
	.shipment-details-page .data-table td,
	.order-details-page .products td,
	.return-request-page .data-table td,
	.order-list-page .recurring-payments td,
	.reward-points-history .data-table td,
	.downloadable-products-page .data-table td,
	.wishlist-page td,
	.cart td {
		border-left: none !important;
		border-right: none !important;
		background-color: #fff;
		text-align: center;
	}


	.order-details-page .shipments td:first-child,
	.order-details-page .products td:first-child,
	.return-request-page .data-table td:first-child,
	.shipment-details-page .data-table td:first-child,
	.order-list-page .recurring-payments td:first-child,
	.reward-points-history .data-table td:first-child,
	.downloadable-products-page .data-table td:first-child,
	.wishlist-page td:first-child,
	.cart td:first-child {
		border-radius: 3px 3px 0 0 !important;
		border-top: 0 !important;
	}

	.order-details-page .shipments td:last-child,
	.order-details-page .products td:last-child,
	.shipment-details-page .data-table td:last-child,
	.return-request-page .data-table td:last-child,
	.order-list-page .recurring-payments td:last-child,
	.reward-points-history .data-table td:last-child,
	.downloadable-products-page .data-table td:last-child,
	.wishlist-page td:last-child,
	.cart td:last-child {
		border-radius: 0 0 3px 3px !important;
		border-bottom: 0;
	}


	.order-details-page .products td.unit-price,
	.cart td.unit-price,
	.wishlist-page td.unit-price {
		position: absolute;
		top: auto;
		right: auto;
		bottom: 35px;
		left: 0;
		float: left;
		background-color: #f6f6f6 !important;
		padding: 9px 10px 2px 20px;
		width: 65%;
		height: 35px;
		border-top: 1px solid #eee !important;
		border-bottom: 0 !important;
		text-align: left;
		overflow: hidden;
	}
	.order-details-page .products td.unit-price *,
	.cart td.unit-price *,
	.wishlist-page td.unit-price * {
		color: #8c8c8c !important;
		font-weight: 700 !important;
		font-size: 15px !important;
	}



	.order-details-page .products td.total,
	.order-details-page .products td.subtotal,
	.cart td.total,
	.cart td.subtotal,
	.wishlist-page td.total,
	.wishlist-page td.subtotal {
		position: absolute;
		bottom: 0;
		left: 0;
		right: auto;
		top: auto;
		background-color: #f6f6f6 !important;
		width: 62%;
		height: 35px;
		border: none !important;
		padding: 0px 10px 9px 20px;
		text-align: left;
		overflow: hidden;
	}

	.order-details-page .products td.total *,
	.order-details-page .products td.subtotal *,
	.cart td.total *,
	.cart td.subtotal *,
	.wishlist-page td.total *,
	.wishlist-page td.subtotal * {
		font-weight: 700 !important;
		color: #444 !important;
	}


	.order-details-page .products td.quantity,
	.cart td.quantity,
	.wishlist-page td.quantity {
		position: absolute;
		top: auto;
		right: 0;
		bottom: 0;
		width: 38%;
		height: 70px;
		padding: 20px 20px 20px 5px;
		overflow: hidden;
		border-top: 1px solid #eee !important;
		border-bottom: 0 !important;
		background-color: #f6f6f6 !important;
		text-align: right;
	}

	.order-details-page .products td.quantity,
	.cart td.quantity,
	.wishlist-page td.quantity {
		color: #8c8c8c !important;
	}

	.order-details-page .products td.quantity span,
	.cart td.quantity span,
	.wishlist-page td.quantity span {
		line-height: 30px;
	}


	td.shipment-id {
		background-color: #f6f6f6 !important;
	}

	td.quantity label.td-title {
		display: inline-block;
		max-width: calc(100% - 45px);
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}


	td label {
		color: #8c8c8c;
		font-weight: 300;
	}

	td .attributes {
		padding: 7px 0;
		margin: 0;
	}

	td.remove-from-cart,
	td.add-to-cart {
		padding: 10px;
		font-size: 0;
	}

	td.remove-from-cart input[type="checkbox"] + label,
	td.add-to-cart input[type="checkbox"] + label {
		font-size: 13px;
		text-transform: uppercase;
		font-weight: 700;
		user-select: none;
	}

	td.remove-from-cart input[type="checkbox"] + label:before,
	td.add-to-cart input[type="checkbox"] + label:before {
		vertical-align: bottom;
	}

	td.product-picture {
		padding: 4px !important;
		float: right;
		width: 90px;
		border: none !important;
	}

	td.product {
		border: none !important;
		padding: 15px;
	}

	td.product-picture + td.product {
		margin-right: 90px;
		text-align: right;
	}
}


@media all and (min-width: 768px) and (max-width: 1024px) {

	.order-details-page .products tr,
	.shipment-details-page .data-table tr,
	.return-request-page .data-table tr,
	.reward-points-history .data-table tr,
	.downloadable-products-page .data-table tr,
	.wishlist-page tr,
	.cart tr {
		display: inline-block;
		vertical-align: top;
		width: calc(50% - 10px);
		margin-right: 20px;
	}


	.order-details-page .products tr:nth-child(2n+1),
	.return-request-page .data-table tr:nth-child(2n+1),
	.shipment-details-page .data-table tr:nth-child(2n+1),
	.reward-points-history .data-table tr:nth-child(2n+1),
	.downloadable-products-page .data-table tr:nth-child(2n+1),
	.wishlist-page tr:nth-child(2n+1),
	.cart tr:nth-child(2n+1) {
		margin-right: 0;
	}

	.shipment-details-page .data-table,
	.return-request-page .data-table,
	.order-details-page .products .data-table,
	.account-page .cart,
	.account-page .data-table,
	.account-page .compare-products-table,
	.account-page .forums-table-section table,
	.wishlist-page .cart,
	.cart {
		text-align: right;
		font-size: 0;
	}

	.cart td.product,
	.data-table td.product,
	.data-table td.message,
	.data-table td.info,
	.data-table td.name,
	.forum-table td.forum-details,
	.forum-table td.topic-details {
		text-align: right;
	}


}


@media all and (min-width: 769px) and (max-width: 1600px) {


	.account-page .recurring-payments .data-table td label {
		display: inline-block;
	}

	.account-page .recurring-payments .data-table thead {
		display: none;
	}

	.account-page .recurring-payments .data-table tbody,
	.account-page .recurring-payments .data-table tr,
	.account-page .recurring-payments .data-table td {
		display: block;
	}


	.order-list-page .recurring-payments tr {
		display: inline-block;
		vertical-align: top;
		width: calc(50% - 12.5px);
		margin-right: 25px;
	}


	.order-list-page .recurring-payments tr:nth-child(2n+1) {
		margin-right: 0;
	}

}

@media all and (min-width: 1025px) and (max-width: 1600px)  {


	.order-list-page .recurring-payments td {
		border-left: none !important;
		border-right: none !important;
	}
	.order-list-page .recurring-payments td:first-child {
		border-radius: 3px 3px 0 0 !important;
		border-top: 1px solid #eee;
	}

	.compare-products-table td {
		vertical-align: top;
	}

	.cart td,
	.compare-products-table td,
	.forums-table-section td {
		font-size: 16px;
	}

	  .table {
        width: 100%;
        border-collapse: collapse;
        direction: rtl
    }

    .th,.td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: right
    }

    .th {
        background-color: #f2f2f2
    }



}

@media all and (max-width: 1024px) {

.header-upper .header-selectors-wrapper {
	display: none;
}

.desktop {
    display: none !important;
}
.category-navigation-title, .category-navigation-list-wrapper {
    display: none !important;
}

.admin-header-links {
	position: fixed;
	top: 0;
	z-index: 1030;
	width: 100%;
}
.responsive-nav-wrapper-parent {
	position: fixed;
	top: 0;
	z-index: 1020;
	width: 100%;
	background-color: #fff;
	border-bottom: 3px solid #eeeeee;
}

.admin-header-links ~ .responsive-nav-wrapper-parent {
	top: 35px;
}

.admin-header-links ~ .responsive-nav-wrapper-parent ~ .header {
	margin-top: 100px;
}

.header {
	margin-top: 65px;
}

.mobile-selector {
	overflow: hidden;
}

.header-selectors-wrapper > div {
	margin: 0;
	display: block;
	position: relative;
}

.profile-menu-box > a,
.selector-title {
	display: block;
	padding: 15px 20px;
	line-height: 18px;
    font-size: 13px;
    color: #8c8c8c;
    font-weight: 700;
	background-color: #f6f6f6;
	border-top: 3px solid #fff;
	cursor: pointer;
	text-transform: uppercase;
}

.selector-title:after {
	content: "\6a";
	display: inline-block;
	float: left;
	font-size: 9px;
	font-family: "emporium-icons";
	transform: rotate(90deg);
	text-transform: none;
	color: #8c8c8c;
	transition: all .3s ease;
}

.selector-title.open:after {
	transform: rotate(-90deg);
}

.mobile-collapse {
	display: none;
	background-color: #efefef;
	padding: 10px 0;
}

.header-selectors-wrapper > div input[type="radio"] {
	display: none;
}

.header-selectors-wrapper > div label {
	display: block;
	padding: 10px 38px;
	line-height: 18px;
	font-size: 14px;
	font-weight: 400;
}

.header-selectors-wrapper > div input[type="radio"]:checked + label {
	color: #97c300;
}

.header-selectors-wrapper > div input[type="radio"] + label:before {
	content: none;
	display: none;
} 


/* RESPONSIVE NAV WRAPPER */

.responsive-nav-wrapper {
	position: relative;
	padding: 11px 0;
	background-color: #fff;
	text-align: center;
	font-size: 0;
	width: calc(100% - 20px);
	margin: 0 auto;
}

.header-logo {
	display: none;
}

.mobile-logo {
	position: relative;
	display: inline-block;
	text-align: center;
	max-width: calc(100% - 180px);
}

.mobile-logo .logo {
	position: relative;
	display: block;
	max-width: 100%;
	height: 40px;
	width: 200px;
	margin: 0 auto;
}

.mobile-logo img {
	position: absolute;
	display: inline-block;
	width: auto;
	max-width: 100%;
	max-height: 100%;
	height: auto;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.responsive-nav-wrapper:after {
	content: "";
	display: block;
	clear: both;           
}

.responsive-nav-wrapper > div {
	position: relative;
	display: inline-block;
	vertical-align: top;
}

.responsive-nav-wrapper > div > span,
.responsive-nav-wrapper > div > a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 0;
	cursor: pointer;
}

.responsive-nav-wrapper > div > span:before,
.responsive-nav-wrapper > div > a:before {
	display: inline-block;
	font-family: "emporium-icons";
	font-size: 18px;
	color: #8e8e8e;
}

.responsive-nav-wrapper .menu-title span:before {
	content: "\67";
}

.responsive-nav-wrapper .search-wrap span:before {
	content: "\65";
}

.shopping-cart-link > a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 0;
}
.shopping-cart-link > a:before {
	content: "\64";
	display: inline-block;
	font-family: "emporium-icons";
	font-size: 24px;	
}

.shopping-cart-link .cart-qty {
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
	background-color: #97c300;
	font-size: 10px;
	height: auto;
	padding: 0 1px;
	width: auto;
	min-width: 15px;
	min-height: 15px;
	line-height: 15px;
	border-radius: 50%;
	color: #fff;
}

.responsive-nav-wrapper .menu-title,
.responsive-nav-wrapper .search-wrap {
	float: right;
}

.responsive-nav-wrapper .shopping-cart-link,
.responsive-nav-wrapper .personal-button {
	float: left;
}


/* RESPONSIVE MENU */

.overlayOffCanvas {
    display: none;
    position: fixed;
    top: 0;
	right: 0;
    bottom: 0;
	left: 0;
	z-index: 1060;
    background-color: rgba(0,0,0,0);
    transition: background 0.3s ease;
}
.overlayOffCanvas.show {
	background-color: rgba(0,0,0,0.4);
}
.scrollYRemove {
    overflow: hidden !important;
    -ms-touch-action: none !important;
    -webkit-overflow-scrolling: touch !important;
}
.header-menu.ps-container .ps-scrollbar-y-rail {
    visibility: hidden !important; /*scroll is active, but invisible*/
}
	
.header-menu,
.profile-menu-box,
.store-search-box {
	position: fixed;
	top: 0;
	right: -100%;
	width: 320px;
	max-width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #fff;
	text-align: right;
	margin-top: 0 !important;
    opacity: 1;
    padding: 0;
    border-radius: 0;
    pointer-events: auto;
	transition: all 0.3s ease;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	box-shadow: none;
	z-index: 1070 !important;
}

.store-search-box {
	width: 400px;
}
   
.header-menu.open,
.profile-menu-box.open,
.store-search-box.open {
	right: 0;
}
.header-menu .close-menu,
.close-side-menu,
.mobile-flyout-wrapper .close-side-menu {
	display: block;
	padding: 15px 20px;
	background-color: #97c300;
	color: #fff;
}

.close-menu span,
.close-side-menu span {
	display: inline-block;
	line-height: 17px;
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
}

.close-menu .close-menu-text,
.close-side-menu .close-side-menu-text {
	font-weight: 700;
	letter-spacing: 1px;
}

.close-menu .close-menu-btn,
.close-side-menu-btn {
	float: left;
	font-size: 0 !important;
}

.close-menu-text:before,
.close-side-menu-text:before {
	content: "\67";
	display: inline-block;
	margin-left: 15px;
    font-family: "emporium-icons";
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0;
    color: #fff !important;
    text-transform: none;
    vertical-align: bottom;

}

.profile-menu-box .close-side-menu-text:before {
	content: "\61";
}

.store-search-box .close-side-menu-text:before {
	content: "\65";
}

.close-menu-btn:before,
.close-side-menu-btn:before {
	content: "\7a";
	display: inline-block;
	margin: 0 !important;
	font-family: "emporium-icons";
	text-transform: none;
	font-size: 16px;
	color: #fff !important;
	vertical-align: bottom;
}

.header-menu .all-categories,
.header-menu .all-categories li {
	background-color: #f6f6f6;
}
.header-menu > ul li:after {
	content: "";
	display: block;
	clear: both;
}
.header-menu > ul li > a,
.header-menu > ul li > span,
.profile-menu-box > a,
.header-form-holder > a {
	display: block;
	position: relative;
	z-index: 0;
	padding: 16px 18px !important;
	font-size: 13px;
	line-height: 17px;
	color: #8c8c8c;
	font-weight: 700;
	text-transform: uppercase;
}

.header-menu > ul li {
	border-bottom: 3px solid #fff;
}

.header-menu .top-menu > li {
	border-bottom: 0;
}


.header-menu > ul li:last-child,
.header-menu > ul li:last-child,
.header-menu > ul li.back-button {
	border-bottom: 0;
} 
.header-menu > ul li > .with-subcategories {
	float: right; 
	width: calc(100% - 50px);
}

.header-menu .all-categories > span {
	float: right; 
	width: calc(100% - 50px);
	cursor: default;
}

.header-menu .all-categories > span:before {
    content: "\66";
    display: inline-block;
    margin-left: 10px;
    font-size: 17px;
    vertical-align: bottom;
    font-family: "emporium-icons";
    color: #8c8c8c;
    font-weight: normal;
    text-transform: none;
    transition: all .2s ease;
}


.plus-button {
	position:relative;
	z-index: 1;
	float: left;
	width: 50px;
	height: 50px;
	cursor: pointer;
}

.plus-button:before {
	content: "\6b";
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-family: "emporium-icons";
	font-size: 10px;
	color: #8c8c8c;
}

.ico-compare,
.ico-wishlist {
	display: block;
    padding: 15px 20px;
    line-height: 18px;
    font-size: 13px;
    font-weight: 700;
    color: #8c8c8c;
    background-color: #f6f6f6;
    border-top: 3px solid #fff;
    cursor: pointer;
    text-transform: uppercase;
}


.ico-compare:before,
.ico-wishlist:before {
	display: inline-block;
	font-family: "emporium-icons";
	margin-left: 10px;
	font-size: 17px;
	color: #8e8e8e;
	font-weight: normal;
	text-transform: none;
	vertical-align: bottom;
}


/* NEW ACCOUNT STYLING */

.personal-button {
	position: static !important;
}

/* END ACCOUNT STYLING */

.wishlist-qty {
	display: none;
}
.header-menu {
	overflow-y: auto;
}
.header-menu .sublist-wrap {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 2;
	width: 320px;
	height: 100%;
	box-shadow: 1px 0 5px rgba(0,0,0,0.5); 
	overflow-y: auto;
	background-color: #fff !important;
	transition: all 0.3s ease;
}
.header-menu .sublist-wrap {
	right: -100%;
}
.header-menu .sublist-wrap.active {
	right: 0;
}
.header-menu ul li.back-button {
	background-color: #97c300;
}
.header-menu .back-button span {
	padding: 15px 20px !important;
	text-align: left;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
}

.header-menu .back-button span:before {
	content: "\6a";
	display: inline-block;
	margin-left: 10px;
	font-family: "emporium-icons";
	font-size: 10px;
	text-transform: none;
}


/*********** MOBILE FLYOUT CART ************/

.mobile-flyout-wrapper .close-side-menu-text:before {
	content: "\64";
}

.mobile-flyout-wrapper .flyout-cart-scroll-area {
	max-height: calc(100vh - 97px);
	overflow-y: scroll;
}

.mobile-flyout-wrapper {
	position: fixed;
	top: 0;
	right: -100%;
	width: 400px;
	max-width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #fff;
	text-align: right;
	margin-top: 0 !important;
	opacity: 1;
	padding: 0;
	border-radius: 0;
	pointer-events: auto;
	transition: all 0.3s ease;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	box-shadow: none;
	z-index: 1070 !important;
}

.mobile-flyout-wrapper.open {
	right: 0;
}

.mobile-flyout-wrapper .close-side-menu {
	display: block;
}



/******** LOGIN FORM IN HEADER ********/


.profile-menu-box.login-form-in-header {
	padding: 0;
	width: 320px;
}

.login-form-in-header form {
	padding: 20px 20px 0;
}



/* SEARCH BOX */

.search-box form {
	padding: 20px;
}

.search-box input.search-box-text {
	width: calc(100% - 45px);
	padding: 0 15px 0 5px;
}

.ui-autocomplete {
	width: calc(100% - 40px) !important;
}


/* HEADER LINKS */

#topcartlink {
	display: none;
}

.header-links-wrapper .header-links > ul {
	display: none;
}
.header-links-wrapper.open {
	display: block;
}

/* ACCOUNT PAGES */




.html-account-page .block {
	float: none;
	width: auto;
	text-align: center;
}
.html-account-page .block .listbox {
	display: block !important;
}


.item-box .btn-wrapper {
	display: none !important;
}


}








@media all and (min-width: 481px) {
	
/* GLOBAL STYLES */

.side-2:after {
	content: "";
	display: block;
	clear: both;
}

/* FOOTER */

.footer-middle {
	text-align: center;
	font-size: 0;
}

.footer-block {
	display: inline-block;
	border-bottom: 0;
	width: 31.33%;
	margin: 0 1%;
	vertical-align: top;
}

.footer-block .title {
	padding: 0 15px 5px;
	border: none;
}

.footer-block:first-child {
	border-top: none;
}

.footer-block ul {
	display: block;
	background-color: transparent;
}
.footer-block .title:before,
.footer-block .title:after {
	display: none;
}

.social-icons {
	padding-top: 35px;
	border-top: 1px solid #eeeeee;
}

.newsletter-email  {
	max-width: 355px;
}

/* LEFT/RIGHT COLUMN */

.block {
	float: right;
	width: 48%;
	margin: 0 1% 2%;
	text-align: right;
}

.block:nth-of-type(2n+1) {
	clear: right;
}


.block .tags li,
.product-tags-all-page li {
	margin: 0 5px;
}



/* CATEGORY PAGE & GRIDS */

.item-box {
	width: 32%;
	text-align: center;
}

.item-box:nth-child(2n+1) {
	margin-right: 2%;
	clear: none;
}

.item-box:nth-child(3n+1) {
	margin-right: 0;
	clear: both;
}



/* PRODUCT PAGE */

.attributes-wrapper {
	max-width: 560px;
	margin: 0 auto 30px;
}

.product-additional  {
	margin: 0 -10px 60px;
}

.attributes select + .qty-box {
	margin-top: 0;
	vertical-align: top;
}


/* REVIEW PAGE */
/* WISHLIST & COMPARE LIST */
/* TOPICS */

.enter-password-form input[type="password"] {
	width: 300px !important;
}

/* CONTACT PAGE & EMAILaFRIEND */
/* REGISTRATION, LOGIN, MY ACCOUNT */

.login-page .title strong,
.registration-page .title strong {
	font-size: 18px;
}
.date-of-birth .date-picker-wrapper select {
	padding: 0 35px 0 20px;
	background: #fff url(../Themes/Emporium/Content/img/select-arrow-dark.svg) no-repeat left 15px center;
}

.account-page {
	padding: 40px 20px;
}

.customer-info-page .page-body,
.change-password-page .page-body,
.check-gift-card-balance-page .page-body,
.avatar-page .page-body,
.address-edit-page .page-body,
.vendorinfo-page .page-body {
	padding: 50px;
}

.date-of-birth .date-picker-wrapper select,
.date-of-birth .date-picker-wrapper select:first-child,
.date-of-birth .date-picker-wrapper select:last-child {
	width: 33.33%;
}

.address-item .title,
.order-item .title,
.request-item .title {
	text-align: center;
}

.address-item:first-child,
.add-button:first-child,
.order-item:first-child,
.request-item:first-child {
	margin-top: 0;
}


/* SHOPPING CART & CHECKOUT */


.cart-collaterals > div > .list {
	padding: 30px;
}

.order-review-data,
.order-details-area,
.shipment-details-area {
	font-size: 0;
	margin: 0 0 30px;
	text-align: center;
}
.order-review-data > div,
.order-details-area > div,
.shipment-details-area > div {
	display: inline-block;
	vertical-align: top;
	width: calc(50% - 12.5px);
	margin-right: 25px;
	max-width: 590px;
}

.order-review-data > div:nth-child(2n + 1),
.order-details-area > div:nth-child(2n + 1),
.shipment-details-area > div:nth-child(2n + 1) {
	margin-right: 0;
}

.checkout-page .edit-address {
	padding: 40px 20px 0;
}


.payment-logo {
	display: inline-block;
	margin: 0 0 0 15px;
	vertical-align: middle;
}


.payment-logo + .payment-details {
	display: inline-block;
	vertical-align: middle;
	max-width: calc(100% - 90px);
}

.shipping-method .method-list li,
.payment-method .method-list li {
	padding: 22px 85px 22px 22px;
}
.shipping-method .method-list input[type="radio"] + label:before,
.shipping-method .method-list input[type="checkbox"] + label:before,
.payment-method .method-list input[type="radio"] + label:before,
.payment-method .method-list input[type="checkbox"] + label:before {
	right: 35px;
}


/* SEARCH PAGE & SITEMAP */
/* BLOG & NEWS */
/* FORUM & PROFILE */



.forum-actions .actions a,
.forum-actions .actions a:nth-child(2n+1) {
	padding: 0 20px;
	margin: 0 3px;
	width: auto;
}

.topic-post .post-info {
	padding: 30px 30px 25px;
}

.topic-post .avatar {
	width: 160px;
}

.topic-post .user-info {
	padding-right: 175px;
	min-height: 160px;
}

.topic-post .username {
	margin: 5px 0;
}
.topic-post .post-content {
	padding: 0 30px 30px;
}


.topic-post .post-vote > span {
	width: 30px;
}
 .table {
        width: 100%;
        border-collapse: collapse;
        direction: rtl
    }

    .th,.td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: right
    }

    .th {
        background-color: #f2f2f2
    }

}


@media all and (min-width: 768px) {

/* GLOBAL STYLES */
.master-wrapper-content,
.html-account-page .master-wrapper-content {
	padding: 60px 20px;
}

.page {
	clear: both;
	text-align: right;
}
.link-rss {
	display: block;
	float: left;
	margin: 5px 0 0;
}

/* NOTIFICATIONS & POPUPS */

.eu-cookie-bar-notification {
	padding: 50px;
}

.bar-notification {
	padding: 14px 40px 14px 20px;
}

.bar-notification .content {
	font-size: 17px;
	line-height: 32px;
}

/* LEFT/RIGHT COLUMN */

.center-2 {
	margin: 0 0 50px;
}

.block {
	width: 31.3333%;
	margin: 0 1% 2%;
}
.block:nth-of-type(2n+1) {
	clear: none;
}
.block:nth-of-type(3n+1) {
	clear: right;
}

/* CATEGORY PAGE & GRIDS */

.two-row-carousels {
	padding: 0 10px;
}

.home-page .topic-block-body {
	padding: 0 20px;
}

.vendor-item .title a,
.manufacturer-item .title a,
.category-grid .item-box .title a {
	padding: 19px 15px;
}

.home-page .topic-block-title h2,
.product-grid .title,
.news-list-homepage .title,
.home-page-polls .title {
	font-size: 30px;
}

.shopping-cart-page .product-grid .title {
	font-size: 26px;
}

.item-box .product-title, .item-box .title {
	padding: 0 10px;
}

.home-page-advantages {
	font-size: 0;
}

.advantages-item {
	display: inline-block;
	width: calc(50% - 2.5px);
	margin: 0 5px 5px 0;
}

.advantages-item:nth-child(2n+1) {
	margin-right: 0;
}
.advantages-item:only-child {
	width: 100%;
	margin: 0; 
}


.news-list-homepage:after {
	content: "";
	display: block;
	clear: both;
}

.news-list-homepage .news-item {
	float: right;
	padding: 30px;
	width: 49.3%;
	margin-right: 1.4%;
}

.news-list-homepage .news-item:nth-child(2n+1) {
	margin-right: 0;
	clear: right;
}


.breadcrumb {
	margin: 0 0 5px;
}

.page-title,
.category-description,
.manufacturer-description,
.vendor-description {
	text-align: center;
}


.item-box .picture {
	position: relative;
	backface-visibility: hidden;
}

.item-box .btn-wrapper {
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	min-width: 130px;
	pointer-events: none;
	transition: opacity .2s ease;
}

.item-box:hover .btn-wrapper {
	opacity: 1;
	pointer-events: auto;
}


.item-box .buttons {
	display: block;
}


.item-box .product-rating-box {
	margin-bottom: 12px;
}

.item-box .prices > *:last-child:not(:empty) {
	margin-bottom: 19px;
}


.pager li {
	margin: 0 2px;
}

/* PRODUCT PAGE */

.product-details-page {
	text-align: center;
}

.full-description,
.product-specs-box {
	margin: 0 -20px;
	padding: 40px 30px;
}

.full-description + .product-collateral .product-specs-box {
	padding-top: 0;
	padding-bottom: 40px;
}


.product-tags-box {
	margin-top: 60px;
}

.attributes-wrapper > div.product-prices-box,
.attributes-wrapper > div.tier-prices {
	padding: 0;
}

.overview-buttons {
	text-align: right;
}
.overview-buttons div {
	margin: 0 0 10px 10px;
}
.overview .qty-label,
.variant-overview .qty-label {
	position: static;
	right: 0;
	margin: 0 0 0 5px;
}
.variant-picture {
	float: right;
}
.variant-picture + .variant-overview {
	width: auto;
	text-align: right;
	margin: 0 350px 0 0;
}

.variant-overview .tax-shipping-info {
	text-align: right;
}

.product-variant-line .attributes-wrapper,
.product-variant-line .attributes {
	padding: 0;
}


.product-variant-line .attributes dt,
.product-variant-line .attributes dd {
	text-align: right;
}

.product-variant-line .attributes-wrapper > div {
	margin-right: 0;
}

.tier-prices .table-wrapper {
	border: 1px solid #e7e7e7;
	border-radius: 3px;
}

.tier-prices .prices-table {
	display: table;
	width: 100%;
	border: none;
	border-collapse: collapse;
}
.tier-prices .prices-row {
	display: table-row;
	border-top: 1px solid #e7e7e7;
	float: none;
	width: auto;
}
.tier-prices .prices-row:first-child {
	border-top: 0;
}
.tier-prices .tbody {
	border-right: none;
}

.tier-prices .prices-row > div {
	display: table-cell;
}
.tier-prices .field-header {
	min-width: 100px;
}

.rental-attributes dt {
	min-width: 75px;
}

.attribute-squares {
	text-align: center;
}
.attribute-squares li {
	margin: 0 0 10px 10px;
}
.attributes-wrapper > div.tier-prices {
	max-width: none;
}



/* REVIEW PAGE */

.write-review-collapse {
	padding: 40px 60px;
}


/* TABLES */



/* WISHLIST & COMPARE LIST */


.share-info,
.tax-shipping-info,
.wishlist-content .buttons {
	text-align: center;
}

.wishlist-content .button-2 {
	display: inline-block;
	margin: 0 3.5px 7px;
}

.wishlist-content .wishlist-add-to-cart-button {
	display: block;
	width: 517px;
	margin: 0 auto;
}

.wishlist-content .button-2,
.wishlist-content .wishlist-add-to-cart-button {
	display: inline-block;
	min-width: 200px;
	width: auto;
	margin: 0 3.5px;
	font-weight: 700;
}

.wishlist-page .share-info {
	margin: 70px -20px 50px;
}

.compare-products-page img {
	width: 100%;
	max-width: 280px;
}

.compare-products-mobile {
	margin: 0 -20px;
}

.compare-products-table td {
	padding: 20px 10px;
	font-size: 15px;
	color: #8c8c8c;
	font-weight: 400;
	text-align: center;
}

.compare-products-table .remove-product td {
	padding: 0;
}
.compare-products-table .product-price td {
	color: #97c300;
	font-size: 17px;
	font-weight: 700;
}

.compare-products-table .product-name td {
	font-size: 16px;
	font-weight: 700;
}

.compare-products-table .product-picture td {
	padding: 10px;
}

.compare-products-table .remove-product td {
	position: relative;
	text-align: left;
}

.compare-products-table .remove-product td button {
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 1;
}

.compare-products-table .product-name td a {
	color: #444;
}

.compare-products-table tr td:first-child {
	padding: 20px;
	min-width: 170px;
	max-width: 170px;
	color: #8c8c8c;
	font-size: 17px;
	background-color: #f6f6f6;
	text-align: left;
	font-weight: 300;
}

.compare-products-table tr td.empty:first-child {
	padding: 0;
	font-size: 0;
}

.compare-products-table .full-description {
	display: none;
}
.compare-products-table-mobile img {
	max-width: 160px;
}


/* TOPICS */
/* CONTACT PAGE & EMAILaFRIEND */

.registration-page,
.private-messages,
.email-a-friend-page,
.contact-page,
.apply-vendor-page,
.forum-edit-page,
.registration-page .page-title,
.private-messages .page-title,
.email-a-friend-page .page-title,
.contact-page .page-title,
.apply-vendor-page .page-title,
.forum-edit-page .page-title {
	text-align: center;
}

.private-messages-page button + button {
	margin-top: 0;
}

.ui-tabs .ui-tabs-panel {
	margin: 0 -20px;
	padding: 50px 6vw;
}

.private-messages-page td.date,
.private-messages-page th.date {
	white-space: nowrap;
	width: 20%;
}


/* REGISTRATION, LOGIN, MY ACCOUNT */

.customer-info-page .page-body,
.change-password-page .page-body,
.check-gift-card-balance-page .page-body,
.avatar-page .page-body,
.address-edit-page .page-body,
.vendorinfo-page .page-body,
.form-style {
	padding: 50px 65px;
}

.login-page .external-authentication > * {
	margin: 30px -20px 0;
	width: calc(100% + 40px);
}


.account-page #Username,
.registration-page #Username {
	max-width: calc(100% - 200px);
}

#check-availability-button {
	position: absolute;
	top: 30px;
	left: 0;
	right: auto;
	width: 190px;
	margin: 0;
	float: none;
	clear: none;
}

.address-list,
.order-list,
.return-request-list-page .page-body {
	font-size: 0;
}

.address-item,
.add-button,
.order-item,
.request-item,
.address-grid > div {
	display: inline-block;
	width: calc(50% - 12.5px);
	margin: 25px 25px 0 0;
	text-align: center;
}

.address-item:nth-child(2),
.order-item:nth-child(2),
.request-item:nth-child(2),
.address-grid > div:nth-child(2) {
	margin-top: 0;
}
.address-item:nth-child(2n+1),
.order-item:nth-child(2n+1),
.request-item:nth-child(2n+1),
.address-grid > div:nth-child(2n+1) {
	margin-right: 0;
}

 .checkout-page .address-grid .add-button:only-child {
    display: block !important;
    margin-right: auto !important;
    margin-left: auto;
    float: none;
}

/* SHOPPING CART & CHECKOUT */

.cart-collaterals:after{
	content: "";
	display: block;
	clear: both;
}

.cart-collaterals > div {
	float: right;
	width: calc(50% - 5px);
	margin: 0 10px 10px 0;
}

.cart-collaterals > div:nth-child(2n+1) {
	margin-right: 0;
}

.shopping-cart-page .common-buttons {
	text-align: center;
}

.shopping-cart-page .common-buttons button {
	display: inline-block;
	margin: 0 3.5px 7px;
}

.cart-options {
	text-align: left;
}
.cart-options .common-buttons button {
	margin: 0 10px 0 0;
}

.cart-options .checkout-attributes {
	padding: 40px;
}
.cart-options .attribute-squares {
	text-align: right;
}
.cart-options dd:last-child {
	margin-bottom: 0;
}

.order-details-page .options,
.order-details-page .tax-shipping-info {
	text-align: center;
}
.order-details-page .total-info {
	overflow: hidden;
}

.order-details-page .actions {
	text-align: center;
}
.order-details-page .actions button {
	min-width: 0;
}

.order-progress {
	overflow: hidden;
	padding-top: 10px;
	margin: -40px 0 50px;
}

.order-progress a {
	padding: 0 5px;
	margin-bottom: 40px;
	width: 120px;
	height: 70px;
}

.order-progress a span {
	position: absolute;
	display: block;
	top: 80px;
	right: 0;
	width: 100%;
	text-align: center;
	font-size: 13px;
	color: #8c8c8c;
	font-weight: 700;
	text-transform: uppercase;
}

.order-progress .inactive-step span {
	color: #b7b7b7;
}

.order-progress .active-step.last a span {
	color: #97c300;
}

.order-progress .active-step.last a:before {
	font-size: 22px;
	width: 65px;
	height: 65px;
	line-height: 57px;
}


/* SEARCH & SITEMAP */

.search-page .search-input form {
	margin: 0 -20px 40px;
	padding: 45px 0;
}


/* BLOG & NEWS */



.center-2 .news-items:after,
.center-2 .blog-page:after {
	content: "";
	display: block;
	clear: both;
}

.center-2 .blog-page .post,
.center-2 .news-items .news-item {
	float: right;
	width: calc(50% - 15px);
	margin: 0 30px 30px;
}

.center-2 .blog-page .post-details,
.center-2 .news-items .news-item {
	padding: 40px;
}

.center-2 .blog-page .post:nth-child(2n+1),
.center-2 .news-items .news-item:nth-child(2n+1) {
	margin-right: 0;
	clear: right;
}

.blogpost-page .post-body, .news-item-page .news-body {
	padding: 0 0 20px;
	margin: 0 auto 20px;
}

.blogpost-page .post-body p {
	padding: 0 20px;
}


.blog-page .tags,
.blogpost-page .tags {
	text-align: center;
}

.blogpost-page,
.news-item-page {
	text-align: center;
}


.post-date, .news-date {
	text-align: center;
}


.new-comment, .comment-list {
	margin-right: -20px;
	margin-left: -20px;
}

.comment-list {
	padding: 0 20px 50px;
}

.new-comment {
	text-align: center;
}

.new-comment textarea {
	width: 500px;
}

.comment-list .comment {
	position: relative;
	padding: 35px;
}

.comment-info {
	float: right;
	margin: 0;
}

.comment-info .avatar {
	width: 125px;
	height: 125px;
}

.name-and-time {
	position: absolute;
	top: 35px;
	right: 180px;
	width: auto;
	margin-right: 0;
}

.comment-info + .comment-content {
	margin: 55px 145px 0 0;
}

/* FORUM & PROFILE */


.forum-name h1 {
	margin: 0 40px;
}

.forums-main-page .topic-block-title h2 {
	font-size: 30px;
}

.forums-table-section-title .link-rss {
	float: left;
	margin: 0;
}
.forums-table-section .view-all {
	text-align: center;
}

.forum-actions .pager.upper {
	display: block;
}

.topic-actions .actions a,
.topic-actions .actions a.edit-topic-button {
	display: inline-block;
	width: auto;
	padding: 0 18px;
	margin: 0 2.5px;
}

.topic-actions .actions a:nth-child(2n) {
	margin-right: 3px;
}


.forum-topic-page .topic-options {
	float: right;
}

.topic-post .quote, .latest-posts .quote {
	padding: 15px 25px;
}

.forum-search-page .advanced-search {
	margin: 0 auto 30px;
	padding: 35px 30px 40px;
}




.private-message-view-page .message-head li {
	display: inline-block;
	margin-left: 20px;
}

.private-message-view-page .message-head span:after {
	content: "|";
	margin: 0 25px 0 0;
}
.private-message-view-page .message-head li:last-child span:after {
	content: none;
}

.private-message-view-page .buttons button {
	display: inline-block;
	margin: 0 5px;
	width: auto;
	width: 25%;
	max-width: 220px;
}

.profile-info-box {
	padding: 40px;
}

.profile-page .topic {
	padding: 33px 50px;
	overflow: hidden;
}

.profile-page .topic-title,
.profile-page .topic-data {
	float: right;
	width: 22%;
	clear: both;
}

.profile-page .topic-body {
	margin-right: 24%;
}
 .table {
        width: 100%;
        border-collapse: collapse;
        direction: rtl
    }

    .th,.td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: right
    }

    .th {
        background-color: #f2f2f2
    }
/* עיצוב רספונסיבי לסרטוני יוטיוב */
.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* יחס 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

}

@media all and (min-width: 1025px) {

/* GLOBAL STYLES */

.mobile {
	display: none !important;
}

.admin-header-links {
	float: right;
	font-size: 12px;
    background: none;
	color: #bbb;
}
.admin-header-links:only-child {
	float: none;
	display: block;
}
.admin-header-links a,
.admin-header-links span {
	line-height: 30px;
    font-weight: normal;
	transition: 0.2s ease;
}
.admin-header-links a:hover {
	color: #fff;
}

.product-grid,
.category-grid,
.topic-block,
.news-list-homepage {
	margin: 0 auto 50px;
}

.product-grid:last-child,
.category-grid:last-child,
.topic-block:last-child,
.news-list-homepage:last-child {
	margin-bottom: 0;
}
.center-2 .category-grid {
	margin: 0 0 30px;
}

.center-2 .product-grid,
.center-2 .category-grid,
.center-2 .topic-block {
	width: 100%;
}

.category-description,
.manufacturer-description,
.vendor-description {
	margin: 0 0 30px;
}

.center-2 {
	margin: 0 0 50px 0;
	float: left;
	width: 70%;
}
.side-2 {
	border: 1px solid #eeeeee;
	float: right;
	width: 27%;
}
.inputs {
	text-align: right;
}

/* HEADER */

.header {
	position: relative;
	z-index: 1020;
	margin: 0 auto;
	text-align: right;
}

.header-upper {
	background-color: #444444;
	text-align: left;
}

.header-selectors-wrapper:after {
	content: "";
	display: block;
	clear: both;
}
.header-selectors-wrapper select {
	padding: 0 0 0 15px;
	background: transparent;
	border: none;
	color: #ababab;
	height: 30px;
	font-size: 13px;
	min-width: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.currency-selector.desktop,
.language-selector.desktop .select-wrap,
.tax-display-type-selector {
	position: relative;
}

.currency-selector.desktop:before,
.language-selector.desktop .select-wrap:before,
.tax-display-type-selector .select-wrap:before {
	content: "\6b";
	position: absolute;
	top: 50%;
	right: auto;
	left: 0;
	transform: translateY(-50%) rotate(-90deg);
	display: inline-block;
	font-family: "emporium-icons";
	font-size: 7px;
	color: #ababab;
	pointer-events: none;
}

.header-selectors-wrapper,
.header-lower {
	width: calc(100% - 110px);
	margin: 0 auto;
}

.header-menu {
	padding: 0 55px;
}

.all-categories {
	display: none !important;
}

.header-menu:after {
	content: "";
	display: block;
	clear: both;
}

.header-menu > ul {
	float: left;
}

.header-menu-parent {
	font-size: 0;
}

.category-navigation-list-wrapper {
	display: inline-block;
	position: relative;
	border-left: 3px solid #fff;
	overflow: hidden;
}

.category-navigation-list-wrapper * {
	font-size: 0;
}

.category-navigation-list {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 10px;
	padding: 10px 0;
	border: 1px solid #eeeeee;
	opacity: 0;
	pointer-events: none;
	width: 100%;
	background-color: #fff;
	transition: all .3s ease;
	z-index: 1099;
	box-shadow: 0 0 15px rgba(0,0,0,.1);
}

.category-navigation-list > li > .sublist-wrap {
	margin-top: -16px;
}

.category-navigation-list > li > .sublist-wrap .sublist-wrap {
	margin-right: -1px;
} 

.category-navigation-list-wrapper .sublist-wrap {
    position: absolute;
	font-size: 0;
	top: 0;
	right: 100%;
	margin: 0;
	width: 0 !important;
	border: none;
	padding: 15px 0;
	background: url(../Themes/Emporium/Content/img/shadow-top.png) top right repeat-x, url(../Themes/Emporium/Content/img/shadow-bottom.png) bottom right repeat-x;
	pointer-events: none;
	overflow: hidden;
	transition: all .3s ease;
}


.category-navigation-list-wrapper .sublist-wrap .sublist {
	border: 1px solid #eeeeee;
	border-width: 1px 0;
	padding: 10px 0;
	background-color: #fff;
}

.category-navigation-list .plus-button {
	display: none;
}

.category-navigation-list-wrapper .sublist > li {
	opacity: 0;
}

.category-navigation-list-wrapper ul li a,
.category-navigation-list-wrapper ul li > span {
	position: relative;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 0 20px 0 35px;
	height: 40px;
	line-height: 40px;
	color: #8c8c8c;
	font-size: 15px;
	font-weight: bold;
	transition: all .2s ease;
}
.category-navigation-list-wrapper ul li span {
	font-size: 15px;
}

.category-navigation-list-wrapper ul li:hover > .sublist-wrap {
	opacity: 1;
	pointer-events: auto;
	overflow: visible;
	width: 100% !important;
}

.category-navigation-list-wrapper ul li:hover > .sublist-wrap > .sublist {
	border-width: 1px;
}

.category-navigation-list-wrapper ul li:hover > .sublist-wrap > .sublist > li {
	opacity: 1;
	transition: all .1s ease-in .3s;

}

.category-navigation-list-wrapper ul li:hover > a,
.category-navigation-list-wrapper ul li:hover > span {
	background-color: #f6f6f6;
	color: #97c300;
}

.category-navigation-list-wrapper ul li:hover > a:after {
	color: #97c300;
}

.category-navigation-title {
	position: relative;
	z-index: 1100;
	display: block;
	width: 280px;
    padding: 0 15px;
    line-height: 50px;
    height: 50px;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    color: #444444;
    font-weight: bold;
    transition: all .2s ease;
}

.category-navigation-title:before {
	content: "\66";
	display: inline-block;
	margin-left: 10px;
	font-size: 17px;
	vertical-align: bottom;
	font-family: "emporium-icons";
    color: #8c8c8c;
    font-weight: normal;
	text-transform: none;
    transition: all .2s ease;
}

.category-navigation-list-wrapper:hover {
	overflow: visible;
}

.category-navigation-list-wrapper:hover .category-navigation-title {
	background-color: #eebe00;
	color: #fff;
}

.category-navigation-list-wrapper:hover .category-navigation-title:before {
	color: #fff;
}

.category-navigation-list-wrapper:hover .category-navigation-list {
	margin-top: 0;
	opacity: 1;
	pointer-events: auto;
}

.category-navigation-list-wrapper .with-subcategories:after {
	content: "\6b";
	position: absolute;;
	top: 50%;
	left: 20px;
	right: auto;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-family: "emporium-icons";
	font-size: 8px;
	color: #8e8e8e;
}


.header-lower {
	padding: 20px 0 18px;
	text-align: center;
	font-size: 0;
}

.header-lower:after {
    content: '';
    display: block;
    clear: both;
}

.header-logo {
	float: right;
    width: 25%;
    text-align: right;
    padding-left: 10px;
}

.header-links-wrapper {
	float: left;
    width: 35%;
	margin-bottom: 0;
    text-align: left;
}

.header-links {
    display: table;
    width: 100%;
}

.header-links ul {
    font-size: 0;
    padding-right: 10px;
    display: inline-table;
}

.header-links li {
	position: relative;
    display: table-cell;
    text-align: center;
    vertical-align: top;
}

.header-links li + li {
    padding-right: 10px;
}

.header-links a {
	display: inline-block;
	font-size: 13px;
	color: #8c8c8c;
	transition: color .2s ease;
}

.header-links .profile-menu-box .ico-inbox {
	font-size: 0;
}

.header-links .profile-menu-box span:before,
.header-links .profile-menu-box a:before {
	font-size: 17px;
	margin: 0 0 0 7px;
}

.header-links span:before,
.header-links a:before {
	display: block;
	margin-bottom: 4px;
	font-family: "emporium-icons";
	font-size: 24px;
	color: #8e8e8e;
	transition: color .2s ease;
}

.header-links a.ico-cart:before {
	font-size: 26px;
}

.header-links a:hover,
.header-links a:hover:before {
	color: #97c300;
}

.ico-wishlist .wishlist-qty,
.ico-cart .cart-qty {
	position: absolute;
	display: inline-block;
	top: -5px;
	left: 50%;
	-webkit-transform: translateX(-50%) translateX(-25px);
	-ms-transform: translateX(-50%) translateX(-25px);
	transform: translateX(-50%) translateX(-25px);
	background-color: #97c300;
	font-size: 10px;
	height: auto;
	padding: 0 3px;
	width: auto;
	min-width: 15px;
	min-height: 15px;
	line-height: 15px;
	border-radius: 20px;
	color: #fff;
	text-align: center;
}

.ico-cart .cart-label {
	font-weight: bold;
	display: inline-block;
	height: 15px;
	white-space: nowrap;
}

.header-logo {
	float: right;
}
.header-links-wrapper {
	float: left;
}

.search-box {
	display: inline-block;
	font-size: 0;
}

.header-lower .search-box {
    float: right;
	width: 40%;
}

.search-box .search-box-button {
	width: 47px;
	height: 47px;
	border: none;
	background: #eebe00 url(../Themes/Emporium/Content/img/search-button-desktop.png) center no-repeat;
	transition: background-color .1s ease;
}

.search-box form {
	display: block;
}

.search-box input.search-box-text {
	height: 47px;
	color: #8c8c8c;
	width: calc(100% - 47px);
}

.mobile-flyout-wrapper {
	position: relative;
    display: table-cell;
    width: 1%;
    vertical-align: top;
    text-align: center;
	padding-right: 10px;
	z-index: 1200;
}

.mini-shopping-cart {
	display: none;
	position: absolute;
	top: 98%;
	left: 0;
	padding-top: 8px;
	z-index: 1030;
}

.mobile-flyout-wrapper:hover .mini-shopping-cart {
	display: block;
}


.mini-shopping-cart > div:before {
	content: " ";
	position: absolute;
	bottom: 100%;
	right: auto;
	left: 17px;
	border: solid transparent;
	height: 0;
	width: 0;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #fff;
	border-width: 8px;
	margin-right: -8px;
}

.mini-shopping-cart .flyout-cart-scroll-area {
	border-radius: 3px;
	box-shadow: 0 0 15px rgba(0,0,0,0.15);
	width: 430px;
}

.flyout-cart .items {
	padding: 0 20px;
	max-height: calc(100vh - 320px);
	overflow: hidden;
}
.mini-shopping-cart .right {
	float: left;
	clear: left;
	max-width: 80px;
	text-align: left;
}
.mini-shopping-cart .left {
	width: calc(100% - 90px);
	float: right;
}


.mini-shopping-cart .name a {
	margin: 0 0 10px;
}

.mini-shopping-cart .attributes {
	margin-bottom: 10px;
}

.mini-shopping-cart .quantity {
	font-size: 16px;
	float: none;
	margin: 0;
}

.mini-shopping-cart .quantity:after {
	content: none;
}

.mini-shopping-cart .price {
	float: none;
}

.ui-autocomplete {
	width: calc(100% - 47px) !important;
	z-index: 1015; /*should be lower than header but equal or higher than header-menu*/
}

.ui-autocomplete {
	padding: 8px 0;
}

.ui-autocomplete a {
	padding: 5px 15px;
}

.ui-autocomplete img {
	width: 77px;
}

.ui-autocomplete span {
	max-width: calc(100% - 90px);
}
.header-selectors-wrapper > div {
	
	margin: 0 10px;
}

.responsive-nav-wrapper-parent {
	display: none;
}


/* HEADER MENU */


.menu-title, .close-menu,
.header-menu .back-button {
	display: none;
}
.overlayOffCanvas {
	display: none !important;
}

.header-menu {
	text-align: right;
	position: relative;
	z-index: 1010;
	margin: 0 0 3px;
	background-color: #f6f6f6;
}
.header-menu > ul {
	margin: 0 auto;
	font-size: 0;
}
.header-menu > ul > li {
	display: inline-block;
	vertical-align: middle;
}
.header-menu > ul > li > a,
.header-menu > ul > li > span {
	display: block;
	padding: 0 15px;
	height: 50px;
	line-height: 50px;
	font-size: 13px; /*reset zeroing*/
	cursor: pointer;
	text-transform: uppercase;
	color: #8c8c8c;
	font-weight: bold;
	transition: color .2s ease;
}

.header-menu > ul > li:hover > a,
.header-menu > ul > li:hover > span {
	color: #444444;
}

.top-menu {
	display: block;
}

.header-menu .sublist .back-button {
	display: none;
}



/* FOOTER */


.footer:after {
	content: "";
	display: block;
	clear: both;
}

.footer-upper {
	width: 28%;
	float: right;
	clear: right;
	text-align: right;
	padding-right: 3%;
}

.footer-middle {
	float: left;
	width: 72%;
	margin: 55px 0;
	padding: 0 1.5% 0 3%;
	clear: left;
	text-align: right;
}

.footer-lower {
	clear: both;
}

.footer-logo {
	margin-top: 0;
}

.footer-block {
	width: 20.5%;
	margin: 0 1.5%;
}

.footer-block ul {
	padding-bottom: 0;
}

.footer-block .title {
	padding: 0;
	margin-bottom: 7px;
}

.footer-block ul li {
	padding: 9px 0;
}

.footer-middle .socials-and-payments {
	width: 27%;
	float: left;
}

.footer-middle .social-icons {
	padding: 0;
	border: none;
	margin-top: 0;
}

.footer-lower {
	padding: 13px;
}


.footer-lower > div {
	display: inline-block;
	margin: 0 5px 0 0;
}

.footer-lower > div:before {
	content: "";
	display: inline-block;
	margin-left: 5px;
	width: 4px;
	height: 4px;
	vertical-align: middle;
	border-radius: 50%;
	font-size: 0;
	background-color: #c8c8c8;
}
.footer-lower > div:first-child {
	margin-right: 0;
}

.footer-lower > div:first-child:before,
.footer-lower > div.theme-selector:before {
	display: none;
}
.footer-lower > div.theme-selector {
	margin: -9px 5px -9px 0;
}


/* LEFT/RIGHT COLUMN */

.product-selectors {
	margin: 0 0 20px;
}


.block {
	float: none;
	width: auto;
	margin: 0 0 3px;
}


.block .title {
	cursor: default;
    padding: 14px 30px;
}

.block .title:before {
	content: none;
	display: none;
}

.block.block-recently-viewed-products .title {
	padding: 15px 20px;
}

.block.block-recently-viewed-products .title:before {
	display: none;
}

.block.block-recently-viewed-products .listbox {
	padding: 0;
}

.block.block-recently-viewed-products .listbox li {
	padding: 10px;
	border-top: 1px solid #eeeeee;
}

.block.block-recently-viewed-products .listbox li:first-child {
	border-top: 0;
}

.block.block-recently-viewed-products .list a {
	color: #444444;
}

.block.block-recently-viewed-products .list a:hover {
    color: #97c300;
}


.block.block-recently-viewed-products .product-picture {
	display: inline-block;
	margin-left: 16px;
	width: 84px;
	vertical-align: middle;
}
.block .product-picture img {
	display: block;
	max-width: 100%;
}
.block .product-name {
	display: inline-block;
	width: calc(100% - 103px);
	vertical-align: middle;
}


/* CATEGORY PAGE & GRIDS */


.vendor-item .title a,
.manufacturer-item .title a,
.category-grid .item-box .title a {
	font-size: 17px;
}


.home-page .topic-block,
.home-page-category-grid,
.sub-category-grid,
.manufacturer-grid,
.product-grid,
.category-grid,
.topic-block,
.news-list-homepage,
.home-page-polls {
	margin-bottom: 70px;
}

.center-2 .product-grid {
	margin-bottom: 50px;
}

.home-page-advantages {
	padding: 35px 20px;
	margin: -60px -20px 70px;
	background-color: #f6f6f6;
	text-align: center;
}
.advantages-item {
	padding: 0 1%;
 	width: 25%;
 	margin: 0;
 	background-color: transparent;
 	text-align: center;
    vertical-align: top;
}

.advantages-item > div {
	display: block;
}

.advantages-item .picture {
	margin-bottom: 15px;
	width: 100%;
	height: auto;
}

.advantages-item .info {
	width: 100%;
}

.advantages-item .description {
	display: block;
	margin-top: 10px;
	color: #8c8c8c;
	font-size: 15px;
}

.advantages-item .description p {
	line-height: 1.7;
}

.center-2 .page-title,
.category-description,
.manufacturer-description,
.vendor-description,
.center-2 .product-grid .title {
	text-align: right;
}

.block {
	border: none;
}

.block .listbox {
	display: block;
}


.center-1 .breadcrumb {
	text-align: center;
}

.breadcrumb {
	text-align: right;
	margin: 0 0 15px 0;
}

.mobile-name-holder .breadcrumb {
	text-align: center;
}

.breadcrumb li * {
	line-height: normal;
}



#products-pagesize-mobile {
	display: none !important;
}
#products-pagesize-desktop {
	display: inline-block;
}

.product-selectors > div > span {
	display: inline-block;
	vertical-align: middle
}

.product-selectors .product-page-size {
	margin-right: 0;
	width: auto;
}

.product-selectors {
	font-size: 13px;
	text-align: right;
	color: #8c8c8c;
	font-weight: bold;
	text-transform: uppercase;
}

.product-selectors select {
	display: inline-block;
	margin: 0 10px;
	width: auto;
	height: 45px;
	background-color: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 2px;
	font-weight: normal;
    text-transform: none;
    background-image: url('../Themes/Emporium/Content/img/select-arrow-dark.svg');
}

.product-selectors .product-sorting {
	display: inline-block;
	float: left;
	margin: 0;
	width: auto;
}

.product-selectors .product-viewmode {
	display: inline-block;
	float: left;
	margin: 0;
	font-size: 0;
}


.item-box {
	width: 24.25%;
	margin: 0 1% 1% 0;
}

.item-box:nth-child(2n+1),
.item-box:nth-child(3n+1) {
	margin-right: 1%;
	clear: none;
}

.item-box:nth-child(4n+1) {
	margin-right: 0;
	clear: both;
}

.product-grid .item-box .picture > a:after {
	content:"";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: #444;
	opacity: 0;
	transition: all .1s ease;
}

.product-grid .item-box:hover .picture > a:after {
	opacity: .4;
}

.carousel-wrapper .item-box .picture > a:after,
.two-row-carousels .item-box .picture > a:after {
	content: none;
	display: none;
}


.product-list {
	margin-bottom: 30px;
}

.product-list .add-to-cart-qty-wrapper .plus,
.product-list .add-to-cart-qty-wrapper .minus {
	height: 16px;
	line-height: 16px;
}

.center-2 .product-list .product-item:after {
	content: "";
	display: block;
	clear: both;
}

.center-2 .product-list .item-box {
	position: relative;
	width: 100%;
	margin: 0 0 15px !important;
	text-align: right;
}
.center-2 .product-list .item-box .picture {
	float: right;
	width: 260px;
	margin-bottom: 0;
	overflow: visible;
}

.center-2 .product-list .item-box .picture > a:before {
    padding-top: 100% !important;
}

.center-2 .product-list .item-box .picture img {
	border-radius: 0 3px 3px 0;
}

.center-2 .product-list .item-box .details {
	margin: 0 290px 0 30%;
	padding: 30px 0 0;
	max-height: 172px;
	overflow: hidden;
}

.center-2 .product-list .item-box .add-info {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 30%;
	padding: 0 20px;
	text-align: center;
}

.product-list .prices > span {
	display: block;
}

.product-list .item-box .old-price {
	font-size: 16px;
	color: #444444;
	text-decoration: line-through !important;
}



.product-list .item-box .actual-price {
	font-size: 20px;
	margin: 4px 0;
}

.center-2 .product-list .item-box .buttons .button-2 {
	width: auto;
    background-color: #eebe00;
    color: #fff;
	height: 40px;
	padding: 0 15px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.center-2 .product-list .item-box .btn-wrapper button {
	line-height: 45px;
	border-radius: 3px;
	background-color: #f2f2f2;
}

.center-2 .product-list .item-box .btn-wrapper button:hover {
	background-color: #eaeaea;
}

.center-2 .product-list .item-box .btn-wrapper button:before {
	font-size: 19px;
}

.center-2 .product-list .item-box .btn-wrapper button:hover:before {
	color: #8c8c8c;
}


.product-list .item-box .product-title,
.product-list .item-box .title {
	height: auto;
	font-size: 18px;
	font-weight: bold;
	padding: 0;
}

.product-list .item-box .product-rating-box {
	margin-bottom: 15px;
}


.product-list .item-box .description {
	display: block;
	height: auto;
    max-height: 81px;
    margin: 0;
    line-height: 20px;
	font-size: 15px;
	color: #8c8c8c;
}

.product-list .item-box .btn-wrapper {
	right: 100%;
	top: auto;
	bottom: 30px;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	opacity: 1;
	width: 200px;
	padding-right: 30px;
}

.product-list .item-box button,
.product-list .item-box .btn-wrapper .button-2 {
	width: 45px;
	height: 45px;
}

.product-list .item-box button:hover {
	background-color: #eaeaea;
}

.page-title h1 {
	font-size: 30px;
}

.topic-block-title h2 {
	font-size: 25px;
}

.center-2 .page-title {
	padding: 0;
}

.center-2 .item-box {
	width: 32.66%;
}

.center-2 .item-box:nth-child(2n+1),
.center-2 .item-box:nth-child(4n+1) {
	margin-right: 1%;
	clear: none;
}

.center-2 .item-box:nth-child(3n+1) {
	margin-right: 0;
	clear: both;
}

.news-list-homepage .news-item {
	width: 32.4%;
}

.news-list-homepage .news-item:nth-child(2n+1) {
	margin-right: 1.4%;
	clear: none;
}

.news-list-homepage .news-item:nth-child(3n+1) {
	margin-right: 0;
	clear: right;
}

/* PRODUCT PAGE */



.gallery .picture {
	width: auto;
}

.attribute-squares {
	text-align: right;
}

.product-tags-box .title,
.product-details-page .product-grid .title,
.shopping-cart-page .product-grid .title {
	font-size: 26px;
}

.product-variant-line .attributes-wrapper {
	margin-right: 0;
}


/* REVIEW PAGE */

.product-reviews-page .page-title {
	text-align: center;
}

.product-review-item {
	text-align: right;
}

.product-review-item .review-content {
	overflow: hidden;
}

.product-review-item .product-review-box {
	padding: 2px 0 0;
}
.product-review-item .product-review-box .rating {
	margin: 0;
}

.product-review-item .review-item-head {
	text-align: right;
}

.product-review-item .review-info {
	float: right;
	padding: 0 0 0 20px;
	width: 13%;
	margin: 0;
}

.product-review-helpfulness {
	float: left;
	width: 20%;
	margin: 0;
	text-align: center;
	padding-right: 20px;
}

.review-body { 
	width: 67%;
	float: right;
}

.product-review-item .review-info .separator {
	display: none;
}

.product-review-item .product-review-box,
.review-info .user {
	margin-bottom: 10px;
}


/* TABLES */


.data-table td label,
.td-title {
	display: none;
}

td.remove-from-cart label, td.add-to-cart label {
	font-size: 0;
}	


/* WISHLIST & COMPARE LIST */

.compare-products-page .page-body {
	position: relative;
	margin: 0 -20px;
}

.compare-products-page .clear-list {
	position: absolute;
	top: 0;
	right: 0;
	width: 170px;
	text-align: center;
	border-bottom: 1px solid #eee;
	z-index: 1;
}


.compare-products-table {
	display: table;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.compare-products-table td {
	border-left: 1px solid #eee;
}

.compare-products-mobile {
	display: none;
}

/* REGISTRATION, LOGIN, MY ACCOUNT */



.login-page .new-wrapper {
	position: relative;
	float: left;
	width: 49%;
	max-width: none;
	min-height: 440px;
	z-index: 1;
}

.login-page .returning-wrapper form {
	float: right;
	width: 49%;
	max-width: none;
	min-height: 440px;
}

.login-page .customer-blocks + .topic-block {
	margin-bottom: 0;
}

.returning-wrapper .form-fields,
.login-page .text,
.registration-page .form-fields {
	padding: 45px 13% 20px;
}

.login-page .text {
	min-height: 255px;
}


.new-wrapper .text:before {
	margin: 20px 0;
}

.login-page .buttons,
.registration-page .buttons,
.registration-page .buttons {
	padding: 10px 13% 45px;
}

.login-page .inputs.reversed label,
.login-page .inputs.reversed span {
	font-size: 15px;
	line-height: 17px;
}

.login-page .external-authentication > * {
	padding: 45px 0;
	margin: 30px 0 0;
	width: 100%;
}

.email-a-friend-page .page-body form,
.contact-page .page-body form,
.apply-vendor-page .page-body form,
.forum-edit-page .page-body,
.password-recovery-page .page-body,
.private-message-send-page .page-body,
.move-topic-page .page-body {
	padding: 45px 13%;
}


.html-account-page .center-2 {
	width: 73%;
}

.account-page {
	padding: 40px;
}

.account-page .address-item > .title,
.account-page .order-item > .title,
.account-page .request-item > .title {
	text-align: center;
}

.account-page .buttons {
	text-align: right;
}

.html-account-page .page-title {
	text-align: center;
	padding: 0 27% 0 0;
}

.html-account-page .side-2 {
	border: none;
}

.block-account-navigation.block .title {
	display: none;
}

.block-account-navigation.block .listbox {
	padding: 0;
	text-align: left;
}

.block-account-navigation.block .list a {
	position: relative;
	display: block;
	padding: 15px 0 15px 65px;
	max-width: 100%;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
	color: #b7b7b7;
	transition: all .2s ease;
}


.block-account-navigation.block .list a:hover,
.block-account-navigation.block .list a:hover:after {
	color: #97c300;
}

.block-account-navigation.block .list .active a {
	border-left: 2px solid #97c300;
	color: #97c300;
}

.block-account-navigation.block .list a:after {
	position: absolute;
	display: inline-block;
	top: 50%;
	right: auto;
	left: 23px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	vertical-align: middle;
	margin-right: 23px;
	font-family: "emporium-icons";
	font-size: 20px;
	font-weight: normal;
	text-transform: none;
	color: #b7b7b7;
	transition: all .2s ease;
}

.account-page .title {
	margin-bottom: 30px;
}

.block-account-navigation.block .list .active a:after {
	color: #97c300;
}

.block-account-navigation .customer-info a:after, 
.block-account-navigation .customer-vendor-info a:after  {
	content: "\61";
}

.block-account-navigation .customer-addresses a:after {
	content: "\4e";
}

.block-account-navigation .customer-orders a:after {
	content: "\64";
}

.block-account-navigation .return-requests a:after {
	content: "\4f";
}

.block-account-navigation .downloadable-products a:after {
	content: "\4a";
}

.block-account-navigation .back-in-stock-subscriptions a:after {
	content: "\45";
}

.block-account-navigation .reward-points a:after {
	content: "\50";
}

.block-account-navigation .change-password a:after {
	content: "\78";
}

.block-account-navigation .customer-check-gift-card-balance a:after {
    content: "\e90b";
}

.block-account-navigation .customer-avatar a:after {
	content: "\51";
}

.block-account-navigation .forum-subscriptions a:after {
	content: "\52";
}

.block-account-navigation .customer-reviews a:after {
	content: "\53";
}

.block-account-navigation .customer-gdpr a:after {
	content: "\e90a";
}

.block-account-navigation .customer-multiFactor-authentication a:after {
	content: "\e90c";
	font-size: 17px !important;
}

.block-account-navigation .vendor-info a:after {
	content: "\54";
}

.address-item .info {
	margin-bottom: 0;
}

.address-item .buttons {
	position: absolute;
	top: 10px;
	left: 10px;
}

.address-item .title {
	padding: 0 80px;
}

.order-item .buttons {
	text-align: center;
}


.account-page .product-review-item .review-info {
	width: 210px;
}

.account-page .product-review-item .review-body {
	width: calc(100% - 210px);
}

.order-details-page .page-body {
	overflow: hidden;
}

.order-details-page .section.products,
.order-summary-content .table-wrapper {
	float: right;
	width: 70%;
}

.order-details-page .options,
.order-details-page .totals,
.order-summary-content .cart-footer  {
	float: left;
	width: calc(30% - 20px);
}

.shopping-cart-page .cart-footer,
.shopping-cart-page .table-wrapper {
	float: none;
	width: 100%;
}

.selected-checkout-attributes {
	margin-top: 0;
}

.check-gift-card-balance-page .captcha-box {
    text-align: right;
}

/* SHOPPING CART & CHECKOUT */

.shopping-cart-page .common-buttons {
	text-align: right;
}

.shopping-cart-page .common-buttons button {
	margin: 0 0 0 7px;
	padding: 0 25px;
	width: auto;
}

.shopping-cart-page .continue-shopping-button {
	margin: 0 !important;
	float: left;
}

.address-grid > div {
	max-width: none;
}

/* SEARCH & SITEMAP */

.search-page .page-title {
	text-align: center;
}

.search-page .search-input form {
	margin: 0 0 40px;
}

.search-page .search-input form .inputs {
	text-align: center;
}


/* BLOG & NEWS */


.news-item-page .inputs:first-child label {
	display: inline-block;
}
.new-comment textarea {
	display: block;
	margin: auto;
}

/* FORUM & PROFILE */

.topic-block {
	padding: 0;
}

.forums-main-page .forums-table-section td:first-child,
.forum-page .forums-table-section td:first-child {
	padding-right: 40px !important;
}

.forums-main-page .forums-table-section td:last-child,
.forum-page .forums-table-section td:last-child {
	padding-left: 40px !important;
}
.forums-table-section .image div {
	width: 40px;
	height: 40px;
}

.forums-table-section .image div:before {
	font-size: 40px;
}

.topic-post .post-info {
	width: 190px;
	float: right;
	padding: 30px 30px 30px 0;
}

.topic-post .user-info {
	padding: 0;
}

.topic-post .username {
	margin: 0 0 10px;
}

.topic-post .avatar {
	position: static;
	margin-bottom: 10px;
}

.topic-post .post-content {
	position: relative;
	float: left;
	width: calc(100% - 190px);
	padding: 55px 30px 30px;
}

.topic-post .post-actions {
	position: absolute;
	top: 10px;
	left: 10px;
}

.topic-post .post-actions > div.post-vote {
	float: left;
	clear: both;
}

.topic-post .post-vote > div,
.topic-post .post-vote > span {
	height: 50px;
	line-height: 50px;
}

.topic-post .post-body {
	width: 70%;
	max-width: 1000px; 
}


}

@media all and (min-width: 1281px) {

/* GLOBAL STYLES */

.master-wrapper-content,
.html-account-page .master-wrapper-content {
	padding: 5px 6vw;
}

.home-page .topic-block {
	width: 80%;
}

/* HEADER-MENU */

.header-selectors-wrapper,
.header-lower {
	width: 88%;
}

.header-menu {
	padding: 0 6vw;
}

.header-logo {
    padding-left: 20px;
}

.header-links li + li {
    padding-right: 20px;
}

/* FOOTER */

.footer-upper {
	padding-right: 6vw;
}

.footer-middle {
	padding: 0 4.5vw 0 6vw;
}

.footer-lower .theme-selector {
	margin-top: 0;
}

.footer-lower > div:before {
	margin-left: 15px;
}

.footer-lower > div,
.footer-lower > div.theme-selector {
	margin-right: 15px;
}

.newsletter-email {
	margin: 0;
}

.theme-selector {
	margin-top: 0;
}

/* SMALL PRODUCTS CAROUSELS */

.small-products {
	margin: 70px 0 0 !important;
	padding: 0;
}

.small-products .item-box {
	max-height: 150px;
}

.small-products .item-box .product-item > div:first-child {
	width: 150px;
}
.small-products .item-box .details {
	padding: 27px 5%;
	width: calc(100% - 150px);
}

.two-row-carousels .product-grid .title {
	font-size: 26px;
}

.two-row-carousels > div {
	float: right;
	width: 47%;
}

.two-row-carousels > div:nth-child(2) {
	margin-right: 6%;
}

.two-row-carousels > div:only-child {
	width: 100%;
}

.two-row-carousels .slick-slide {
	min-height: 301px;
}

.two-row-carousels .slick-next,
.two-row-carousels .slick-prev {
	bottom: 132px;
}

/* LEFT/RIGHT COLUMN */

.side-2 {
	width: 24%;
}

.center-2 {
	width: 73%;
}

.html-account-page .center-2 {
	width: calc(100% - 280px);
}

.html-account-page .side-2 {
	width: 280px;
}

.html-account-page .page-title {
	padding: 0 280px 0 0;
}

/* CATEGORY PAGE & GRIDS */

.news-list-homepage .news-item {
	padding: 40px;
}

.home-page-advantages {
	padding: 35px 7%;
	margin: -30px -6vw 70px;
}

.advantages-item {
	padding: 0 2%;
}

.item-box {
	width: 19.2%;
}

.item-box:nth-child(4n+1) {
	margin-right: 1%;
	clear: none;
}
.item-box:nth-child(5n+1) {
	margin-right: 0;
	clear: both;
}

.center-2 .item-box {
	width: 24.25%;
}

.center-2 .item-box:nth-child(3n+1),
.center-2 .item-box:nth-child(5n+1) {
	margin-right: 1%;
	clear: none;
}

.center-2 .item-box:nth-child(4n+1) {
	margin-right: 0;
	clear: both;
}

.center-2 .product-list .item-box .details {
    margin: 0 290px 0 25%;
}

.center-2 .product-list .item-box .add-info {
	width: 25%;
}

.block .listbox {
	padding: 18px 30px;
}

/* PRODUCT PAGE */

.product-details-page .breadcrumb {
	text-align: right;
}

.full-description,
.product-specs-box {
	margin: 0 -6vw;
	padding: 40px 22%;
}

.mobile-name-holder {
	display: none;
}

.gallery {
	float: right;
	width: 30%;
	max-width: none;
}

.gallery .picture {
	max-width: 500px;
}

.gallery .thumb-item {
	max-width: 22%;
}

.product-name h1 {
	font-size: 28px;
}

.overview {
	position: relative;
	float: left;
	width: 68%;
	padding-left: 325px;
	margin-right: 0;
	text-align: right;
}

.overview .short-description {
	padding: 0;
}
.overview .breadcrumb {
	margin-bottom: 25px;
}

.overview .prices {
	margin: 50px 0 25px;
}

.overview .add-to-cart {
	display: block;
	margin: 0 auto 30px;
	width: calc(100% - 40px);
	max-width: none;
}

.overview .add-to-wishlist {
	display: block;
	width: 100%;
	margin-right: 0;
}

.overview .add-to-wishlist button {
	width: 100%;
	font-size: 13px;
}

.overview .add-to-wishlist button:before {
	margin-left: 10px;
}

.grouped-product-box label {
	display: block;
}
.product-variant-line {
	font-size: 0;
	text-align: right;
}

.variant-picture {
	display: inline-block;
	vertical-align: middle;
	float: none;
	margin-bottom: 0;
}

.variant-picture + .variant-overview {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	float: none;
	margin-bottom: 0;
	width: calc(100% - 350px);
    margin-right: 20px;
	text-align: right;
}

.variant-info > div:last-child {
	margin-bottom: 0;
}

.variant-info {
	display: inline-block;
	margin-left: 20px;
	width: calc(100% - 320px);
	vertical-align: middle;
}

.variant-overview .tax-shipping-info {
	text-align: center;
}

.product-variant-box {
	display: inline-block;
	vertical-align: middle;
	width: 300px;
	text-align: center;
}
.product-prices-box {
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	width: 300px;
	text-align: center;
}

.grouped-product-box {
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	width: 300px;
	text-align: center;
	border: 1px solid #eeeeee;
	border-radius: 3px;
	padding: 10px;
}

.grouped-product-box label {
	margin: 10px 0 20px;
}

.product-prices-box > div:first-child {
	border: 1px solid #eeeeee;
	border-radius: 3px;
	padding: 0 10px 10px;
}

.attributes-wrapper {
	border: none;
	padding: 0;
	max-width: none;
}

.attributes-wrapper > div {
	padding: 0;
	margin-right: 0;
}

.attributes {
	max-width: 320px;
}
.attributes dt,
.attributes dd {
	text-align: right;
}

.overview .stock {
	display: block;
	border-radius: 3px 0 0 3px;
	margin: 0 -10px 12px;
}

.breadcrumb li > a,
.breadcrumb li > span,
.breadcrumb li > strong {
	margin: 0 0 0 6px;
}

.breadcrumb .delimiter {
	margin-left: 10px;
}

.overview .product-name {
	display: inline-block;
	width: 59%;
	min-height: 100px;
}

.product-reviews-overview {
	margin-bottom: 15px;
}

.overview .reviews-and-compare {
	float: left;
	text-align: left;
	width: 40%;
	margin: 0;
}

.overview .compare-products {
	margin: 0;
}

.product-review-box {
	margin: 10px 0 5px 0;
}

.ui-tabs .inputs label {
	width: 290px;
}

.product-social-label {
	margin: 0 0 0 10px;
}

.product-social-sharing {
	display: inline-block;
}

/* REVIEW PAGE */

.product-review-item {
	padding: 40px 3%;
}

/* WISHLIST & COMPARE LIST */

.wishlist-page .share-info {
	margin: 70px 0 50px;
}

.compare-products-page .page-body {
    margin: 0;
}

.compare-products-table td {
	padding: 20px;
}

.compare-products-table tr td:first-child {
	min-width: 200px;
	max-width: 200px;
}

.compare-products-page .clear-list {
	width: 200px;
}

/* TOPICS */
/* CONTACT PAGE & EMAILaFRIEND */
/* REGISTRATION, LOGIN, MY ACCOUNT */

/* SHOPPING CART & CHECKOUT */

.order-progress a {
	width: 180px;
}

.cart-collaterals > div {
	float: none;
	width: 100%;
	margin: 0 0 10px;
}

.shopping-cart-page form {
	overflow: hidden;
}

.shopping-cart-page form:after {
	content: "";
	display: block;
	clear: both;
}

.shopping-cart-page .product-grid {
	clear: both;
}
.shopping-cart-page .table-wrapper {
	float: right;
	clear: right;
	width: 70%;
}

.shopping-cart-page .cart-footer  {
	float: left;
	clear: left;
	width: calc(30% - 30px);
}

.cart-footer > div,
.cart-footer > div > div {
	display: block;
	width: 100%;
}

/* SEARCH & SITEMAP */
/* BLOG & NEWS */

.new-comment, .comment-list {
	margin-right: -6vw;
	margin-left: -6vw;
}

/* FORUM & PROFILE */

.ui-tabs .ui-tabs-panel {
	margin: 0 -6vw;
	padding: 50px 7%;
}

.profile-page .topic-title,
.profile-page .topic-data {
	width: 18%;
}

.profile-page .topic-body {
	margin-right: 20%;
}

 .table {
        width: 100%;
        border-collapse: collapse;
        direction: rtl
    }

    .th,.td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: right
    }

    .th {
        background-color: #f2f2f2
    }

}

@media all and (min-width:1601px) {

/*HEADER*/

.header-lower .search-box {
	width: 50%;
}
       
.header-links-wrapper {
    width: 30%;
}

.header-logo {
    width: 20%;
}

/* CATEGORY PAGE */

.center-2 {
	width: 78%;
}
.side-2 {
	width: 20%;
}

.item-box {
	width: 15.83%;
}

.item-box:nth-child(5n+1) {
	margin-right: 1%;
	clear: none;
}
.item-box:nth-child(6n+1) {
	margin-right: 0;
	clear: both;
}

.center-2 .item-box {
	width: 19.2%;
}

.center-2 .item-box:nth-child(4n+1),
.center-2 .item-box:nth-child(6n+1) {
	margin-right: 1%;
	clear: none;
}

.center-2 .item-box:nth-child(5n+1) {
	margin-right: 0;
	clear: both;
}

.center-2 .product-list .item-box .buttons .button-2 {
	padding: 0 30px;
}

/*FEATURED PRODUCTS ON CATALOG PAGE*/
/*
.category-page .featured-product-grid {
	background-color: #f6f6f6;
	padding: 45px;
}

.category-page .featured-product-grid > .title {
	display: none;
}

.category-page .featured-product-grid .item-box {
	width: calc(50% - 7px);
	margin: 14px 14px 0 0;
	background-color: #fff;
}

.category-page .featured-product-grid .product-item {
	font-size: 0;
}

.category-page .featured-product-grid .product-item > div {
	display: inline-block;
	vertical-align: middle;
	width: 50%;
	margin: 0;
	clear: none;
}

.category-page .featured-product-grid .item-box:nth-child(1),
.category-page .featured-product-grid .item-box:nth-child(2) {
	margin-top: 0;
}

.category-page .featured-product-grid .item-box:nth-child(2n+1) {
	margin-right: 0;
}

.category-page .featured-product-grid .item-box .details {
	padding: 20px;
}

.category-page .featured-product-grid .item-box .product-title {
	font-size: 18px;
	height: auto;
}

.category-page .featured-product-grid .item-box .actual-price {
	font-size: 22px;
}

.category-page .featured-product-grid .item-box .product-rating-box {
	margin-bottom: 30px;
}
.category-page .featured-product-grid .item-box .buttons {
	margin-top: 10px;
}

.category-page .featured-product-grid .item-box .buttons button {
	width: auto;
	background-color: #f3cb2d;
	color: #fff;
}

.category-page .featured-product-grid .item-box .buttons button:hover {
	background-color: #e8af00;
}*/

/*PRODUCT PAGE*/

.overview {
	width: 62%;
	padding-left: 415px;
}
.product-prices-box,
.grouped-product-box {
	width: 380px;
}
.gallery {
	width: 36%;
}
.gallery:after {
	content: '';
	display: block;
	clear: both;
}
.gallery > div:first-child {
	float: left;
	width: calc(100% - 95px);
}
.gallery .picture {
	max-width: none;
}

.gallery .picture-thumbs {
	float: right;
	width: 15%;
	max-width: 87px;
	margin: 0;
}
.gallery .thumb-item {
	display: block;
	margin: 0 0 10px;
	max-width: none;
}
.overview .reviews-and-compare {
	width: 33%;
}
.overview .product-name {
	width: 64%;
}

/* CHECKOUT */

.address-grid > div {
	width: calc(33.33% - 16.66px);
}

.address-grid > div:nth-child(2n+1) {
	margin-right: 25px;		
}

.address-grid > div:nth-child(3n+1) {
	margin-right: 0;		
}

.address-grid > div:nth-child(3) {
	margin-top: 0;
}

}
/*!
 * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-float-left{float:left}.fa-float-right{float:right}.fa.fa-float-left,.fab.fa-float-left,.fal.fa-float-left,.far.fa-float-left,.fas.fa-float-left{margin-right:.3em}.fa.fa-float-right,.fab.fa-float-right,.fal.fa-float-right,.far.fa-float-right,.fas.fa-float-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot);src:url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2) format("woff2"),url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff) format("woff"),url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf) format("truetype"),url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot);src:url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2) format("woff2"),url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff) format("woff"),url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf) format("truetype"),url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-regular-400.svg#fontawesome) format("svg")}.fab,.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot);src:url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2) format("woff2"),url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff) format("woff"),url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf) format("truetype"),url(../lib_npm/@fortawesome/fontawesome-free/webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}

/**
 * Configurator Styles
 * Professional table view with modal product selection
 * Supports LTR and RTL layouts
 */

/* ============================================
   CSS Variables for Theming
   ============================================ */
:root {
    --cfg-primary: #2c3e50;
    --cfg-primary-dark: #1a252f;
    --cfg-accent: #007bff;
    --cfg-success: #28a745;
    --cfg-danger: #dc3545;
    --cfg-warning: #ffc107;
    --cfg-gray-100: #f8f9fa;
    --cfg-gray-200: #e9ecef;
    --cfg-gray-300: #dee2e6;
    --cfg-gray-500: #6c757d;
    --cfg-gray-700: #495057;
    --cfg-border-radius: 8px;
    --cfg-transition: 0.2s ease;
}

/* ============================================
   Table Container
   ============================================ */
.configurator-page .configurator-table-container {
    background: white;
    border-radius: var(--cfg-border-radius);
    padding: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* ============================================
   Main Configurator Table
   ============================================ */
.configurator-table {
    margin-bottom: 0;
    border-collapse: collapse;
    width: 100%;
}

.configurator-table thead th {
    background: var(--cfg-gray-100);
    border-bottom: 2px solid var(--cfg-gray-300);
    font-weight: 600;
    color: var(--cfg-gray-700);
    padding: 14px 12px;
    vertical-align: middle;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Column widths */
.configurator-table .col-category { width: 400px; }
.configurator-table .col-image { width: 80px; }
.configurator-table .col-product { min-width: 200px; }
.configurator-table .col-unit-price { width: 100px; text-align: right; }
.configurator-table .col-qty { width: 120px; text-align: center; }
.configurator-table .col-total { width: 100px; text-align: right; }
.configurator-table .col-delete { width: 50px; text-align: center; }

/* ============================================
   Section Headers
   ============================================ */
.section-header td {
    background: var(--cfg-primary);
    color: white;
    font-weight: 600;
    padding: 12px 20px;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: none;
}

.section-header td:first-child {
    border-radius: 0;
}

/* ============================================
   Category Rows
   ============================================ */
.category-row {
    transition: background-color var(--cfg-transition);
    border-bottom: 1px solid var(--cfg-gray-200);
}

.category-row:hover {
    background-color: var(--cfg-gray-100);
}

.category-row td {
    padding: 12px;
    vertical-align: middle;
}

/* Required row indicator */
.category-row[data-is-required="true"] {
    border-left: 3px solid var(--cfg-warning);
}

/* Has selection state */
.category-row.has-selection {
    background-color: white;
}

/* ============================================
   Step Product Rows (multi-product per step)
   ============================================ */
.step-product-row {
    border-bottom: 1px solid var(--cfg-gray-200);
    background-color: white;
}

.step-product-row:hover {
    background-color: var(--cfg-gray-100);
}

.step-product-row td {
    padding: 10px 12px;
    vertical-align: middle;
}


/* ============================================
   Category Cell
   ============================================ */
.category-cell {
    vertical-align: bottom;
    font-weight: 500;
}

.category-cell-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.category-cell-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    flex: 1;
}

.category-cell .btn-add-product {
    margin-top: 0;
    flex-shrink: 0;
}

.category-cell i {
    font-size: 22px;
    color: var(--cfg-gray-500);
    width: 28px;
    text-align: center;
}

.category-cell .category-name {
    font-size: 14px;
    color: var(--cfg-gray-700);
}

.required-indicator {
    color: var(--cfg-danger);
    font-size: 16px;
    font-weight: bold;
    margin-left: 4px;
}

/* ============================================
   Image Cell
   ============================================ */
.image-cell {
    text-align: center;
}

.image-placeholder {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cfg-gray-100);
    border: 2px dashed var(--cfg-gray-300);
    border-radius: 6px;
    color: var(--cfg-gray-500);
}

.image-placeholder i {
    font-size: 20px;
}

.product-thumb {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
    background: white;
    border: 1px solid var(--cfg-gray-200);
}

/* ============================================
   Product Cell
   ============================================ */
.product-cell {
    min-width: 200px;
}

/* Add Button (Outlined) */
.btn-add-product {
    border: 2px solid var(--cfg-primary);
    background: white;
    padding: 8px 24px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    color: var(--cfg-primary);
    transition: all var(--cfg-transition);
    font-size: 14px;
}

.btn-add-product:hover {
    background: var(--cfg-gray-100);
    color: var(--cfg-primary);
}

/* Product Info (when selected) */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.product-info .product-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--cfg-primary);
    line-height: 1.3;
}

.product-info .product-sku {
    font-size: 12px;
    color: var(--cfg-gray-500);
}

.stock-badge {
    display: inline-block;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.stock-badge.in-stock {
    background: #d4edda;
    color: #155724;
}

.stock-badge.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

/* ============================================
   Unit Price & Total Cells
   ============================================ */
.unit-price-cell,
.total-cell {
    text-align: right;
    font-weight: 600;
    font-size: 15px;
    color: var(--cfg-gray-700);
}

.total-cell {
    color: var(--cfg-success);
}

/* ============================================
   Quantity Controls (+/-)
   ============================================ */
.qty-cell {
    text-align: center;
}

.qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--cfg-gray-300);
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--cfg-gray-100);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--cfg-gray-700);
    transition: background var(--cfg-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover:not(:disabled) {
    background: var(--cfg-gray-200);
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-input {
    width: 45px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--cfg-gray-300);
    border-right: 1px solid var(--cfg-gray-300);
    padding: 6px 4px;
    font-size: 14px;
    font-weight: 500;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input:disabled {
    background: var(--cfg-gray-100);
    color: var(--cfg-gray-500);
}

/* ============================================
   Delete Button
   ============================================ */
.delete-cell {
    text-align: center;
}

.btn-delete {
    background: none;
    border: none;
    color: var(--cfg-gray-500);
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all var(--cfg-transition);
}

.btn-delete:hover {
    color: var(--cfg-danger);
    background: #ffebee;
}

/* ============================================
   Subtotal Row
   ============================================ */
.subtotal-row td {
    background: var(--cfg-gray-100);
    border-top: 2px solid var(--cfg-gray-300);
    font-weight: 600;
    padding: 15px 12px;
}

.subtotal-price {
    font-size: 22px;
    color: var(--cfg-success);
    font-weight: 700;
}

/* ============================================
   Search Configuration Section
   ============================================ */
.search-config-section {
    margin-top: 20px;
    padding: 15px;
    background: var(--cfg-gray-100);
    border-radius: var(--cfg-border-radius);
}

.search-config-section .search-config-btn {
    background-color: var(--cfg-accent);
    color: #fff;
    border: 1px solid var(--cfg-accent);
    padding: 8px 18px;
    font-weight: 500;
    border-radius: 0 var(--cfg-border-radius) var(--cfg-border-radius) 0;
    cursor: pointer;
    transition: background-color var(--cfg-transition);
}

.search-config-section .search-config-btn:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.search-config-section .search-config-input {
    border-radius: var(--cfg-border-radius) 0 0 var(--cfg-border-radius);
    border: 1px solid var(--cfg-gray-300);
    padding: 8px 12px;
}

/* ============================================
   Summary Sidebar
   ============================================ */
.configurator-summary {
    background: white;
    border-radius: var(--cfg-border-radius);
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.configurator-summary h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--cfg-primary);
}

.summary-items {
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.summary-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--cfg-gray-200);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-info strong {
    display: block;
    font-size: 14px;
    color: var(--cfg-primary);
    margin-bottom: 2px;
}

.summary-item .item-price {
    font-weight: 700;
    color: var(--cfg-success);
    font-size: 15px;
}

.summary-total {
    padding: 15px 0;
    border-top: 2px solid var(--cfg-gray-300);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total .total-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--cfg-success);
}

.summary-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--cfg-border-radius);
    cursor: pointer;
    transition: background-color var(--cfg-transition), opacity var(--cfg-transition);
    width: 100%;
}

.summary-actions .btn i {
    font-size: 16px;
}

/* Validate — primary blue */
.summary-actions .validate-configuration {
    background-color: var(--cfg-accent);
    color: #fff;
}

.summary-actions .validate-configuration:hover {
    background-color: #0069d9;
}

/* Add to Cart — green */
.summary-actions .add-to-cart {
    background-color: var(--cfg-success);
    color: #fff;
}

.summary-actions .add-to-cart:hover:not(:disabled) {
    background-color: #218838;
}

.summary-actions .add-to-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Save Bundle — gray/secondary */
.summary-actions .save-configuration {
    background-color: var(--cfg-gray-500);
    color: #fff;
}

.summary-actions .save-configuration:hover {
    background-color: var(--cfg-gray-700);
}

/* ============================================
   Product Selection Dialog (jQuery UI)
   ============================================ */

/* Dark semi-transparent backdrop overlay */
.ui-widget-overlay {
    background: rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
    z-index: 100;
}

/* Dialog container */
.configurator-product-dialog {
    font-family: inherit;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid var(--cfg-gray-300) !important;
    padding: 0 !important;
    background: #fff;
}

/* Title bar */
.configurator-product-dialog .ui-dialog-titlebar {
    background: white;
    border-bottom: 1px solid var(--cfg-gray-200);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.configurator-product-dialog .ui-dialog-title {
    font-weight: 600;
    color: #333;
    font-size: 18px;
    line-height: 1.4;
    flex: 1;
}

/* Close button */
.configurator-product-dialog .ui-dialog-titlebar-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    padding: 0;
    margin: 0;
    position: relative;
    float: none;
    top: auto;
    right: auto;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.configurator-product-dialog .ui-dialog-titlebar-close:hover {
    background-color: var(--cfg-gray-200);
    color: #111;
}

.configurator-product-dialog .ui-dialog-titlebar-close:focus {
    outline: 2px solid var(--cfg-primary);
    outline-offset: 2px;
}

/* Hide default jQuery UI close icon and show clean × */
.configurator-product-dialog .ui-dialog-titlebar-close .ui-icon {
    display: none;
}

.configurator-product-dialog .ui-dialog-titlebar-close::after {
    content: "\00d7";
    font-size: 26px;
    line-height: 1;
    font-weight: 300;
}

/* Content area */
.configurator-product-dialog .ui-dialog-content {
    padding: 0 !important;
    border: none;
    overflow-y: auto;
}

/* ============================================
   Modal Filters
   ============================================ */
.modal-filters {
    padding: 16px 24px;
    background: white;
    border-bottom: 1px solid var(--cfg-gray-200);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.modal-filters .filter-controls {
    order: -1;
}

.modal-filters .modal-product-search {
    flex: 1;
    min-width: 200px;
    border: 1px solid var(--cfg-gray-300);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
}

.modal-filters .modal-product-search:focus {
    border-color: var(--cfg-accent);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    outline: none;
}

.filter-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.filter-controls label {
    margin-bottom: 0;
    font-size: 13px;
    color: var(--cfg-gray-500);
    font-weight: 500;
}

.filter-controls select {
    padding: 8px 12px;
    border: 1px solid var(--cfg-gray-300);
    border-radius: 4px;
    font-size: 13px;
    background: white;
    min-width: 120px;
}

.sort-control {
    display: none;
}

.manufacturer-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   Products List (Modal)
   ============================================ */
.products-list {
    max-height: 55vh;
    overflow-y: auto;
    min-height: 200px;
}

/* Manufacturer Group */
.manufacturer-group {
    margin-bottom: 0;
}

.manufacturer-header {
    display: none;
}

/* Product Row */
.product-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--cfg-gray-200);
    cursor: pointer;
    transition: background var(--cfg-transition);
}

.product-row:hover {
    background: var(--cfg-gray-100);
}

.product-row:last-child {
    border-bottom: none;
}

/* Product Link Icon — hidden */
.product-row .product-link {
    display: none;
}

/* Product Thumbnail */
.product-row .product-thumb {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 4px;
    background: white;
    border: 1px solid var(--cfg-gray-200);
    flex-shrink: 0;
    order: -1;
}

/* Product Name */
.product-row .product-name {
    flex: 1;
    font-size: 14px;
    color: var(--cfg-gray-700);
    line-height: 1.3;
}

/* Product Price */
.product-row .product-price {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    min-width: 80px;
    text-align: left;
    flex-shrink: 0;
    order: -2;
}

/* Already Selected Product in Modal */
.product-row.already-selected {
    background: #f0fff4;
    cursor: default;
}

.product-row.already-selected .selected-badge {
    color: var(--cfg-success);
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

/* Out of Stock Row */
.product-row.out-of-stock {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-row.out-of-stock:hover {
    background: transparent;
}

/* ============================================
   Loading State
   ============================================ */
.modal-products-loading {
    padding: 40px;
    text-align: center;
    color: var(--cfg-gray-500);
}

/* Empty State */
.products-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
    color: var(--cfg-gray-500);
}

.products-empty-state i {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--cfg-gray-400);
}

.products-empty-state p {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 4px 0;
    color: var(--cfg-gray-600);
}

.products-empty-state span {
    font-size: 13px;
    color: var(--cfg-gray-400);
}

/* ============================================
   Validation Results
   ============================================ */
.validation-results {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: var(--cfg-border-radius);
}

.validation-results ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.validation-results li {
    padding: 5px 0;
    font-size: 14px;
}

/* ============================================
   RTL Support
   ============================================ */
[dir="rtl"] .configurator-table,
[dir="rtl"] .configurator-page {
    direction: rtl;
}

[dir="rtl"] .category-cell-inner {
    flex-direction: row-reverse;
}

[dir="rtl"] .category-cell i {
    margin-left: 0;
    margin-right: 0;
}

[dir="rtl"] .required-indicator {
    margin-left: 0;
    margin-right: 4px;
}

[dir="rtl"] .unit-price-cell,
[dir="rtl"] .total-cell,
[dir="rtl"] .col-unit-price,
[dir="rtl"] .col-total {
    text-align: left;
}

[dir="rtl"] .product-row {
    flex-direction: row-reverse;
}

[dir="rtl"] .product-row .product-price {
    text-align: left;
}

[dir="rtl"] .qty-controls {
    flex-direction: row-reverse;
}

[dir="rtl"] .modal-filters {
    flex-direction: row-reverse;
}

[dir="rtl"] .filter-controls {
    flex-direction: row-reverse;
}

[dir="rtl"] .sort-control,
[dir="rtl"] .manufacturer-control {
    flex-direction: row-reverse;
}

[dir="rtl"] .summary-total {
    flex-direction: row-reverse;
}

[dir="rtl"] .section-header td {
    text-align: right;
}

[dir="rtl"] .subtotal-row td:first-child {
    text-align: left;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .configurator-page .configurator-summary {
        position: relative;
        top: 0;
        margin-top: 20px;
    }

    .modal-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .modal-filters .modal-product-search {
        width: 100%;
    }

    .filter-controls {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    /* Make table responsive */
    .configurator-table-container {
        overflow-x: auto;
    }

    .configurator-table {
        min-width: 700px;
    }

    /* Adjust column widths for mobile */
    .configurator-table .col-category { width: 200px; }
    .configurator-table .col-image { width: 60px; }
    .configurator-table .col-unit-price { width: 80px; }
    .configurator-table .col-qty { width: 100px; }
    .configurator-table .col-total { width: 80px; }

    .category-cell-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .category-cell-inner i {
        font-size: 18px;
    }

    .btn-add-product {
        padding: 6px 16px;
        font-size: 13px;
    }

    .product-thumb,
    .image-placeholder {
        width: 50px;
        height: 50px;
    }

    .qty-btn {
        width: 28px;
        height: 28px;
    }

    .qty-input {
        width: 38px;
        font-size: 13px;
    }

    /* Dialog adjustments */
    .configurator-product-dialog {
        max-width: calc(100% - 20px) !important;
    }

    .product-row {
        padding: 10px 12px;
        gap: 8px;
    }

    .product-row .product-thumb {
        width: 40px;
        height: 40px;
    }

    .product-row .product-name {
        font-size: 13px;
    }

    .product-row .product-price {
        font-size: 14px;
        min-width: 70px;
    }

    .product-row .product-link {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .filter-controls {
        flex-direction: column;
        gap: 8px;
    }

    .sort-control,
    .manufacturer-control {
        width: 100%;
    }

    .sort-control select,
    .manufacturer-control select {
        flex: 1;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-row {
    animation: fadeInUp 0.3s ease-out;
}

.manufacturer-group .product-row:nth-child(1) { animation-delay: 0.02s; }
.manufacturer-group .product-row:nth-child(2) { animation-delay: 0.04s; }
.manufacturer-group .product-row:nth-child(3) { animation-delay: 0.06s; }
.manufacturer-group .product-row:nth-child(4) { animation-delay: 0.08s; }
.manufacturer-group .product-row:nth-child(5) { animation-delay: 0.1s; }

/* ============================================
   Wizard Step Visibility
   ============================================ */
.wizard-step {
    display: none;
}

.wizard-step.wizard-step-active {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

/* ============================================
   Wizard Progress Indicator
   ============================================ */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    padding: 20px 0;
}

.wizard-step-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all var(--cfg-transition);
    user-select: none;
}

.wizard-step-indicator:hover {
    background: var(--cfg-gray-100);
}

.wizard-step-indicator .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cfg-gray-300);
    color: var(--cfg-gray-700);
    font-weight: 700;
    font-size: 15px;
    transition: all var(--cfg-transition);
}

.wizard-step-indicator .step-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--cfg-gray-500);
    transition: color var(--cfg-transition);
}

/* Active state */
.wizard-step-indicator.active .step-number {
    background: var(--cfg-accent);
    color: #fff;
}

.wizard-step-indicator.active .step-label {
    color: var(--cfg-accent);
    font-weight: 600;
}

/* Completed state */
.wizard-step-indicator.completed .step-number {
    background: var(--cfg-success);
    color: #fff;
}

.wizard-step-indicator.completed .step-label {
    color: var(--cfg-success);
}

/* Connector line */
.wizard-step-connector {
    flex: 0 0 60px;
    height: 2px;
    background: var(--cfg-gray-300);
    margin: 0 4px;
    transition: background var(--cfg-transition);
}

/* ============================================
   Wizard Step Footer
   ============================================ */
.wizard-step-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: 20px;
    background: var(--cfg-gray-100);
    border-radius: var(--cfg-border-radius);
}

.wizard-selection-count {
    font-size: 15px;
    color: var(--cfg-gray-700);
    font-weight: 500;
}

.wizard-selection-count .selection-count-number {
    font-weight: 700;
    color: var(--cfg-accent);
    font-size: 18px;
}

.wizard-btn-continue {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--cfg-border-radius);
    border: none;
    background: var(--cfg-accent);
    color: #fff;
    cursor: pointer;
    transition: all var(--cfg-transition);
}

.wizard-btn-continue:hover:not(:disabled) {
    background: #0069d9;
}

.wizard-btn-continue:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wizard-btn-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--cfg-border-radius);
    cursor: pointer;
    transition: all var(--cfg-transition);
}

/* ============================================
   Wizard Step 2 — Summary Container
   ============================================ */
.wizard-summary-container {
    background: #fff;
    border-radius: var(--cfg-border-radius);
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.wizard-summary-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cfg-primary);
    margin-bottom: 24px;
}

/* Summary table */
.wizard-summary-table {
    width: 100%;
    border-collapse: collapse;
}

.wizard-summary-table .ws-header th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--cfg-gray-500);
    font-weight: 600;
    padding: 10px 12px;
    border-bottom: 2px solid var(--cfg-gray-300);
    text-align: left;
}

.wizard-summary-table .ws-header th:last-child {
    text-align: right;
}

.wizard-summary-table .ws-header th:nth-child(2) {
    text-align: center;
}

.wizard-summary-table .ws-row {
    border-bottom: 1px solid var(--cfg-gray-200);
}

.wizard-summary-table .ws-row td {
    padding: 14px 12px;
    vertical-align: middle;
}

.ws-product-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ws-thumb {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid var(--cfg-gray-200);
    flex-shrink: 0;
}

.ws-product-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ws-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--cfg-gray-500);
    font-weight: 500;
}

.ws-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--cfg-primary);
    line-height: 1.3;
}

.ws-sku {
    font-size: 12px;
    color: var(--cfg-gray-500);
}

.ws-qty {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--cfg-gray-700);
}

.ws-price {
    text-align: right;
    font-weight: 700;
    font-size: 15px;
    color: var(--cfg-success);
}

/* Summary total */
.wizard-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0 0;
    margin-top: 16px;
    border-top: 2px solid var(--cfg-gray-300);
}

.wizard-summary-total strong {
    font-size: 16px;
    color: var(--cfg-gray-700);
}

.wizard-summary-total .total-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--cfg-success);
}

/* Summary actions */
.wizard-summary-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wizard-summary-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--cfg-border-radius);
    cursor: pointer;
    transition: background-color var(--cfg-transition), opacity var(--cfg-transition);
    width: 100%;
}

.wizard-summary-actions .btn i {
    font-size: 16px;
}

.wizard-summary-actions .validate-configuration {
    background-color: var(--cfg-accent);
    color: #fff;
}

.wizard-summary-actions .validate-configuration:hover {
    background-color: #0069d9;
}

.wizard-summary-actions .add-to-cart {
    background-color: var(--cfg-success);
    color: #fff;
}

.wizard-summary-actions .add-to-cart:hover:not(:disabled) {
    background-color: #218838;
}

.wizard-summary-actions .add-to-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wizard-summary-actions .save-configuration {
    background-color: var(--cfg-gray-500);
    color: #fff;
}

.wizard-summary-actions .save-configuration:hover {
    background-color: var(--cfg-gray-700);
}

/* ============================================
   Wizard Responsive
   ============================================ */
@media (max-width: 768px) {
    .wizard-step-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .wizard-btn-continue,
    .wizard-btn-back {
        width: 100%;
        justify-content: center;
    }

    .wizard-progress {
        margin-bottom: 20px;
        padding: 16px 0;
    }

    .wizard-step-connector {
        flex: 0 0 30px;
    }

    .wizard-step-indicator {
        padding: 8px 14px;
    }

    .ws-thumb {
        width: 40px;
        height: 40px;
    }

    .wizard-summary-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .wizard-step-indicator .step-label {
        display: none;
    }

    .wizard-step-indicator {
        padding: 8px;
    }

    .wizard-step-connector {
        flex: 0 0 20px;
    }

    .ws-product-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ============================================
   Wizard RTL Support
   ============================================ */
[dir="rtl"] .wizard-progress {
    flex-direction: row-reverse;
}

[dir="rtl"] .wizard-step-indicator {
    flex-direction: row-reverse;
}

[dir="rtl"] .wizard-step-footer {
    flex-direction: row-reverse;
}

[dir="rtl"] .wizard-btn-continue i,
[dir="rtl"] .wizard-btn-back i {
    transform: scaleX(-1);
}

[dir="rtl"] .ws-product-info {
    flex-direction: row-reverse;
}

[dir="rtl"] .ws-price {
    text-align: left;
}

[dir="rtl"] .wizard-summary-total {
    flex-direction: row-reverse;
}

[dir="rtl"] .wizard-summary-table .ws-header th {
    text-align: right;
}

[dir="rtl"] .wizard-summary-table .ws-header th:last-child {
    text-align: left;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .search-config-section,
    .summary-actions,
    .wizard-summary-actions,
    .btn-delete,
    .btn-add-product,
    .configurator-product-dialog,
    .ui-widget-overlay,
    .qty-btn,
    .step-anchor-hidden,
    .wizard-progress,
    .wizard-step-footer,
    .wizard-btn-continue,
    .wizard-btn-back {
        display: none !important;
    }

    .wizard-step {
        display: block !important;
    }

    .configurator-page .configurator-summary {
        position: relative;
    }

    .section-header td {
        background: #333 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/*
* Copyright 2014 Seven Spikes Ltd. All rights reserved. (http://www.nop-templates.com)
* http://www.nop-templates.com/t/licensinginfo
*/

.ribbon-wrapper {
    position: relative;
}
@media all and (min-width: 769px) {
.product-list .ribbon-wrapper {
    float: left; /*should not be applied on smaller resolutions where the product list looks like a grid*/
}
}

/* ribbon positioning */

.ribbon-position {
	font-size: 0;
	line-height: 0;
	position: absolute;
	z-index: 1;
	-webkit-transition: all .15s ease-in-out;
	-moz-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}
.ribbon-position.top-left {
	top: 0;
	left: 0;
}
.ribbon-position.top-right {
	top: 0;
	right: 0;
}
.ribbon-position.bottom-left {
	bottom: 0;
	left: 0;
}
.ribbon-position.bottom-right {
	bottom: 0;
	right: 0;
}
.ribbon-position.top-middle {
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
}
.ribbon-position.right-middle {
	top: 0;
	right: 0;
	bottom: 0;
	text-align: right;
}
.ribbon-position.bottom-middle {
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
}
.ribbon-position.left-middle {
	top: 0;
	bottom: 0;
	left: 0;
	text-align: left;
}
.ribbon-position.center {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
}
.ribbon-position.right-middle:before,
.ribbon-position.left-middle:before,
.ribbon-position.center:before {
	content: "";
	display: inline-block;
	height: 100%;
	width: 0;
	vertical-align: middle;
}

/* ribbon wrapping element */

.product-ribbon {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

/* ribbon label without image*/

.ribbon-text {
	font-size: 12px;
	line-height: normal;
}

/* ribbon label with image */

.ribbon-image-text {
	font-size: 12px;
	line-height: normal;
	position: absolute;
	top: 0;
	left: 0;
}
/*
* Copyright 2014 Seven Spikes Ltd. All rights reserved. (http://www.nop-templates.com)
* http://www.nop-templates.com/t/licensinginfo
*/

.gallery .ribbon-wrapper {
    font-size: 0;
    overflow: hidden;
}
.gallery .ribbon-wrapper img {
	max-width: 100%;
}
.ribbon-position.top-right {
    top: 5px;
    right: 5px;
}

.ribbon-position.top-left {
    top: 5px;
    left: 5px;
}
.ribbon-position.top-middle {
    top: 5px;
}


.ribbon-position.bottom-right {
    bottom: 5px;
    right: 5px;
}

.ribbon-position.bottom-left {
    bottom: 5px;
    left: 5px;
}

.ribbon-position.bottom-middle {
    bottom: 5px;
}

.ribbon-position.right-middle {
    right: 5px;
}
.ribbon-position.left-middle {
    left: 5px;
}

@media all and (max-width:1024px) {
    .product-list .ribbon-wrapper {
        float: none !important;
    }
}


@media all and (min-width: 1025px) {
    .product-list .ribbon-wrapper + .details {
        margin: 0 0 0 240px;
    }

    .spc-categories .ribbon-wrapper {
	    float: left;
	    width: 45%;
    }
    .spc-categories .ribbon-wrapper .picture {
	    width: 100%;
    }

}

@media all and (min-width: 1367px) {
	
.spc-categories .ribbon-wrapper {
	width: 40%;
}

}


@media all and (min-width: 769px) {
	
.product-list .ribbon-wrapper {
    float: right; /*should not be applied on smaller resolutions where the product list looks like a grid*/
}

}

/*
* Copyright 2014 Seven Spikes Ltd. All rights reserved. (http://www.nop-templates.com)
* http://www.nop-templates.com/t/licensinginfo
*/




@media all and (min-width: 1025px) {
    .product-list .ribbon-wrapper + .details {
        margin: 0 240px 0 0;
    }

    .spc-categories .ribbon-wrapper {
	    float: right;
    }

}
/* Slider */
.slick-carousel,
.carousel-title {
    display: none;
}
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*
* Copyright 2015 Seven Spikes Ltd. All rights reserved. (http://www.nop-templates.com)
* http://www.nop-templates.com/t/licensinginfo
*/

.jCarouselMainWrapper {
    position: relative;
}

.jCarouselMainWrapper .loading-overlay {
    position: absolute;
    top: 0;
    left: -30px;
    z-index: 1;
    width: calc(100% + 60px) !important;
    height: 100% !important;
    background-color: rgba(255,255,255,.7);
}

.jCarouselMainWrapper .loading-overlay:before,
.jCarouselMainWrapper .loading-overlay:after {
	content:"";
	position: absolute;
	display: inline-block;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border: 0px solid #97c300;
	border-radius: 50%;
	-webkit-animation: loader 1.6s cubic-bezier(0, 0, 0.09, 0.99) infinite;
	-moz-animation: loader 1.6s cubic-bezier(0, 0, 0.09, 0.99) infinite;
	animation: loader 1.6s cubic-bezier(0, 0, 0.09, 0.99) infinite;
}

.jCarouselMainWrapper .loading-overlay:after {
	animation-delay: .8s;
}

.nop-jcarousel {
    position: relative;
    margin: 0 0 80px !important;
}
.jCarouselMainWrapper:last-child .nop-jcarousel {
    margin: 0 !important;
}
.nop-jcarousel .carousel-title {
    position: relative;
    display: block;
    margin: 0 0 20px;
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    z-index: 2;
}
.nop-jcarousel .carousel-title strong {
    color: #444;
}


/* MANUFACTURERS CAROUSEL IN FOOTER */

.nop-jcarousel.manufacturer-grid,
.nop-jcarousel.vendor-grid {
    background-color: #f6f6f6;
    padding: 18px 10px 20px;
}

.nop-jcarousel.manufacturer-grid .title,
.nop-jcarousel.vendor-grid .title {
    display: none !important;
}

.nop-jcarousel.product-grid .slick-slide,
.nop-jcarousel.category-grid .slick-slide {
    padding: 0 6px;
}

.nop-jcarousel.product-grid .slick-carousel {
    margin: 0 -6px;
}

.nop-jcarousel.manufacturer-grid .carousel-item,
.nop-jcarousel.vendor-grid .carousel-item {
    padding: 0 10px;
}

.nop-jcarousel.manufacturer-grid .item-box,
.nop-jcarousel.vendor-grid .item-box{
    border: none;
}

.nop-jcarousel.manufacturer-grid .item-box .picture,
.nop-jcarousel.vendor-grid .item-box .picture{
    border-radius: 3px;
}

.nop-jcarousel.manufacturer-grid .item-box .picture img,
.nop-jcarousel.vendor-grid .item-box .picture img{
    backface-visibility: hidden;
    transition: all .3s ease;
    opacity: .3 !important;
}

.nop-jcarousel.manufacturer-grid .item-box:hover .picture img,
.nop-jcarousel.vendor-grid .item-box:hover .picture img{
    opacity: 1 !important;
}

.nop-jcarousel.manufacturer-grid .item-box .picture a:before,
.nop-jcarousel.vendor-grid .item-box .picture a:before{
    padding-top: 66%;
}
.nop-jcarousel.manufacturer-grid .slick-dots,
.nop-jcarousel.vendor-grid .slick-dots{
    margin-top: 15px;
}
.nop-jcarousel.manufacturer-grid .slick-dotted.slick-slider,
.nop-jcarousel.vendor-grid .slick-dotted.slick-slider{
    margin: 0;
}

.footer .nop-jcarousel.manufacturer-grid,
.footer .nop-jcarousel.vendor-grid {
    margin: 0 !important;
}

.center-1 .nop-jcarousel.manufacturer-grid,
.center-1 .nop-jcarousel.vendor-grid {
    margin: 0 -10px 70px !important;
}

/* NEWEST PRODUCTS */

.home-page .jCarouselMainWrapper.small-products {
    margin: 50px -10px 0 !important;
    padding: 50px 30px;
    background-color: #f6f6f6;
}

.home-page .jCarouselMainWrapper.small-products + div {
    margin-top: 70px;
}

.small-products .nop-jcarousel {
    position: relative;
    font-size: 0;
    margin: 0 !important;
}

.home-page .small-products .nop-jcarousel .carousel-title {
    position: static;
    display: block !important;
    padding: 0;
    margin-bottom: 30px;
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.small-products .nop-jcarousel .carousel-title {
    padding: 0;
}

.home-page .jCarouselMainWrapper.small-products .nop-jcarousel .carousel-title:before {
    content: "\6c";
    display: block;
    margin-bottom: 30px;
    font-size: 55px;
    color: #97c300;
    text-transform: none;
}


.carousel-wrapper .small-products + .small-products {
    margin: 40px 0 0 !important;
}

.carousel-wrapper {
    font-size: 0;
    margin-top: 50px;
}

.carousel-wrapper .small-products {
    background-color: transparent;
    padding: 0 20px;
}

.carousel-wrapper .small-products .slick-list {
    border: 1px solid #eee;
    border-radius: 3px;
    overflow: hidden;
}

.carousel-wrapper .small-products .item-box {
    border: none;
    border-radius: 0 !important;
}


.slick-carousel .item-box {
    width: 100% !important;
    margin: 0 !important;
}

.carousel-item .ribbon-position {
    -webkit-transform: translateZ(0) scale(1.0, 1.0); /*Fix for delayed ribbon load on swipe*/
}

.nop-jcarousel {
    padding: 0 20px;
}
.small-products .nop-jcarousel {
    padding: 0;
}


.center-2 .nop-jcarousel.manufacturer-grid,
.center-2 .nop-jcarousel.vendor-grid {
    margin-top: 50px;
    padding: 20px;
}


.side-2 .jCarouselMainWrapper  {
    padding: 0 !important;
    margin: 0 0 30px !important;
    background-color: transparent;
    clear: both;
}

.side-2 .jCarouselMainWrapper:last-child {
    margin: 0 !important;
}
.side-2 .nop-jcarousel .carousel-title {
    margin: 0 0 20px;
    padding: 0 40px;
    font-size: 20px;
    color: #444;
    text-align: center;
}


.side-2 .nop-jcarousel.product-grid .slick-carousel {
    padding: 0 20px;
}
.side-2 .small-products .nop-jcarousel.product-grid .slick-carousel {
    padding: 0;
}

.side-2 .nop-jcarousel.product-grid .btn-wrapper,
.side-2 .nop-jcarousel.product-grid .buttons {
    display: none;
}

.side-2 .item-box .prices > *:last-child:not(:empty) {
    margin: 0;
}

.side-2 .nop-jcarousel.category-grid .item-box,
.center-2 .nop-jcarousel.category-grid .item-box {
   background-color: #f6f6f6;
}


/*Arrows*/


.jCarouselMainWrapper:not(.small-products) .slick-list {
    margin: 0 -3px;
}

.jCarouselMainWrapper .slick-next,
.jCarouselMainWrapper .slick-prev {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    cursor: pointer;
    border: 1px solid #eee;
    border-radius: 50%;
    text-align: center;
    font-size: 0;
    z-index: 1;
    transition: all .2s ease;
}
.jCarouselMainWrapper .slick-next {
    right: -16px;
}

.jCarouselMainWrapper .slick-prev {
    left: -16px;
}

.jCarouselMainWrapper.small-products .slick-prev {
    left: -20px;
}
.jCarouselMainWrapper.small-products .slick-next {
    right: -20px;
}

.jCarouselMainWrapper .slick-next:before,
.jCarouselMainWrapper .slick-prev:before {
    display: block;
    color: #d0d0d0;
    font-size: 12px;
    line-height: 40px;
    transition: all .2s ease;
    text-transform: none;
}


.jCarouselMainWrapper .slick-next:hover,
.jCarouselMainWrapper .slick-prev:hover {
    border: 1px solid #97c300;
    background-color: #97c300;
}

.jCarouselMainWrapper .slick-next:hover:before,
.jCarouselMainWrapper .slick-prev:hover:before {
    color: #fff;
}

.jCarouselMainWrapper .slick-prev:before {
    content: "\6b";
}

.jCarouselMainWrapper .slick-next:before {
    content: "\6a";
}

.jCarouselMainWrapper .slick-disabled {
    opacity: 0.5;
    cursor: default;
}


/* Dots */

.jCarouselMainWrapper .slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.jCarouselMainWrapper .slick-dots {
    display: block;
    width: 100%;
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
    text-align: center;
}

.jCarouselMainWrapper .category-grid .slick-dots {
    margin: 15px 0 0;
}

.jCarouselMainWrapper .slick-dots li {
	display: inline-block;
    margin: 0 5px;
}

.jCarouselMainWrapper .slick-dots li button {
    background-color: rgba(0,0,0,.2);
    border: none;
	width: 6px;
	height: 6px;
    border-radius: 50%;
    font-size: 0;
}

.jCarouselMainWrapper .slick-dots .slick-active button {
    background-color: #eebe00;
    width: 12px;
    height: 12px;
}



@media all and (min-width: 660px) {

    .home-page .jCarouselMainWrapper.small-products .slick-slide {
        margin: 0 8px;
    }

    .home-page .jCarouselMainWrapper.small-products .slick-prev {
        left: -12px;
    }
    .home-page .jCarouselMainWrapper.small-products .slick-next {
        right: -12px;
    }


    .jCarouselMainWrapper .slick-next {
        right: -18px;
    }

    .jCarouselMainWrapper .slick-prev {
        left: -18px;
    }

}


@media all and (min-width: 768px) {

    .nop-jcarousel {
        padding: 0 10px;
    }

   
    .nop-jcarousel .carousel-title {
        margin: 0 0 30px;
        font-size: 30px;
    }

    .jCarouselMainWrapper:not(.small-products) .slick-list {
        margin: 0 -4px;
    }
    
    .home-page .jCarouselMainWrapper.small-products {
        margin: 50px -20px 0 !important;
    }


    .center-2 .nop-jcarousel .carousel-title {
        font-size: 26px;
        text-align: center;
    }

    .center-2 .nop-jcarousel.manufacturer-grid,
    .center-2 .nop-jcarousel.vendor-grid {
        margin: 70px 0 0 !important;
    }

    .center-1 .nop-jcarousel.manufacturer-grid,
    .center-1 .nop-jcarousel.vendor-grid {
        margin: 0 -20px 70px !important;
    }

}

@media all and (min-width:1024px) {

    .side-2 .small-products .item-box .picture > a:after,
    .home-page .jCarouselMainWrapper.small-products .item-box .picture > a:after {
        content: none;
        display: none;
    }


    .center-2 .nop-jcarousel .carousel-title {
        text-align: left;
    }

    .side-2 .nop-jcarousel .carousel-title {
        padding: 14px 30px;
        font-size: 17px;
        text-align: left;
        background: #f6f6f6;
    }
    
    .side-2 .nop-jcarousel .carousel-title strong {
        font-weight: 300;
    }

    .side-2 .jCarouselMainWrapper .slick-next {
        right: 10px;
    }
    .side-2 .jCarouselMainWrapper .slick-prev {
        left: 10px;
    }
    .side-2 .slick-carousel {
        padding: 0 60px 20px;
    }
    .side-2 .slick-carousel.slick-dotted {
        padding: 0 20px;
    }
    .side-2 .manufacturer-grid,
    .side-2 .vendor-grid {
        margin: 0 !important;
    }
    .side-2 .manufacturer-grid .slick-carousel,
    .side-2 .vendor-grid .slick-carousel {
        padding: 0 !important;
    }
    .side-2 .small-products .nop-jcarousel.product-grid .slick-carousel {
        padding: 0 30px;
    }

    .side-2 .small-products .item-box .product-item > div:first-child {
        width: 120px;
    }
    .side-2 .small-products .item-box .details {
        width: calc(100% - 120px);
    }
    .side-2 .small-products .item-box {
        max-height: 120px;
    }
    .side-2 .small-products .item-box .details {
        padding: 13px;
    }
    .carousel-wrapper {
        margin-top: 70px;
    }


}



@media all and (min-width: 1280px) {


    .jCarouselMainWrapper .slick-next {
        right: -20px;
    }

    .jCarouselMainWrapper .slick-prev {
        left: -20px;
    }

    .center-1 .nop-jcarousel.manufacturer-grid,
    .center-1 .nop-jcarousel.vendor-grid {
        margin: 0 -10px 70px !important;
        padding: 20px 0;
    }
    .center-1 .nop-jcarousel.manufacturer-grid:before,
    .center-1 .nop-jcarousel.vendor-grid:before {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: -7%;
        right: -7%;
        height: 100%;
        background-color: #f6f6f6;
        z-index: 0;
    }


    .nop-jcarousel {
        padding: 0;
    }
    .center-1 .nop-jcarousel.product-grid .slick-carousel {
        margin: 0 -1px 0 -6px;
    }

    .side-2 .small-products {
        margin: 0 0 30px !important;
        padding: 0;
    }

    .home-page .jCarouselMainWrapper.small-products {
        padding: 20px 0;
        margin: 50px 0 0 !important;
    }

    .carousel-wrapper .small-products .nop-jcarousel .carousel-title {
        text-transform: none;
        font-size: 26px;
    }

    .home-page .jCarouselMainWrapper.small-products .nop-jcarousel .carousel-title {
        display: inline-block !important;
        vertical-align: middle;
        width: 25%;
        margin: 0;
        padding: 0 20px;
        text-transform: uppercase;
        font-size: 17px;
    }

    .home-page .jCarouselMainWrapper.small-products .nop-jcarousel .carousel-title:before {
        margin-bottom: 20px;
    }

    .home-page .jCarouselMainWrapper.small-products .slick-carousel {
        display: inline-block;
        vertical-align: middle;
        width: calc(75% - 20px);
    }


    /* SMALL CAROUSELS ON PRODUCT PAGES */
    
    .carousel-wrapper .small-products {
        display: inline-block;
        vertical-align: top;
        width: 47%;
        margin: 0 !important;
        padding: 0;
    }

    .carousel-wrapper .small-products + .small-products {
        margin: 0 0 0 6% !important;
    }

    .carousel-wrapper .small-products:only-child {
        display: block;
        width: 100%;
    }
    .carousel-wrapper .small-products .nop-jcarousel .carousel-title,
    .carousel-wrapper .small-products .slick-carousel {
        display: block !important;
        width: 100%;
        padding: 0;
        margin-bottom: 25px;
    }

    .footer .nop-jcarousel.manufacturer-grid,
    .footer .nop-jcarousel.vendor-grid {
        padding: 18px 6vw 20px;
    }

    .footer .nop-jcarousel.manufacturer-grid .slick-carousel,
    .footer .nop-jcarousel.vendor-grid .slick-carousel {
        margin: 0 -10px !important;
    }

}

/*
* Copyright 2015 Seven Spikes Ltd. All rights reserved. (http://www.nop-templates.com)
* http://www.nop-templates.com/t/licensinginfo
*/

.jCarouselMainWrapper .slick-next {
    left: -16px;
    right: auto;
}

.jCarouselMainWrapper .slick-prev {
    right: -16px;
    left: auto;
}

.jCarouselMainWrapper.small-products .slick-prev {
    right: -20px;
    left: auto;
}

.jCarouselMainWrapper.small-products .slick-next {
    left: -20px;
    right: auto;
}

.jCarouselMainWrapper .slick-prev:before {
    content: "\6a";
}

.jCarouselMainWrapper .slick-next:before {
    content: "\6b";
}

@media all and (min-width: 660px) {

    .home-page .jCarouselMainWrapper.small-products .slick-prev {
        right: -12px;
        left: auto;
    }

    .home-page .jCarouselMainWrapper.small-products .slick-next {
        left: -12px;
        right: auto;
    }


    .jCarouselMainWrapper .slick-next {
        left: -18px;
        right: auto;
    }

    .jCarouselMainWrapper .slick-prev {
        right: -18px;
        left: auto;
    }
}


@media all and (min-width:1024px) {


    .center-2 .nop-jcarousel .carousel-title {
        text-align: right;
    }

    .side-2 .nop-jcarousel .carousel-title {
        text-align: right;
    }

    .side-2 .jCarouselMainWrapper .slick-next {
        left: 10px;
        right: auto;
    }
    .side-2 .jCarouselMainWrapper .slick-prev {
        right: 10px;
        left: auto;
    }

}


@media all and (min-width: 1280px) {


    .jCarouselMainWrapper .slick-next {
        left: -20px;
        right: auto;
    }

    .jCarouselMainWrapper .slick-prev {
        right: -20px;
        left: auto;
    }

    .center-1 .nop-jcarousel.product-grid .slick-carousel {
        margin: 0 -6px 0 -1px;
    }


    /* SMALL CAROUSELS ON PRODUCT PAGES */
 

    .carousel-wrapper .small-products + .small-products {
        margin: 0 6% 0 0 !important;
    }

}
.item-box .btn-wrapper button:hover,
input[type="radio"]:checked + label:before,
input[type="checkbox"]:checked + label:before,
.select input[type="checkbox"]:checked + label,
.select-boxes input[type="checkbox"]:checked + label,
.two-row-carousels .slick-arrow:hover,
.home-page-polls .answer input[type="radio"]:checked + label:before,
.answer input[type="radio"]:checked + label:before,
.pager li a:hover,
.pager li span,
.pager li.previous-page a:hover,
.pager li.next-page a:hover,
.pager li.first-page a:hover,
.pager li.last-page a:hover,
.ui-datepicker-header,
.ui-datepicker-calendar a.ui-state-active:hover,
.ui-datepicker-calendar a.ui-state-active,
.order-progress .active-step:not(.last) a:hover:before,
.opc .selector input[type="checkbox"]:checked ~ label:before,
.forum-search-box.search-box .search-box-button:hover,
.ico-wishlist .wishlist-qty,
.ico-cart .cart-qty,
.shopping-cart-link .cart-qty,
.selected-options-list > li span,
.header-menu .close-menu,
.close-side-menu,
.mobile-flyout-wrapper .close-side-menu,
.header-menu ul li.back-button,
.avatar-page .upload-image.valid + label,
.ui-slider-range,
.filters-button,
.quick-view-button a:hover,
.jCarouselMainWrapper .slick-next:hover,
.jCarouselMainWrapper .slick-prev:hover,
.blog-search-box .search-box-button:hover,
.sale-of-the-day-offer .timer-info-box,
.spc-products .slick-arrow:hover,
.nivo-directionNav a:hover,
.anywhere-slider .slick-arrow:hover,
.theme-roller .open-button,
.product-filters .ui-slider-range,
.buttons .k-button {
  background-color: #cc345a;
}
.selected-options-list > li span:hover,
.theme-roller .open-button:hover,
.avatar-page .upload-image.valid + label:hover,
.buttons .k-button:hover {
  background-color: #8f243f;
}
.link-rss:hover:before,
.field-validation-valid,
.username-available-status,
.cart a,
.data-table a,
.compare-products-table a,
.forums-table-section a,
.cart .product a:hover,
.data-table .product a:hover,
.compare-products-table .product a:hover,
.forums-table-section .product a:hover,
.cart .edit-item a,
.data-table .edit-item a,
.compare-products-table .edit-item a,
.forums-table-section .edit-item a,
.mini-shopping-cart .count a:hover,
.mini-shopping-cart .price,
.mini-shopping-cart .totals strong,
.login-form-in-header .in-header-register .register-button:hover,
.login-form-in-header .inputs input:focus + .inputs-icons,
.footer-block a:hover,
.social-sharing a:hover:before,
.footer-block .title:before,
.footer-block .title:after,
.block .title:before,
.block .list li.active > a,
.block .list a:hover,
.block .view-all a,
.block .tags li a:hover,
.product-tags-all-page li a:hover,
.poll > strong,
.block .answer label:hover,
.breadcrumb a:hover,
.breadcrumb a:hover span,
.item-box .actual-price,
.item-box .tax-shipping-info a,
.vendor-item:hover .title a,
.manufacturer-item:hover .title a,
.category-grid .item-box:hover .title a,
.product-name .manufacturers .value,
.overview .manufacturers .value,
.product-review-links a:hover,
.product-no-reviews a:hover,
.compare-products .add-to-compare-list-button:hover,
.compare-products .add-to-compare-list-button:hover:before,
.back-in-stock-subscription:hover:before,
.overview .additional-details div .value a,
.variant-overview .additional-details div .value a,
.download-sample a,
.product-social-sharing li a:hover:before,
.email-a-friend:hover:before,
.overview .product-price,
.variant-overview .product-price,
.tier-prices .item-price,
.product-tags-list a,
.ui-tabs .ui-tabs-nav li a:hover,
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,
.ui-tabs .ui-state-active.ui-tabs-active a,
.ui-tabs .submitReviewResult,
.product-review-helpfulness .vote:hover:before,
.wishlist-page .share-info a,
.compare-products-mobile .price .item span,
.email-a-friend-page .title a,
.accept-privacy-policy .read,
.account-page .button-2.return-items-button:hover,
.account-page .button-2.return-items-button:hover:before,
.order-total td label,
.order-total td span,
.cart-total .order-total,
.terms-of-service .read,
.cart-collaterals > div > .title:hover,
.cart-collaterals > div > .title:before,
.cart-collaterals .message-success,
.checkout-page .add-button .btn-holder.open:before,
.order-completed .order-number,
.opc > li.allow:not(.active) .step-title:after,
.opc > li.active .step-title .number,
.opc > li.active .step-title .title,
.order-details-page .order-overview .order-number,
.sitemap-page a,
.post-date,
.news-date,
.post-navigation a:before,
.post-navigation a:after,
.back-to-all-button:hover,
.back-to-all-button:hover:before,
.blog-page .tags li,
.blogpost-page .tags a,
.read-comments:hover,
.read-comments:hover:before,
.new-comment .result,
.news-list-homepage .view-all a,
.news-list-homepage .view-all a:after,
.current-time,
.forum-search-box .advanced > a:hover,
.forum-table a:hover,
.topic-post .pm-button:before,
.topic-post .post-vote > .vote.up:hover:before,
.topic-post .post-vote > .vote.down:hover:before,
.compare-products-table .product-price td,
.order-progress .active-step.last a span,
.category-navigation-list-wrapper ul li:hover > a,
.category-navigation-list-wrapper ul li:hover > span,
.category-navigation-list-wrapper ul li:hover > a:after,
.header-links a:hover,
.header-links a:hover:before,
.block.block-recently-viewed-products .list a:hover,
.block-account-navigation.block .list a:hover,
.block-account-navigation.block .list a:hover:after,
.block-account-navigation.block .list a.active,
.block-account-navigation.block .list a.active:after,
.header-selectors-wrapper > div input[type="radio"]:checked + label,
.ajaxCart .k-window-titlebar.k-header .k-window-actions .k-icon:hover:before,
.productAddedToCartWindowDescription strong,
.clearFilterOptionsAll:hover,
.filter-block .toggleControl:before,
.filter-block a.clearFilterOptions:hover:before,
.filter-block a.clearPriceRangeFilter:hover:before,
.picture-thumbs .slick-prev:hover:before,
.picture-thumbs .slick-next:hover:before,
.instant-search-item .detail .price,
.home-page .jCarouselMainWrapper.small-products .nop-jcarousel .carousel-title:before,
.mega-menu .sublist li:hover > a,
.category-navigation-list .dropdown .box .title a,
.category-navigation-list .dropdown .box .subcategory-item a:hover,
.mega-menu .manufacturers .box:hover .title,
.mega-menu .vendors .box:hover .title,
.previous-product a:before,
.next-product a:before,
.quickView .k-window-titlebar.k-header .k-window-actions a:hover:before,
.quickViewWindow #accordion > h3 span:before,
.quickViewWindow .product-variant .product-price,
.ropc .section .title:after,
.ropc .coupon-box-panel .message-success,
.ropc .giftcard-box-panel .message-success,
.ropc .cart-total .cart-total-row span,
.sale-of-the-day-offer .product-name a:hover,
.sale-of-the-day-offer .price.actual-price,
.sale-of-the-day-offer .slick-arrow:hover:before,
.rich-blog-homepage .view-all a,
.rich-blog-homepage .view-all a:after,
.blog-search-results .search-term-highlighter,
.share-post li a:hover:before,
.post-relations li a,
.spc-products .spc-header li:hover,
.spc-categories .navigation li:hover,
.spc-header li.active,
.spc-categories .navigation li.active,
.spc-categories .category-title,
.spc-categories .category-sublist a:hover,
.spc-categories .slick-prev:hover:before,
.spc-categories .slick-next:hover:before,
.advantages-item .title a:hover,
.scroll-back-button:before,
.inputs.accept-consent .read,
.product-filters .selected-price-range {
  color: #cc345a;
}
.product-name .manufacturers .value:hover,
.product-tags-list a:hover:hover,
.overview .additional-details div .value a:hover,
.variant-overview .additional-details div .value a:hover,
.terms-of-service .read:hover,
.download-sample a:hover,
.sitemap-page a:hover,
.blog-page .tags a:hover,
.blogpost-page .tags a:hover,
.product-tags-list a:hover,
.cart .edit-item a:hover,
.news-list-homepage .view-all a:hover,
.news-list-homepage .view-all a:hover:after,
.manufacturers .value:hover,
.block .view-all a:hover,
.data-table a:hover,
.forums-table-section a:hover,
.category-navigation-list .dropdown .box .title a:hover,
.rich-blog-homepage .view-all a:hover,
.rich-blog-homepage .view-all a:hover:after,
.post-relations li a:hover,
.spc-categories .category-title a:hover {
  color: #8f243f;
}
.ajax-loading-block-window:before,
.ajax-loading-block-window:after,
.two-row-carousels .slick-arrow:hover,
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,
.ui-tabs .ui-state-active.ui-tabs-active a,
.order-progress .active-step.last a:before,
.block-account-navigation.block .list a.active,
.nopAjaxCartPanelAjaxBusy:before,
.nopAjaxCartPanelAjaxBusy:after,
.miniProductDetailsPanelAjaxBusy:before,
.miniProductDetailsPanelAjaxBusy:after,
.ui-slider-handle,
.product-filters .ui-slider-handle,
.productPanelAjaxBusy:before,
.productPanelAjaxBusy:after,
.infinite-scroll-loader:before,
.infinite-scroll-loader:after,
.cloudzoom-ajax-loader:before,
.cloudzoom-ajax-loader:after,
.jCarouselMainWrapper .slick-next:hover,
.jCarouselMainWrapper .slick-prev:hover,
.quickView .k-loading-image:before,
.quickView .k-loading-image:after,
.quickView .cloudzoom-ajax-loader:before,
.quickView .cloudzoom-ajax-loader:after,
.panel-loader-effect .spinner:before,
.panel-loader-effect .spinner:after,
.spc-categories .loading-overlay:before,
.spc-categories .loading-overlay:after,
.spc-body .loading-overlay:before,
.spc-body .loading-overlay:after,
.spc-products .slick-arrow:hover,
.scroll-back-button,
.nivoSlider:before,
.nivoSlider:after,
.anywhere-slider:before,
.anywhere-slider:after,
.jCarouselMainWrapper .loading-overlay:before,
.jCarouselMainWrapper .loading-overlay:after {
  border-color: #cc345a;
}
.pager li a:hover,
.pager li span {
  border-color: #cc345a !important;
}
.button-1,
.eu-cookie-bar-notification button,
.login-form-in-header .login-button,
.category-navigation-list-wrapper:hover .category-navigation-title,
.category-navigation-list-wrapper.menuItemsAreClickable.opened .category-navigation-title,
.newsletter-email .newsletter-subscribe-button,
.home-page-polls .poll button,
.contact-vendor-button,
.item-box .buttons .button-2:hover,
.grouped-btn:hover,
.write-review .title strong,
.comment-form-btn strong,
.mfp-container .apply-shipping-button,
.write-review .button-1,
.qq-uploader .qq-upload-button,
.blog-posts .read-more,
.news-items .read-more,
.forums-table-section .view-all a,
.topic-post .post-actions .quote-post-button,
.ropc .complete-button button,
.spc-categories .category-picture .spc-to-all-products,
.jCarouselMainWrapper .slick-dots .slick-active button,
.sale-of-the-day-offer li.slick-active button,
.spc .slick-dots .slick-active button {
  background-color: #244951;
}
.button-1:hover,
.eu-cookie-bar-notification button:hover,
.mini-shopping-cart .buttons button:hover,
.login-form-in-header .login-button:hover,
.search-box .search-box-button:hover,
.newsletter-email .newsletter-subscribe-button:hover,
.poll .buttons button:hover,
.contact-vendor-button:hover,
.product-reviews-page .title .write-review-title:hover,
.mfp-container .apply-shipping-button:hover,
.write-review .button-1:hover,
.qq-uploader .qq-upload-button:hover,
.blog-posts .read-more:hover,
.news-items .read-more:hover,
.open-comment-form:hover,
.forums-table-section .view-all a:hover,
.topic-post .post-actions .quote-post-button:hover,
.ropc .complete-button button:hover {
  background-color: #173035;
}
@media all and (min-width: 1025px) {
  .search-box .search-box-button,
  .center-2 .product-list .item-box .buttons .button-2 {
    background-color: #244951;
  }
  .center-2 .product-list .item-box .buttons .button-2:hover {
    background-color: #173035;
  }
  .block-account-navigation.block .list .active a,
  .block-account-navigation.block .list .active a:after {
    color: #cc345a;
  }
  .block-account-navigation.block .list .active a {
    border-color: #cc345a;
  }
}
.mini-shopping-cart .picture a:before,
.item-box .picture > a:before,
.gallery .picture a:before,
.nop-jcarousel .item-picture a:before,
.sale-of-the-day-offer .item-gallery .item-picture a:before,
.sale-of-the-day-offer .picture-thumbs a span:before {
  padding-top: 90%;
}
/* ==================================
   Title Styles
   ================================== */
.article-content h2.title .title-text {
    position: relative;
    display: inline-block;
    padding: 8px 10px;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 20px;
    line-height: 1.2;
}

/* ==================================
   WhatsApp List Icon
   ================================== */
li.whatsapp {
    background-image: url('/images/icone/whatsapp.png');
}

/* ==================================
   Product Landing Sections
   ================================== */
.product-landing {
    margin-top: 60px;
}

.str-product-landing {
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.str-product-landing-text {
    position: relative;
}

.str-product-landing-image {
    width: 40%;
    flex-shrink: 0;
}

.str-product-landing-title {
    font-size: 35px;
    /* font-stretch יכול להיות מוגבל בתמיכה בדפדפנים מסוימים */
    font-stretch: condensed;
    color: #000;
}

/* עיצוב לתצוגה של אלמנטים זוגיים (2,4,6 וכו') */
.str-product-landing:nth-child(even) {
    flex-direction: row;
    /* אם לא חייבים !important אפשר להסיר */
    background-image: none !important;
    /* ניתן להתאים את ערכי ה-padding כרצונך */
    padding-right: 120px;
    padding-left: 80px;
}

/* עיצוב לתצוגה של אלמנטים אי-זוגיים (1,3,5 וכו') */
.str-product-landing:nth-child(odd) {
    flex-direction: row-reverse;
    max-height: 410px;
    padding-right: 80px;
    padding-left: 120px;
}

.str-product-landing:nth-child(odd) .str-product-landing-image {
    margin-left: 160px;
}

/* ==================================
   Image Lightbox (mfp)
   ================================== */
img.mfp-img {
    background: #fff;
}

/* ==================================
   Select2 Dropdown Z-Index Fix
   ================================== */
.select2-dropdown {
    z-index: 9999 !important;
}

/* ==================================
   Run Pickup Points
   ================================== */
#selectedRunPickupPoint,
#runPickupPointValidationMessage {
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
}

/* ==================================
   Carousel / Categories Direction
   ================================== */
.two-row-carousels > div {
    direction: ltr;
}

.spc-categories .product-grid.active {
    direction: ltr;
}

/* ==================================
   Product Details Page
   ================================== */
.product-details-page .page-body {
    clear: both;
    padding: 20px;
}

.product-details-page .overview {
    margin-bottom: 20px;
}

.product-details-page .short-description {
    margin-top: 20px;
}

/* ==================================
   Styled Table
   ================================== */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    text-align: right;
    border: 1px solid #ddd;
}

.styled-table thead tr {
    background-color: #009879;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.styled-table tbody tr {
    border-bottom: 1px solid #ddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:nth-of-type(even):hover {
    background-color: #fff;
}

.styled-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* ==================================
   Support Contact List
   ================================== */
.support-contact-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    direction: rtl;
    text-align: right;
}

.support-category {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.support-category h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    direction: rtl;
    text-align: right;
}

.support-category p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    direction: rtl;
    text-align: right;
}

.support-category strong {
    color: #000;
    font-weight: bold;
}


