﻿:root {
  --bs-body-bg: #F6F6F6;
  --bs-secondary: #162d61;
  --bs-secondary-rgb: 22, 45, 97;
  --bs-alice-blue: #E7F3FF;
  --bs-lavender-blush: #FFF3F6;
  --bs-danger: #CD0A0A;
  --bs-danger-rgb: 205, 10, 10;
  --bs-dark-gray: #444444;
  --bs-border-color: #66666670;
  --bs-red: #FF0202;
  --bs-primary: #1F36C7;
  --bs-primary-rgb: 31, 54, 199;
  --bs-golden: #FACF2D;
  --bs-light-yellow: #FEF8E0;
  --bs-link-hover-color: #162d61;
}

@-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 **********/

ol, ul {
	list-style: none;
}

/*********** GLOBAL STYLES **********/

table {
  width: 100%;
  border-collapse: collapse;
}

textarea {
	min-height: 150px;
}

select {
	min-width: 50px;
}

input[type="checkbox"],
input[type="radio"] {
	position: absolute;
	left: -9999px;
}

input[type="checkbox"],
input[type="radio"],
input[type="checkbox"] + *,
input[type="radio"] + * {
	vertical-align: middle;
}


input[type="radio"] + label,
input[type="checkbox"] + label {
	user-select: none;
	cursor: pointer;
}

input[type="radio"] + label:before,
input[type="checkbox"] + label:before {
	content: "";
	display: inline-block;
	margin-right: 10px;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	border: 1px solid var(--bs-primary);
	vertical-align: text-top;
	background-color: var(--bs-white);
}

input[type="radio"] + label.no-check:before,
input[type="checkbox"] + label.no-check:before {
  content: none;
}

input[type="checkbox"] + label:before {
	border-radius: 0;
}

input[type="radio"]:checked + label:before,
input[type="checkbox"]:checked + label:before{
	margin-left: 1px;
	margin-top: 1px;
	width: 16px;
	height: 16px;
	box-shadow: 0 0 0 1px var(--bs-primary);
	background-color: var(--bs-primary);
}

input[type="radio"]:checked + label:before {
  border: 2px solid var(--bs-white);
}

input[type="checkbox"]:checked + label:before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.master-wrapper-content select,
.k-window select {
	width: auto;
	max-width: 100%;
	border-radius: 3px;
	background: #fff url('../img/select-arrow-dark.svg') no-repeat right 15px center; 
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.master-wrapper-content {
  display: flow-root;
}

.page-title {
	margin: 1rem;
  text-align: center;
}

.page:after,
.page-title:after,
.page-body:after {
	content: "";
	display: block;
	clear: both;
}


.side-2,
.center-2 {
  transition: width, left, right, 0.3s;
}

  .center-2:has(.blog-page) {
    background: unset !important;
  }



.master-row.toggle .side-2 {
  width: 0;
  overflow: hidden;
}

.toggle-sidebar-wrapper {
  --sticky-top: 78px;
  top: var(--sticky-top);
}

.admin-header-links ~ .master-wrapper-content .toggle-sidebar-wrapper {
  top: calc(var(--sticky-top) + 35px);
}

.toggle-sidebar-helper {
  opacity: 0;
  transition: all .3s cubic-bezier(.23,1,.32,1);
}

.toggle-sidebar:hover + .toggle-sidebar-helper {
  opacity: 1;
}

.toggle-sidebar {
  background-color: #4977C7;
}

.toggle-sidebar:hover {
  background-color: var(--bs-primary);
}

.toggle-sidebar.active i:before {
  content: "\e907"
}
/*.toggle-sidebar.active:hover i:before {
  content: "\6a"
}*/

.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: var(--bs-primary);
}


/*********** 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-size: 1rem;
    color: #001E81;
    font-weight: 600;
  }
.form-fields {
	position: relative;
	font-size: 14px;
	line-height: 1.5;
	color: #444;
}

.form-fields > a {

	color: #8c8c8c;
	text-decoration: underline;
}

.inputs {
	position: relative;
	margin: 1rem 0 0;
	text-align: center;
	white-space: nowrap; /*fix for 'required' elements*/
}

.inputs:first-child {
	margin-top: 0;
}


.inputs:after {
	content: "";
	display: block;
	clear: both;
}

.inputs > label {
	display: block;
	margin: 0 0 8px;
  font-weight: 700;
	white-space: normal;
}

.inputs > .required {
	position: absolute;
	top: 0;
	right: 0;
}

  .inputs input[type="text"],
  .inputs input[type="password"],
  .inputs input[type="email"],
  .inputs input[type="tel"],
  .inputs select,
  .inputs textarea {
    width: 100%;
    height: 40px;
    border: 1px solid #66666670;
    border-radius: 5px;
    color: #666666;
    padding-left: 0.75em;
    padding-right: 0.75em;
    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: left;
	margin: 0 10px 15px 0;
}
.inputs .option-list label {
	display: inline;
	width: auto;
	margin: 0 3px;
}
.login-form-in-header .inputs.reversed {
	text-align: center;
}
.required {
	margin: 0 0 0 5px; /*siblings offset*/
	font-size: 15px;
	color: var(--bs-danger);
	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: var(--bs-red);
  font-weight: 700;
  text-align: left;
  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 var(--bs-red) !important;
}

.field-validation-valid,
.username-available-status {
	display: block;
	line-height: 17px;
	font-size: 13px;
	color: var(--bs-primary);
	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 ***********/

.data-table,
.compare-products-table,
.forums-table-section table {
	margin: 0 0 20px;
	border-collapse: initial;
	border-spacing: 0;
}
  .cart th,
  .data-table th,
  .forums-table-section th {
    border-bottom: 1px solid #d9d9d9;
    background-color: #fff;
    padding: 10px;
    white-space: nowrap;
    font-size: 1rem;
    color: #5B5B5B;
    font-weight: 300;
  }
  .cart td,
  .data-table td,
  .forums-table-section td {
    min-width: 50px;
    background-color: #fff;
    padding: 10px;
    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;
}

.data-table th:first-child,
.forums-table-section th:first-child,
.data-table td:first-child,
.forums-table-section td:first-child {
	border-left: 1px solid #eee;
}

.data-table th:last-child,
.forums-table-section th:last-child,
.data-table td:last-child,
.forums-table-section td:last-child {
	border-right: 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-left-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-right-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-left-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-right-radius: 3px;
}

td .attributes {
	padding: 20px 0;
	margin: 0;
}

.cart a,
.data-table a,
.compare-products-table a,
.forums-table-section a {
	color: var(--bs-primary);
}

.cart .product a,
.data-table .product a,
.compare-products-table .product a,
.forums-table-section .product a {
  color: #000000;
  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: var(--bs-primary);
}

.cart .edit-item a,
.data-table .edit-item a,
.compare-products-table .edit-item a,
.forums-table-section .edit-item a {
	color: var(--bs-primary);
	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;
	left: -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-left: 1px;
	margin-top: 1px;
	width: 16px;
	height: 16px;
	box-shadow: 0 0 0 1px #e7e7e7;
	border: 3px solid #fff;
	background-color: var(--bs-primary);
}


.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: left;
}
.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 .subtotal span {
	display:  inline-block;
	color: #444;
	white-space: nowrap;
	font-weight: 700;
}
.cart .subtotal .discount,
.cart .subtotal .discount + div {
	white-space: nowrap; /*remove this if you have no space enough for discounted products price*/
	display: none; /* hidden due to designer request */
}

.td-title + span {
	display: inline-block;
	vertical-align: middle;
}

.button-1 {
	border: none;
	height: 40px;
	padding: 0 25px;
	border-radius: 5px;
	background-color: var(--bs-secondary);
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	transition: all .2s ease;
}

.button-1:hover {
	background-color: var(--bs-primary);
}


/*********** NOTIFICATIONS & POPUPS  ***********/


