@charset "UTF-8";

:root {
	--theme-color-prime: #4db6b9;
	--theme-color-prime-rgb: 77, 182, 185;
	--theme-color-prime-darker: #42a3a6;
	--theme-color-prime-lighter: #5bcbcf;
	--theme-color-sec: #11cbf0;
	--theme-color-sec-rgb: 17, 203, 240;
	--theme-color-sec-darker: #0eaccc;
	--theme-color-sec-lighter: #12d7ff;
	--theme-color-gray: #999;
	--theme-color-lt-gray: #aaa;
	--theme-color-lighter-gray: #f0f0f0;
	--theme-txt-color: #000;
	--theme-dark-color: #222;
	--theme-dark-color-rgb: 34, 34, 34;
	--theme-pale-color: #c8dafb;
	--theme-pale-color-rgb: 200, 218, 251;
	--theme-link-decoration: none;
	--dx-adm-main: #305ca5;
	--dx-adm-sec: #000;
}

body {
	overflow-x: hidden;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--theme-txt-color);
}
body.rtl {
	direction: rtl;
}

a {
	color: var(--theme-color-prime);
	text-decoration: var(--theme-link-decoration);
}

.th-cls-btn {
	position: relative;
	width: 15px;
	height: 15px;
	padding: 0;
	background-color: transparent;
	border: 0;
}
.th-cls-btn::before,
.th-cls-btn::after {
	position: absolute;
	top: -1px;
	left: 7px;
	width: 1px;
	height: 19px;
	background-color: var(--theme-txt-color);
	content: "";
}
.th-cls-btn::before {
	transform: rotateZ(-45deg);
}
.th-cls-btn::after {
	transform: rotateZ(45deg);
}

.container-wide {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
}
.mono-wide {
	width: 100%;
	max-width: calc(100% - 15px);
	margin-right: 0;
	margin-left: auto;
	padding-left: 15px;
}
.mono-wide.right {
	margin-right: auto;
	margin-left: 0;
	padding-right: 15px;
	padding-left: 0;
}
@media (min-width: 576px){
	.container-wide {
		width: 576px;
	}
	.mono-wide {
		max-width: calc(50% + 288px);
	}
	.container.semi-left {
		margin-right: 0;
	}
	.container.semi-right {
		margin-left: 0;
	}
	.container.semi-left,
	.container.semi-right {
		max-width: calc(50% + 270px);
	}
}
@media (min-width: 768px){
	.container-wide {
		width: 738px;
	}
	.mono-wide {
		max-width: calc(50% + 369px);
	}
	.container.semi-left,
	.container.semi-right {
		max-width: calc(50% + 360px);
	}
}
@media (min-width: 992px){
	.container-wide {
		width: 962px;
	}
	.mono-wide, .container-wide.tipend {
		max-width: calc(50% + 481px);
	}
	.container-wide.tipend {
		margin-right: 0;
		padding-right: 0;
	}
	.container.semi-left,
	.container.semi-right {
		max-width: calc(50% + 480px);
	}
}
@media (min-width: 1200px){
	.container-wide {
		width: 95%;
	}
	.mono-wide, .container-wide.tipend {
		max-width: 97.5%;
	}
	.container.semi-left,
	.container.semi-right {
		max-width: calc(50% + 570px);
	}
}
@media (min-width: 1400px){
	.container.semi-left,
	.container.semi-right {
		max-width: calc(50% + 660px);
	}
}
@media (min-width: 1750px){
	.container-wide {
		width: 1750px;
	}
	.mono-wide, .container-wide.tipend {
		max-width: calc(50% + 875px);
	}
}

/*
 * DX Good stuff
 */
.adm-pos-tr {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
}
.adm-pos-tl {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}
.adm-pos-br {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 100;
}
.adm-pos-bl {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 100;
}
.btn-adm, a.btn-adm {
	position: relative;
	display: inline-block;
	direction: rtl;
	min-width: 30px;
	height: 30px;
	padding: 0 4px;
	background-color: #c5c7ca;
	line-height: 30px;
	text-align: center;
	color: #3d3833;
	font-size: 18px;
	text-decoration: none;
	border: none;
	transition: all 0.4s ease 0s;
}
.btn-adm .on-label {
	display: inline-block;
	padding: 0;
}
.btn-adm * {
	position: relative;
	z-index: 3;
}
.btn-adm::before,
.btn-adm::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 100%;
	background-color: var(--dx-adm-sec);
	z-index: 0;
	content: "";
	transition: all 0.4s ease 0s;
}
.btn-adm::after {
	background-color: var(--dx-adm-main);
	z-index: 1;
}
.btn-adm:hover {
	color: #fff;
}
.btn-adm:hover::before {
	width: 100%;
}
.btn-adm:hover::after {
	width: 4px;
}
.btn-adm.sm {
	min-width: 24px;
	height: 24px;
	line-height: 24px;
	font-size: 13px;
}
.hide-adm-ui .btn-adm,
.hide-adm-ui .adm-cont {
	display: none;
}

.form-error-msg {
	display: none;
	padding-top: 4px;
	font-size: 14px;
	color: #d00;
}
.form-error-msg.vis {
	display: block;
}
.form-error-msg.inline.vis {
	display: inline;
}

.dx-g-recaptcha {
	display: none;
}
.dx-recaptcha-notice {
	color: var(--theme-txt-color);
	font-size: 14px;
}
.dx-recaptcha-notice a {
	color: var(--theme-txt-color);
	text-decoration: underline;
}
.dx-recaptcha-notice a:hover {
	color: var(--theme-dark-color);
}

.read-audio-player {
	display: flex;
	position: relative;
	min-height: 86px;
	margin: 0 0 30px;
	padding: 10px;
	background-color: #f0f0f0;
	line-height: 1.5;
	font-size: 13px;
	color: #333;
	border: 1px solid #666;
	border-radius: 44px;
	align-items: center;
}
.read-audio-player .waveform-container {
	flex: 1 1 auto;
}
.read-audio-player .controls {
	margin: 0 10px 0 0;
}
.read-audio-player .controls .play-btn {
	position: relative;
	width: 48px;
	height: 48px;
	background-color: transparent;
	border: 3px solid #333;
	border-radius: 50%;
	cursor: pointer;
}
.read-audio-player .controls .play-btn::after {
	position: absolute;
	top: 6px;
	right: 4px;
	width: 30px;
	height: 30px;
	background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmlld0JveD0iMCAwIDMwIDMwIj48cG9seWdvbiBmaWxsPSIjMzMzIiBwb2ludHM9IjI5Ljk4LDE1IDQsMCA0LDMwICIvPjwvc3ZnPg") scroll 50% 50% no-repeat;
	content: "";
}
.read-audio-player .controls .play-btn.paused::after {
	background: transparent url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmlld0JveD0iMCAwIDMwIDMwIiBmaWxsPSIjMzMzIj48cmVjdCB4PSIzIiB5PSIyIiB3aWR0aD0iNyIgaGVpZ2h0PSIyNiIvPjxyZWN0IHg9IjE1IiB5PSIyIiB3aWR0aD0iNyIgaGVpZ2h0PSIyNiIvPjwvc3ZnPg") scroll 50% 50% no-repeat;
}
.read-audio-player .status-line {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}
.read-audio-player .status-line.head {
	font-size: 20px;
}
.read-audio-player audio {
	display: none;
}
.read-audio-player.fallback {
	display: block;
	min-height: auto;
	padding: 0;
	background-color: transparent;
	font-size: 16px;
	border: 0;
}
.read-audio-player.fallback .controls,
.read-audio-player.fallback .waveform-container {
	display: none;
}
.read-audio-player.fallback .status-line {
	position: static;
	top: auto;
	right: auto;
	margin-bottom: 5px;
	transform: none;
}
.read-audio-player.fallback audio {
	display: block;
	width: 100%;
}

.fs-12 {
	font-size: 12px;
}
.fs-14 {
	font-size: 14px;
}
.fs-18 {
	font-size: 18px;
}
.fs-20 {
	font-size: 20px;
}
.fw-100 {
	font-weight: 100;
}
.fw-200 {
	font-weight: 200;
}
.fw-300 {
	font-weight: 300;
}
.fw-400 {
	font-weight: 400;
}
.fw-500 {
	font-weight: 500;
}
.fw-600 {
	font-weight: 600;
}
.fw-700 {
	font-weight: 700;
}
.fw-800 {
	font-weight: 800;
}
.fw-900 {
	font-weight: 900;
}

.heading-resp {
	margin: 0;
	line-height: 1.2;
	font-size: 20px;
	font-weight: 500;
}
@media (min-width: 576px){
	.heading-resp {
		font-size: 22px;
	}
}
@media (min-width: 768px){
	.heading-resp {
		font-size: 28px;
	}
}
@media (min-width: 992px){
	.heading-resp {
		font-size: 30px;
	}
}
@media (min-width: 1200px){
	.heading-resp {
		font-size: 32px;
	}
}

.text-theme {
	color: var(--theme-color-prime) !important;
}
.text-theme-alt {
	color: var(--theme-color-sec) !important;
}
.text-theme-dark {
	color: var(--theme-dark-color) !important;
}
.text-theme-pale {
	color: var(--theme-pale-color) !important;
}
.text-gray {
	color: var(--theme-color-gray) !important;
}
.text-lt-gray {
	color: var(--theme-color-lt-gray) !important;
}
.bg-theme {
	background-color: var(--theme-color-prime) !important;
}
.bg-theme-alt {
	background-color: var(--theme-color-sec) !important;
}
.bg-theme-dark {
	background-color: var(--theme-dark-color) !important;
}
.bg-theme-pale {
	background-color: var(--theme-pale-color) !important;
}
.bg-theme-light {
	background-color: #f0f0f0 !important;
}
.bg-gray {
	background-color: var(--theme-color-gray) !important;
}
.bg-lt-gray {
	background-color: var(--theme-color-lt-gray) !important;
}
.bg-lighter-gray {
	background-color: var(--theme-color-lighter-gray) !important;
}

.btn-theme {
	--theme-cri-bg: var(--theme-color-prime);
	--theme-cri-border-color: var(--theme-color-prime);
	--theme-crt-bg: var(--theme-color-prime-darker);
	--theme-crt-border-color: var(--theme-color-prime-darker);
	--theme-cri-color: #fff;
	--theme-crt-color: #fff;
	--bs-btn-color: var(--theme-cri-color);
	--bs-btn-bg: var(--theme-cri-bg);
	--bs-btn-border-color: var(--theme-cri-border-color);
	--bs-btn-hover-color: var(--theme-crt-color);
	--bs-btn-hover-bg: var(--theme-crt-bg);
	--bs-btn-hover-border-color: var(--theme-crt-bg);
	--bs-btn-focus-box-shadow: none;
	--bs-btn-active-color: var(--theme-crt-color);
	--bs-btn-active-bg: var(--theme-crt-bg);
	--bs-btn-active-border-color: var(--theme-crt-bg);
	--bs-btn-active-shadow: none;
	--bs-btn-disabled-color: var(--theme-cri-color);
	--bs-btn-disabled-bg: var(--theme-cri-bg);
	--bs-btn-disabled-border-color: var(--theme-cri-bg);
}
.btn-theme.alt {
	--theme-cri-bg: var(--theme-color-sec);
	--theme-cri-border-color: var(--theme-color-sec);
	--theme-crt-bg: var(--theme-color-sec-darker);
	--theme-crt-border-color: var(--theme-color-sec-darker);
	--theme-cri-color: #000;
	--theme-crt-color: #000;
}
.btn-theme.black {
	--theme-cri-bg: #000;
	--theme-cri-border-color: #000;
	--theme-crt-bg: #262626;
	--theme-crt-border-color: #262626;
}
.btn-theme.whatsapp {
	--theme-cri-bg: #25d366;
	--theme-cri-border-color: #25d366;
	--theme-crt-bg: #21b557;
	--theme-crt-border-color: #21b557;
	--theme-cri-color: #fff;
	--theme-crt-color: #fff;
}
.btn-theme.facebook {
	--theme-cri-bg: #0866ff;
	--theme-cri-border-color: #0866ff;
	--theme-crt-bg: #1877f2;
	--theme-crt-border-color: #1877f2;
	--theme-cri-color: #fff;
	--theme-crt-color: #fff;
}

.dx-vect {
	--theme-fill-color: var(--theme-txt-color);
	--theme-hover-fill-color: var(--theme-txt-color);
	fill: var(--theme-fill-color);
	transition: fill .4s ease;
}
.text-white .dx-vect {
	--theme-fill-color: #fff;
	--theme-hover-fill-color: #fff;
}
.dx-vect.theme {
	--theme-fill-color: var(--theme-color-prime);
	--theme-hover-fill-color: var(--theme-color-prime);
}
.dx-vect.theme-alt {
	--theme-fill-color: var(--theme-color-sec);
	--theme-hover-fill-color: var(--theme-color-sec);
}
.dx-vect.theme-dark {
	--theme-fill-color: var(--theme-dark-color);
	--theme-hover-fill-color: var(--theme-dark-color);
}
.dx-vect.theme-pale {
	--theme-fill-color: var(--theme-pale-color);
	--theme-hover-fill-color: var(--theme-pale-color);
}

.lt-link {
	--theme-cri-color: var(--bs-white);
	--theme-crt-color: var(--theme-color-prime);
}
.lt-link.alt {
	--theme-crt-color: var(--theme-color-sec);
}
.lt-link.inv {
	--theme-cri-color: var(--theme-color-prime);
	--theme-crt-color: var(--bs-white);
}
.lt-link.alt.inv {
	--theme-cri-color: var(--theme-color-sec);
}
.thm-link, .xlink {
	--theme-cri-color: var(--theme-color-prime);
	--theme-crt-color: var(--bs-black);
}
.drk-link {
	--theme-cri-color: var(--bs-black);
	--theme-crt-color: var(--theme-color-prime);
}
.lt-link, .thm-link, .drk-link, .xlink {
	color: var(--theme-cri-color);
	transition: color 0.5s ease;
}
.lt-link:hover, .lt-link:focus,
.lt-link.alt:hover, .lt-link.alt:focus,
.thm-link:hover, .thm-link:focus,
.drk-link:hover, .drk-link:focus,
.xlink:hover, .xlink:focus {
	color: var(--theme-crt-color);
}