.bar-notification {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1111;
	width: 100%;
	padding: 20px 6%;
	min-height: 60px;
	color: #fff;
	overflow: hidden;
}
.bar-notification.success {
	background-color: rgba(var(--bs-primary-rgb),.8);
}
.bar-notification.warning {
	background-color: rgba(var(--bs-warning-rgb),.8);
}
.bar-notification.error {
	background-color: rgba(var(--bs-danger-rgb),.8);
}
.bar-notification .content {
	float: left;
	max-width: calc(100% - 50px);
	font-size: 15px;
	color: #fff;
	font-weight: 700;
	margin: 0 10px 0 0;
}
.bar-notification .content a {
	color: #fff;
	text-decoration: underline;
}
.bar-notification .close {
	float: right;
	cursor: pointer;
	opacity: 0.7;
	font-size: 0;
}

.bar-notification .close:before {
	content: "\7a";
  font-family: "emporium-icons" !important;
  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: 2000;
    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: 0 solid var(--bs-primary);
	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;
	right: 25px;
	border: none;
	background: transparent;
	overflow: hidden;
	font-size: 0;
	text-align: center;
	opacity: 0.5;
}

.ui-dialog-titlebar button:before {
  font-family: "emporium-icons" !important;
  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-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;
}

.overlayOffCanvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 1060;
}

/*********** 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;
  width: 100%;
}
.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: 48px;
}

.profile-menu-box {
	position: absolute;
	top: 100%;
  transform: translateX(-50%);
	padding: 10px 0;
	background: #fff;
	opacity: 0;
  visibility: hidden;
	text-align:left;
	pointer-events: none;
	box-shadow: 0 0 20px rgba(0,0,0,.16);
	z-index: 1070;
	transition: all .2s ease;
}

.profile-menu-box:after {
	content: " ";
	bottom: 100%;
	left: 50%;
  height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
  border: 8px solid rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  margin-left: -8px;
}

.profile-menu-box.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media screen and (min-width: 768px) {
  .overlayOffCanvas {
    z-index: 1010;
  }
}


.container-lg .profile-menu-box > a,
.header-form-holder > a {
  position: relative;
  display: flex;
}
.profile-menu-box [class^="ico-"] {
  min-width: 20px;
  display: inline-block;
  margin-right: .5rem;
  font-size: 1.125rem;
}

.close-side-menu {
	display: none;
}

.header-badge {
  font-size: 10px;
  margin-top: 5px;
  min-width: 18px;
  height: 18px;
  line-height: 17px;
  padding: 0 3px;
}
.order-list-page .header-badge {
  margin-top: 12px;
  margin-left: -5px;
}

.icon-cart {
  min-width: 55px;
  font-size: 30px;
}

/*********** FLYOUT CART MOBILE ***********/
  .mini-shopping-cart .close-side-menu {
	display: none;
}

.flyout-cart {
    height: 40px;
}

.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 0 3px 3px;
}

.mini-shopping-cart:after {
	content: "";
	display: block;
	clear: both;
}

.mini-shopping-cart .count {
	float: left;
	padding: 10px 0 10px 15px;
}
.mini-shopping-cart .count a {
	font-size: 15px;
	color: #8c8c8c;
}

.mini-shopping-cart .count a:hover {
	color: var(--bs-primary);
	text-decoration: none;
}

.mini-shopping-cart .count a:before {
	display: inline-block;
	vertical-align: bottom;
	margin: 0 5px 0 0;
	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: left;
	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: left;
	width: 78px;
	height: auto;
	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;
  object-fit: scale-down;
	height: 100%;
	max-width: 100%;
}

.mini-shopping-cart .product {
	position: relative;
	margin: 0 30px 0 90px;
	text-align: left;
}

.mini-shopping-cart .product:after {
    content: "";
    display: block;
    clear: both;
}

.mini-shopping-cart .product .remove-item {
	position: absolute;
	top: 0;
	right: -30px;
	left: auto;
	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 {
	display: block;
	font-size: 8px;
	line-height: 18px;
	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 .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 4px 0 0;
	font-size: 0;
	color: #8c8c8c;
	float: left;
}

.mini-shopping-cart .quantity span {
	font-size: 15px;
}

.mini-shopping-cart .quantity:after {
	content: "x";
	display: inline-block;
	margin-left: 3px;
	font-size: 16px;
	font-weight: 700;
	color: #8c8c8c;
	text-transform: none;
	font-family: "Roboto";
}

.mini-shopping-cart .price {
	font-size: 16px;
	color: var(--bs-primary);
	float: right;
}

.mini-shopping-cart .totals {
	float: right;
	padding: 6px 15px 10px 0;
	font-size: 15px;
	text-align: right;
	color: #8c8c8c;
}
.mini-shopping-cart .totals strong {

	color: var(--bs-primary);
	font-size: 18px;
}
.mini-shopping-cart .buttons input[type=button] {
    border-radius: unset;
}
.mini-shopping-cart input[type="button"] {
	display: inline-block;
	width: 100%;
	padding: 0 15px;
}
.mini-shopping-cart input + input {
    margin-top: 10px;
    background-color: #ddd;
    color: #8c8c8c;
}

/******** LOGIN FORM IN HEADER ********/



.profile-menu-box.login-form-in-header {
	padding: 20px 0 0;
	width: 350px;
}

.login-form-in-header .fieldset {
	margin: 0;
}

.login-form-in-header .returning-wrapper .form-fields {
	padding: 0;
	min-height: 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 .in-header-register .register-button {
	display: flex;
  align-items: center;
  justify-content: center;
	background-color: transparent;
	border: none;
	text-transform: uppercase;
	font-weight: bold;
	transition: all .2s ease;
}

.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;
}

.inputs.reversed input[type="checkbox"] {
	position: absolute;
	left: -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 35px 0 15px;
	line-height: 45px;
	border-radius: 50px;
}

.login-form-in-header .inputs input:focus + .inputs-icons {
	color: var(--bs-primary);
}

input + .inputs-icons {
	position: absolute;
	top: 0;
	right: 15px;
	left: 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 10px 10px 0; 
	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-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-right: 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";
}

/******** END OF LOGIN FORM IN HEADER ********/

.search-box {
	position: relative;
}
.search-box form {
	position: relative;
}
.search-box form:after {
	content: "";
	display: block;
	clear: both;
}

#mobile-header-menu input.search-box-text,
.search-box input.search-box-text {
  width: 100%;
  padding-left: .5rem;
  height: 40px;
  border: 1px solid #908E8E;
  font-size: 14px;
}
  #mobile-header-menu input.search-box-text::placeholder
  .search-box input.search-box-text::placeholder {
    color: #44444480;
  }

#mobile-header-menu .search-box-button,
.search-box .search-box-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
}


.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: left;
	font-size: 14px;
	color: #444444;
}
.ui-autocomplete a.ui-state-focus {
	background-color: #f6f6f6;
}
.ui-autocomplete img {
	display: inline-block;
	width: 50px;
	margin-right: 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);
}

/*********** FOOTER ***********/

.footer {
  --bs-border-radius: 3rem;
}

.footer hr, .footer .footer-lower {
  margin-right: -1rem;
  margin-left: -1rem;
  width: calc(100% + 1.5rem);
  max-width: calc(100% + 1.5rem);
}



.footer-category-content:empty {
  padding: 0 !important;
}

.footer-category [class^="ico-"] {
  max-height: 40px;
}

.footer-bct {
  display: inline-block;
  max-width: 120px;
}


/*********** LEFT/RIGHT COLUMN ***********/


.block .title {
	position: relative;
  color: var(--bs-gray-600);
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .border-item{
      height: 0.5rem !important;
  }

  .voucher-logo-text {
    margin-top: 0.66rem;
  }

  .gap-mb-0 {
    gap: 0rem !important;
  }

  .block .title {
    font-size: .875rem;
  }

  .fs-md-9 {
    font-size: 0.875rem !important;
  }

  .item-box .actual-price {
    font-size: 0.875rem;
  }

  .footer {
    --bs-border-radius: 2rem;
  }


  .item-box .old-price {
    --font-size: 0.75rem;
  }

  .add-to-cart-button {
    padding-left: .75rem;
    padding-e: .75rem;
  }

  .product-grid .title {
    margin-bottom: .75rem;
    font-size: 1rem;
  }

  .ourcustomer-slider .title {
    font-size: 1rem;
  }

  .product-details-page {
    font-size: 0.875rem;
  }

  .overview .product-name {
    font-size: 1.125rem;
  }

  .fs-md-9 {
    font-size: 0.875rem !important;
  }

  .fs-md-11 {
    font-size: 0.6875rem !important;
  }
}