.cr-shift {
	--theme-cri-bg: var(--theme-color-prime);
	--theme-cri-color: var(--bs-white);
	--theme-cri-border-color: var(--theme-color-prime);
	--theme-crt-bg: var(--theme-color-sec);
	--theme-crt-color: var(--bs-white);
	--theme-crt-border-color: var(--theme-color-sec);
	background-color: var(--theme-cri-bg);
	color: var(--theme-cri-color);
	transition: all 0.3s ease-in-out;
}
.xfrom-bg-none {
	--theme-cri-bg: transparent;
}
.xfrom-bg-theme {
	--theme-cri-bg: var(--theme-color-prime);
}
.xfrom-bg-theme-alt {
	--theme-cri-bg: var(--theme-color-sec);
}
.xfrom-bg-pale {
	--theme-cri-bg: var(--theme-pale-color);
}
.xfrom-bg-black {
	--theme-cri-bg: var(--bs-black);
}
.xfrom-bg-dark {
	--theme-cri-bg: var(--theme-dark-color);
}
.xfrom-bg-white {
	--theme-cri-bg: var(--bs-white);
}
.xfrom-bg-whatsapp {
	--theme-cri-bg: #25d366;
}
.xfrom-bg-youtube {
	--theme-cri-bg: #f00;
}
.xfrom-bg-facebook {
	--theme-cri-bg: #0866ff;
}
.xfrom-bg-instagram {
	--theme-cri-bg: #fe1d7f;
}
.xfrom-bg-tiktok {
	--theme-cri-bg: #fe2855;
}
.xto-bg-none {
	--theme-crt-bg: transparent;
}
.xto-bg-theme-alt {
	--theme-crt-bg: var(--theme-color-sec);
}
.xto-bg-pale {
	--theme-crt-bg: var(--theme-pale-color);
}
.xto-bg-black {
	--theme-crt-bg: var(--bs-black);
}
.xto-bg-dark {
	--theme-crt-bg: var(--theme-dark-color);
}
.xto-bg-white {
	--theme-crt-bg: var(--bs-white);
}
.xto-bg-whatsapp {
	--theme-crt-bg: #25d366;
}
.xto-bg-youtube {
	--theme-crt-bg: #f00;
}
.xto-bg-facebook {
	--theme-crt-bg: #0866ff;
}
.xto-bg-instagram {
	--theme-crt-bg: #fe1d7f;
}
.xto-bg-tiktok {
	--theme-crt-bg: #fe2855;
}
.xfrom-border-theme {
	--theme-cri-border-color: var(--theme-color-prime);
}
.xfrom-border-theme-alt {
	--theme-cri-border-color: var(--theme-color-sec);
}
.xfrom-border-pale {
	--theme-cri-border-color: var(--theme-pale-color);
}
.xfrom-border-black {
	--theme-cri-border-color: var(--bs-black);
}
.xfrom-border-dark {
	--theme-cri-border-color: var(--theme-dark-color);
}
.xfrom-border-white {
	--theme-cri-border-color: var(--bs-white);
}
.xfrom-border-whatsapp {
	--theme-cri-border-color: #25d366;
}
.xfrom-border-youtube {
	--theme-cri-border-color: #f00;
}
.xfrom-border-facebook {
	--theme-cri-border-color: #0866ff;
}
.xfrom-border-instagram {
	--theme-cri-border-color: #fe1d7f;
}
.xfrom-border-tiktok {
	--theme-cri-border-color: #fe2855;
}
.xto-border-theme-alt {
	--theme-crt-border-color: var(--theme-color-sec);
}
.xto-border-pale {
	--theme-crt-border-color: var(--theme-pale-color);
}
.xto-border-black {
	--theme-crt-border-color: var(--bs-black);
}
.xto-border-dark {
	--theme-crt-border-color: var(--theme-dark-color);
}
.xto-border-white {
	--theme-crt-border-color: var(--bs-white);
}
.xto-border-whatsapp {
	--theme-crt-border-color: #25d366;
}
.xto-border-youtube {
	--theme-crt-border-color: #f00;
}
.xto-border-facebook {
	--theme-crt-border-color: #0866ff;
}
.xto-border-instagram {
	--theme-crt-border-color: #fe1d7f;
}
.xto-border-tiktok {
	--theme-crt-border-color: #fe2855;
}
.xfrom-color-theme {
	--theme-cri-color: var(--theme-color-prime);
}
.xfrom-color-theme-alt {
	--theme-cri-color: var(--theme-color-sec);
}
.xfrom-color-pale {
	--theme-cri-color: var(--theme-pale-color);
}
.xfrom-color-black {
	--theme-cri-color: var(--bs-black);
}
.xfrom-color-dark {
	--theme-cri-color: var(--theme-dark-color);
}
.xfrom-color-white {
	--theme-cri-color: var(--bs-white);
}
.xfrom-color-whatsapp {
	--theme-cri-color: #25d366;
}
.xfrom-color-youtube {
	--theme-cri-color: #f00;
}
.xfrom-color-facebook {
	--theme-cri-color: #0866ff;
}
.xfrom-color-instagram {
	--theme-cri-color: #fe1d7f;
}
.xfrom-color-tiktok {
	--theme-cri-color: #fe2855;
}
.xto-color-theme-alt {
	--theme-crt-color: var(--theme-color-sec);
}
.xto-color-pale {
	--theme-crt-color: var(--theme-pale-color);
}
.xto-color-black {
	--theme-crt-color: var(--bs-black);
}
.xto-color-dark {
	--theme-crt-color: var(--theme-dark-color);
}
.xto-color-white {
	--theme-crt-color: var(--bs-white);
}
.xto-color-whatsapp {
	--theme-crt-color: #25d366;
}
.xto-color-youtube {
	--theme-crt-color: #f00;
}
.xto-color-facebook {
	--theme-crt-color: #0866ff;
}
.xto-color-instagram {
	--theme-crt-color: #fe1d7f;
}
.xto-color-tiktok {
	--theme-crt--color: #fe2855;
}
.cr-shift:hover {
	background-color: var(--theme-crt-bg);
	color: var(--theme-crt-color);
	border-color: var(--theme-crt-border-color);
}

.w-50px {
	width: 50px !important;
}
.w-80px {
	width: 80px !important;
}
.w-100px {
	width: 100px !important;
}
.w-150px {
	width: 150px !important;
}
.w-200px {
	width: 200px !important;
}
.mw-50px {
	max-width: 50px !important;
}
.mw-80px {
	max-width: 80px !important;
}
.mw-100px {
	max-width: 100px !important;
}
.mw-150px {
	max-width: 150px !important;
}
.mw-200px {
	max-width: 200px !important;
}

.form-control.theme,
.form-select.theme {
	--bs-border-radius: 0;
}
.form-control.theme:focus,
.form-select.theme:focus {
	border-color: var(--theme-color-prime);
	box-shadow: none;
}

.form-control.error,
.form-select.error,
.form-control.error:focus,
.form-select.error:focus {
	color: #d00;
	border-color: #d00;
}

.form-check.theme {
	--thm-bs-ui-color: var(--theme-color-prime);
	--thm-bs-ui-color2: var(--theme-color-prime-darker);
}
.form-check.theme.alt {
	--thm-bs-ui-color: var(--theme-color-sec);
	--thm-bs-ui-color2: var(--theme-color-sec-darker);
}
.form-check.theme.black {
	--thm-bs-ui-color: var(--bs-black);
	--thm-bs-ui-color2: var(--bs-black);
}
.form-check.theme .form-check-input:checked {
	background-color: var(--thm-bs-ui-color);
	border-color: var(--thm-bs-ui-color2);
}
.form-check.theme .form-check-input:focus {
	border-color: var(--thm-bs-ui-color2);
}
.form-check.theme .form-check-input:focus {
	box-shadow: none;
}
.form-check.rounded-0 .form-check-input[type="checkbox"] {
	border-radius: 0;
}

.fc-indi {
	position: relative;
}
.fc-indi > input,
.billing-info-wrap .billing-info .fc-indi > input {
	padding-left: 10px;
	padding-right: 24px;
}
body.rtl .fc-indi > input,
body.rtl .billing-info-wrap .billing-info .fc-indi > input {
	padding-right: 10px;
	padding-left: 24px;
}
.fc-indi > .icn {
	display: none;
	position: absolute;
	top: 13px;
	right: 6px;
	color: #aaa;
}
body.rtl .fc-indi > .icn {
	left: 6px;
	right: auto;
}
.fc-indi.ok > .icn {
	display: block;
}
.fc-indi.nomatch > input {
	background-color: #f4f4f4;
}

.under-label {
	--und-lbl-active-bg-color: var(--theme-color-prime);
	--und-lbl-active-color: #fff;
	display: block;
	width: 100%;
	background-color: var(--bs-border-color);
}
.under-label.alt {
	--und-lbl-active-bg-color: var(--theme-color-sec);
}
.form-control:focus ~ .under-label,
.form-control:active ~ .under-label,
.form-select:focus ~ .under-label,
.form-select:focus ~ .under-label {
	background-color: var(--und-lbl-active-bg-color);
	color: var(--und-lbl-active-color);
}

.btn-cap-sm {
	padding: 3px 10px;
	background-color: #d00;
	line-height: 1;
	font-size: 14px;
	color: #fff;
	border-radius: 16px;
}

.password-gizmo {
	position: relative;
}
.password-gizmo > .form-control {
	padding-right: 38px;
}
body.rtl .password-gizmo > .form-control {
	padding-left: 38px;
	padding-right: .75rem;
}
.password-gizmo .ctrlbtn {
	position: absolute;
	top: 14px;
	left: 10px;
	width: 22px;
	height: 22px;
	z-index: 2;
}
.form-floating.password-gizmo .ctrlbtn {
	top: 24px;
}
.password-gizmo .ctrlbtn.eyes-btn {
	display: block;
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='22' height='44' viewBox='0 0 22 44' fill='none' stroke='%23000' stroke-linecap='round'%3e%3cpath d='M11.1,36.1c1.6-0.1,2.9-1.4,3-3'/%3e%3cpath d='M12.6,30.3c-0.5-0.3-1-0.4-1.6-0.4c-1.7,0-3.1,1.4-3.1,3.1c0,0.6,0.2,1.1,0.4,1.6' stroke-linecap='square'/%3e%3cpath d='M8.7,38.5c0.7,0.2,1.5,0.4,2.3,0.4c5.2,0,9.4-5.8,9.4-5.8s-1.2-1.6-3.1-3.2'/%3e%3cpath d='M14.8,28.2c-1.2-0.6-2.4-1-3.8-1c-5.2,0-9.4,5.8-9.4,5.8s1.7,2.3,4.3,4' stroke-linecap='square'/%3e%3cline x1='4.1' y1='39.9' x2='17.9' y2='26.1'/%3e%3cpath d='M20.4,11c0,0-4.2,5.8-9.4,5.8c-5.2,0-9.4-5.8-9.4-5.8S5.8,5.2,11,5.2C16.2,5.2,20.4,11,20.4,11z'/%3e%3ccircle cx='11' cy='11' r='3.1'/%3e%3c/svg%3e") scroll 0 0 no-repeat;
	border: 0;
	transition: background-position .4s cubic-bezier(.18,.89,.32,1.28);
}
.password-gizmo .ctrlbtn.eyes-btn.reveal {
	background-position: 0 100%;
}

.modal.rounded-0 {
	--bs-modal-border-radius: 0;
	--bs-modal-inner-border-radius: 0;
}
@media (min-width: 992px) {
	.modal-xxl {
		--bs-modal-width: 800px;
	}
}
@media (min-width: 1200px) {
	.modal-xxl {
		--bs-modal-width: 1140px;
	}
}
@media (min-width: 1400px) {
	.modal-xxl {
		--bs-modal-width: 1320px;
	}
}