/********** CATEGORY PAGE **********/

@media screen and (min-width: 1025px) {
  .search-page-body .toggle-sidebar-wrapper,
  .category-page-body .toggle-sidebar-wrapper,
  .manufacturer-page-body .toggle-sidebar-wrapper {
    display: block !important;
  }

  .search-page-body .side-2, .search-page-body .center-2,
  .category-page-body .side-2, .category-page-body .center-2,
  .manufacturer-page-body .side-2, .manufacturer-page-body .center-2 {
    margin-top: -1rem;
    margin-bottom: 1rem;
  }

  .voucher-logo {
    width: 30px;
    height: 30px;
    display: block;
    background: url(../img/promotion.png) no-repeat center;
    border: none;
  }

  .label-logo {
    width: 30px;
    height: 30px;
    display: block;
    background: url(../img/label.png) no-repeat center;
    border: none;
  }

  .modal-dialog-w-lg {
    max-width: 640px;
  }

  .fs-lg-6 {
    font-size: 1rem !important;
  }

  .fs-lg-7 {
    font-size: 0.75rem !important; 
  }

  .fs-lg-9 {
    font-size: 0.875rem !important;
  }

  .fs-lg-11 {
    font-size: 0.6875rem !important;
  }

  .header-lg-fx-h{
      height: 10px !important;
  }

  .promotion-type-lg-w {
    width: 18% !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

}

.master-wrapper-page { 
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.breadcrumb {
  margin: 1rem 0;
}

.breadcrumb li {
	display: inline-block;
	font-size: 0.875rem;
	color: var(--bs-gray);
}

.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 .delimiter {
	display: inline-block;
	margin-right: 5px;
  font-size: 7px;
}

.product-review-box {
  font-family: "emporium-icons";
  position: relative;
  color: var(--bs-light);
  overflow: hidden;
}

.product-review-box .rating div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  color: var(--bs-yellow);
}

  .product-review-box .rating:before, .product-review-box .rating div:before {
    content: "\e9d9\e9d9\e9d9\e9d9\e9d9";
  }

.product-item {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
}

.item-box .picture {
  position: relative;
	overflow: hidden;
}
.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: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.item-box.manufacturer-item .picture > a img {
  transform: scale(0.8);
}


.item-box .prices {
  overflow: hidden;
}

.item-box .actual-price {
  font-size: 1.375rem;
}

.item-box .old-price {
  --font-size: 1rem;
  font-size: var(--font-size);
  height: calc(var(--font-size) * var(--bs-body-line-height));
}

.add-to-cart-qty-wrapper {
  position: relative;
  display: inline-flex;
  height: 40px;
  align-items: center;
  border-radius: 5px;
  border: 1px solid var(--bs-primary);
  overflow: hidden;
}

.add-to-cart-qty-wrapper .plus,
.add-to-cart-qty-wrapper .minus {
  display: inline-block;
  width: 30px;
  padding: 1rem 0;
  background-color: var(--bs-white);
  color: var(--bs-primary);
  cursor: pointer;
  text-align: center;
  transition: all .2s ease;
  user-select: none;
}

.add-to-cart-qty-wrapper {
  border: 1px solid var(--bs-primary);
}

.add-to-cart-qty-wrapper .plus:hover, .add-to-cart-qty-wrapper .minus:hover {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}

.add-to-cart-qty-wrapper .qty-input {
  width: 38px;
  height: 40px;
  border: 0;
  border-radius: 0;
  color: var(--bs-primary);

  outline: 0;
  text-align: center;
}

.product-essential .add-to-cart-qty-wrapper .plus,
.product-essential .add-to-cart-qty-wrapper .minus,
.product-essential .add-to-cart-qty-wrapper .qty-input {
  width: 35px;
}

.add-to-cart-button {
  height: 35px;
}

.ajax-cart-button-wrapper .cart-icon button, .ajax-cart-button-wrapper .buy-now-button {
  background-color: var(--bs-white);
  color: var(--bs-primary);
}

.ajax-cart-button-wrapper .cart-icon button {
  height: 35px;
  width: 35px;
  padding: 0;
}

  .ajax-cart-button-wrapper .cart-icon button:hover, .ajax-cart-button-wrapper .buy-now-button:hover {
    background-color: var(--bs-primary);
    color: var(--bs-white);
  }

.btn-wrapper { z-index: 1; }
.btn-wrapper .button-2 {
  --size: 40px;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  backface-visibility: hidden;
  border-radius: 50%;
  border: 1px solid var(--bs-primary);
  line-height: var(--size);
  transition: all .1s ease;
}

.btn-wrapper .button-2,
.btn-wrapper .button-2.active:hover {
  background-color: var(--bs-white);
  color: var(--bs-primary);
}


.btn-wrapper .button-2.active,
.btn-wrapper .button-2:hover {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}

.item-box .buttons .out-of-stock-button {
    height: 40px;
    line-height: 40px;
    border-radius: 25px;
    padding: 0 10px;
    text-transform: uppercase;
    font-size: 15px;
    width: 100%;
}

.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: 85%;
}

.vendor-item .title a,
.manufacturer-item .title a,
.category-grid .item-box .title a {
	display: block;
	letter-spacing: 0;
	text-overflow: ellipsis;
	transition: color .2s ease;
}

.vendor-item:hover .title a,
.manufacturer-item:hover .title a,
.category-grid .item-box:hover .title a {
	color: var(--bs-primary);
}

.product-grid .title {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: var(--bs-primary);
  font-weight: 600;
}

.ourcustomer-slider .title {
  font-size: 1.125rem;
  color: var(--bs-primary);
  font-weight: 600;
}

.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: var(--bs-primary);
	border-color: var(--bs-primary) !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-family: "emporium-icons" !important;
	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: var(--bs-primary);
}

.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: "\6b";
}

.next-page a:before {
	content: "\6a";
}

.first-page a:before {
	content: "\56";
}
.last-page a:before {
	content: "\57";
}


/********** PRODUCT PAGE **********/

.ico-dots.show:before {
  content: "\e925";
}

.gallery {
  position: relative;
}

.gallery .thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.gallery .picture-thumbs-list {
  width: 100px;
}

.gallery .picture-thumbs-item {
  background-color: #fff;
  border: 0 !important;
}

.gallery .thumb-item {
  padding: .25rem;
  display: block;
  cursor: pointer;
  border: 1px solid transparent;
}
  .gallery .thumb-item.cloudzoom-gallery-active {
    /*border-color: var(--bs-primary);*/
    border-color: var( --bs-dark-gray);
  }

.gallery .thumb-item,
.gallery .thumb-item img {
  border-radius: var(--bs-border-radius);
  overflow: hidden;
}
.gallery .picture-link img {
  max-width: 510px;
  max-height: 400px;
}

.gallery .slick-slider.slick-vertical .slick-arrow {
  position: static;
  margin: 0 auto;
  width: auto;
  height: auto;
  padding: .5rem 0;
  transform: none;
}
.gallery .slick-slider.slick-vertical .slick-arrow:before {
  font-size: 1.5rem;
}

.gallery .slick-slider.slick-vertical .slick-prev {
  transform: rotate(90deg);
}

.gallery .slick-slider.slick-vertical .slick-next {
  transform: rotate(90deg);
}

@media screen and (max-width:1024px) {
  .gallery .slick-list {
    height: auto !important;
  }

  .gallery .slick-track {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gallery .slick-dots li button:before {
    color: #FFDEDA;
    opacity: 1;
  }

  .gallery .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #5F79E3;
  }
}

.product-details-page {
  font-size: 1rem;
}

.overview {
	position: relative;
  
}

.overview .product-name {
  font-size: 1.25rem;
}

@media screen and (min-width: 1025px) {
  .product-essential {
    border-top-right-radius: var(--bs-border-radius-xl);
    border-top-left-radius: var(--bs-border-radius-xl);
  }
  
  .product-grid--last {
    border-bottom-left-radius: var(--bs-border-radius-xl);
    border-bottom-right-radius: var(--bs-border-radius-xl);
  }

  .fs-lg-5{
      font-size: 1rem !important;
  }
}