.accordion.theme {
	--bs-accordion-color: var(--theme-txt-color);
	--bs-accordion-border-radius: 0;
	--bs-accordion-inner-border-radius: 0;
	--bs-accordion-btn-color: var(--bs-body-color);
	--bs-accordion-btn-bg: var(--bs-accordion-bg);
	--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	--bs-accordion-btn-focus-border-color: var(--bs-border-color);
	--bs-accordion-btn-focus-box-shadow: none;
	--bs-accordion-active-color: var(--theme-txt-color);
	--bs-accordion-active-bg: var(--bs-body-bg);
}
.accordion.nobg {
	--bs-accordion-bg: transparent;
	--bs-accordion-active-bg: transparent;
}
.accordion.noxguts {
	--bs-accordion-btn-padding-x: 0;
}
.accordion.theme.pluses {
	--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23000' d='M14,7.5H8.5V2c0-0.276-0.224-0.5-0.5-0.5S7.5,1.724,7.5,2v5.5H2C1.724,7.5,1.5,7.724,1.5,8S1.724,8.5,2,8.5h5.5V14c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5V8.5H14c0.276,0,0.5-0.224,0.5-0.5S14.276,7.5,14,7.5z'/%3e%3c/svg%3e");
	--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23000' d='M1.5,8c0-0.276,0.224-0.5,0.5-0.5h12c0.276,0,0.5,0.224,0.5,0.5S14.276,8.5,14,8.5H2C1.724,8.5,1.5,8.276,1.5,8z'/%3e%3c/svg%3e");
}
.accordion.theme .accordion-item {
	border: 0;
}
.accordion.theme .accordion-item + .accordion-item {
	border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.nav.cornered {
	--bs-nav-tabs-border-radius: 0;
}
.nav.theme {
	--bs-nav-link-font-weight: 400;
	--bs-nav-link-color: var(--theme-txt-color);
	--bs-nav-link-hover-color: var(--theme-color-prime);
	--bs-nav-link-disabled-color: var(--bs-secondary-color);
}
.nav.nav-tabs.theme {
	position: relative;
	border-bottom: 0;
}
.nav-tabs.theme .nav-link {
	margin-bottom: 0;
	border-color: var(--bs-nav-tabs-link-hover-border-color);
}

.vect-curr {
	fill: currentColor;
}

/** site main header bar **/
.site-main-header {
	--thm-smh-bg-from: #fff;
	--thm-smh-bg-to: #fff;
	--thm-smh-color-from: #000;
	--thm-smh-color-to: #000;
	--thm-smh-bg-chosen: var(--thm-smh-bg-from);
	--thm-smh-color-chosen: var(--thm-smh-color-from);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 997;
	background-color: var(--thm-smh-bg-chosen);
	color: var(--thm-smh-color-chosen);
	box-shadow: none;
	transition: background-color .4s ease, box-shadow .4s ease, transform .4s ease, opacity .4s ease;
}
.site-main-header.ibg-tx {
	--thm-smh-bg-from: transparent;
}
.site-main-header.icol-white {
	--thm-smh-color-from: #fff;
}
.site-main-header.above {
	--thm-smh-bg-chosen: var(--thm-smh-bg-to);
	--thm-smh-color-chosen: var(--thm-smh-color-to);
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}
.site-main-header.sepline {
	border-bottom: 1px solid rgba(255, 255, 255, .25);
}
.site-main-header.sepline.adrift {
	border-bottom: 0;
}
.site-main-header.smart.adrift {
	opacity: 0;
	transform: translateY(-100%);
}
.site-main-header.adrift.up {
	opacity: 1;
	transform: none;
}
.site-main-header .inner {
	display: flex;
	height: 72px;
}

.site-main-header .inner .logo {
	position: relative;
	height: 45px;
	align-self: center;
}
.site-main-header .inner .logo img {
	display: inline-block;
	width: auto;
	height: 100%;
	transition: opacity .4s linear;
}
.site-main-header .inner .logo .alt-logo-box {
	display: flex;
	visibility: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	z-index: 1;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	transition: visibiliy .4s linear, opacity .4s linear;
}
.site-main-header .inner .logo .alt-logo-box img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.site-main-header.above .inner .logo .logo-main {
	opacity: 0;
}
.site-main-header.above .inner .logo .alt-logo-box {
	visibility: visible;
	opacity: 1;
}
.site-main-header.adrift .topbar {
	display: none;
}

.site-main-header .mobile-menu-btn {
	position: relative;
	width: 20px;
	height: 20px;
	padding: 0;
	align-self: center;
	background-color: transparent;
	border: 0;
	cursor: pointer;
}
.site-main-header .mobile-menu-btn::before,
.site-main-header .mobile-menu-btn::after {
	position: absolute;
	border-top: 2px solid var(--thm-smh-color-chosen);
	content: "";
	transition: border-color .4s ease;
}
.site-main-header .mobile-menu-btn::before {
	top: 1px;
	left: 0;
	width: 100%;
	height: 18px;
	border-bottom: 2px solid var(--thm-smh-color-chosen);
}
.site-main-header .mobile-menu-btn::after {
	position: absolute;
	top: 9px;
	left: 0;
	width: 100%;
	height: 1px;
}

.site-main-header .top-btn {
	padding: 0;
	align-self: center;
	background-color: transparent;
	font-size: 20px;
	font-weight: 400;
	color: var(--thm-smh-color-chosen);
	text-decoration: none;
	border: 0;
	cursor: pointer;
	transition: color .4s ease;
}

.site-main-header .main-menu {
	display: flex;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: outside none;
}
.site-main-header .main-menu li {
	position: relative;
	font-size: 16px;
	font-weight: 400;
}
.site-main-header .main-menu > li {
	display: flex;
	height: 100%;
	padding: 0;
	align-items: center;
	font-weight: 500;
}
.site-main-header .main-menu > li > a {
	position: relative;
	color: var(--thm-smh-color-chosen);
	text-decoration: none;
}
.site-main-header .main-menu > li > a::before {
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background-color: var(--thm-smh-color-chosen);
	content: "";
	transform: scaleX(0);
	transition: transform .3s ease;
}
.site-main-header .main-menu > li.active > a::before,
.site-main-header .main-menu > li:hover > a::before {
	transform: scaleX(1);
}
.site-main-header .main-menu > li + li {
	margin-left: 30px;
}
body.rtl .site-main-header .main-menu > li + li {
	margin-right: 30px;
	margin-left: 0;
}
.site-main-header .main-menu > li.has-sub > a {
	padding-right: 12px;
}
body.rtl .site-main-header .main-menu > li.has-sub > a {
	padding-left: 12px;
	padding-right: 0;
}
.site-main-header .main-menu > li.has-sub > a::after {
	position: absolute;
	right: 0;
	top: 50%;
	width: 7px;
	height: 7px;
	margin-top: -5px;
	border-left: 2px solid var(--thm-smh-color-chosen);
	border-bottom: 2px solid var(--thm-smh-color-chosen);
	content: "";
	transform: rotateZ(-45deg);
}
body.rtl .site-main-header .main-menu > li.has-sub > a::after {
	left: 0;
	right: auto;
}
.site-main-header .main-menu .submenu {
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	padding: 16px 0;
	z-index: -1;
	opacity: 0;
	list-style: outside none;
	background-color: #fff;
	color: #777;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
	transform: translateY(-10px) scaleY(.9);
	transform-origin: 50% 0;
	transition: opacity .2s ease, transform .2s ease;
}
body.rtl .site-main-header .main-menu .submenu {
	right: 0;
	left: auto;
}
.site-main-header .main-menu .submenu li .submenu {
	top: -16px;
	left: 100%;
}
body.rtl .site-main-header .main-menu .submenu li .submenu {
	right: 100%;
	left: auto;
}
.site-main-header .main-menu .submenu a {
	color: #333;
	text-decoration: none;
	transition: color .4s ease;
}
.site-main-header .main-menu .submenu .it-link,
.mobile-side-nav .navigator .menu li .it-link {
	display: flex;
	align-items: center;
}
.site-main-header .main-menu .submenu .it-link > .thimg {
	width: 32px;
	height: auto;
	margin-right: 5px;
}
body.rtl .site-main-header .main-menu .submenu .it-link > .thimg {
	margin-left: 5px;
	margin-right: 0;
}
.mobile-side-nav .navigator .menu li .it-link > .thimg {
	width: 30px;
	height: auto;
	margin-right: 5px;
}
body.rtl .mobile-side-nav .navigator .menu li .it-link > .thimg {
	margin-left: 5px;
	margin-right: 0;
}
.site-main-header .main-menu .submenu li.active,
.site-main-header .main-menu .submenu li.active a,
.site-main-header .main-menu .submenu li a:hover {
	color: var(--theme-txt-color);
}
.site-main-header .main-menu .submenu li {
	padding: 4px 16px;
}
.site-main-header .main-menu li:hover > .submenu {
	visibility: visible;
	z-index: 1;
	opacity: 1;
	transform: translateY(0) scaleY(1);
}
.site-main-header .main-menu .submenu li.has-sub {
	padding-right: 32px;
}
body.rtl .site-main-header .main-menu .submenu li.has-sub {
	padding-left: 32px;
	padding-right: 16px;
}
.site-main-header .main-menu .submenu li.has-sub::after {
	position: absolute;
	right: 18px;
	top: 16px;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	content: "";
	transform: rotateZ(45deg);
}
body.rtl .site-main-header .main-menu .submenu li.has-sub::after {
	left: 18px;
	right: auto;
	transform: rotateZ(-135deg);
}
.site-main-header .main-menu .submenu li.has-sub:hover::after {
	border-color: var(--theme-txt-color);
}

.cart-btn {
	position: relative;
	z-index: 1;
}
.cart-btn .icn {
	font-size: 18px;
}
.cart-btn .count {
	position: absolute;
	right: -10px;
	top: -5px;
	min-width: 14px;
	height: 14px;
	padding: 0;
	z-index: 2;
	pointer-events: none;
	line-height: 14px;
	font-weight: 400;
	font-size: 13px;
	color: var(--thm-smh-color-chosen);
}
.cart-btn .total {
	display: none;
	font-size: 12px;
}

.site-main-header .search-area {
	display: none;
	flex: 1 1 auto;
	width: auto;
	align-self: center;
}
.site-main-header .search-area .dismiss-btn {
	position: relative;
	width: 16px;
	margin-right: 5px;
	padding: 0;
	flex: 0 0 16px;
	background-color: transparent;
	border: 0;
}
body.rtl .site-main-header .search-area .dismiss-btn {
	margin-right: 0;
	margin-left: 5px;
}
.site-main-header .search-area .dismiss-btn::before,
.site-main-header .search-area .dismiss-btn::after {
	position: absolute;
	top: 5px;
	left: 50%;
	width: 1px;
	height: 16px;
	background-color: var(--thm-smh-color-chosen);
	content: "";
	transform: rotateZ(45deg);
}
.site-main-header .search-area .dismiss-btn::after {
	transform: rotateZ(-45deg);
}
.site-main-header .search-area .form-bar {
	position: relative;
	width: auto;
	margin: 0;
	padding: 0;
	flex: 1 1 auto;
	font-size: 16px;
}
.site-main-header .search-area .form-bar .tbox {
	width: 100%;
	height: 25px;
	padding: 0 20px 0 2px;
	background-color: transparent;
	line-height: 1;
	color: var(--thm-smh-color-chosen);
	border: 0;
	border-bottom: 1px solid var(--thm-smh-color-chosen);
	outline: 0;
}
body.rtl .site-main-header .search-area .form-bar .tbox {
	padding: 0 2px 0 20px;
}
.site-main-header .search-area .form-bar .srch-submit {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	background-color: transparent;
	color: var(--thm-smh-color-chosen);
	border: 0;
}
body.rtl .site-main-header .search-area .form-bar .srch-submit {
	left: 0;
	right: auto;
}
.site-main-header.searching .search-area {
	display: flex;
}

.site-main-header .main-nav,
.site-main-header.searching .srch-btn,
.site-main-header.searching .logo,
.site-main-header.searching .cart-btn,
.site-main-header.searching .user-btn,
.site-main-header.searching .main-nav {
	display: none;
}

.dropdown-menu.user-menu {
	--bs-dropdown-border-radius: 0;
	--bs-dropdown-bg: #fff;
}
.dropdown-menu.user-menu .dropdown-item {
	padding: 0.5rem 1rem;
	color: var(--theme-txt-color);
}

@media (min-width: 576px){
	.site-main-header .inner .logo {
		height: 50px;
	}
	.site-main-header .search-area {
		flex: 0 0 60%;
		width: 60%;
	}
	.site-main-header.searching .cart-btn,
	.site-main-header.searching .user-btn {
		display: block;
	}
}
@media (min-width: 768px){
	.site-main-header .search-area {
		flex: 0 0 420px;
		width: 420px;
	}
}
@media (min-width: 992px){
	.site-main-header .search-area {
		flex: 0 0 560px;
		width: 560px;
	}
}
@media (min-width: 1200px){
	.site-main-header .main-nav,
	.site-main-header.searching .logo {
		display: block;
	}
	.site-main-header .mobile-menu-btn {
		display: none;
	}
	.site-main-header .inner {
		height: 100px;
	}
	.site-main-header .inner .logo {
		height: 80px;
	}
	.cart-btn .total {
		display: inline-block;
	}
}
@media (min-width: 1600px){
	.site-main-header .main-menu > li + li {
		margin-left: 40px;
	}
}

.siders-overlay-matte {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #000;
	opacity: .5;
	z-index: -1;
}
.siders-overlay-matte.show {
	display: block;
	z-index: 1000;
}

.siders {
	visibility: hidden;
	display: flex;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	flex-direction: column;
	width: 100%;
	padding: 20px;
	opacity: 0;
	background-color: #fff;
	z-index: 1001;
	transform: translate(-100%,0);
	transition: transform .4s ease-in-out, opacity .4s linear, visibility .4s linear;
}
.siders.right {
	right: 0;
	left: auto;
	transform: translate(100%,0);
}
.siders.show {
	visibility: visible;
	opacity: 1;
	transform: translate(0,0);
}
.siders .navigator {
	display: block;
	flex: 1 1 auto;
	height: 0;
	margin-right: -20px;
	padding-right: 20px;
	overflow: auto;
}
body.rtl .siders .navigator {
	margin-left: -20px;
	padding-left: 20px;
	margin-right: 0;
	padding-right: 0;
}

.mobile-side-nav {
	z-index: 1002;
}
.mobile-side-nav .header {
	margin-bottom: 1rem;
}
.mobile-side-nav .header .logo {
	width: auto;
	height: 32px;
}
.mobile-side-nav .navigator .menu {
	display: block;
	margin: 0;
	padding: 0;
}
.mobile-side-nav .navigator .menu li,
.mobile-side-nav .navigator .menu a {
	color: var(--theme-txt-color);
	text-decoration: none;
}
.mobile-side-nav .navigator .menu a:hover {
	color: var(--theme-color-prime);
}
.mobile-side-nav .navigator .menu li {
	display: block;
	position: relative;
	padding-top: 5px;
	padding-bottom: 5px;
	font-weight: 400;
}
.mobile-side-nav .navigator .menu li.has-sub {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.mobile-side-nav .navigator .menu li.has-sub .mbt {
	display: block;
	position: relative;
	width: 18px;
	height: 18px;
	align-self: center;
	order: 1;
}
.mobile-side-nav .navigator .menu li.has-sub .mbt::after {
	position: absolute;
	top: 5px;
	left: 5px;
	width: 8px;
	height: 8px;
	border-top: 1px solid var(--theme-txt-color);
	border-right: 1px solid var(--theme-txt-color);
	content: "";
	transform: rotate(45deg);
	transition: transform .3s ease;
}
.mobile-side-nav .navigator .menu  li > a .icon {
	display: none;
}
.mobile-side-nav .navigator .menu li.has-sub.expanded > .mbt::after {
	transform: rotate(135deg);
}
body.rtl .mobile-side-nav .navigator .menu li.has-sub .mbt::after {
	transform: rotate(-135deg);
}
body.rtl .mobile-side-nav .navigator .menu li.has-sub.expanded > .mbt::after {
	transform: rotate(-225deg);
}
.mobile-side-nav .navigator .menu li .submenu {
	display: none;
	width: 100%;
	padding: 0 0 0 10px;
	order: 2;
}
body.rtl .mobile-side-nav .navigator .menu li .submenu {
	padding: 0 10px 0 0;
}
.mobile-side-nav .navigator .menu li .submenu.reveal {
	display: block;
}
@media (min-width: 320px){
	.siders {
		width: 310px;
	}
	.siders .header {
		margin-bottom: 1.5rem;
	}
}
@media (min-width: 360px){
	.siders {
		width: 350px;
	}
	.siders.side-cart {
		padding: 24px 30px 40px;
	}
	.mobile-side-nav .navigator .menu li {
		font-size: 18px;
	}
}

.siders.shop-filter {
	z-index: 1000;
}
.siders.shop-filter.show {
	box-shadow: 0 0 25px rgba(0, 0, 0, .15);
}

.side-cart {
	z-index: 9001;
}
.side-cart .cart-inner {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}
.side-cart .cart-pane {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}
.side-cart .cart-pane .scroller {
	flex: 1 1 auto;
	height: 0;
	margin-right: -25px;
	padding-right: 25px;
	overflow: auto;
}
.side-cart .cart-pane ul.listing {
	width: 100%;
	padding: 0;
}
.side-cart .cart-total {
	display: flex;
	justify-content: space-between;
	font-size: 20px;
	font-weight: 500;
}
.side-cart ul.listing > li {
	display: flex;
	align-items: start;
	padding: 5px 0 15px;
}
.side-cart ul.listing > li:first-child {
	padding-top: 0;
}
.side-cart ul.listing > li .th-cls-btn {
	width: 12px;
	height: 12px;
	margin-right: 10px;
}
body.rtl .side-cart ul.listing > li .th-cls-btn {
	margin-left: 10px;
	margin-right: 0;
}
.side-cart ul.listing > li .th-cls-btn::before,
.side-cart ul.listing > li .th-cls-btn::after {
	top: -1px;
	left: 5px;
	height: 14px;
}
.side-cart ul.listing > li .p-img {
	display: flex;
	flex-direction: column;
	flex: 0 0 60px;
	justify-content: center;
	width: 60px;
	margin-right: 10px;
	border: 1px solid var(--theme-pale-color);
}
body.rtl .side-cart ul.listing > li .p-img {
	margin-left: 10px;
	margin-right: 0;
}
.side-cart ul.listing > li .p-img a {
	display: block;
	width: 100%;
}
.side-cart ul.listing > li .p-img a img {
	width: 100%;
	height: auto;
}
.side-cart ul.listing > li .info {
	position: relative;
	flex: 1 1 auto;
	font-size: 14px;
}
.side-cart ul.listing > li .info .heading {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
	color: var(--theme-txt-color);
}
.side-cart ul.listing > li .info .heading a {
	color: var(--theme-txt-color);
	text-decoration: none;
}
.side-cart ul.listing > li .info .product-var {
	display: block;
	line-height: 1.4;
	font-style: italic;
}
.side-cart ul.listing > li .info .sum {
	text-align: right;
	font-size: 16px;
	font-weight: 300;
}
.side-cart ul.listing > li .info .sum .u {
	font-size: 13px;
	font-weight: 600;
}
.side-cart .sub {
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	font-weight: 300;
}
.side-cart .sub .item {
	font-weight: 500;
}
.side-cart .total {
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	font-weight: 300;
}
.side-cart .total .item {
	font-weight: 600;
}
.side-cart .cart-promo {
	position: relative;
	padding: 0 5px;
	background-color: var(--theme-dark-color);
	color: #fff;
	z-index: 1;
}
.side-cart .cart-promo.good {
	background-color: #1f6100;
}
.side-cart .cart-promo .prog {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 100%;
	height: 100%;
	background-color: var(--theme-color-prime);
	z-index: -1;
	transform: scaleX(0);
	transform-origin: 100% 0;
	transition: transform 1s ease-out 0.3s;
}
.side-cart.show .cart-promo .prog {
	transform: scaleX(1);
}
@media (min-width: 460px){
	.side-cart {
		width: 450px;
	}
	.side-cart ul.listing > li .p-img {
		flex: 0 0 70px;
		width: 70px;
	}
}

.hp-main-slider .item {
	position: relative;
	background-color: #000;
	min-height: 100vh;
}
.hp-main-slider .item .img-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.hp-main-slider .item .text-layer {
	display: flex;
	flex-direction: column;
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	color: #fff;
	z-index: 1;
	justify-content: center;
	align-items: center;
}
.hp-main-slider .text-layer .heading {
	font-size: 34px;
}
@media (min-width: 576px){
	.hp-main-slider .text-layer .heading {
		font-size: 40px;
	}
}
@media (min-width: 768px){
	.hp-main-slider .text-layer .heading {
		font-size: 58px;
	}
}
@media (min-width: 1300px){
	.hp-main-slider .text-layer .heading {
		font-size: 64px;
	}
}

.bg-i {
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}

.bg-i.pos-t {
	background-position: 50% 0;
}
.bg-i.pos-tl {
	background-position: 0 0;
}
.bg-i.pos-tr {
	background-position: 100% 0;
}
.bg-i.pos-b {
	background-position: 50% 100%;
}
.bg-i.pos-bl {
	background-position: 0 100%;
}
.bg-i.pos-br {
	background-position: 100% 100%;
}

.bg-i.gfx1 {
	background-image: url("../images/gfx/bg-gfx1.jpg");
}
.bg-i.gfx2 {
	background-image: url("../images/gfx/bg-gfx2.png");
}
.bg-i.gfx3 {
	background-image: url("../images/gfx/bg-gfx3.jpg");
}
.bg-i.gfx4 {
	background-image: url("../images/gfx/bg-gfx4.png");
}
.bg-i.gfx5 {
	background-image: url("../images/gfx/bg-gfx5.jpg");
}
.bg-i.gfx6 {
	background-image: url("../images/gfx/bg-gfx6.jpg");
}
.bg-i.idef1 {
	background-image: url("../images/default/default-slide.jpg");
}
.bg-i.bc1 {
	background-image: url("../images/gfx/bc-inner-pages.jpg");
	background-position: 50% 30%;
}

.mh-title {
	margin: 0;
	font-size: 36px;
}

.sec-sub-title {
	margin: 0;
	font-size: inherit;
}

.sec-title {
	--thm-font-size: 36px;
	margin: 0;
	padding: 0;
	font-size: var(--thm-font-size);
	font-weight: 600;
}
.sec-title.orn {
	padding-bottom: 12px;
}
.orn {
	--thm-grad-dir: 90deg;
	--thm-grad-color: var(--theme-color-prime);
	position: relative;
}
body.rtl .orn {
	--thm-grad-dir: 270deg;
}
.orn.alt {
	--thm-grad-color: var(--theme-color-sec);
}
.orn.white {
	--thm-grad-color: var(--bs-white);
}
.orn.black {
	--thm-grad-color: var(--bs-black);
}
.orn::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	z-index: 0;
	background-image: linear-gradient(var(--thm-grad-dir), var(--thm-grad-color), transparent);
	content: "";
}
body.rtl .orn::after {
	right: 0;
	left: auto;
}
@media (min-width: 576px){
	.mh-title {
		font-size: 48px;
	}
	.sec-title {
		--thm-font-size: 42px;
	}
}
@media (min-width: 768px){
	.mh-title {
		font-size: 64px;
	}
}
@media (min-width: 1200px){
	.sec-title {
		--thm-font-size: 46px;
	}
}

.about-main-img {
	position: relative;
	z-index: 1;
}
.about-sec-img {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 80%;
	border: 10px solid #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	z-index: 2;
}
.about-gfx {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 0;
}
body.rtl .about-sec-img {
	left: 0;
	right: auto;
}
body.rtl .about-gfx {
	left: 1rem;
	right: auto;
}

.about-tag {
	--thm-gfx-bg-color: var(--theme-color-prime);
	position: absolute;
	top: 10%;
	left: 15px;
	padding: 30px 40px;
	background-color: var(--thm-gfx-bg-color);
	z-index: 3;
	color: #fff;
}
body.rtl .about-tag {
	right: 15px;
	left: auto;
}
.about-tag.alt {
	--thm-gfx-bg-color: var(--theme-color-sec);
}
.about-tag.black {
	--thm-gfx-bg-color: var(--bs-black);
}
.about-tag::before,
.about-tag::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
	outline: 2px solid #000;
	outline-offset: -2px;
	pointer-events: none;
	content: "";
}
.about-tag::after {
	outline: 8px solid #fff;
	outline-offset: -10px;
}
.about-tag .vtip {
	position: absolute;
	bottom: -30px;
	left: 0;
	width: 45px;
	height: 40px;
	z-index: 1;
}
.about-tag .vtip .vbg {
	fill: var(--thm-gfx-bg-color);
}
.about-tag .icon {
	line-height: 1;
	font-size: 62px;
}
@media (min-width: 1200px){
	.about-tag {
		left: -20px;
	}
	body.rtl .about-tag {
		right: -20px;
		left: auto;
	}
}
@media (min-width: 1600px){
	.about-tag {
		left: -80px;
	}
	body.rtl .about-tag {
		right: -80px;
		left: auto;
	}
}