.product-reviews-overview {
  column-gap: 1rem;
}

.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 {
	display: none;
}

.back-in-stock-subscription { 
	margin: 0 0 15px;
	font-size: 0;
	backface-visibility: hidden;
}

.back-in-stock-subscription:before {
	content: "\e902";
	display: inline-block;
	margin-right: 7px;
	vertical-align: bottom;
	color: #8c8c8c;
	font-size: 17px;
	transition: color .2s ease;
}

.back-in-stock-subscription:hover:before {
	color:var(--bs-primary);
	-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 input {
	background: transparent;
	border: none;
	font-size: 12px;
	font-weight: bold;
	color: #8c8c8c;
	text-transform: uppercase;
	transition: color .2s ease;
}

.overview .additional-details:empty {
  display: none;
}

.overview .additional-details div {
	margin: 0 0 5px;
	font-size: 15px;
	color: #8c8c8c;
}

.overview .additional-details div .value {

	color: #444444;
}

.overview .additional-details div .value a {
	color: var(--bs-primary);
	text-decoration: none;
}

.overview .additional-details div .value a:hover {
	color: #7c9a16;
}

.overview .delivery-date {
	margin: 0 0 5px;
	font-size: 14px;
	color: #8c8c8c;
}
.free-shipping {
	display: inline-block;
	margin: 10px auto 15px;
	color: #8c8c8c;
	font-size: 14px;
} 

.overview-buttons div {
	display: inline-block;
	margin: 0 5px 10px;
}

.attributes {
	padding: 10px;
	font-size: 15px;
	text-align: left;
	margin: 0 auto 20px;
}

.attributes:only-child {
	margin-bottom: 0;
}

.attributes-wrapper > div {
	max-width: 320px;
	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: left;
}

.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.rental-attributes {
	font-size: 0;
}

.attributes.rental-attributes > div {
	display: inline-block;
	width: 49%;
}

.attributes.rental-attributes > div:nth-child(2n) {
	margin-left: 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: left;
}

.attributes .qty-box {
	margin: 0 0 0 5px;
}
.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: var(--bs-primary);
	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 {
  background-color: #001E81;
}
.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 {
	left: 0;
}
.ui-datepicker-header a.ui-datepicker-prev:before {
	content: "\6b";
}
.ui-datepicker-header a.ui-datepicker-next {
	right: 0;
}

.ui-datepicker-header a.ui-datepicker-next:before {
	content: "\6a";
}
.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 td span,
.ui-datepicker-calendar th span,
.ui-datepicker-calendar td a {
	display: block;
	font-size: 14px;
	color: #000;
	min-height: 32px;
	line-height: 32px;
	border-radius: 3px;
	transition: all .2s ease;
}

  .ui-datepicker-calendar td.ui-state-disabled span {
    color: #8c8c8c;
  }

  .ui-datepicker-calendar a.ui-state-default {
    color: black;
  }

  .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: #001E81;
	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: 32px !important;
	height: 32px !important;
	border: 2px solid #e7e7e7;
	border-radius: 3px;
	cursor: pointer;
}
.selected-value .attribute-square {
	border-color: #868686;
}
.attribute-squares .tooltip-container {
	display: none;
}
.overview .product-price {
  font-size: 1.375rem;
}

@media screen and (max-width: 1024px) {
  .overview .product-price {
    font-size: 1.125rem;
  }
  .overview .old-product-price {
    font-size: 0.875rem;
  }
}

.overview .discount-rate {
  --triangle-size: 7.5px;
  position: relative;
  margin-left: var(--triangle-size);
  padding: 0 .5rem;
  color: var(--bs-white);
  background-color: var(--bs-venetian-red);
  font-size: 15px;
}

.overview .discount-rate:before {
  content: " ";
  position: absolute;
  right: 100%;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: calc(var(--triangle-size) * 2 - 1px) solid transparent;
  border-right: var(--triangle-size) solid var(--bs-venetian-red);
  border-bottom: calc(var(--triangle-size) * 2) solid transparent;
}

.product-specs-box thead {
    display: none;
}

.product-collateral .title {
	margin: 0 0 10px;
	letter-spacing: 2px;
	font-size: 15px;
	color: #444;
	font-weight: 700;
	text-transform: uppercase;
}

.product-specs-box .data-table {
	border: 1px solid #eeeeee;
	border-radius: 3px;
	text-align: left;
	margin: 0;
}

.product-specs-box .data-table td {
	padding: 20px 25px;
	border: none;
}

.data-table td .color-squares {
	margin: -5px 0;
}

.product-specs-box .data-table td.spec-value {
	font-size: 16px;
	color: #444444;
	border-left: 1px solid #eeeeee;
}

.product-specs-box .data-table td.spec-name {
	font-size: 17px;
	color: #8c8c8c;
	font-weight: 300;
}

.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: var(--bs-primary);
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, 
.ui-tabs .ui-state-active.ui-tabs-active a {
	color: var(--bs-primary);
	border-bottom: 2px solid var(--bs-primary);
}

.ui-tabs .ui-tabs-panel {
	background-color: #f6f6f6;
	padding: 40px 20px;
	margin: 0 -10px;
}
.ui-tabs .ui-tabs-hide {
	display: none;
}


/********** 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-right: 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 {
	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-bottom: 25px;
}

.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%;
  content: " ";
  height: 0;
  width: 0;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top-color: #e5e5e5;
  position: absolute;
  pointer-events: none;
}


.review-rating ul {
    font-size: 0;
    vertical-align: middle;
}

.rating-options {
  position: relative;
	display: inline-block;
	overflow: hidden;
	font-size: 0;
  z-index: 2;
}

.write-review .rating-options * {
	float: right;
}

.write-review .rating-options input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.write-review .rating-options label {
  font-family: "emporium-icons";
	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:checked + label:before {
	display: inline-block;
	content: "\e9d9";
	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 label:before { color: #e0e0e0; }

.write-review .rating-options > input:checked ~ label:before {
	color: var(--bs-yellow);
}

.write-review .rating-options:not(.reviewed) > label:hover:before,
.write-review .rating-options:not(.reviewed) > label:hover ~ label:before {
	color: var(--bs-yellow);
}

.write-review .rating-options > input:checked + label:hover:before,
.write-review .rating-options > input:checked + label:hover ~ label:before,
.write-review .rating-options > input:checked ~ label:hover:before,
.write-review .rating-options > input:checked ~ label:hover ~ label:before,
.write-review .rating-options > label:hover ~ input:checked ~ label:before {
	color: var(--bs-yellow);
}

.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: var(--bs-red);
}

.write-review .product-review-links,
.write-review .product-review-box {
	margin: 0 0 25px;
}

.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;
}

@media (max-width: 767px) {
  .product-review-item__image { max-width: 75px }
}


/********** 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: var(--bs-primary);
}

/*********** TOPICS ***********/