.bounce-y {
	animation: bounce-y 10s infinite linear;
}
.bounce-x {
	animation: bounce-x 10s infinite linear;
}
@keyframes bounce-y {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-30px);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes bounce-x {
	0% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(30px);
	}
	100% {
		transform: translateX(0);
	}
}

.video-bullet {
	position: relative;
	display: flex;
	width: 45px;
	height: 45px;
	justify-content: center;
	align-items: center;
	z-index: 2;
	background-color: var(--theme-color-prime);
	line-height: 1;
	font-size: 24px;
	color: #fff;
	border-radius: 50%;
}
.video-bullet .ring {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: .5;
	border: 1px solid var(--theme-color-prime);
	border-radius: 50%;
	content: "";
	animation: pulse-animate 4s linear infinite;
}
.video-bullet .ring:nth-child(2) {
	animation-delay: 1s;
}
.video-bullet .ring:nth-child(3) {
	animation-delay: 2s;
}
.video-bullet .ring:nth-child(4) {
	animation-delay: 3s;
}
@keyframes pulse-animate {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(2.5);
		opacity: 0;
	}
}

.banner-wrapper {
	position: relative;
	overflow: hidden;
}
.banner-wrapper .hotspot {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.banner-wrapper .img {
	width: 100%;
	transition: transform .3s ease;
}
.banner-wrapper:hover .img {
	transform: scale(1.035);
}

.breadcrumbs {
	margin: 0;
	padding: 0;
	list-style: outside none;
	font-size: 16px;
}
.breadcrumbs > li {
	display: inline-block;
}
.breadcrumbs > li::after {
	margin-left: .3rem;
	font-family: "Font Awesome 6 Free";
	font-size: 12px;
	font-weight: 900;
	content: "\f105";
}
body.rtl .breadcrumbs > li::after {
	margin-right: .3rem;
	margin-left: 0;
	content: "\f104";
}
.breadcrumbs > li:last-child::after {
	display: none;
}
.breadcrumbs > li + li {
	margin-left: .3rem;
}
body.rtl .breadcrumbs > li + li {
	margin-right: .3rem;
	margin-left: 0;
}

.icon-box {
	--thm-icn-color: #000;
	--thm-icn-color-to: #000;
	position: relative;
	z-index: 1;
}
.icon-box.from-theme {
	--thm-icn-color: var(--theme-color-prime);
}
.icon-box.from-theme-alt {
	--thm-icn-color: var(--theme-color-sec);
}
.icon-box.from-theme-dark {
	--thm-icn-color: var(--theme-dark-color);
}
.icon-box.to-theme {
	--thm-icn-color-to: var(--theme-color-prime);
}
.icon-box.to-theme-alt {
	--thm-icn-color-to: var(--theme-color-sec);
}
.icon-box.to-theme-dark {
	--thm-icn-color-to: var(--theme-dark-color);
}
.icon-box .icn {
	line-height: 1;
	color: var(--thm-icn-color);
	transition: color .4s ease, transform .4s ease;
}
.icon-box.v1,
.icon-box.v2 {
	display: flex;
	width: 72px;
	height: 72px;
	justify-content: center;
	align-items: center;
}
.icon-box:hover .icn {
	color: var(--thm-icn-color-to);
}
.icon-box:hover .icn.fx-roll {
	transform: scale(-1) rotate(180deg);
}
.icon-box:hover .icn.fx-flip {
	transform: scaleX(-1);
}
.icon-box.v1::before,
.icon-box.v2::before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 52px;
	height: 52px;
	background-color: #f2f3f6;
	z-index: -1;
	content: "";
	transition: transform .4s cubic-bezier(.68, -0.55, .27, 1.55);
}
.icon-box.v2::before {
	background-color: rgba(0, 0, 0, 0.25);
	border-radius: 50%;
	top: 0;
	bottom: auto;
	right: 0;
	left: auto;
}
body.rtl .icon-box.v1::before {
	right: 0;
	left: auto;
}
body.rtl .icon-box.v2::before {
	left: 0;
	right: auto;
}
.icon-box.v1:hover::before {
	transform: translate(20px, -20px);
}
.icon-box.v2:hover::before {
	transform: translate(-20px, 20px);
}
body.rtl .icon-box.v1:hover::before {
	transform: translate(-20px, -20px);
}
body.rtl .icon-box.v2:hover::before {
	transform: translate(20px, 20px);
}
.icon-box.v1 .icn,
.icon-box.v2 .icn {
	height: 62px;
	font-size: 62px;
}

.roundel-thumb {
	--rnd-bg-color: #000;
	width: 88px;
	height: 88px;
	padding: 2px;
	border-radius: 50%;
	background-color: var(--rnd-bg-color);
}
.roundel-thumb.grad {
	background-image: linear-gradient(to bottom, var(--theme-color-prime), var(--theme-color-sec));
}
.roundel-thumb .fig {
	display: flex;
	width: 100%;
	height: 100%;
	margin: 0;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: #fff;
	border: 9px solid #fff;
	border-radius: 50%;
}
.roundel-thumb .fig .img {
	width: 100%;
	height: auto;
}

.roundel-thumb.tst {
	width: 64px;
	height: 64px;
	transition: background-color .4s ease;
}
.roundel-thumb.tst .fig {
	border: 4px solid #fff;
}


.dx-hover-alert {
	display: none;
	position: fixed;
	top: 0.5rem;
	left: 50%;
	width: calc(100vw - 1rem);
	z-index: 10000;
	transform: translateX(-50%);
}
.dx-hover-alert.fade {
	opacity: 0;
	transition: opacity 0.3s ease-out;
}
.dx-hover-alert.showing {
	display: block;
}
.dx-hover-alert.show {
	display: block;
	opacity: 1;
}
.dx-hover-alert.fade .alert {
	margin-bottom: 0;
	transform: translateY(-30px);
	transition: transform 0.3s ease-out;
}
.dx-hover-alert.fade.show .alert {
	transform: none;
}
.dx-hover-alert.center {
	top: 50%;
	transform: translate(-50%, -50%);
}
.dx-hover-alert.bottom {
	top: auto;
	bottom: 0.5rem;
}
.dx-hover-alert.to-left {
	left: 0.5rem;
	transform: none;
}
.dx-hover-alert.to-right {
	right: 0.5rem;
	left: auto;
	transform: none;
}
.dx-hover-alert.center.to-left,
.dx-hover-alert.center.to-right {
	transform: translateY(-50%);
}
@media (min-width: 360px){
	.dx-hover-alert.sm {
		width: 300px;
	}
}
@media (min-width: 576px){
	.dx-hover-alert {
		top: 1.75rem;
		width: 500px;
	}
	.dx-hover-alert.bottom {
		bottom: 1.75rem;
	}
	.dx-hover-alert.to-left {
		left: 1.75rem;
	}
	.dx-hover-alert.to-right {
		right: 1.75rem;
	}
}
@media (min-width: 992px){
	.dx-hover-alert.lg,
	.dx-hover-alert.xl {
		width: 800px;
	}
}
@media (min-width: 1200px){
	.dx-hover-alert.xl {
		width: 1040px;
	}
}

.info-lith {
	position: relative;
	display: flex;
	max-width: 120px;
	height: 100%;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
}
.info-lith .labeling {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	padding: 3px 5px;
	z-index: 1;
	font-size: 14px;
	border: 1px solid var(--theme-color-gray);
}
.info-lith .img {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	height: auto;
	z-index: 2;
}

/*
 * shop styles
 */
.swiper-button-next.themed,
.swiper-button-prev.themed {
	width: 15px;
	height: 30px;
	margin-top: -15px;
	background-color: transparent;
	background-image: none;
	color: var(--bs-white);
	border: 0;
}
.swiper-button-next.themed::after,
.swiper-button-prev.themed::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: currentColor;
	content: "";
}
.swiper-button-prev.themed::after,
.swiper-container-rtl .swiper-button-next.themed::after {
	-webkit-clip-path: polygon(0 0, 2px 0, 15px 15px, 2px 30px, 0 30px, 13px 15px);
	clip-path: polygon(0 0, 2px 0, 15px 15px, 2px 30px, 0 30px, 13px 15px);
}
.swiper-button-next.themed::after,
.swiper-container-rtl .swiper-button-prev.themed::after {
	-webkit-clip-path: polygon(15px 0, 2px 15px, 15px 30px, 13px 30px, 0 15px, 13px 0);
	clip-path: polygon(15px 0, 2px 15px, 15px 30px, 13px 30px, 0 15px, 13px 0);
}

.swiper-container.framed,.swiper-wrapper .swiper-slide.framed {
	overflow: hidden;
	border: 1px solid var(--bs-black);
	cursor: pointer;
}
.swiper-wrapper .swiper-slide.framed.active-frame {
	border-color: var(--theme-color-prime);
}

.prod-media-box {
	position: relative;
	display: block;
}

.badges-vert-listing,
.badges-listing {
	padding: 0;
	list-style: outside none;
}

.badges-listing > li.badger {
	display: inline-block;
	margin: 0 15px 10px 0;
	padding: 0 10px;
	background-color: #000;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
}
body.rtl .badges-listing > li.badger {
	margin-left: 15px;
	margin-right: 0;
}

.badges-vert-listing > li.badger {
	display: block;
	margin: 0 0 15px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
}
.badges-vert-listing > li.badger .img {
	max-width: 80px;
}
@media (min-width: 576px){
	.badges-vert-listing > li.badger .img {
		max-width: 120px;
	}
}
.badges-vert-listing > li.badger > .cell {
	display: inline-block;
	padding: 0 10px;
	background-color: var(--bs-black);
}
.badges-listing > li.badger.disc,
.badges-vert-listing > li.badger.disc > .cell {
	background-color: var(--theme-color-prime);
}
.prod-media-box .badges-vert-listing,
.prod-media-box .badges-listing {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 10;
	pointer-events: none;
}
body.rtl .prod-media-box .badges-vert-listing,
body.rtl .prod-media-box .badges-listing {
	right: 15px;
	left: auto;
}

.prod-media-box .video-hover,
.video-button {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 20px;
	right: 20px;
	width: 70px;
	height: 70px;
	background-color: rgba(255, 255, 255, .75);
	z-index: 11;
	text-align: center;
	font-size: 10px;
	color: var(--theme-txt-color);
	text-decoration: none;
	transition: color .4s ease;
}
body.rtl .prod-media-box .video-hover,
body.rtl .video-button {
	left: 20px;
	right: auto;
}
.prod-media-box .video-hover .icn,
.video-button .icn {
	display: block;
	width: 40px;
	height: 40px;
	margin: 0 auto;
	transition: fill .4s ease;
}
.prod-media-box .video-hover:hover,
.prod-media-box .video-hover:focus,
.video-button:hover .icn,
.video-button:focus .icn {
	color: var(--theme-color-prime);
}

.after-media-ctr {
	padding: 10px 15px;
	background-color: #eee;
	line-height: 1;
	color: var(--theme-color-prime);
}
.after-media-ctr .ctr-btn {
	color: currentColor;
}

.after-media-ctr .icn {
	fill: currentColor;
}
@media (min-width: 768px){
	.after-media-ctr {
		background-color: transparent;
	}
}

.product-details-content .prod-title-brand {
	float: right;
	width: 80px;
	margin-left: 10px;
}
.product-details-content .prod-title-brand img {
	display: inline-block;
	width: 100%;
	height: auto;
}
body.rtl .product-details-content .prod-title-brand {
	float: left;
	margin-right: 10px;
	margin-left: 0;
}

.stock-available {
	display: inline-block;
	line-height: 20px;
	color: #13680c;
	font-size: 15px;
}
.stock-available.outof {
	color: #d00;
}

.pricing-meta .prod-price {
	font-size: 24px;
	font-weight: 500;
}
.pricing-meta .prod-price.old {
	font-size: 16px;
	font-weight: 300;
	color: #999;
}

.qty-ui-counter {
	--theme-qty-ui-height: 38px;
	--theme-qty-ui-font-size: 16px;
	position: relative;
	display: flex;
	width: 100px;
}
.qty-ui-counter.sm {
	--theme-qty-ui-height: 24px;
	--theme-qty-ui-font-size: 14px;
}
.qty-ui-counter > input {
	flex: 1 0 auto;
	width: calc(100% - 48px);
	height: var(--theme-qty-ui-height);
	margin: 0;
	padding: 0 24px;
	background-color: transparent;
	text-align: center;
	line-height: var(--theme-qty-ui-height);
	font-size: var(--theme-qty-ui-font-size);
	color: var(--theme-txt-color);
	border: 1px solid #ccc;
	outline: 0;
}
.qty-ui-counter > input:focus {
	border-color: var(--bs-black);
}
.qty-ui-counter .qtybutton {
	position: absolute;
	top: 0;
	width: 24px;
	height: 100%;
	padding: 0;
	background-color: transparent;
	text-align: center;
	font-size: 18px;
	color: var(--bs-black);
	border: none;
}
.qty-ui-counter .qtybutton.inc {
	left: 0;
}
.qty-ui-counter .qtybutton.dec {
	right: 0;
}

/** variants styles **/
.in-page-payment-frame {
	width: 100%;
	min-height: 800px;
	border: none;
}

.dx-user-input {
	display: block;
	position: relative;
}
.dx-user-input .adjustable {
	display: block;
	width: 100%;
	height: 36px;
	min-height: 36px;
	padding: 2px;
	border: 1px solid var(--bs-border-color);
	resize: vertical;
}
.dx-capsule-input {
	display: block;
}

.dx-capsule-input .dx-cap {
	display: inline-block;
	height: 32px;
	min-width: 32px;
	padding: 0 10px;
	margin: 0 5px 5px 0;
	line-height: 32px;
	text-align: center;
	color: #000;
	border: 1px solid #000;
	border-radius: 16px;
	cursor: pointer;
}
body.rtl .dx-capsule-input .dx-cap {
	margin: 0 0 5px 5px;
}
.dx-capsule-input .dx-cap.active {
	background-color: #000;
	border-color: #000;
	color: #fff;
}
.dx-capsule-input .dx-cap.color.active {
	border-color: #000;
}
.dx-capsule-input .dx-cap.color {
	position: relative;
	padding: 0;
	background-color: #fff;
	border-radius: 0;
	box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
}
.dx-capsule-input .dx-cap.color.active:after {
	position: absolute;
	top: 1px;
	left: 1px;
	width: 28px;
	height: 28px;
	border: 2px solid #ccc;
	content: "";
}
.dx-capsule-input .dx-del {
	position: relative;
	display: inline-block;
	height: 32px;
	min-width: 32px;
	margin-bottom: 5px;
	line-height: 32px;
	text-align: center;
	cursor: pointer;
}
.dx-capsule-input .dx-del:after,
.dx-capsule-input .dx-del:before {
	position: absolute;
	top: 16px;
	left: 8px;
	width: 16px;
	height: 1px;
	background-color: #333;
	content: "";
}
.dx-capsule-input .dx-del:before {
	transform: rotate(45deg);
}
.dx-capsule-input .dx-del:after {
	transform: rotate(-45deg);
}

.dx-browse-filter-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	max-width: 100%;
	padding: 15px;
	overflow: auto;
	z-index: 9000;
	background-color: #fff;
	border-left: 1px solid #ebebeb;
	transform: translateX(-100%);
	transition: transform .4s ease;
}
body.rtl .dx-browse-filter-container {
	right: 0;
	left: auto;
	border-left: 1px solid #ebebeb;
	border-right: 0;
	transform: translateX(100%);
}
.dx-browse-filter-container.reveal,
body.rtl .dx-browse-filter-container.reveal {
	transform: translateX(0);
}
@media(min-width:360px) {
	.dx-browse-filter-container {
		width: 320px;
	}
}
@media(min-width:992px) {
	.dx-browse-filter-container,
	body.rtl .dx-browse-filter-container {
		position: static;
		top: auto;
		left: auto;
		right: auto;
		width: 100%;
		height: auto;
		padding: 0;
		z-index: auto;
		background-color: transparent;
		border: 0;
		transform: none;
	}
}

.dx-filter-toggle {
	background-color: #fff;
	border: 0;
}

.indicator {
	background-color: transparent;
	color: var(--bs-danger-text-emphasis);
}

.dx-hinter-container {
	display: block;
	position: relative;
	width: 100%;
}
.dx-hinter {
	--hinter-hover-bg-color: #000;
	--hinter-hover-color: #fff;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0;
	list-style: outside none;
	background-color: #fff;
	border: 1px solid #ebebeb;
	z-index: 1051;
}
.dx-hinter.theme {
	--hinter-hover-bg-color: var(--theme-color-prime);
	--hinter-hover-color: var(--theme-txt-color);
}
.dx-hinter.gray {
	--hinter-hover-bg-color: var(--theme-color-lighter-gray);
	--hinter-hover-color: var(--theme-txt-color);
}
.dx-hinter.show {
	display: block;
}
.dx-hinter .item {
	display: block;
	padding: 2px 8px;
	background-color: #fff;
	color: #000;
}
.dx-hinter .item.weak {
	color: #aaa;
}
.dx-hinter .item.active {
	background-color: var(--hinter-hover-bg-color);
	color: var(--hinter-hover-color);
}

.super-notice {
	--thm-pane-color: #000;
	position: fixed;
	visibility: hidden;
	z-index: -1;
}
.super-notice .bg-hotspot {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
}
.super-notice.coupon {
	display: flex;
	flex-direction: column;
	bottom: 170px;
	left: 0;
	width: 100%;
	min-height: 200px;
	padding: 20px;
	background-color: #fff;
	color: #000;
	border: 3px dashed var(--thm-pane-color);
	border-radius: 0 20px 0 0;
	transition: all .4s ease;
	transform: translate(-100%, 0);
}
.super-notice.coupon.toright {
	right: 0;
	left: auto;
	bottom: 15px;
	border-radius: 20px 0 0 0;
	transform: translate(100%, 0);
}
.super-notice.coupon .gfmnt {
    position: absolute;
    top: -15px;
    right: 25px;
    width: 48px;
    height: 26px;
    z-index: 1;
}
.super-notice .vect {
	fill: var(--thm-pane-color);
}
.super-notice.coupon.toright .gfmnt {
    left: 25px;
	right: auto;
}
.super-notice.coupon.showing,
.super-notice.coupon.toright.showing {
	visibility: visible;
	z-index: 1001;
	transform: translate(0, 0);
}
.super-notice.coupon .close-btn {
	position: absolute;
	top: 20px;
	right: 5px;
	width: 24px;
	height: 24px;
	background-color: #fff;
	line-height: 1.5;
	text-align: center;
	font-size: 16px;
	color: var(--thm-pane-color);
	border: 1px solid var(--thm-pane-color);
	border-radius: 50%;
}
.super-notice.coupon.toright .close-btn {
	left: 5px;
	right: auto;
}
.super-notice.coupon .close-btn:hover {
	background-color: var(--thm-pane-color);
	color: #fff;
}
.super-notice.coupon .coupon-code {
	display: block;
	margin: .5rem 0 0;
	text-align: center;
}
.super-notice.coupon .coupon-code .inner {
	display: inline-block;
	padding: 5px 10px;
	background-color: #eee;
	font-size: 26px;
	color: var(--thm-pane-color);
	border: 1px solid #ccc;
}
.super-notice.coupon .auto-act {
	padding: 4px 15px;
	background-color: #fff;
	font-size: 18px;
	font-weight: 500;
	color: var(--thm-pane-color);
	border: 2px solid var(--thm-pane-color);
	transition: all 0.4s ease;
}
.super-notice.coupon .auto-act:hover {
	background-color: var(--thm-pane-color);
	color: #fff;
}
.super-notice.coupon .ext-coupon .action-indicator {
	font-size: 16px;
	color: #000;
}
.super-notice.coupon .ext-coupon .action-indicator.ok {
	color: #0a0;
}
@media (min-width: 320px){
	.super-notice.coupon {
		width: 300px;
	}
	.super-notice.coupon .close-btn {
		right: -13px;
	}
	.super-notice.coupon.toright .close-btn {
		left: -13px;
		right: auto;
	}
}
.super-maximizer {
	--thm-pane-color: #000;
}
.super-maximizer.coupon {
	position: fixed;
	bottom: 220px;
	left: 0;
	background-color: #fff;
	border: 2px dashed var(--thm-pane-color);
	color: var(--thm-pane-color);
	padding: 0 10px;
	line-height: 1.4;
	font-size: 16px;
	z-index: 1000;
	transform: translate(-100%, 0) rotateZ(90deg) translate(50px, 100%);
	transform-origin: 100% 100%;
	transition: all .4s ease;
}
.super-maximizer.coupon.toright {
	right: 0;
	left: auto;
	bottom: 15px;
	transform: translate(100%, 0) rotateZ(-90deg) translate(50px, 100%);
	transform-origin: 0 100%;
}
.super-maximizer.coupon.shown {
	transform: translate(-100%, 0) rotateZ(90deg) translate(50px, 0);
}
.super-maximizer.coupon.toright.shown {
	transform: translate(100%, 0) rotateZ(-90deg) translate(50px, 0);
}
.super-notice.red,
.super-maximizer.red {
	--thm-pane-color: #d00;
}
.super-notice.theme,
.super-maximizer.theme {
	--thm-pane-color: var(--theme-color-prime);
}
@media (min-width: 768px){
	.super-notice.coupon {
		bottom: 180px;
	}
	.super-maximizer.coupon {
		bottom: 230px;
	}
}
.super-notice.coupon .ok-icon {
	display: block;
	width: 60px;
	height: 60px;
	margin: 0 auto;
	line-height: 60px;
	text-align: center;
	font-size: 32px;
	color: #28a745;
	border: 3px solid #28a745;
	border-radius: 50%;
}