.topic-block a,
.topic-page a {
	text-decoration: underline;
}
.topic-page .page-body {
	line-height: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

/********** 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 {
	display: inline-block;
	margin-right: 40px;
}
.gender label {
	display: inline-block;
	padding: 8px 0;
	width: auto !important;
	cursor: pointer;
	font-weight: 300;
}

.date-picker-wrapper {
	width: 100%;
}

.date-of-birth .date-picker-wrapper select {
	border-radius: 0;
	padding: 0 25px 0 10px;
	width: 46%;
	background: #fff url(../img/select-arrow-dark.svg) no-repeat right 10px center;
}

.date-of-birth .date-picker-wrapper select:first-child {
	border-radius: 5px 0 0 5px;
	width: 27%;
}
.date-of-birth .date-picker-wrapper select:last-child {
	border-radius: 0 5px 5px 0;
	width: 27%;
}

.date-of-birth select + select {
	margin: 0 0 0 -1px;
}
#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;
}

.inputs.accept-consent .read {
    margin-left: 5px;
	font-size: 15px;
	color: var(--bs-primary);
	cursor: pointer;
    clear: none;
	transition: all .1s ease;
}


.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 input,
.private-message-send-page .buttons input,
.move-topic-page .buttons input {
	width: 49%;
	margin: 0 0 0 2%;
}

.forum-edit-page .buttons input:nth-child(2n+1),
.private-message-send-page .buttons input:nth-child(2n+1),
.move-topic-page .buttons input:nth-child(2n+1) {
	margin-left: 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;
  background-color: white;
}

.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 .ico-register {
	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;
    clear: none;
}

.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: left;
	clear: none;
}
.login-page .inputs.reversed span {
	float: right;
	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;
}

.account-page .data-table {
	text-align: center;
}

.account-page .fieldset {
	margin-bottom: 30px;
}

.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,
.inactive-account-page .page-body {
    padding: 20px;
    max-width: 740px;
    margin: 0 auto;
    background-color: #fff;
}

#vat-invoice-form-container .form-group .form-control {
  border-radius: 5px;
  color: #666666;
}

.page.account-page.customer-info-page #vat-invoice-form-container {
  margin-top: 1rem;
  padding: 0 0.75rem;
}

.page.account-page.customer-info-page #vat-invoice-form-container .form-group {
  margin-top: 1rem;
}

  .page.account-page.customer-info-page #vat-invoice-form-container .form-group div .label-wrapper {
    padding-left: 2rem;
  }

  .page.account-page.customer-info-page #vat-invoice-form-container .tax-information-note {
    display: none;
  }

.page.account-page.customer-info-page #vat-invoice-form-container label.checkout-attributes-custom-label:before {
    float: right;
    margin: 0.5rem 0 0 1rem !important;
}

.order-summary #vat-invoice-form-container .form-group div {
    width: 100%;
}

  .order-summary #vat-invoice-form-container .form-group div .input-group-btn {
    position: absolute;
    left: 100%;
  }

.account-page .inputs {
  text-align: left;
}

.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-right: 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: var(--bs-primary);
}

.account-page .edit-address {
	margin: 0 0 20px;
}

.add-button .ico-location-add {
	display: block;
	margin-bottom: 40px;
	content: "\55";
	font-size: 100px;
	color: #8e8e8e;
}

.address-item .title,
.request-item .title {
	margin-bottom: 12px;
	color: #444;
}

.address-item .title strong,
.request-item .title strong {
	font-weight: 700;
	color: #444;
	font-size: 18px;
}

.address-item span.default {
    padding-left: .5rem;
    color: #001e81;
    font-size: .8rem;
    display: inline-block;
    font-weight: normal;
}

  .address-item span.default:before {
      content: "\2714";
      display: inline-block;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 1px solid #001e81;
      margin-right: .25rem;
  }

.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-list-page .info li > label,
.order-list-page .info li > label {
	display: none;
}

.order-list-page .order-item a img {
  min-width: 120px;
  object-fit: scale-down;
  aspect-ratio: 1/1;
}

.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;
}

.default-address-button {
    font-size: 22px !important;
    padding: 0 10px !important;
}
.default-address-button:hover, .default-address-button.active {
    color: #eebe00 !important;
  }

.button-2.edit-address-button {
	background-image: url('../img/edit-icon.png');
}

.button-2.delete-address-button {
	background-image: url('../img/delete-icon.png');
}

.account-page .button-1 {
	height: 40px;
	line-height: 40px;
	font-size: 13px;
	font-weight: 700;
}

/********** 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 var(--bs-primary);
	box-shadow: 0 0 15px rgba(0,0,0,.2);
}

.order-progress a:after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	top: 50%;
	left: 0;
	
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	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 {
	right: 0;
	left: auto;
}

.order-progress .active-step a {
	cursor: pointer;
}

.order-progress .active-step:not(.last) a:hover:before {
	background-color: var(--bs-primary);
	width: 20px;
	height: 20px;
	transition: all .3s ease;
}

.order-progress li.inactive-step a {
	cursor: default;
}

.no-data {
  text-align: center;
  font-size: 1rem;
  flex-grow: 1;
  padding: 20px;
}

.shopping-cart-page .common-buttons button,
.shopping-cart-page .cart-collaterals .button-2,
.checkout-page .button-2,
.order-details-page .page-title a,
.order-details-page .order-detail-spu-container button,
.order-details-page .repost .button-2 {
  display: inline-block;
  border: none;
  height: 45px;
  line-height: 45px;
  padding: 0 25px;
  margin: 0 2px;
  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: all .1s ease;
}
.shopping-cart-page .common-buttons button:hover,
.shopping-cart-page .cart-collaterals .button-2:hover,
.checkout-page .button-2:hover,
.order-details-page .order-detail-spu-container button: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 {
	position: relative;
	display: block;
	margin: 0 auto 7px;
	padding: 0 20px;
	width: 255px;
}

.shopping-cart-page .common-buttons button:before,
.wishlist-content .button-2:before {
	position: relative;
	display: inline-block;
	vertical-align: bottom;
	margin-right: 10px;
	font-size: 20px;
	color: #8c8c8c;
	font-weight: normal;
	text-transform: none;
	transition: all .2s ease !important;
	z-index: 1;
}

.shopping-cart-page .common-buttons .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;
}

.remove-discount-button,
.remove-gift-card-button {
  width: 16px;
  height: 16px;
  margin: 0 0 0 5px;
  border-radius: 3px;
  border: none;
  background: #f1f1f1 url('../img/close.png') center no-repeat;
  cursor: pointer;
  font-size: 0;
  vertical-align: middle;
}

.remove-discount-button:hover,
.remove-gift-card-button:hover {
	background-color: #e9e9e9;
}

.shopping-cart-page .message-error {
	font-size: 13px;
}

.shopping-cart-page .order-summary-content > .message-error {
	text-align: center;
  width: 100%;
}

.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 input {
	min-width: 150px;
	margin: 0 5px 5px;
}
.cart-options .checkout-attributes {
	text-align: left;
}

.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;
}


.cart-total td {
  width: 50%;
  padding: 7px 5px;
}

.cart-total-left {
  text-align: left;
  max-width: 50%;
  white-space: nowrap;
}

.cart-total-right {
	text-align: right;
}

.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 {

	margin: 0 0 0 3px;
	font-size: 15px;
	font-weight: 400;
	cursor: pointer;
	color: var(--bs-primary);
}

.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 > .list {
	/*display: none;*/
	padding: 30px 20px;
}

  .cart-collaterals .title + p {
    font-size: 11px;
    padding: 0 5px;
    margin: 0;
  }
.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 .title {
	position: relative;
	display: block;
	height: 60px;
	padding: 0 20px 0 40px;
	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 .coupon-code .title:hover {
	color: var(--bs-primary);
}
  .cart-collaterals .message-failure {
    margin: 5px 0 0;
    color: var(--bs-red);
    font-size: 13px;
    font-weight: 700
  }
.cart-collaterals .message-success {
	margin: 5px 0 0;
	color: var(--bs-primary);
	font-size: 11px;
	font-weight: 700
}
.cart-collaterals .current-code {
	margin: 7px 0 0;
	color: #666;
	font-size: 10px;
  padding: 0 5px;
}

.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: var(--bs-red);
}


/********** CHECKOUT **********/

.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;
}


.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;
}

.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: var(--bs-primary);
}


.checkout-page .add-button .btn-holder .ico-location-add {
    display: block;
    margin-bottom: 40px;
    font-size: 100px;
    color: #8e8e8e;
    transition: all .3s ease;
}

.checkout-page .add-button .btn-holder.open .ico-location-add {
	color: var(--bs-primary);
}

.checkout-page .add-button .enter-address {
	display: none;
}

.checkout-page .btn-holder {
	position: relative;
	padding-bottom: 38px;
  text-align: center;
}

.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%);
	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;
  height: 38px;
  line-height: 38px;
}

.checkout-page .edit-address {
	padding-top: 40px;
}

.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-right: 15px;
}

.method-list li {
	position: relative;
	border-bottom: 1px solid #eee;
    border-top: 0;
	padding: 22px 22px 22px 70px;
	text-align: left;
	margin: 0 auto;
}

  .method-list li:last-child {
    border-bottom: none;
  }

  .method-name {
    display: flex;
    align-items: center;
  }