.super-notice.hot {
	display: flex;
	flex-direction: column;
	justify-content: center;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.6);
}
.super-notice.hot.showing {
	visibility: visible;
	z-index: 30000;
}
.super-notice.hot .notice-body {
	position: relative;
	width: calc(100% - 30px);
	max-height: calc(100% - 30px);
	margin: 0 auto;
	padding: 20px;
	overflow: auto;
	background-color: #fff;
	color: #000;
	border: 4px solid #000;
	border-radius: 5px;
	opacity: 0;
	z-index: 1;
	box-shadow: 0 0 0 #fff;
	transition: all .4s ease;
	transform: scale(0.9);
}
.super-notice.hot.showing .notice-body {
	opacity: 1;
	box-shadow: 0 0 40px #fff;
	transform: scale(1);
}
.super-notice.hot .close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 24px;
	height: 24px;
	background-color: #fff;
	line-height: 1.2;
	text-align: center;
	font-size: 16px;
	color: #000;
	border: 1px solid #000;
	border-radius: 50%;
	z-index: 10;
}
body.rtl .super-notice.hot .close-btn {
	left: 10px;
	right: auto;
}
.super-notice.hot .close-btn:hover {
	background-color: #000;
	color: #fff;
}
@media (min-width: 768px){
	.super-notice.hot .notice-body {
		width: 720px;
	}
}
@media (min-width: 992px){
	.super-notice.hot .notice-body {
		width: 850px;
	}
}
@media (min-width: 1200px){
	.super-notice.hot .notice-body {
		width: 1000px;
	}
}

.added-prods-gizmo {
	display: flex;
	flex-wrap: wrap;
}
.added-prods-gizmo .adp-cell {
	position: relative;
	margin: 0 15px 15px 0;
	padding: 4px;
	border: 1px solid var(--bs-border-color);
}
body.rtl .added-prods-gizmo .adp-cell {
	margin: 0 0 15px 15px;
}
.added-prods-gizmo .adp-cell .thumb {
	display: block;
	position: relative;
	width: 100px;
	z-index: 0;
}
.added-prods-gizmo .adp-cell.chosen {
	border-color: #000;
}
.added-prods-gizmo .adp-cell .thumb .sel-disp {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.7);
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	opacity: 0;
	z-index: 1;
	transition: opacity 0.25s ease;
}
.added-prods-gizmo .adp-cell.chosen .thumb .sel-disp {
	opacity: 1;
}
.added-prods-gizmo .adp-cell .add-btn {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
.added-prods-gizmo .adp-cell .zoom-btn {
	position: absolute;
	top: 4px;
	left: 4px;
	width: 24px;
	background-color: #eee;
	text-align: center;
	line-height: 24px;
	font-size: 16px;
	color: #000;
	z-index: 2;
}
.added-prods-gizmo .adp-cell .thumb img {
	width: 100%;
	height: auto;
}
.added-prods-gizmo .adp-cell .price-label {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 5px;
	font-size: 16px;
}
.added-prods-gizmo .adp-cell .price-label .oldprice {
	display: inline-block;
	margin-left: 0.25rem;
	font-size: 13px;
	font-weight: 300;
	color: #9b9b9b;
	text-decoration: line-through;
}
body.rtl .added-prods-gizmo .adp-cell .price-label .oldprice {
	margin-right: 0.25rem;
	margin-left: 0;
}
.added-prods-gizmo .adp-cell .title {
	display: block;
	max-width: 100px;
	line-height: 1.2;
	font-size: 13px;
}
.added-prod-controls .added-prod-heading {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 600;
}
.added-prod-controls .added-prod-heading .ctrl {
	font-size: 14px;
	font-weight: 400;
	color: #999;
}
.added-prod-controls .clear-btn {
	display: none;
	position: relative;
	padding: 0 0 0 18px;
	min-width: 18px;
	height: 18px;
	line-height: 18px;
	font-size: 12px;
	color: #333;
}
.added-prod-controls .clear-btn.shown {
	display: inline-block;
}
.added-prod-controls .clear-btn:before,
.added-prod-controls .clear-btn:after {
	position: absolute;
	top: 9px;
	left: 1px;
	width: 16px;
	height: 1px;
	background-color: #333;
	content: "";
}
.added-prod-controls .clear-btn:before {
	transform: rotate(45deg);
}
.added-prod-controls .clear-btn:after {
	transform: rotate(-45deg);
}
body.rtl .added-prod-controls .clear-btn {
	padding: 0 18px 0 0;
}
body.rtl .added-prod-controls .clear-btn:before,
body.rtl .added-prod-controls .clear-btn:after {
	right: 1px;
	left: auto;
}

.list-product {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	z-index: 1;
	color: var(--theme-txt-color);
	transition: all .3s linear;
}
.second-img {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all .3s linear;
}
.list-product:hover .second-img {
	opacity: 1;
	visibility: visible;
}
.list-product .img-block {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
}
.list-product .img-block::before {
	padding-top: 140%;
	float: left;
	content: "";
}
.list-product .img-block.square::before {
	padding-top: 100%;
}
.list-product .img-block .thumbnail {
	display: block;
	position: static;
	width: 100%;
	height: 100%;
}
.list-product .img-block .thumbnail .first-img,
.list-product .img-block .thumbnail .second-img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	transform: translate(-50%,-50%);
	transition: all .4s ease;
}
.list-product .img-block .thumbnail .first-img img,
.list-product .img-block .thumbnail .second-img img {
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.list-product .img-block .thumbnail .first-img.hbase,
.list-product .img-block .thumbnail .second-img.hbase {
	width: auto;
	height: 100%;
}
.list-product .img-block.chameleon .thumbnail .first-img,
.list-product .img-block.chameleon .thumbnail .second-img {
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: none;
}
.list-product .img-block.chameleon .thumbnail .first-img img,
.list-product .img-block.chameleon .thumbnail .second-img img {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}
.list-product .img-block .thumbnail .second-img {
	opacity: 0;
	transform: translate(-50%,-50%) scale(1.1);
}
.list-product .img-block.chameleon .thumbnail .second-img {
	opacity: 0;
	transform: scale(1.1);
}
.no-touchevents .list-product:hover .img-block .thumbnail .second-img {
	opacity: 1;
	transform: translate(-50%,-50%) scale(1);
}
.no-touchevents .list-product.dimg:hover .img-block .thumbnail .first-img {
	opacity: 0;
	transform: translate(-50%,-50%) scale(.9);
}
.no-touchevents .list-product:hover .img-block.chameleon .thumbnail .second-img {
	opacity: 1;
	transform: scale(1);
}
.no-touchevents .list-product.dimg:hover .img-block.chameleon .thumbnail .first-img {
	opacity: 0;
	transform: scale(.9);
}
.list-product .img-block .brief-overlay {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 10px;
	opacity: 0;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, .75);
	text-align: center;
	color: #fff;
	pointer-events: none;
	transition: opacity .4s ease;
}
.list-product .quick-buttons {
	visibility: hidden;
	display: flex;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	flex-direction: column;
	justify-content: center;
	align-items: end;
	z-index: -1;
}
body.rtl .list-product .quick-buttons {
	right: 0;
	left: auto;
}
.no-touchevents .list-product:hover .quick-buttons {
	visibility: visible;
	z-index: 2;
}
.no-touchevents .list-product:hover .img-block .brief-overlay {
	opacity: 1;
}
.list-product .quick-buttons .qbtn {
	display: flex;
	width: 30px;
	height: 30px;
	margin-left: 20px;
	justify-content: center;
	align-items: center;
	opacity: 0;
	background-color: var(--bs-white);
	color: var(--bs-black);
	text-decoration: none;
	border: 1px solid var(--bs-black);
	border-radius: 50%;
	transform: translateX(-100%);
	transition: background-color .4s ease, color .4s ease, border-color .4s ease, opacity .4s ease, transform .4s ease;
}
body.rtl .list-product .quick-buttons .qbtn {
	margin-right: 20px;
	margin-left: 0;
	transform: translateX(100%);
}
.list-product .quick-buttons .qbtn + .qbtn {
	margin-top: 10px;
}
.list-product:hover .quick-buttons .qbtn,
body.rtl .list-product:hover .quick-buttons .qbtn {
	opacity: 1;
	transform: translateX(0);
}
.list-product .quick-buttons .qbtn:hover {
	background-color: var(--bs-black);
	color: var(--bs-white);
	border-color: var(--bs-black);
}
body.rtl .list-product .quick-buttons .qbtn:hover {
	right: 0;
	left: auto;
}
.list-product .sale-badge {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0 10px;
	text-align: center;
	transform: translateY(-50%);
	transition: transform .4s ease;
}
.list-product .sale-badge .inner {
	display: inline-block;
	max-width: 100%;
	height: 26px;
	padding: 2px 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: var(--theme-color-prime);
	line-height: 1.4;
	font-size: 16px;
	font-weight: 500;
	color: var(--bs-black);
	border-radius: 30px;
	white-space: nowrap;
}
.list-product:hover .sale-badge {
	transform: translateY(-120%);
}
.list-product .product-flag {
	position: absolute;
	top: 10px;
	right: 10px;
	margin: 0;
	padding: 0;
	list-style: outside none;
}
.list-product .product-flag .new {
	padding: 0 5px;
	background-color: var(--theme-color-prime);
	color: var(--bs-white);
}
.list-product .product-flag img {
	max-width: 50px;
}
.list-product .product-flag.bigger img {
	max-width: 100px;
}
.list-product .product-desc .inner-link {
	font-size: 14px;
	color: #666;
	text-decoration: none;
}
@media(min-width: 576px){
	.list-product .product-flag img {
		max-width: 60px;
	}
	.list-product .product-flag.bigger img {
		max-width: 100px;
	}
}
@media(min-width: 768px){
	.product-flag img {
		max-width: 50px;
	}
	.product-flag.bigger img {
		max-width: 100px;
	}
}
@media(min-width: 992px){
	.list-product .product-flag.bigger img {
		max-width: 120px;
	}
}
@media(min-width: 1200px){
	.list-product .product-flag img {
		max-width: 70px;
	}
	.list-product .product-flag.bigger img {
		max-width: 160px;
	}
	.list-product .quick-buttons .qbtn {
		width: 45px;
		height: 45px;
	}
}
@media(min-width: 1600px){
	.list-product .sale-badge .inner {
		height: 32px;
		font-size: 20px;
	}
}
.list-product .heading {
	margin: 5px 0 0;
	font-size: 16px;
}
.list-product .product-link {
	display: block;
	color: var(--theme-txt-color);
	text-decoration: none;
}
.list-product .product-link:hover {
	color: var(--theme-txt-color);
}
.list-product .pricing-meta {
	margin: 0;
	padding: 0;
	list-style: outside none;
}
.list-product .pricing-meta > li {
	display: inline-block;
}
.list-product .pricing-meta .old-price {
	color: #666;
	font-weight: 400;
	text-decoration: line-through;
	margin-right: 2px;
	font-size: 14px;
}
body.rtl .list-product .pricing-meta .old-price {
	margin-left: 2px;
	margin-right: 0;
}
.list-product .foot {
	display: block;
	list-style: outside none;
	margin: auto 0 0;
	padding: 0;
	border-top: 2px solid var(--theme-color-prime);
}
.list-product .foot > li {
	display: inline-block;
	font-weight: 200;
}
.list-product .foot > li:not(:last-child)::after {
	content: "/";
}
.list-product.boxed .product-desc {
	display: flex;
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 10px;
	flex-direction: column;
	z-index: 1;
}
body.rtl .list-product.boxed .product-desc {
	right: 10px;
	left: auto;
}
.list-product.boxed .product-desc .heading {
	order: 0;
	margin: 0 0 5px;
}
.list-product.boxed .product-desc .inner-link {
	order: 1;
}
.list-product.boxed .product-desc .pricing-meta {
	order: 1;
	margin-top: auto;
}
.list-product.bordered {
	border: 1px solid #dedede;
}
.list-product.bordered .product-desc {
	padding: 8px;
}

.range-slider {
	background-color: var(--theme-color-gray);
}
.range-slider .bar {
	top: 0;
	background-color: var(--theme-color-prime);
}
.range-slider .range-slider-leftgrip,
.range-slider .range-slider-rightgrip {
	background-color: #fff;
	border: 5px solid var(--theme-color-prime);
	box-shadow: none;
	transition: none;
}

.table.order-sumup {
	--bs-table-bg: transparent;
	color: var(--theme-txt-color);
}
.table.order-sumup td,.table.order-sumup th {
	padding: 7px 0;
	border-top: none;
	border-bottom: 1px solid #ebebeb;
}
.table.order-sumup tr.nonsep td,.table.order-sumup tr.nonsep th {
	border-bottom: none;
}
.table.order-sumup tr.item-line td,.table.order-sumup tr.item-line th {
	padding: 3px 0 7px;
}
.table.order-sumup .sum {
	text-align: left;
}
.table.order-sumup tr.distance td,.table.order-sumup tr.distance th {
	padding-top: 20px;
}
.table.order-sumup tr.distance.both td,.table.order-sumup tr.distance.both th {
	padding-bottom: 20px;
}
.table.order-sumup tr.stress td,.table.order-sumup tr.stress th {
	font-weight: 600;
}
.table.order-sumup tr.total-line td,.table.order-sumup tr.total-line th {
	border-top: 2px solid #ebebeb;
	border-bottom: none;
	font-weight: 600;
}
.table.order-sumup .desc {
	display: flex;
}
.table.order-sumup .desc .img {
	flex: 0 0 50px;
	width: 50px;
	height: auto;
	margin-left: 10px;
}
.table.order-sumup .desc .txt {
	flex: 0 1 auto;
}
.table.order-sumup .desc .variant {
	font-size: 14px;
	font-weight: 300;
	color: #333;
}

.multi-var-select .toggler {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 4px 5px 4px 20px;
	background-color: transparent;
	text-align: inherit;
	font-weight: 400;
	border: 0;
}
.multi-var-select .toggler::before {
	position: absolute;
	top: 10px;
	left: 0;
	width: 12px;
	height: 12px;
	background-color: transparent;
	border: solid 1px #ccc;
	content: "";
}
body.rtl .multi-var-select .toggler {
	padding: 4px 20px 4px 5px;
}
body.rtl .multi-var-select .toggler::before {
	right: 0;
	left: auto;
}
.multi-var-select .toggler.checked {
	font-weight: 600;
}
.multi-var-select .toggler.checked::before {
	border-color: #000;
	background-color: #000;
}

.inline-coupon-rig {
	display: block;
	position: relative;
}
.inline-coupon-rig .tbox {
	padding: .375rem 60px .375rem .75rem;
}
.inline-coupon-rig .btn-inln {
	position: absolute;
	top: 1px;
	right: 2px;
	width: 50px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	color: var(--theme-txt-color);
}
.inline-coupon-rig .btn-inln .fa {
	font-size: 12px;
}
body.rtl .inline-coupon-rig .tbox {
	padding-left: 60px;
	padding-right: .375rem;
}
body.rtl .inline-coupon-rig .btn-inln {
	left: 2px;
	right: auto;
}

ul.coupon-listing {
	margin: 15px 0 0;
	padding: 0;
	list-style: outside none;
}
ul.coupon-listing > li {
	position: relative;
	padding: 0 0 10px 20px;
}
ul.coupon-listing > li::before {
	position: absolute;
	top: -2px;
	left: 0;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--bs-success);
	content: "\f00c";
}
body.rtl ul.coupon-listing > li {
	padding: 0 20px 10px 0;
}
body.rtl ul.coupon-listing > li:before {
	right: 0;
	left: auto;
}
ul.coupon-listing > li .remove {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	width: auto;
	height: 18px;
	padding: 0 6px;
	margin: 3px 0 0 10px;
	background-color: #666;
	line-height: 1;
	text-align: center;
	font-size: 11px;
	color: #fff;
	border-radius: 9px;
	transition: background-color .4s ease;
}
body.rtl ul.coupon-listing > li .remove {
	margin-right: 10px;
	margin-left: 0;
}
ul.coupon-listing > li .remove::before {
	margin-right: 3px;
	line-height: 1;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f00d";
}
body.rtl ul.coupon-listing > li .remove::before {
	margin-left: 3px;
	margin-right: 0;
}
ul.coupon-listing > li .remove:hover {
	background-color: #000;
}
ul.coupon-listing > li .description {
	font-size: 14px;
	color: #444;
}

.row.rb-spc {
	--bs-gutter-x: 8px;
	--bs-gutter-y: 8px;
}
.rb-cell {
	position: relative;
}
.rb-cell .crb {
	position: absolute;
	top: 0;
	left: 0;
	width: 1rem;
	height: 1.25rem;
	z-index: -1;
	opacity: 0;
}
.rb-cell .cell-face {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	top: 0;
	left: 0;
	height: 100%;
	min-height: 100px;
	margin: 0;
	padding: 10px;
	background-color: #fff;
	line-height: 1.2;
	font-size: 12px;
	color: #000;
	border: 1px solid #000;
	border-radius: 12px;
	cursor: pointer;
}
.rb-cell .indi {
	position: absolute;
	top: 5px;
	right: calc(6px + calc(0.5 * var(--bs-gutter-x)));
	width: 12px;
	height: 12px;
	z-index: 10;
	background-color: #fff;
	border: 1px solid #999;
	border-radius: 50%;
	transition: border-color .4s ease, background-color .4s ease, top .2s ease, left .2s ease, right .2s ease;
}
.rb-cell input.crb:checked ~ .indi {
	top: -4px;
	right: 0;
	width: 16px;
	height: 16px;
	background-color: #1bc70c;
	border-color: #1bc70c;
}
.rb-cell input.crb:checked ~ .indi::after {
	position: absolute;
	top: 3px;
	left: 2px;
	width: 9px;
	height: 6px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	content: "";
	transform: rotate(-45deg);
}
.rb-cell .cell-face .txt,
.rb-cell .cell-face .fig {
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0;
	text-align: center;
	opacity: .4;
}
.rb-cell input.crb:checked ~ .cell-face .txt,
.rb-cell input.crb:checked ~ .cell-face .fig {
	opacity: 1;
}
.rb-cell .cell-face .fig > img {
	width: auto;
	max-width: 100%;
	height: auto;
}
.rb-cell .wmark {
	position: absolute;
	bottom: 4px;
	left: 14px;
	opacity: .2;
	z-index: 0;
	pointer-events: none;
}
@media (min-width: 400px){
	.row.rb-spc {
		--bs-gutter-x: 14px;
		--bs-gutter-y: 14px;
	}
	.rb-cell .cell-face .txt {
		font-size: 14px;
	}
}
@media (min-width: 576px){
	.rb-cell .cell-face {
		padding: 15px;
	}
	.rb-cell .cell-face .txt {
		font-size: 16px;
	}
}
@media (min-width: 992px){
	.row.rb-spc {
		--bs-gutter-x: 8px;
		--bs-gutter-y: 8px;
	}
	.rb-cell .cell-face .txt {
		font-size: 14px;
	}
}
@media (min-width: 1200px){
	.row.rb-spc {
		--bs-gutter-x: 14px;
		--bs-gutter-y: 14px;
	}
	.rb-cell .cell-face .txt {
		font-size: 16px;
	}
}

.table.cart-table {
	border: 1px solid #ebebeb;
}
.table.cart-table > thead > tr {
	background-color: #f9f9f9;
	border: 1px solid #ebebeb;
}
.table.cart-table > thead > tr th {
	padding: 21px 15px 22px;
	border: none;
	text-align: right;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	vertical-align: middle;
	white-space: nowrap;
}
.table.cart-table tbody > tr td {
	padding: 30px 15px;
	text-align: right;
	font-size: 15px;
	font-weight: 500;
	vertical-align: middle;
}
.table.cart-table tbody > tr td.price-total {
	font-weight: 600;
	color: #000;
}
.table.cart-table .prod-img-name {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}
.table.cart-table .prod-img-name .fig {
	display: block;
	width: 80px;
	margin: 0 0 0 20px;
}
.table.cart-table .prod-img-name .fig > a {
	display: block;
	width: 100%;
}
.table.cart-table .prod-img-name .fig img {
	width: 100%;
	height: auto;
}
.table.cart-table .prod-img-name .naming {
	font-size: 15px;
	font-weight: 500;
	color: #212529;
}
.table.cart-table .prod-img-name .naming .variant {
	font-style: italic;
	color: #333;
}
.table.cart-table .prod-img-name .naming:hover {
	color: #000;
}
.table.cart-table .btn-remove {
	display: inline-block;
	padding: 3px;
	background-color: transparent;
	border: none;
}
.table.cart-table .btn-remove:hover {
	color: #000;
}
@media (max-width:991px) {
	.table.cart-table > thead {
		display: none;
	}
	.table.cart-table tbody > tr {
		display: block;
		position: relative;
		padding: 42px 0 40px;
		border-top: 1px solid #ebebeb;
	}
	.table.cart-table tbody > tr td {
		display: block;
		width: 100%;
		padding: 1px 15px;
		text-align: center;
		border-top: none;
	}
	.table.cart-table tbody > tr td .qty-ui-counter {
		margin-right: auto;
		margin-left: auto;
	}
	.table.cart-table tbody > tr td.action-cell {
		position: absolute;
		top: 5px;
		left: 0;
		width: auto;
	}
}

.embeded-iframe {
	width: 100%;
	min-height: 800px;
	border: 0;
	overflow: auto;
}

.dx-datepicker {
	position: relative;
}
.dx-datepicker .input {
	position: absolute;
	display: block;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: none;
	z-index: 1;
}
.dx-datepicker .input:focus {
	outline: 1px solid var(--theme-color-prime);
}
.dx-datepicker .display {
	position: relative;
	top: 0;
	right: 0;
	width: 100%;
	min-height: 38px;
	padding: .375rem .75rem .375rem 1.75rem;
	background-color: #fff;
	font-size: 16px;
	border: 1px solid var(--bs-border-color);
	z-index: 2;
}
.dx-datepicker .display::before {
	position: absolute;
	top: 4px;
	left: 6px;
	font-family: "Font Awesome 6 Free";
	font-weight: 400;
	color: var(--theme-txt-color);
	content: "\f133";
}
.dx-datepicker.time .display::before {
	content: "\f017";
}
body.rtl .dx-datepicker .display {
	padding: .375rem 1.75rem .375rem .75rem;
}
body.rtl .dx-datepicker .display::before {
	right: 6px;
	left: auto;
}
.dx-datepicker .input.error ~ .display {
	border-color: #d00;
}
.dx-datepicker .bootstrap-datetimepicker-widget table td.active,
.dx-datepicker .bootstrap-datetimepicker-widget table td.active:hover {
	background-color: var(--theme-txt-color);
	color: #fff;
}
.dx-datepicker .bootstrap-datetimepicker-widget table td.today::before {
	border-bottom-color: var(--theme-txt-color);
}
.dx-datepicker .bootstrap-datetimepicker-widget table td.today.active::before {
	border-bottom-color: #fff;
}
.dx-datepicker .bootstrap-datetimepicker-widget table td span.active {
	background-color: var(--theme-color-prime);
}
/*
 * end of shop styles
 */

.yta-video-box {
    position: relative;
    width: 100%;
	height: 100vw;
    display: block;
    background-color: #000;
	z-index: 90;
	overflow: hidden;
}
@media(min-width: 576px){
	.yta-video-box {
		height: 100vh;
	}
}
.yta-video-box .player-container {
	position: relative;
	width: 100%;
    z-index: 1;
}
.yta-video-box .video-blind {
	display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
	align-items: center;
    background-color: #fff;
    opacity: 1;
    transition: opacity .5s linear 0s;
}
.yta-video-box .video-blind > img {
	width: 100%;
}
.yta-video-box .video-blind.reveal {
    opacity: 0;
}
.yta-video-box .video-blind .video-loader {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}
.yta-video-box .video-blind .video-loader::after {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	border-top: 10px solid var(--theme-color-prime);
	z-index: 2;
	content: "";
	transform-origin: 100% 0;
	animation: underswipe 1s linear infinite;
}
.yta-video-box .video-blind.ready .video-loader,
.yta-video-box .video-blind.reveal .video-loader {
	display: none;
}
.yta-video-box .video-blind.ready .video-loader::after,
.yta-video-box .video-blind.reveal .video-loader::after {
	animation: none;
}
.yta-video-box .video-blind .video-loader.ontop,
.yta-video-box .video-blind .video-loader.ontop::after {
	top: 0;
	bottom: auto;
}
.yta-video-box .mute-button {
	position: absolute;
	z-index: 2;
	top: 80px;
	left: 10px;
	width: 50px;
	height: 50px;
	background-color: #000;
	opacity: 0.8;
	cursor: pointer;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 50%;
}
.yta-video-box .mute-button::before {
	font-family: "Font Awesome 6 Free";
	line-height: 1.5;
	font-size: 24px;
	font-weight: 900;
	content: "\f028";
}
.yta-video-box .mute-button:hover {
	opacity: 1;
}
.yta-video-box .mute-button.muted::before {
	content: "\f6a9";
}
.yta-video-box .player-container>iframe {
    margin: auto;
}

@keyframes underswipe {
	0% {
		transform: translateX(0) scaleX(0);
	}
	50% {
		transform: translateX(0) scaleX(1);
	}
	100% {
		transform: translateX(-100%) scaleX(0);
	}
}

.owl-carousel.flexforce .owl-stage {
	display: flex;
}
.owl-carousel.flexforce .owl-item,
.owl-carousel.owl-rtl.flexforce .owl-item {
	float: none;
	min-height: 100%;
}

.item .tst-card {
	position: relative;
	padding: 35px 40px 55px;
	background-color: #fff;
}
.item .tst-card.theme {
	transition: background-color .4s ease, color .4s ease;
}
.item:hover .tst-card.theme {
	background-color: var(--theme-color-prime);
	color: #fff;
}
.item .tst-card .quote {
	position: relative;
	margin: 0;
}
.item .tst-card .quote::before,
.item .tst-card .quote::after {
	position: relative;
	display: block;
	float: left;
	margin: -10px 6px 0 0;
	line-height: 1;
	font-family: "Font Awesome 6 Free";
	font-size: 24px;
	font-weight: 900;
	color: #ddd;
	content: "\f10d";
}
.item .tst-card .quote::after {
	float: right;
	margin: 0 0 0 6px;
	content: "\f10e";
}
body.rtl .item .tst-card .quote::before {
	float: right;
	margin: -10px 0 0 6px;
	content: "\f10e";
}
body.rtl .item .tst-card .quote::after {
	float: left;
	margin: 0 6px 0 0;
	content: "\f10d";
}
.item .roundel-thumb.tst {
	position: relative;
	margin-top: -32px;
	margin-left: 40px;
	z-index: 1;
}
body.rtl .item .roundel-thumb.tst {
	margin-right: 40px;
	margin-left: 0;
}
.item:hover .roundel-thumb.tst {
	--rnd-bg-color: var(--theme-color-prime);
}
.item .tst-card .rater {
	--rate-color: var(--theme-color-prime);
	display: flex;
}
.item .tst-card .rater .icn {
	font-size: 14px;
	color: var(--rate-color);
}
.item:hover .tst-card .rater .icn {
	color: #fff;
}
.item .tst-card .rater.center {
	justify-content: center;
}