.payment-logo {
    width: 40px;
}

  .payment-logo img {
    height: 100%;
    width: 100%;
  }

.payment-details {
  flex: 1;
}

.method-list li label  {
	display: block;
	width: 100%;
	font-weight: 700;
	color: #444;
	font-size: 14px;
}
.method-list input[type="radio"] + label:before {
	position: absolute;
	top: 50%;
	left: 25px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.method-description {
	margin: 5px 0 0;
	font-size: 16px;
	color: #8c8c8c;
	font-weight: 400;
}

.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: right;
}

.payment-info .info td:only-child {
	text-align: center;
}

.payment-info .info td + td {
	text-align: left;
}

.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;
}


.confirm-order .terms-of-service {
	text-align: center;
}

.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;
	right: 20px;
	left: auto;
	color: var(--bs-primary);
	font-size: 20px;
	line-height: 60px;
}

.opc input[type="checkbox"] ~ label:before {
	content: "";
	display: inline-block;
	margin-right: 10px;
	width: 17px;
	height: 17px;
	border: 1px solid #eeeeee;
	vertical-align: text-top;
	background-color: #fff;
}
.opc input[type="checkbox"]:checked ~ label:before {
	margin-left: 1px;
	width: 16px;
	height: 16px;
	box-shadow: 0 0 0 1px #e7e7e7;
	border: 3px solid #fff;
	background-color: var(--bs-primary);
}

.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 5px 0 0;
}
.opc > li.active .step-title .number,
.opc > li.active .step-title .title {
    font-weight: 700;
    color: var(--bs-primary);
}

.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 27px 0 20px;
	background: #fff url(../img/select-arrow-dark.svg) no-repeat right 10px center;
}

.opc .buttons {
	margin-bottom: 0;
	font-size: 0;
}

.opc #opc-confirm_order .buttons,
.opc #opc-payment_info .buttons,
.opc .checkout-data > div:not(.section) {
    float: left;
    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 ***********/

.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: left;
	width: calc(100% - 45px);
	height: 45px;
	line-height: 45px;
	border: 1px solid #e7e7e7;
	border-right: none;
	border-radius: 3px;
	background-color: #fff;
	padding: 0 0 0 20px;
	text-align: left;
	font-size: 13px;
	color: #000;

}

.qq-uploader .qq-upload-button {
	width: 45px;
	height: 45px;
	line-height: 45px;
	padding: 0;
	display: inline-block;
	float: right;
	border: none;
	border-radius: 0 3px 3px 0;
	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: left;
}

.qq-uploader .qq-upload-drop-area span {
	top: 0;
	left: 0;
	margin: 0;
}

.remove-from-cart input[type="checkbox"] + label.cart:before {
  display: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

div.captcha-box {
  transform: scale(0.92);
  -webkit-transform: scale(0.92);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

input[type="checkbox"][name="removefromcart"]+label:before {
    display: none;
}

@media screen and (max-width: 1024px) {
  .mp-results {
    display: none;
  }
}
  /*REWARD*/
.reward-type {
  width: 100px;
}

.reward-action button {
  width: 24px;
  height: 24px;
  line-height: 23px;
}

.reward-action button i {
    padding: 3px 3px 3px 4px;
}

.reward-action--applied {
  cursor: initial;
}

.reward-modal {
  max-width: 600px;
}

.list-promotion .reward .reward-info {
  height: 115px;
}

.list-promotion-item .reward .reward-type .reward-value img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* out of stock button */


.quickViewData {
  display: none;
}

.homepage-slider-container {
  display: flex;
}

.homepage-banner {
    overflow: auto;
}

.homepage-menu li.has-sublist .sublist-wrap {
  display: none;
  background: #ffffff;
  box-shadow: 0px 4px 4px 0px #00000025;
  text-align: left;
  z-index: 11;
  width: max-content;
}

.homepage-menu .with-subcategories {
  position: relative;
}
  .homepage-menu .with-subcategories::after {
    font-family: 'emporium-icons' !important;
    content: "\48";
    position: absolute;
    right: 5px;
    margin-top: 5px;
    font-size: 12px;
  }

    .homepage-menu  .with-subcategories:hover::after {
      border-top-color: var(--bs-secondary);
    }

    .homepage-menu > li.has-sublist > .sublist-wrap .with-subcategories::after {
        content: "\6a";
        display: none;
    }

.homepage-menu > li.has-sublist > .sublist-wrap .with-subcategories:hover::after,
li .sublist-wrap li:has(.sublist-wrap li:hover) a:after {
  border-left-color: var(--bs-secondary);
  display: inline-block !important;
}

.homepage-menu > li.has-sublist:has(.sublist-wrap :hover) > a.with-subcategories,
li .sublist-wrap li:has(.sublist-wrap li:hover) a.with-subcategories {
  color: #23438e !important;
}

.homepage-menu li.has-sublist:hover > .sublist-wrap {
  display: block !important;
}

.homepage-menu > li a {
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.homepage-menu > li > a {
    font-weight: 600;
}

    .homepage-menu > li:first-child a {
        padding-left: 0;
    }
    .homepage-menu > li:last-child a {
      padding-right: 0;
    }

    .homepage-menu > li > .sublist-wrap {
      right: 0;
    }

    .homepage-menu > li .sublist-wrap {
      position: absolute;
      left: 0;
      top: 40px;
    }

  .homepage-menu > li .sublist-wrap li .sublist-wrap {
    position: absolute;
    left: 100%;
    top: 0;
  }
 
  .homepage-menu > li .sublist-wrap .sublist {
    display: grid;
    padding-left: 0;
  }
    .homepage-menu > li .sublist-wrap li a {
      padding: 0.5rem 1.5rem;
      width: 100%;
    }
      .homepage-menu > li .sublist-wrap li:has(span) {
        width: 100%;
      }
      .homepage-menu > li .sublist-wrap li.has-sublist:has(span) {
        background: white;
      }
        .homepage-menu > li .sublist-wrap li a:has(span) {
          min-width: 130px;
        }

.homepage-menu .back-button {
  display: none;
}



.homepage-banner .slide {
  /*margin: 0 0.5rem;*/
  transition: opacity 0.7s ease-in-out;
  opacity: 0.4;
}

.homepage-banner .slide.slick-current {
  opacity: 1;
}

.homepage-banner .slick-arrow {
  opacity: 0.4;
}

.homepage-banner .slick-arrow:hover {
  opacity: 1;
}

.no-captions .slide-caption {
  display: none;
}

@media screen and (max-width: 1024px) {
    .homepage-banner {
      --bs-border-radius-xl: 0.75rem;
    }
}

.order-tab {
  display: flex;
  background: #fff;
  margin-bottom: 1rem;
  border: 1px solid #eee;
  overflow-x: auto;
  white-space: nowrap;
}
.order-tab__item {
  padding: 0.5rem 1rem;
  cursor: pointer;
  position: relative;
}

  .order-tab__item:first-child {
    margin-left: 1rem;
  }
  .order-tab__item:last-child {
    margin-right: 1rem;
  }
.order-tab__item:hover, .order-tab__item:focus {
  outline: none;
}

  .order-tab__item:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    transition: 0.3s;
    width: 0;
    height: 2px;
    background: var(--bs-primary);
}

.order-tab__item:hover::before, .order-tab__item.active::before {
  width: 30px;
}

.order-tab__item.active {
  color: var(--bs-primary);
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}

  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #001e81;
    border-right-color: transparent;
    border-left-color: transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

div.lds-dual-ring {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  width: 100px;
  height: 100px;
  z-index: 2010;
}

div.overlayCheckout {
  opacity:    0.5;
  background: #000;
  width:      100%;
  height:     100%;
  z-index:    1060;
  top:        0;
  left:       0;
  position:   fixed;
}

.message-error .button-1 {
  margin-top: 1rem;
  line-height: 45px;
  display: inline-block;
}

.u-modal {
  padding: 1.5rem 1.5rem;
  background: var(--bs-white);
  position: relative;
  margin: 30px auto;
  max-height: 100%;
  overflow: hidden auto;
}
.shipping-option-modal,.spu-modal {
  background: #fff;
  max-width: 720px;
  padding: 0;
}
.shipping-option-container, .spu-container {
  padding: 5px 10px 0;
}

.spu-modal > form > button {
    float: right;
    margin: 0 10px 10px;
}

.spu-modal .spu-container ul {
  float: left;
}

  .spu-modal .spu-container ul li button.active {
    color: #fff;
    background-color: #001E81 !important;
  }

.spu-modal .tab-content {
    padding: 10px;
}

.spu-modal input {
  font-size: 16px;
  color: #000;
  font-family: 'Unilever Shilling', sans-serif;
}

  .spu-modal .tab-content .deliveryDate {
    float: left;
    width: calc(100% - 12px);
  }

.shipping-option-modal .shipping-option-title,
.spu-modal .spu-title {
  font-size: 1.25rem;
  background-color: #F5F5F5;
  padding: 10px;
  border: 1px #CCCCCC solid;
  text-align: center;
  color: #001E81;
  font-weight: 600;
}
.shipping-option-modal .shipping-option-description {
  text-align: left;
  font-size: .875rem;
  color: #8c8c8c;
}

.shipping-option-modal .shipping-method,
.shipping-option-modal .shipping-fee-title,
.shipping-option-modal .estimation-date-title,
.shipping-option-modal .delivery-vendor-title {
  font-size: 16px;
  font-weight: 600;
}


  .shipping-option-modal .shipping-fee-title {
      text-align: right;
  }

  .shipping-option-modal ul li {
    margin: 5px 0;
    padding: 0 10px;
  }

.shipping-option-modal .shipping-label {
  align-self: center;
}

.shipping-option-modal .shipping-info {
  float: left;
}

.shipping-option-modal .shipping-info-name {
  font-size: 1rem;
  padding-bottom: 10px;
  font-weight: 600;
}

.shipping-option-modal .shipping-info-price {
  font-size: 1rem;
  text-align: right
}

  .shipping-option-modal .shipping-info-clt {
    color: #5c5c5c;
    font-size: .75rem;
    font-style: italic;
  }

.shipping-option-modal .selected-shipping-option-button {
  float: right;
  margin: 0 10px 10px;
}
/*Cart*/
.order-summary-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  flex-direction: column;
}

.cart-left, .cart-right {
}



.cart-right{
  display: flex;
  flex-direction: column;
}

.shipping-info .title {
    position: relative;
}

  .shipping-info .title a {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

.cart-panel {
	padding: 10px ;
	background-color: #f6f6f6;
  margin-bottom: 15px;
  text-align: left;
}

.section.cart-panel.cart-address.shipping-info-wrap {
  background-color: white;
  padding: 15px 15px 10px;
  font-size: 14px;
}

  .section.cart-panel.cart-address.shipping-info-wrap .shipping-info .header-title {
    color: #001E81;
  }

.cart-panel .cart-collaterals .title {
  padding: 7px 5px;
  display: block;
  margin: 0;
}

.cart-panel .cart-collaterals .title.disabled {
  color: #777;
}

th.quantity {
    text-align: center;
}
td.remove-from-cart label { color: #959595; }
td.remove-from-cart label:hover {color: #CD0A0A }

.cart-address .change {
  font-size: 1rem;
  font-weight: 600;
}

.checkout-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  background: #fff;
}
  .checkout-buttons .button-1 {
    width: 100%;
    font-size: 15px;
  }

.info-list {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #444444;
}

details summary { list-style: inside none; }
details > summary::-webkit-details-marker {
  display: none;
}

.collapse {
  width: 100%;
  overflow: hidden;
}

.collapse .title {
  position: relative;
  user-select: none;
  cursor: pointer;
}
.collapse .title::after {
  content: "\48";
  font-family: 'emporium-icons' !important;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #0743ce;
}
.collapse[open] .title::after {
  content: "\49";
}

.viewmore-collapse:not(.show) {
  max-height: var(--collapse-height);
  /*height: var(--collapse-height);*/
  display: block;
  overflow: hidden;
  transition: .3s;
}

a.viewmore-collapse-button .readMore {
  display: none;
}

a.viewmore-collapse-button .readLess {
  display: inline;
}

a.viewmore-collapse-button.collapsed .readMore {
  display: inline;
}

a.viewmore-collapse-button.collapsed .readLess {
  display: none;
}

/*Cart*/

button[class^="item-warehouse-"] {
  display: none;
}

label[for^="condition-"] {
  padding: 2px 10px 2px 10px;
  border-radius: 5px;
  font-weight: bolder !important;
}
label[for^="condition-"]::before {
    display: none !important;
}

input:checked ~ label[for^="condition-"] {
  background-color: #001e81;
  color: white;
}

/*Notification*/

.notification {
  padding: 20px;
  margin: 5px 0;
  background-color: #fff;
}

.notification-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.notification-subject {
  line-height: 2;
}

.notification-content {
  position: relative;
}

.notification-content input {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.notification-content p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.notification-content label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.notification-content input:focus ~ label {
  outline: -webkit-focus-ring-color auto 5px;
}

.notification-content input:checked + p {
  -webkit-line-clamp: unset;
}

.notification-content input:checked ~ label {
  display: none;
}

.notification-date {
  line-height: 1.5;
  color: #666;
}

.notification-markasread {
  display: inline-block;
  margin-bottom: 10px;
}

/*Notification*/

li.productNavigationFilter {
  float: left;
  margin-left: 10px
}

.block-product-filter-category-navigation {
    width: 100% !important;
}

#item-grid-category {
  width: 92% !important;
  margin: 0 4% !important;
}

.block-product-filter-category-navigation .listbox {
    padding: 0;
}

.page.home-page #items-category-container {
  height: max-content;
  display: flow-root;
  background-color: white;
}

input#applyReferralCode {
  max-width: unset !important;
}

.delete-cart-item {
  border: none;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  margin: 0 2px;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
}

.cart .cart-item-row .shipping-fee,
.cart .cart-item-row .est-date {
  text-align: center;
}

.cart .cart-item-row .est-date {
  color: blue;
}

.cart tr.cart-item-row {
  padding-bottom: 0;
  margin: 0 0 -1px;
  width: 100%;
  background: white;
}

.cart tr .product-est-date-td {
  width: 60%;
  float: left;
  text-align: left;
  padding: 5px;
  border-bottom: unset;
}
.cart tr .product-shipping-fee-td {
  width: 40%;
  float: left;
  text-align: right;
  padding: 5px;
  border-bottom: unset;
}

.cart td.product {
  padding: 5px 0 10px 15px !important;
}

.faq {
  margin-top: 2rem;
  font-size: 15px;
}

.faq a.nav-link {
  color: #444444;
}

.faq a.nav-link:hover, .faq a.nav-link.active {
  color: #004bbf;
}

.faq .nav {
  display: none;
}

.faq .tab-content p {
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .faq .nav {
    display: flex;
  }
  .faq a.nav-link {
    width: 280px;
  }
  .faq .tab-content .card {
    border: none;
  }
  .faq .tab-content .card .card-header {
    display: none;
  }
  .faq .tab-content .card .collapse {
    display: block;
  }
}

@media (max-width: 767px) {
  .faq .tab-content > .tab-pane {
    display: block !important;
    opacity: 1;
  }
  .faq .tab-content > .tab-pane .card-body {
    max-height: 60vh;
    overflow: auto;
    text-align: left
  }
}

.vendor__avatar {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .vendor__avatar {
    width: 75px;
    height: 75px;
  }

  .vendor__name {
    font-size: 1.125rem !important;
  }
}

.order-list {
  opacity: 0;
  visibility: hidden;
  position: relative;
  top: -15px;
}

  .order-list.open {
    transition: all 800ms cubic-bezier(0.335, 0.010, 0.030, 1.360);
    opacity: 1;
    visibility: visible;
    top: 0;
  }

@media (max-width: 767px) {
  .order-item__image { max-width: 75px; }

  .order-item__name { font-size: 0.75rem !important; }
}

.product-review .star {
  font-size: 4rem;
}

.product-review .rating::before, .product-review .rating div::before {
  font-size: 1rem;
}
.review-rating .field-validation-error * { text-align: center; }

.product-review-item + .no-data { display: none; }

.modal-backdrop.show ~ .modal-backdrop.show { z-index: 1056; }
.modal.show ~ .modal.show { z-index: 1060;}

.homepage_category { position: relative; }

  .homepage_category::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px solid var(--bs-info);
    border-radius: 5px;
    opacity: 0;
    transition: opacity .3s;
  }
    
    @media screen and (max-width: 1024px) {
      .homepage_category {
        border-radius: var(--bs-border-radius);
        font-size: .625rem !important;
        font-weight: var(--bs-body-font-weight);
        text-align: center;
      }

      .homepage_content {
        background: transparent !important;
      }
    }