.hover-shine {
	display: block;
	position: relative;
	overflow: hidden;
}
.hover-shine::before {
	display: block;
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	z-index: 2;
	content: "";
	background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,0.3) 100%);
	transform: skewX(-25deg);
}
.hover-shine.v2::before {
	visibility: hidden;
	left: 25%;
	opacity: 0;
	background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%);
	transform: none;
}
.hover-shine:hover::before {
	animation: shine 1s ease;
}
.hover-shine.v2:hover::before {
	animation: mid-shine 2s ease;
}
.hover-shine .sclimg {
	transition: transform 1s ease;
}
.hover-shine:hover .sclimg {
	transform: scale(1.1);
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes mid-shine {
	0% {
		visibility: visible;
		opacity: 0;
		transform: scaleX(1);
	}
	30% {
		opacity: 0.6;
		transform: scaleX(3);
	}
	100% {
		visibility: hidden;
		opacity: 0;
		transform: scaleX(1);
	}
}

.blog-cell .card-body {
	position: relative;
	margin: -85px 15px 0;
	padding: 30px 30px 20px;
	background-color: #fff;
	border-radius: 10px 10px 0 0;
	box-shadow: 0 0 60px rgba(0,0,0,.1);
	z-index: 1;
}
.blog-cell .dater {
	position: absolute;
	top: -30px;
	right: 30px;
	text-align: center;
	font-size: 14px;
	line-height: 14px;
	color: #fff;
}
body.rtl .blog-cell .dater {
	left: 30px;
	right: auto;
}
.blog-cell .dater .month {
	padding: 12px 16px 4px;
	background-color: var(--theme-color-prime);
	border-radius: 6px 6px 0 0;
}
.blog-cell .dater .year {
	padding: 6px 16px;
	background-color: #000;
}

.blog-listing > li + li {
	margin-top: 5px;
}
.blog-listing a,
.blog-listing a:hover {
	color: #000;
}

.recent-post-widget .thumb-side .imgw {
	width: 70px;
}

.pagination.theme a {
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-gray);
	text-decoration: none;
	transition: color .4s ease;
}
.pagination.theme a:hover,
.pagination.theme li.active a {
	color: var(--theme-txt-color);
}
.pagination.theme li + li {
	margin-left: 1rem;
}
@media (min-width: 768px){
	.pagination.theme li + li {
		margin-left: 40px;
	}
}

.pro-pagination-style {
	margin-top: 30px;
	font-size: 15px;
	font-weight: 400;
}
.pro-pagination-style a,
.pro-pagination-style .item {
	display: block;
	padding: 0;
	font-size: 18px;
	font-weight: 500;
	color: var(--theme-color-gray);
	text-decoration: none;
	transition: color .4s ease;
}
.pro-pagination-style ul {
	display: flex;
	justify-content: center;
	margin-bottom: 0;
	padding: 0;
	list-style: outside none;
}
.pro-pagination-style ul li + li {
	margin-left: 12px;
}
body.rtl .pro-pagination-style ul li + li {
	margin-right: 12px;
	margin-left: 0;
}
.pro-pagination-style .active,
.pro-pagination-style a:hover {
	color: var(--theme-txt-color);
}
@media (min-width: 768px){
	.pro-pagination-style ul li + li {
		margin-left: 20px;
	}
	body.rtl .pro-pagination-style ul li + li {
		margin-right: 20px;
		margin-left: 0;
	}
}

.cont-block {
	display: flex;
	width: 48px;
	height: 48px;
	justify-content: center;
	align-items: center;
}
@media (min-width: 768px){
	.cont-block {
		width: 64px;
		height: 64px;
	}
}

.side-hovers {
	position: fixed;
	bottom: 120px;
	left: 0;
	z-index: 990;
}
.side-hovers.upper {
	top: 120px;
	bottom: auto;
}
.side-hovers.toright {
	right: 0;
	left: auto;
}
.side-mnt {
	position: fixed;
	bottom: 120px;
	left: 0;
	z-index: 100;
}
@media(min-width: 768px){
	.side-hovers {
		bottom: 120px;
	}
	.side-hovers.upper {
		bottom: auto;
	}
}
@media(min-width: 992px){
	.side-hovers.upper {
		top: 140px;
	}
}
.side-hovers .sbtn {
	display: block;
	position: relative;
	bottom: 0;
	left: 0;
	width: 43px;
	height: 46px;
	margin-bottom: 10px;
	background-color: var(--theme-dark-color);
	line-height: 46px;
	text-align: center;
	font-size: 28px;
	color: #fff;
	border: 0;
	border-radius: 0 23px 23px 0;
}
.side-hovers .sbtn:last-child {
	margin-bottom: 0;
}
.side-hovers.toright .sbtn {
	right: 0;
	left: auto;
	border-radius: 23px 0 0 23px;
}
.side-hovers .sbtn:hover {
	transform: translateX(0);
}
.side-hovers .sbtn.square,
.side-hovers.toright .sbtn.square {
	border-radius: 0;
}
.side-hovers .sbtn.main {
	background-color: var(--theme-prime);
}
.side-hovers .sbtn.whatsapp {
	background-color: #25d366;
}
.side-hovers .sbtn.theme {
	background-color: var(--theme-color-prime);
}

.footer-lister > li + li {
	margin-top: 10px;
}
.footer-lister a {
	display: inline-block;
	position: relative;
	color: var(--theme-color-prime);
	transition: color .4s ease;
}
.footer-lister a:hover {
	color: var(--bs-white);
}
.footer-lister a::before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid var(--theme-color-prime);
	content: "";
	transform-origin: 0 0;
	transform: scaleX(0);
	transition: transform .4s ease;
}
body.rtl .footer-lister a::before {
	transform-origin: 100% 0;
}
.footer-lister a:hover::before {
	transform: scaleX(1);
}

.contact-map #map {
	height: 560px;
}

.cell-unit {
	position: relative;
	display: flex;
	gap: .25rem;
	padding: .5rem;
	border: 1px solid var(--theme-color-gray);
}
.cell-unit .pic {
	width: 70px;
}
.cell-unit .pic img {
	width: auto;
	max-width: 100%;
	height: auto;
}
.cell-unit .title {
	margin: 0;
	line-height: 1.2;
	font-weight: 500;
	font-size: 1rem;
}
.cell-unit .del-btn {
	align-self: start;
	padding: .25rem;
	line-height: 12px;
	font-size: 18px;
	background-color: var(--theme-color-gray);
	color: #fff;
	cursor: pointer;
	transition: background-color .4s ease;
}
.cell-unit .del-btn:hover {
	background-color: var(--theme-color-prime);
}

.bottom-sticker {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 5px 15px;
	z-index: 800;
	background-color: var(--theme-dark-color);
	color: #fff;
	border-top: 1px solid var(--theme-color-gray);
}
.bottom-sticker .lnk {
	color: currentColor;
	transition: color .4s ease;
}
.bottom-sticker .lnk:hover {
	color: var(--theme-color-prime);
}

/** user area **/
.orders-listing {
	padding: 0;
	list-style: outside none;
}
.orders-listing > li {
	display: block;
	margin: 0 0 10px;
}
.orders-listing .rbtn {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 1px 20px 1px 5px;
	background-color: #f0f0f0;
	border-right: 1px solid #000;
	color: #000;
}
.orders-listing .rbtn::before {
	position: absolute;
	top: 5px;
	right: 3px;
	font-family: "FontAwesome";
	font-size: 13px;
	font-style: normal;
	text-rendering: auto;
	content: "\f067";
}
.orders-listing > li.open .rbtn::before {
	content: "\f068";
}
.orders-listing .rbtn.loading::before,
.orders-listing > li.open .rbtn.loading::before {
	content: "\f1ce";
	-webkit-animation: fa-spin linear 1.5s infinite;
	animation: fa-spin linear 1.5s infinite;
}
.orders-listing .rbtn .num,
.orders-listing .rbtn .date {
	margin-left: 15px;
}
.orders-listing .rbtn .amount {
	margin-right: auto;
	font-weight: 600;
}
.orders-listing .cont {
	display: none;
	margin: 10px 0 0;
	padding: 0 15px;
}
.orders-listing > li.open .cont {
	display: block;
}
@media(min-width: 768px){
	.orders-listing .rbtn .num,
	.orders-listing .rbtn .date {
		margin-left: 25px;
	}
	.orders-listing .rbtn .amount {
		margin-right: 0;
	}
}


.btn-adder {
	display: inline-block;
	background-color: transparent;
	color: #333;
	border: 0;
	cursor: pointer;
}
.btn-adder .icon-handle {
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	border: 1px solid #000;
}

.inline-edit-btn {
	padding: 3px 4px;
	background-color: #333;
	line-height: 1;
	font-size: 12px;
	color: #fff;
	border: 0;
	cursor: pointer;
}
.inline-edit-btn.severe {
	background-color: #d00;
}
.inline-edit-btn.maroon {
	background-color: #600;
}

.btn.btn-app {
	padding: 1px .5rem;
	background-color: #333;
	color: #fff;
	border-color: #333;
	border-radius: 0;
}
.btn.btn-app:hover {
	background-color: #000;
	border-color: #000;
}
.btn.btn-app.severe {
	background-color: #d00;
	border-color: #d00;
}
.btn.btn-app.severe:hover {
	background-color: #a00;
	border-color: #a00;
}

.user-viewport {
	position: relative;
	min-height: 250px;
	z-index: 1;
}
.user-viewport .loader {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0 ;
	right: 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.5);
	z-index: 2;
}
.user-viewport.busy .loader {
	display: flex;
	color: #000;
}
.user-viewport.busy .loader .spinning-loader {
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
}

.user-card-detail {
	min-width: 280px;
	padding: 10px 15px;
	font-size: 16px;
	color: #000;
	border: 2px solid #000;
}
.user-card-detail .icn {
	font-size: 20px;
}
.user-card-detail .exp {
	font-size: 13px;
}
.user-card-detail .action-line {
	position: relative;
	margin-top: 10px;
	padding-top: 10px;
	overflow: hidden;
	border-top: 1px solid #ddd;
	z-index: 1;
}
.user-card-detail .actions {
	display: flex;
}
.user-card-detail .actions .inline-edit-btn + .inline-edit-btn {
	margin-right: 10px;
}
.user-card-detail .action-line .confirm-line {
	visibility: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	font-size: 14px;
	opacity: 0;
	z-index: 2;
	transition: all .3s ease-out;
	transform: translateY(100%);
}
.user-card-detail .action-line.confirm .actions {
	opacity: 0.1;
}
.user-card-detail .action-line.confirm .confirm-line {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.campaign-list {
	display: block;
	width: 100%;
}
.campaign-list > li {
	display: block;
	margin-bottom: 15px;
	border-bottom: 1px solid #e6e6e6;
}
.campaign-list > li .content .input {
	display: none;
	width: 100%;
	border: 0;
	border-bottom: 2px solid #333;
}
.campaign-list > li .actions .inline-edit-btn {
	margin-right: 5px;
}
.campaign-list > li .actions .save-btn,
.campaign-list > li .actions .cancel-btn,
.campaign-list > li .actions .del-confirm {
	display: none;
}
.campaign-list > li.inedit .content .input,
.campaign-list > li.inedit .actions .save-btn,
.campaign-list > li.inedit .actions .cancel-btn {
	display: inline-block;
}
.campaign-list > li.inedit .content .name {
	display: none;
}
.campaign-list > li.confirm .actions .edit-btn,
.campaign-list > li.confirm .actions .del-btn,
.campaign-list > li.inedit .actions .edit-btn,
.campaign-list > li.inedit .actions .del-btn {
	display: none;
}
.campaign-list > li.confirm .actions .del-confirm {
	display: block;
}
@media (min-width: 360px){
	.campaign-list > li {
		display: flex;
		justify-content: space-between;
	}
	.campaign-list > li .content {
		flex: 1 1 auto;
		margin-left: 6px;
	}
	.campaign-list > li .actions {
		display: flex;
		align-items: center;
		justify-content: end;
	}
}
@media (min-width: 576px){
	.campaign-list {
		width: 500px;
	}
}

.user-link-belt {
	margin: -10px 0 20px;
}
.user-link-belt .user-linker-btn {
	background-color: #000;
	color: #fff;
	border: 0;
}

.user-linker-pane {
	visibility: hidden;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 310px;
	height: 100%;
	padding: 100px 20px 40px;
	background-color: #fff;
	opacity: 0;
	z-index: 9991;
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
	transition: all .25s ease-in;
	transform: translate(-100%, 0);
}
.user-linker-pane.open {
	visibility: visible;
	opacity: 1;
	transform: translate(0, 0);
}
.user-linker-pane .pane-close {
	position: absolute;
	top: 50px;
	left: 20px;
	line-height: 36px;
	font-size: 36px;
	color: #444;
}
.user-linker-pane .pane-close:hover {
	color: #666;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.user-linker-pane .inner {
	position: relative;
}
.user-linker-pane .loader {
	position: absolute;
	top: -30px;
	right: 0;
}
.user-linker-pane .error {
	font-weight: 600;
	color: #d00;
}
@media (min-width: 576px) {
	.user-linker-pane {
		width: 420px;
		min-height: 100vh;
		padding: 100px 50px 50px;
	}
	.user-linker-pane .pane-close {
		left: 50px;
	}
}

.dxr-rtl .rplg .rplg-review-avatar {
	margin: 0 0 0 10px !important;
}
.dxr-rtl .rplg .rplg-biz-rating .rplg-biz-score {
	margin: 0 0 0 8px !important;
}
.dxr-rtl .rplg-row .rplg-row-right,
.dxr-rtl .rplg .rplg-biz-based {
	text-align: right !important;
}
.dxr-rtl .rplg-links a,
.dxr-rtl .rplg-links a:focus {
	margin: 0 0 0 10px !important;
}
.dxr-rtl .rplg-box .rplg-box-content {
	text-align: right !important;
}
.dxr-rtl .rplg-slider .rplg-box .rplg-box-content {
	margin: 20px 40px 20px 20px !important;
	padding-left: 16px !important;
}
.dxr-rtl .rplg .rplg-review-badge {
	left: 12px;
	right: auto !important;
}
.dxr-rtl .rplg-slider .rplg-box .rplg-box-content::before {
	left: 515.391px !important;
	right: 50px !important;
	margin: -25px -40px 0 0 !important;
	content: "\201D" !important;
}
.dxr-rtl .rplg-slider .rplg-stars {
	margin-left: 4px !important;
	margin-right: 0 !important;
}
.dxr-rtl .rplg .rplg-stars svg {
	margin: 0 0 0 4px !important;
}
.dxr-rtl .rplg .rplg-slider-review .rplg-box::before {
	right: 35px !important;
	left: auto;
}