.shopping-cart-page .cart-right .cart-panel, .shopping-cart-page .cart-right .cart-payment .shipping-info {
  background-color: white;
}

.shopping-cart-page .cart-right .cart-panel {
  font-size: 14px;
}

  .cart-right .shipping-info .title .header-title {
    color: #001E81;
    font-weight: 600;
    padding: 0;
    font-size: 16px;
  }

  .section.cart-panel.shipping-option .shipping-option-item .shipping-option-info .date-delivery {
    height: 30px !important;
  }

  .section.cart-panel.shipping-option .shipping-description input[type="radio"] + label:before {
    vertical-align: unset;
    width: 18px;
    height: 18px;
    margin-top: 6px;
  }

  .section.cart-panel.shipping-option .shipping-name {
    color: #001E81;
    font-weight: 600;
    padding: 0;
  }

    .section.cart-panel.shipping-option .shipping-clt, .section.cart-panel.shipping-option .shipping-fee {
      text-align: right;
    }

  .section.cart-panel.shipping-option div a {
    float: right;
    font-weight: 600;
  }

.master-wrapper-content.full-width {
  max-width: initial;
  padding: 0 !important;
}

.full-description-showbyline.show {
  -webkit-line-clamp: unset !important;
}

.mySlides {
    overflow: hidden;
}

button.slick-prev-custom {
  left: 0;
}

button.slick-next-custom {
  right: 0;
}

button.slick-prev-custom, button.slick-next-custom {
  font-size: 0;
  background: transparent;
  border: 0;
  color: transparent;
  position: absolute;
  z-index: 2;
  display: block;
  cursor: pointer;
  transform: translate(0, -50%);
  padding: 0;
  outline: none;
  top: 50%;
}
  button.slick-prev-custom:before {
    content: "←";
  }

  button.slick-next-custom:before {
    content: "→";
  }

  button.slick-prev-custom:before, button.slick-next-custom:before {
    font-family: "slick";
    font-size: 40px;
    line-height: 1;
    color: #001E81;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
  }

.item-box .product-item .details {
    text-align: left;
}

button.slick-prev-custom, button.slick-next-custom {
  display: none !important;
}

select.ui-datepicker-month, select.ui-datepicker-year {
  height: 25px;
  margin: 0 2px;
}

.ribbon-main {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.newsletter-subscribe .newsletter-email p {
    font-weight: bold;
}

.rounded-5-px{
    border-radius: 0.3rem !important;
}

.default-background {
  background-color: #F5F5F5 !important;
}

.background-alice-blue {
  --bs-text-opacity: 1;
  background-color: var(--bs-alice-blue) !important;
}

.background-lavender-blush {
  --bs-text-opacity: 1;
  background-color: var(--bs-lavender-blush) !important;
}

.bg-light-yellow {
  --bs-text-opacity: 1;
  background-color: var(--bs-light-yellow) !important;
}

.text-golden {
  color: var(--bs-golden) !important;
}
.border-golden {
  border-color: var(--bs-golden) !important;
}

.grayscale {
  filter: contrast(0) grayscale(1) opacity(0.4);
}

.manufacturer-grid .slick-list {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}


.text-name{
    font-size: 1.375rem;
}

/*.form-control[data-val-required] {
  display: unset;
}
*/
.text-bs-dark-gray {
  color: var( --bs-dark-gray);
}

.ratio-1 {
    aspect-ratio: 1;
}

.shadow-thin {
  box-shadow: 0px 4px 4px 0px #0000001A;
}
.row-cols-7 > * {
  flex: 0 0 auto;
  width: 14.2857142857%;
}
.row-cols-8 > * {
  flex: 0 0 auto;
  width: 12.5%;
}
.row-cols-9 > * {
  flex: 0 0 auto;
  width: 11.1111111111%;
}
.row-cols-10 > * {
  flex: 0 0 auto;
  width: 10%;
}

li.hidename .sublist-wrap .manufacture-name {
  display: none !important;
}

.hidename .item-box .title {
  display: none !important;
}

.hide-title .nop-jcarousel > .title {
  display: none;
}

.accept-consent input[type="checkbox"] + label:before,
input[type="checkbox"] + label.checkout-attributes-custom-label:before {
  border-color: var(--bs-dark-gray);
  border-radius: 3px;
}

input[type="checkbox"] + label.promotionSpecial:before {
  border: #66666680 1px solid;
  border-radius: 3px;
}

#vat-invoice-form-container > div > span {
  display: none;
}

.customer-info-page {
  font-size: 0.875rem;
}

#vat-invoice-form-container .checkout-attributes-custom-label + span {
  font-size: 0.875rem !important;
}

#vat-invoice-form-container .label-wrapper {
    padding: 0 !important;
}

.order-list-page .order-item a img, .order-details-page .table-wrapper .picture img {
  width: 80px;
  min-width: 80px;
}
.order-details-page .order-details .billing-info-wrap {
    min-width: 250px;
}.page-header i.ico-user-circle {
    font-size: 40px;
}
.customer-navigate .order-section .order-status-item a img{
    height: 35px;
}
.border-promotion {
  border: 1px solid var(--bs-border-color) !important;
}
nav .homepage_category img.image-hover {
  position: absolute;
  object-fit: contain;
  opacity: 0;
  transition: opacity .2s;
}

nav .homepage_category.active img.image-hover,
nav .homepage_category:hover img.image-hover {
  opacity: 1;
}
@media (max-width: 576px) {
  .fs-xs-1 {
    font-size: calc(1.35rem + 1.2vw) !important;
  }

  .fs-xs-2 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }

  .fs-xs-3 {
    font-size: 1.25rem !important;
  }

  .fs-xs-4 {
    font-size: 1.125rem !important;
  }

  .fs-xs-5 {
    font-size: 1rem !important;
  }

  .fs-xs-6 {
    font-size: 0.875rem !important;
  }

  .fs-xs-7 {
    font-size: 0.75rem !important;
  }

  .fs-xs-8 {
    font-size: 0.625rem !important;
  }

  .text-xs-start {
    text-align: left !important;
  }

  .fw-xs-bold {
      font-weight: bold;
  }


  .manufacturer-grid .slick-list {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .fs-11-px {
   font-size: 0.6875rem;
  }

}

@media (max-width: 768px) {
  .fs-md-7 {
    font-size: 0.75rem !important;
  }

  .fs-md-8 {
    font-size: 0.625rem !important;
  }
}

  @media all and (max-width: 1024px) {

    .btn-wrapper .button-2.active {
      font-weight: 100 !important;
    }

    .btn-wrapper .button-2, .btn-wrapper .button-2.active, .ico-heart:before {
      background-color: var(--bs-white) !important;
      color: var(--bs-primary) !important;
      border: none !important;
    }

      .btn-wrapper .button-2 > i.ico-heart:before, .ico-heart:before {
        color: var(--bs-primary) !important;
      }
    .navigate-item-list .ico-heart:before {
        color: unset !important;
        background-color: unset !important;
    }

    .ms-md-6 {
      margin-left: 4rem !important;
    }
  }

.border-promotion {
  border: 1px solid var(--bs-border-color) !important;
}

.item-box .product-title{
    height: 42px;
}

img.mfp-img {
  background-color: #f6f6f6;
}

.page.account-page.order-list-page .page-body #order-tab::-webkit-scrollbar {
    height: 0px;
}

.news-item .news-details .news-body {
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}