@charset "UTF-8";

.icon__grid {
	display: inline-block;
	vertical-align: middle;
	padding: 1rem 0
}

.icon__grid i {
	width: 4px;
	height: 4px;
	background-color: #dadada;
	float: left;
	margin: 0 2px 2px 0
}

.icon__grid.col_2 i:nth-child(2n) {
	margin-right: 0
}

.icon__grid.col_2 i:nth-child(2n+1) {
	clear: left
}

.icon__grid.col_2 i:nth-child(n+3) {
	margin-bottom: 0
}

.icon__grid.col_3 i:nth-child(3n) {
	margin-right: 0
}

.icon__grid.col_3 i:nth-child(3n+1) {
	clear: left
}

.icon__grid.col_3 i:nth-child(n+4) {
	margin-bottom: 0
}

.icon__grid.col_4 i:nth-child(4n) {
	margin-right: 0
}

.icon__grid.col_4 i:nth-child(4n+1) {
	clear: left
}

.icon__grid.col_4 i:nth-child(n+4) {
	margin-bottom: 0
}

.icon__grid.col_5 i:nth-child(5n) {
	margin-right: 0
}

.icon__grid.col_5 i:nth-child(5n+1) {
	clear: left
}

.icon__grid.col_5 i:nth-child(n+6) {
	margin-bottom: 0
}

.icon__grid.col_6 i:nth-child(6n) {
	margin-right: 0
}

.icon__grid.col_6 i:nth-child(6n+1) {
	clear: left
}

.icon__grid.col_6 i:nth-child(n+7) {
	margin-bottom: 0
}

.icon__grid.list i:nth-child(2n) {
	width: 10px;
	margin-right: 0
}

.icon__grid.list i:nth-child(2n+1) {
	clear: left
}

.icon__grid.list i:nth-child(n+3) {
	margin-bottom: 0
}

.icon__grid.grid i:nth-child(2n) {
	margin-right: 0
}

.icon__grid.grid i:nth-child(2n+1) {
	clear: left
}

.icon__grid.grid i:nth-child(n+3) {
	margin-bottom: 0
}

.animated-background {
	-webkit-animation: mll-lz 1.5s infinite;
	animation: mll-lz 1.5s infinite;
	background: #f6f6f6;
	position: relative
}

@-webkit-keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

@keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada
}

@-webkit-keyframes heartBeat {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	14% {
		-webkit-transform: scale(1.08);
		transform: scale(1.08)
	}

	28% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	42% {
		-webkit-transform: scale(1.08);
		transform: scale(1.08)
	}

	70% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes heartBeat {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	14% {
		-webkit-transform: scale(1.08);
		transform: scale(1.08)
	}

	28% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	42% {
		-webkit-transform: scale(1.08);
		transform: scale(1.08)
	}

	70% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

.animated.heartBeat {
	-webkit-animation-name: heartBeat;
	animation-name: heartBeat
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(359deg)
	}
}

@keyframes spin {
	0% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(359deg)
	}
}

.animated {
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-duration: 1s;
	animation-fill-mode: both
}

@media (prefers-reduced-motion) {
	.animated {
		-webkit-animation: unset !important;
		-webkit-transition: none !important;
		animation: unset !important;
		transition: none !important
	}
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

body {
	font-size: 1.4rem;
	line-height: 1.86;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

p {
	margin-bottom: 1.5rem
}

b,
strong {
	font-weight: 600
}

hr {
	border: none;
	border-top: 1px solid #ebebeb;
	margin: 3rem auto 2.5rem
}

sub,
sup {
	position: relative;
	font-size: 70%;
	line-height: 0;
	vertical-align: baseline
}

sup {
	top: -.5em
}

sub {
	bottom: -.25em
}

img {
	max-width: 100%;

}

.bg-black {
	background-color: #000
}

.bg-light {
	background-color: #f8f8f8
}

.bg-light-2 {
	background-color: #f9f9f9
}

.bg-lighter {
	background-color: #fafafa
}

.bg-gray {
	background-color: #f4f5f8
}

.bg-primary {
	background-color: #c96 !important
}

.bg-secondary {
	background-color: #a6c76c !important
}

.bg-image {
	background-position: center center
}

.bg-overlay {
	position: relative
}

.bg-overlay:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	opacity: .3;
	background-color: #333
}

.bg-overlay .container,
.bg-overlay .container-fluid {
	position: relative;
	z-index: 2
}

@-webkit-keyframes rotating {
	from {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes rotating {
	from {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

a {
	text-decoration: none;
	-webkit-transition: color .3s;
	transition: color .3s
}

a:focus,
a:hover {
	color: var(--primary);
	text-decoration: none
}

input {
	outline: 0 !important
}

.text-secondary {
	color: #a6c76c !important
}

.text-dark {
	color: #333 !important
}

.text-light {
	color: #ccc !important
}

.line-through {
	text-decoration: line-through
}

.lead {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.875;
	margin-bottom: 1.2rem
}

blockquote {
	position: relative;
	margin: 0 0 4.2rem;
	padding: 0;
	color: #999;
	font-style: italic;
	font-size: 1.6rem;
	line-height: 1.625
}

blockquote p {
	max-width: 1120px
}

blockquote.text-center p {
	margin-left: auto;
	margin-right: auto
}

blockquote cite {
	font-style: normal;
	font-weight: 500;
	color: #333;
	letter-spacing: -.01em;
	line-height: 1
}

blockquote cite span {
	display: block;
	font-weight: 300;
	font-size: 1.4rem
}

blockquote.text-white cite {
	color: #ccc
}

blockquote.text-white cite span {
	color: #999
}

.content_for_page {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100%
}

.btn-wrap {
	display: inline-block;
	margin-bottom: 2rem
}

.btn-wrap>span {
	display: block;
	color: #ccc;
	margin-bottom: .3rem
}

.btn,
button {
	--color: #333;
	--color_bg: #E0E0E0;
	--border: #333;
	color: var(--color, --btn_color);
	background-color: var(--color_bg, --btn_color_bg);
	border: thin solid var(--border, --btn_border);
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	padding: .85rem 1.5rem;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.01em;
	border-radius: 0;
	white-space: normal;
	-webkit-box-shadow: none;
	box-shadow: none;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	outline: 0 !important
}

.btn {
	min-width: 170px
}

.btn.active,
.btn.focus,
.btn:active,
.btn:focus,
.btn:hover {
	color: var(--color);
	background-color: var(--color_bg);
	border-color: var(--border)
}

.btn i {
	--color: currentColor
}

.btn i:first-child {
	margin-right: .9rem;
	margin-left: 0
}

.btn i:last-child {
	margin-left: .9rem;
	margin-right: 0
}

.btn:focus {
	-webkit-box-shadow: none;
	box-shadow: none
}

.btn:active:focus {
	-webkit-box-shadow: none !important;
	box-shadow: none !important
}

.btn.disabled,
.btn:disabled {
	opacity: .65;
	pointer-events: none
}

.btn.btn-minwidth-sm {
	min-width: 112px
}

.btn.btn-minwidth {
	min-width: 170px
}

.btn.btn-minwidth-lg {
	min-width: 218px
}

.btn.btn-minwidth-auto {
	min-width: auto
}

.btn.button-more {
	padding: 1rem 3rem
}

.btn-rounded {
	border-radius: .3rem
}

.btn-round {
	border-radius: 3rem
}

.btn-lg {
	font-weight: 500;
	font-size: 1.5rem;
	min-width: 170px;
	padding: 1.1rem 2rem
}

.btn-lg i:first-child {
	margin-right: 1.4rem
}

.btn-lg i:last-child {
	margin-left: 1.4rem
}

.btn-more {
	padding-top: 1.15rem;
	padding-bottom: 1.15rem;
	min-width: 230px;
	text-transform: uppercase
}

button.btn-icon {
	font-size: 0 !important
}

button.btn-icon [class*=" fkt-"],
button.btn-icon [class^=fkt-] {
	margin-left: 0;
	margin-right: 0;
	font-size: 1.4rem !important
}

.btn-link {
	--btn_color: var(--primary);
	--color_bg: transparent;
	--btn_border: transparent;
	color: var(--btn_color) !important;
	padding: .4rem 1rem;
	min-width: auto;
	text-decoration: none;
	border: none;
	border-bottom: thin solid var(--btn_border) !important;
	letter-spacing: 0;
	font-size: 1.4rem;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.btn-link.btn-link-dark {
	color: #333
}

.btn-link:focus,
.btn-link:hover {
	--btn_color: var(--primary);
	--btn_border: var(--primary);
	text-decoration: none
}

.btn-link .btn-link-dark:focus,
.btn-link .btn-link-dark:hover {
	--btn_color: var(--primary);
	--btn_border: var(--primary);
	text-decoration: none
}

.btn-link i:first-child {
	margin-right: 1rem;
	margin-left: 0
}

.btn-link i:last-child {
	margin-left: 1rem;
	margin-right: 0
}

.btn-hover-text {
	display: none
}

.btn:focus .btn-text,
.btn:hover .btn-text {
	display: none
}

.btn:focus .btn-hover-text,
.btn:hover .btn-hover-text {
	display: inline-block
}

.btn-primary,
.shopify-payment-button button {
	--color: var(--btn_color);
	--color_bg: var(--btn_color_bg);
	--border: var(--btn_border)
}

.btn-primary.active,
.btn-primary.focus,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.shopify-payment-button button.active,
.shopify-payment-button button.focus,
.shopify-payment-button button:active,
.shopify-payment-button button:focus,
.shopify-payment-button button:hover {
	--color: var(--btn_color_hv);
	--color_bg: var(--btn_color_bg_hv);
	--border: var(--btn_border_hv)
}

.btn-primary.btn-loadmore.loading {
	--color: #fff
}

.btn-primary.btn-loadmore.loading:after {
	right: 15px;
	left: auto
}

.btn-primary.btn-expandable span {
	--color: var(--btn_color_hv);
	--color_bg: var(--btn_color_bg_hv)
}

.btn-secondary {
	--color: var(--btn_color_hv);
	--color_bg: var(--btn_color_bg_hv);
	--border: var(--btn_border_hv)
}

.btn-secondary.active,
.btn-secondary.focus,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
	--color: var(--btn_color_hv);
	--color_bg: var(--btn_color_bg_hv);
	--border: var(--btn_border_hv)
}

.btn-primary-dark {
	--color: #333333;
	--color_bg: var(--btn_color_bg);
	--border: var(--btn_border);
	font-weight: 500
}

.btn-primary-dark.active,
.btn-primary-dark.focus,
.btn-primary-dark:active,
.btn-primary-dark:focus,
.btn-primary-dark:hover {
	--color: var(--btn_color);
	--color_bg: var(--btn_color_bg);
	--border: var(--btn_border)
}

.btn-primary-darker {
	--color: #fff;
	--color_bg: var(--btn_color_bg);
	--border: var(--btn_border)
}

.btn-primary-darker.active,
.btn-primary-darker.focus,
.btn-primary-darker:active,
.btn-primary-darker:focus,
.btn-primary-darker:hover {
	--color_bg: #222;
	--border: #222
}

.btn-primary-darker.disabled,
.btn-primary-darker:disabled {
	--color: var(--btn_color_hv);
	--color_bg: var(--btn_color_bg_hv);
	--border: var(--btn_border_hv)
}

.btn-primary-darker.btn-expandable {
	color: #fff
}

.btn-primary-darker.btn-expandable span {
	background-color: #222
}

.btn-white {
	--color: #333333;
	--color_bg: #fff;
	--border: #fff
}

.btn-white.active,
.btn-white.disabled,
.btn-white.focus,
.btn-white:active,
.btn-white:disabled,
.btn-white:focus,
.btn-white:hover {
	--color: var(--btn_color_hv);
	--color_bg: var(--btn_color_bg_hv);
	--border: var(--btn_border_hv)
}

.btn-white-primary {
	--color: var(--primary);
	--color_bg: #fff;
	--border: #fff
}

.btn-white-primary.active,
.btn-white-primary.focus,
.btn-white-primary:active,
.btn-white-primary:focus,
.btn-white-primary:hover {
	--color: var(--btn_color);
	--color_bg: var(--btn_color_bg);
	--border: var(--btn_border)
}

.btn-primary-white {
	--color: var(--btn_color);
	--color_bg: var(--btn_color_bg);
	--border: var(--btn_border)
}

.btn-primary-white.active,
.btn-primary-white.focus,
.btn-primary-white:active,
.btn-primary-white:focus,
.btn-primary-white:hover {
	--color: var(--primary);
	--color_bg: #fff;
	--border: #fff
}

.btn-dark {
	--color: #fff;
	--color_bg: #333;
	--border: #333
}

.btn-dark.active,
.btn-dark.focus,
.btn-dark:active,
.btn-dark:focus,
.btn-dark:hover {
	--color: var(--btn_color);
	--color_bg: var(--btn_color_bg);
	--border: var(--btn_border)
}

.btn-outline {
	--color: var(--btn_outline_color);
	--color_bg: transparent;
	--border: #ebebeb;
	background-image: none;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
	box-shadow: 0 5px 10px rgba(0, 0, 0, .05)
}

.btn-outline.active,
.btn-outline.focus,
.btn-outline:active,
.btn-outline:focus,
.btn-outline:hover {
	--color: var(--btn_outline_color);
	--color_bg: transparent;
	--border: #ebebeb;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .15);
	box-shadow: 0 5px 10px rgba(0, 0, 0, .15)
}

.btn-outline-primary {
	--color: var(--btn_outline_color);
	--color_bg: transparent;
	--border: var(--btn_outline_border);
	background-image: none;
	-webkit-box-shadow: none;
	box-shadow: none
}

.btn-outline-primary.active,
.btn-outline-primary.focus,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:hover {
	--color: var(--btn_outline_color);
	--color_bg: transparent;
	--border: #ebebeb;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
	box-shadow: 0 5px 10px rgba(0, 0, 0, .05)
}

.btn-outline-primary-2 {
	--color: var(--btn_outline_color);
	--color_bg: transparent;
	--border: var(--btn_outline_border);
	background-image: none
}

.btn-outline-primary-2.active,
.btn-outline-primary-2.focus,
.btn-outline-primary-2:active,
.btn-outline-primary-2:focus,
.btn-outline-primary-2:hover {
	--color: var(--btn_color);
	--color_bg: var(--btn_color_bg);
	--border: var(--btn_border)
}

.btn-outline-light {
	--color: #fff;
	--color_bg: transparent;
	--border: #fff;
	background-image: none
}

.btn-outline-light.active,
.btn-outline-light.focus,
.btn-outline-light:active,
.btn-outline-light:focus,
.btn-outline-light:hover {
	--color: var(--btn_outline_color);
	--color_bg: transparent;
	--border: #fff
}

.btn-outline-dark {
	--color: #333333;
	--color_bg: transparent;
	--border: #d7d7d7;
	background-image: none
}

.btn-outline-dark.active,
.btn-outline-dark.focus,
.btn-outline-dark:active,
.btn-outline-dark:focus,
.btn-outline-dark:hover {
	--color: var(--btn_outline_color);
	--color_bg: transparent;
	--border: #ebebeb
}

.btn-outline-dark-2 {
	--color: #333333;
	--color_bg: transparent;
	--border: #ebebeb;
	background-image: none
}

.btn-outline-dark-2.active,
.btn-outline-dark-2.focus,
.btn-outline-dark-2:active,
.btn-outline-dark-2:focus,
.btn-outline-dark-2:hover {
	--color: var(--btn_outline_color);
	--color_bg: #fafafa;
	--border: #ebebeb
}

.btn-outline-darker {
	--color: #333333;
	--color_bg: transparent;
	--border: #333333;
	background-image: none
}

.btn-outline-darker.active,
.btn-outline-darker.focus,
.btn-outline-darker:active,
.btn-outline-darker:focus,
.btn-outline-darker:hover {
	--color: #fff;
	--color_bg: var(--btn_outline_border);
	--border: var(--btn_outline_border)
}

.btn-outline-darker.disabled,
.btn-outline-darker:disabled {
	--color: #333333;
	--color_bg: transparent;
	--border: #333333
}

.btn-outline-gray {
	--color: #333333;
	--color_bg: transparent;
	--border: #959595;
	background-image: none
}

.btn-outline-gray.active,
.btn-outline-gray.focus,
.btn-outline-gray:active,
.btn-outline-gray:focus,
.btn-outline-gray:hover {
	--color: #fff;
	--color_bg: var(--btn_outline_border);
	--border: var(--btn_outline_border)
}

.btn-outline-lightgray {
	--color: #333333;
	--color_bg: transparent;
	--border: #ebebeb;
	background-image: none
}

.btn-outline-lightgray.active,
.btn-outline-lightgray.focus,
.btn-outline-lightgray:active,
.btn-outline-lightgray:focus,
.btn-outline-lightgray:hover {
	--color_bg: var(--btn_outline_color);
	--color_bg: #f5f6f9;
	--border: #ebebeb
}

.btn-shadow {
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .05) !important;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .05) !important
}

.btn-shadow:active,
.btn-shadow:focus,
.btn-shadow:hover {
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .15) !important;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .15) !important
}

.btn-outline-white {
	--color: #fff;
	--color_bg: transparent;
	--border: #fff;
	background-image: none
}

.btn-outline-white.active,
.btn-outline-white.focus,
.btn-outline-white:active,
.btn-outline-white:focus,
.btn-outline-white:hover {
	--color: #fff;
	--color_bg: var(--btn_outline_border);
	--border: var(--btn_outline_border)
}

.btn-outline-white-2 {
	--color: #fff;
	--color_bg: transparent;
	--border: #fff;
	background-image: none
}

.btn-outline-white-2.active,
.btn-outline-white-2.focus,
.btn-outline-white-2:active,
.btn-outline-white-2:focus,
.btn-outline-white-2:hover {
	--color_bg: var(--btn_outline_color);
	--color_bg: var(--btn_outline_border);
	--border: var(--btn_outline_border)
}

.btn-outline-white-3 {
	--color: #fff;
	--color_bg: transparent;
	--border: #fff;
	background-image: none
}

.btn-outline-white-3.active,
.btn-outline-white-3.focus,
.btn-outline-white-3:active,
.btn-outline-white-3:focus,
.btn-outline-white-3:hover {
	--color: #333;
	--color_bg: #fff;
	--border: #fff
}

.btn-outline-white-4 {
	--color: #fff;
	--color_bg: transparent;
	--border: #fff;
	background-image: none
}

.btn-outline-white-4.active,
.btn-outline-white-4.focus,
.btn-outline-white-4:active,
.btn-outline-white-4:focus,
.btn-outline-white-4:hover {
	--color: var(--btn_outline_color);
	--color_bg: #fff;
	--border: #fff
}

.bg-image .btn-wrap>span {
	color: #999
}

.bg-image .btn-link-dark {
	--color: #fff
}

.bg-image .btn-link-dark:focus,
.bg-image .btn-link-dark:hover {
	--color: var(--btn_color);
	--border: var(--btn_border)
}

.bg-image .btn-outline-primary.active,
.bg-image .btn-outline-primary.focus,
.bg-image .btn-outline-primary:active,
.bg-image .btn-outline-primary:focus,
.bg-image .btn-outline-primary:hover {
	--color: var(--btn_outline_color);
	--color_bg: var(--btn_outline_color);
	--border: var(--btn_outline_color)
}

.bg-image .btn-outline-dark {
	--color: #fff;
	--border: #fff
}

.bg-image .btn-outline-dark.active,
.bg-image .btn-outline-dark.focus,
.bg-image .btn-outline-dark:active,
.bg-image .btn-outline-dark:focus,
.bg-image .btn-outline-dark:hover {
	--color: var(--btn_outline_color);
	--color_bg: #fff;
	--border: #fff
}

.btn-video {
	color: var(--primary);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 7rem;
	height: 7rem;
	font-size: 1.8rem;
	line-height: 1;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 1.5rem rgba(255, 255, 255, .2);
	transition: all .35s ease
}

.btn-video i {
	margin-right: -.2rem
}

.btn-video:focus,
.btn-video:hover {
	color: #fff;
	background-color: var(--primary);
	box-shadow: 0 0 0 1rem rgba(255, 255, 255, .2)
}

.btn-video.play_thin {
	background-color: transparent !important;
	box-shadow: none;
	border: .2rem solid #fff;
	width: 9.8rem;
	height: 9.8rem;
	font-size: 3.6rem;
	color: #fff
}

.btn-underline {
	--color: #fff;
	--color_bg: transparent;
	--border: #fff;
	background-image: none;
	border-width: 0 0 2px 0;
	padding-top: 1.05rem;
	padding-bottom: 1.05rem;
	font-size: 1.3rem;
	letter-spacing: .1em;
	min-width: 130px
}

.btn-underline.active,
.btn-underline.focus,
.btn-underline:active,
.btn-underline:focus,
.btn-underline:hover {
	--color: #333;
	--color_bg: #fff;
	--border: #fff
}

.btn-underline.btn-underline-dark {
	--color: #333;
	border-bottom-color: #333
}

.btn-underline.btn-underline-dark.active,
.btn-underline.btn-underline-dark.focus,
.btn-underline.btn-underline-dark:active,
.btn-underline.btn-underline-dark:focus,
.btn-underline.btn-underline-dark:hover {
	--color: #fff;
	--color_bg: #333;
	--border: #333
}

.btn-underline.btn-underline-primary {
	--color: var(--primary);
	border-bottom-color: var(--primary)
}

.btn-underline.btn-underline-primary.active,
.btn-underline.btn-underline-primary.focus,
.btn-underline.btn-underline-primary:active,
.btn-underline.btn-underline-primary:focus,
.btn-underline.btn-underline-primary:hover {
	color: #fff;
	background-color: var(--primary);
	border-color: var(--primary)
}

.btn-underline.disabled,
.btn-underline:disabled {
	color: #fff;
	background-color: transparent
}

.btn-underline.btn-underline-dark.disabled,
.btn-underline.btn-underline-dark:disabled {
	color: #333
}

.form-group {
	margin-bottom: 2rem
}

.form-group .form-control,
.form-group .select-custom {
	margin-bottom: 0
}

.form-control {
	height: 4rem;
	padding: .85rem 2rem;
	font-size: 1.4rem;
	line-height: 1.5;
	font-weight: 300;
	color: #999;
	background-color: #fafafa;
	background-clip: border-box;
	border: 1px solid #ebebeb;
	border-radius: 0;
	margin-bottom: 2rem;
	transition: all .3s;
	box-shadow: none
}

select.form-control:not([size]):not([multiple]) {
	height: 4rem
}

.form-control-white {
	border-color: #fff
}

.form-control:focus {
	color: #999;
	background-color: #fff;
	box-shadow: none;
	outline: 0 !important
}

.form-control:-ms-input-placeholder,
.form-control::-moz-placeholder,
.form-control::-ms-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-control::placeholder {
	color: #999
}

textarea.form-control {
	min-height: 130px;
	padding-top: 1.1rem;
	padding-bottom: 1.1rem
}

.form-control-rounded {
	border-radius: .2rem
}

.input-group-round .form-control {
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px
}

.input-group-round>.input-group-append>.btn {
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px
}

label {
	color: #666;
	font-weight: 300;
	font-size: 1.4rem;
	margin: 0 0 1.1rem
}

.form-text {
	color: #999;
	line-height: 1.5;
	margin-top: 0
}

.form-control+.form-text {
	margin-top: -.5rem;
	margin-bottom: .6rem
}

small.form-text {
	font-size: 85%
}

.required-field>label::after {
	content: '*';
	color: #e02b27;
	font-size: 1.2rem;
	margin: 0 0 0 .45rem
}

.required {
	color: #e02b27;
	font-size: 1.2rem
}

.required+.form-footer {
	margin-top: .8rem
}

.form-footer {
	display: flex;
	align-items: center;
	padding-top: .6rem
}

.select-custom {
	position: relative;
	margin-bottom: 1rem
}

.select-custom select {
	-webkit-appearance: none;
	appearance: none
}

.select-custom::after {
	font-family: molla;
	content: '\f110';
	position: absolute;
	display: inline-block;
	right: 1.9rem;
	top: 50%;
	font-size: 1.5rem;
	transform: translateY(-51%);
	color: #333
}

.select-custom .form-control,
.select-custom .form-control-sm {
	padding-right: 4rem
}

.form-group-custom-control {
	margin-top: 2rem
}

.form-group-custom-control .custom-control {
	margin-top: 0;
	margin-bottom: 2rem
}

.form-group-custom-control+.form-group-custom-control {
	margin-top: -.5rem
}

.form-group-custom-control .custom-control-label {
	text-transform: initial;
	letter-spacing: 0;
	font-weight: 400
}

.custom-control {
	position: relative;
	padding-left: 2.6rem;
	margin-top: 1rem;
	margin-bottom: 1rem
}

.custom-control-label {
	position: relative;
	margin-bottom: 0;
	margin-top: .1rem;
	font-size: 1.4rem;
	padding-left: 2.6rem;
	margin-left: -2.6rem;
	z-index: 0
}

.custom-control-label::before {
	left: 0;
	top: .6rem;
	width: 1.6rem;
	height: 1.6rem;
	background-color: #f9f9f9;
	border: 1px solid #dadada;
	box-shadow: none !important
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
	border-color: #dadada
}

.custom-control-label::after {
	left: 0;
	top: .6rem;
	width: 1.6rem;
	height: 1.6rem
}

.custom-checkbox .custom-control-label::before {
	border-radius: .3rem
}

.custom-checkbox .custom-control-label::after {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-image: none;
	font-size: 1rem;
	font-family: molla;
	content: '\ec2d';
	line-height: 1;
	text-align: center;
	opacity: 0;
	margin-top: .1rem;
	visibility: hidden;
	transition: opacity .01s
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
	color: #fff;
	border-color: #333;
	background-color: #333
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
	background-color: #333
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before,
.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
	border-color: rgba(51, 51, 51, .5);
	background-color: rgba(51, 51, 51, .5)
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
	background-image: none;
	opacity: 1;
	visibility: visible
}

.custom-control.custom-radio .custom-control-label::before {
	top: .3rem;
	background-color: #fff;
	border-color: #dadada
}

.custom-control.custom-radio .custom-control-label::after {
	border-radius: 50%;
	width: .6rem;
	height: .6rem;
	top: .8rem;
	left: .5rem
}

.custom-control.custom-radio .custom-control-input:checked~.custom-control-label::after {
	background-image: none !important;
	z-index: 2
}

.form-control-tooltip {
	position: relative;
	padding-right: 4rem
}

.form-control-tooltip .input-tooltip {
	display: inline-block;
	position: absolute;
	right: 0;
	top: 50%;
	font-size: 2.4rem;
	color: #777;
	transform: translateY(-50%);
	transition: all .3s
}

.form-control-tooltip .input-tooltip:focus,
.form-control-tooltip .input-tooltip:hover {
	color: #000
}

.btn.loading,
.btn.loading i,
.btn.loading:before,
.kt-button.loading,
.kt-button.loading i,
.kt-button.loading:before {
	color: transparent !important;
	pointer-events: none
}

.btn,
.kt-button {
	position: relative
}

.btn.loading::after,
.kt-button.loading::after {
	content: '\e800';
	position: absolute;
	display: inline-block;
	color: transparent;
	border: .2rem solid;
	margin-top: -.8rem;
	margin-left: -.8rem;
	top: 50%;
	left: 50%;
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 50px;
	border-color: #616161 #e0e0e0 #e0e0e0 #e0e0e0;
	line-height: 1;
	-webkit-animation: spin 1s infinite linear;
	-moz-animation: spin 1s infinite linear;
	-o-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear
}

.close,
.close-qs,
.mfp-content .mfp-close {
	width: 36px;
	height: 36px;
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 1;
	cursor: pointer;
	background-color: #333 !important;
	padding: 0 !important;
	margin: 0 !important;
	z-index: 1;
	outline: 0 !important
}

.close-qs::after,
.close-qs::before,
.close::after,
.close::before,
.mfp-content .mfp-close::after,
.mfp-content .mfp-close::before {
	position: absolute;
	content: '';
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 22px;
	height: 2px;
	background-color: #fff;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.close-qs:not(:hover)::before,
.close:not(:hover)::before,
.mfp-content .mfp-close:not(:hover)::before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg)
}

.close-qs:not(:hover)::after,
.close:not(:hover)::after,
.mfp-content .mfp-close:not(:hover)::after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.kt_scroll {
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar
}

.kt_scroll::-webkit-scrollbar {
	width: 5px;
	background-color: #f5f5f5;
	visibility: hidden
}

.kt_scroll::-webkit-scrollbar-thumb {
	background-color: #9e9e9e;
	visibility: hidden
}

.kt_scroll::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, .1);
	background-color: #f5f5f5;
	visibility: hidden
}

.kt_scroll:hover::-webkit-scrollbar,
.kt_scroll:hover::-webkit-scrollbar-thumb,
.kt_scroll:hover::-webkit-scrollbar-track {
	visibility: visible
}

.quantity .control {
	display: inline-block;
	position: relative
}

.quantity .input-qty {
	text-align: center;
	min-width: 70px;
	padding-left: 10px;
	padding-right: 10px;
	color: #999;
	box-shadow: none;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

.quantity .input-qty.round {
	border-radius: 3rem
}

.quantity .btn-number:not(:hover) {
	color: #888
}

.quantity .btn-number {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 20px;
	height: 20px;
	font-size: 0;
	line-height: 0;
	z-index: 1;
	margin: auto
}

.quantity .btn-number::before,
.quantity .quantity-plus::after {
	position: absolute;
	content: '';
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 9px;
	height: 0;
	border-top: 1px solid
}

.quantity .quantity-minus {
	left: 4px
}

.quantity .quantity-plus {
	right: 4px
}

.quantity .quantity-plus::after {
	width: 0;
	height: 9px;
	border-top: none;
	border-right: 1px solid
}

.fake-select-qty {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background-color: transparent;
	color: transparent;
	border: none;
	opacity: 0
}

.fake-select-qty option {
	color: #999
}

@keyframes opacity0 {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

@-o-keyframes opacity0 {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

@-ms-keyframes opacity0 {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

@-moz-keyframes opacity0 {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

@-webkit-keyframes opacity0 {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

@keyframes opacity1 {
	100% {
		opacity: 1
	}
}

@-o-keyframes opacity1 {
	100% {
		opacity: 1
	}
}

@-ms-keyframes opacity1 {
	100% {
		opacity: 1
	}
}

@-moz-keyframes opacity1 {
	100% {
		opacity: 1
	}
}

@-webkit-keyframes opacity1 {
	100% {
		opacity: 1
	}
}

#bg-overlay {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .1);
	opacity: 0;
	cursor: auto;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease
}

#bg-overlay.bg-overlay {
	position: fixed;
	z-index: 10;
	background-color: rgba(0, 0, 0, .7);
	-webkit-animation: opacity1 .5s forwards;
	animation: opacity1 .5s forwards
}

#bg-overlay.cart-drawer-overlay,
#bg-overlay.menu-mb-overlay,
#bg-overlay.showUp {
	position: fixed;
	z-index: 1039;
	background-color: rgba(0, 0, 0, .7);
	-webkit-animation: opacity1 .25s forwards;
	animation: opacity1 .25s forwards
}

#bg-overlay.menu-overlay {
	position: fixed;
	z-index: 10;
	background-color: rgba(0, 0, 0, .2);
	-webkit-animation: opacity1 .3s forwards;
	animation: opacity1 .3s forwards
}

#bg-overlay.filter-overlay {
	position: fixed;
	z-index: 10;
	background-color: rgba(0, 0, 0, .25);
	-webkit-animation: opacity1 .3s forwards;
	animation: opacity1 .3s forwards
}

#bg-overlay[class=""] {
	opacity: 1
}

.ajax__list-cart.loading {
	position: relative;
	min-height: 150px
}

.ajax__list-cart.loading:after {
	content: '';
	background-image: url(Infinity-1.2s-68px.svg);
	width: 68px;
	height: 40px;
	background-size: auto;
	background-position: center;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -34px
}

.card {
	background: #fff;
	position: relative;
	border: none
}

.bar-loading {
	position: relative;
	width: 100%;
	display: inline-block;
	height: 5px;
	background: #eee
}

.bar-loading:after {
	content: '';
	position: absolute;
	left: 0;
	height: 100%;
	background: #e91e63;
	width: 0;
	-webkit-animation: 6s fullw infinite;
	animation: 6s fullw infinite
}

.bar-loading.bounce:after {
	background: #4527a0;
	width: 100px;
	-webkit-animation: 1.5s cubic-bezier(.08, -.18, .91, 1.14) barbounce alternate infinite;
	animation: 1.5s cubic-bezier(.08, -.18, .91, 1.14) barbounce alternate infinite
}

.bar-loading.ifinite {
	overflow: hidden
}

.bar-loading.ifinite:after {
	background: #00044c;
	width: 50%;
	-webkit-animation: barinfinite .5s linear infinite;
	animation: barinfinite .5s linear infinite
}

@-webkit-keyframes fullw {
	0% {
		width: 0
	}

	100% {
		width: 100%
	}
}

@keyframes fullw {
	0% {
		width: 0
	}

	100% {
		width: 100%
	}
}

@-webkit-keyframes barbounce {
	0% {
		left: 0
	}

	100% {
		left: -moz-calc(100% - 100px);
		left: -webkit-calc(100% - 100px);
		left: -o-calc(100% - 100px);
		left: calc(100% - 100px)
	}
}

@keyframes barbounce {
	0% {
		left: 0
	}

	100% {
		left: calc(100% - 100px);
		left: -moz-calc(100% - 100px);
		left: -webkit-calc(100% - 100px);
		left: -o-calc(100% - 100px);
		left: calc(100% - 100px)
	}
}

@-webkit-keyframes barinfinite {
	0% {
		left: -50%
	}

	100% {
		left: 100%
	}
}

@keyframes barinfinite {
	0% {
		left: -50%
	}

	100% {
		left: 100%
	}
}

@keyframes load-spin {
	100% {
		transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@-o-keyframes load-spin {
	100% {
		-o-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@-ms-keyframes load-spin {
	100% {
		-ms-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@-webkit-keyframes load-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@-moz-keyframes load-spin {
	100% {
		-moz-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.loading-bar {
	width: 100%;
	height: 4px;
	background-color: #eee;
	position: relative;
	overflow: hidden
}

.loading-bar .light {
	width: 50%;
	height: 4px;
	background-color: #3492ff;
	background: linear-gradient(90deg, rgba(52, 146, 255, 0), #3492ff 40%, #3492ff 50%, rgba(52, 146, 255, 0) 80%);
	position: absolute;
	left: 0;
	animation: light-kf 2.5s linear infinite
}

@keyframes light-kf {
	0% {
		left: -100%
	}

	100% {
		left: 101%
	}
}

@keyframes pulse {
	from {
		opacity: 1;
		transform: scale(1)
	}

	to {
		opacity: .25;
		transform: scale(.75)
	}
}

.pulse-container {
	width: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: auto
}

.pulse-bubble {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #000
}

.pulse-bubble-1 {
	animation: pulse .4s ease 0s infinite alternate
}

.pulse-bubble-2 {
	animation: pulse .4s ease .2s infinite alternate
}

.pulse-bubble-3 {
	animation: pulse .4s ease .4s infinite alternate
}

@keyframes move-down {
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@-o-keyframes move-down {
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@-ms-keyframes move-down {
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@-moz-keyframes move-down {
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes move-down {
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@-webkit-keyframes ring {
	0% {
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg)
	}

	4% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}

	8% {
		-webkit-transform: rotate(-18deg);
		transform: rotate(-18deg)
	}

	12% {
		-webkit-transform: rotate(18deg);
		transform: rotate(18deg)
	}

	16% {
		-webkit-transform: rotate(-22deg);
		transform: rotate(-22deg)
	}

	20% {
		-webkit-transform: rotate(22deg);
		transform: rotate(22deg)
	}

	24% {
		-webkit-transform: rotate(-18deg);
		transform: rotate(-18deg)
	}

	28% {
		-webkit-transform: rotate(18deg);
		transform: rotate(18deg)
	}

	32% {
		-webkit-transform: rotate(-12deg);
		transform: rotate(-12deg)
	}

	36% {
		-webkit-transform: rotate(12deg);
		transform: rotate(12deg)
	}

	100%,
	40% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

@keyframes ring {
	0% {
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg)
	}

	4% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}

	8% {
		-webkit-transform: rotate(-18deg);
		transform: rotate(-18deg)
	}

	12% {
		-webkit-transform: rotate(18deg);
		transform: rotate(18deg)
	}

	16% {
		-webkit-transform: rotate(-22deg);
		transform: rotate(-22deg)
	}

	20% {
		-webkit-transform: rotate(22deg);
		transform: rotate(22deg)
	}

	24% {
		-webkit-transform: rotate(-18deg);
		transform: rotate(-18deg)
	}

	28% {
		-webkit-transform: rotate(18deg);
		transform: rotate(18deg)
	}

	32% {
		-webkit-transform: rotate(-12deg);
		transform: rotate(-12deg)
	}

	36% {
		-webkit-transform: rotate(12deg);
		transform: rotate(12deg)
	}

	100%,
	40% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

header {
	position: relative
}

header .category-dropdown {
	z-index: 1000
}

#header-ontop {
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
	width: 100%;
	z-index: -13;
	overflow: hidden;
	opacity: 0;
	visibility: hidden
}

.onsticky #header-ontop {
	z-index: 13;
	overflow: visible;
	opacity: 1;
	visibility: visible
}

.onsticky #header-ontop .header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1040;
	-webkit-transform: translateY(-100px);
	transform: translateY(-100px);
	-webkit-animation: move-down .3s forwards;
	animation: move-down .3s forwards
}

.onsticky #header-ontop .header::after {
	opacity: 1
}

body.onhide #header-ontop .header::after {
	opacity: 0 !important;
	-webkit-transition: opacity .1s ease;
	-moz-transition: opacity .1s ease;
	-o-transition: opacity .1s ease;
	transition: opacity .1s ease
}

@media (min-width:480px) {
	.header-ontop .min-height {
		min-height: auto;
		padding-top: .5rem;
		padding-bottom: .5rem
	}
}

#header-ontop .header {
	position: relative;
	width: 100%;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, .2)
}

#header-ontop .header::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	z-index: -1;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease
}

.header-top {
	position: relative
}

.header-top .block-info {
	font-size: 1.3rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	max-width: 100%
}

.header-top .block-info._first>div:not(:only-child) {
	padding-right: 20px
}

.header-top .block-info._first>div:not(:only-child):last-child {
	padding-right: 0
}

.header-top .block-info._last>div:not(:only-child) {
	padding-left: 20px
}

.header-top .block-info._last>div:first-child {
	padding-left: 0
}

.header-top .block-info._last>div .kt--drop-in {
	left: auto;
	right: 0
}

.header-top .block-info .socials_ {
	padding-right: 5px;
	padding-left: 5px
}

.header-top .block-info .col>i {
	font-size: 1.5rem;
	line-height: 1;
	padding: 0 5px
}

.header-top .block-info .infor,
.header-top .block-info a[class|=fkt] {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	min-height: 2.7rem
}

.header-top .block-info a[class|=fkt]::before {
	padding-right: 10px;
	font-size: 1.6rem;
	min-width: 1.6rem
}

.header-top .block-info .list-email .fkt-envelope:before,
.header-top .block-info .list-link-account .fkt-user:before,
.header-top .block-info .list-wishlist .fkt-heart-o:before {
	margin-top: -.2rem
}

.header-top .block-info .kt--drop-in {
	width: 20rem;
	padding: 2rem 1rem;
	text-transform: none
}

.header-top .block-info .kt--drop-in li {
	padding-top: 2px;
	padding-bottom: 2px
}

.header-top .block-info .block-currency .kt--drop-in {
	width: auto;
	min-width: 8rem;
	text-align: center
}

.header-top .drop-mobile {
	position: relative;
	padding: 0 !important
}

.header-top .drop-mobile .list>div {
	padding-right: 10px;
	padding-left: 10px;
	display: inline-block
}

.header-top .drop-mobile .list>div a {
	white-space: nowrap
}

@media (max-width:991px) {
	.header-top .drop-mobile .list {
		position: absolute;
		left: 10px;
		top: 100%;
		width: auto;
		min-width: 15rem;
		padding: 1.5rem;
		display: inline-block;
		z-index: 100;
		visibility: hidden;
		opacity: 0;
		background: #fff;
		transition: translateY .3s ease, opacity .3s ease;
		-ms-transition: translateY .3s ease, opacity .3s ease;
		-webkit-transition: translateY .3s ease, opacity .3s ease;
		transform: translateY(20px);
		-ms-transform: translateY(20px);
		-webkit-transform: translateY(20px);
		box-shadow: rgba(116, 116, 116, .05) 0 3px 4px 4px, rgba(32, 32, 32, .05) 0 8px 8px;
		-moz-box-shadow: rgba(116, 116, 116, .05) 0 3px 4px 4px, rgba(32, 32, 32, .05) 0 8px 8px;
		-webkit-box-shadow: rgba(116, 116, 116, .05) 0 3px 4px 4px, rgba(32, 32, 32, .05) 0 8px 8px
	}

	.header-top .drop-mobile .list>div {
		display: block;
		padding-right: 0;
		padding-left: 0
	}

	.header-top .drop-mobile .list>div:not(:first-child) {
		margin-top: .8rem
	}

	.header-top .drop-mobile .list>div a[class|=fkt],
	.header-top .drop-mobile .list>div>.infor {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		text-align: left
	}

	.header-top .drop-mobile .list .block-currency .kt--drop-in {
		width: 20rem !important;
		padding-bottom: 1rem !important;
		text-align: initial
	}

	.header-top .drop-mobile .list .block-currency li {
		width: auto;
		display: inline-block
	}

	.header-top .drop-mobile .list a:not(:hover),
	.header-top .drop-mobile .list p,
	.header-top .drop-mobile .list span {
		color: #333
	}

	.header-top .drop-mobile.show .list {
		-webkit-transform: translateY(5px);
		-ms-transform: translateY(5px);
		-o-transform: translateY(5px);
		transform: translateY(5px);
		opacity: 1;
		visibility: inherit;
		pointer-events: auto
	}
}

.header-top .block-info._last .drop-mobile .list {
	left: auto;
	right: 10px
}

.header-top .control-inner>div:not(.mobile-block) {
	font-size: 1.3rem
}

.header-top .block-account {
	position: relative
}

.header-top .block-account li {
	padding-left: 1rem;
	padding-right: 1rem
}

.header-top .background-image {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1
}

.header-top .background-image:last-child {
	z-index: -2
}

.header-bottom .mn-lv1.active>a:before,
.header-bottom .mn-lv1:hover>a:before {
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1)
}

.header-bottom .mn-lv1>a {
	-webkit-transition: color .3s;
	transition: color .3s
}

.header-bottom .mn-lv1>a:before {
	content: '';
	display: block;
	position: absolute;
	left: -1rem;
	right: -1rem;
	bottom: 0;
	height: .1rem;
	-webkit-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease
}

.header .vertical-menu {
	top: 0;
	bottom: 0;
	left: -37.5rem;
	width: 90%;
	max-width: 37.5rem;
	background-color: #fff;
	color: #666;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	z-index: 13;
	padding: 6rem 2rem 0 2rem
}

@media (min-width:1200px) {
	.header .vertical-menu {
		padding: 6rem 2em 0 4rem
	}
}

@media (min-width:1400px) {
	.header .vertical-menu {
		padding-left: 7rem
	}
}

.header .vertical-menu .kt_scroll {
	overflow: hidden auto;
	height: 100%
}

.header .vertical-menu .main-navigation {
	width: 100%
}

.header .vertical-menu .main-mn {
	width: 100%
}

.header .vertical-menu .main-mn>.mn-i {
	width: 100%;
	min-width: 130px;
	position: static
}

.header .vertical-menu .main-mn>.mn-i>a {
	width: 100%
}

.header .vertical-menu .main-mn>.mn-i>.sub-mn {
	max-height: 100%
}

.header .vertical-menu .main-mn .sub-mn {
	top: 0;
	left: 100% !important;
	border: 2px solid #fff;
	padding: 2rem 3rem 2rem 3rem
}

.header .vertical-menu .percen {
	display: none
}

.header .vertical-menu .special_link {
	padding: 1.5rem 0
}

.sub-mn-v {
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(100% - 2rem);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.sub-mn-v:not(.show-submn) {
	pointer-events: none
}

.sub-mn-v.show-submn {
	opacity: 1;
	visibility: visible
}

.sub-mn-v::after {
	position: absolute;
	content: '';
	width: 2rem;
	top: 0;
	bottom: 0;
	left: -2rem
}

.icon-link>span {
	display: none
}

.icon-link i {
	transition: none
}

.fkt-angle-down_:after {
	content: '\f110';
	font-family: molla;
	font-style: normal;
	font-weight: 400;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	text-align: center;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

@media (max-width:575px) {
	.searchDrop {
		display: none
	}
}

.box-search.show-icon .kt--drop-in {
	left: auto;
	right: 0;
	width: 32rem;
	border-radius: 50px
}

.box-search.show-icon .search {
	padding: .8rem 5.5rem .8rem 1.5rem
}

.box-search.show-icon .button-search {
	padding: .6rem 1.5rem .6rem .8rem
}

.box-search.input-cat-left .spinerSearch,
.box-search.input-cat-right .spinerSearch {
	position: absolute;
	right: .6rem;
	top: 50%;
	margin-top: -8px
}

.box-search.input-cat-left input,
.box-search.input-cat-right input {
	padding: .7rem 2.3rem
}

.box-search.input-cat-left.loading .title::before,
.box-search.input-cat-right.loading .title::before {
	opacity: 0
}

.box-search.input-cat-left .button-search,
.box-search.input-cat-right .button-search {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 70px;
	flex: 0 0 70px;
	max-width: 70px;
	margin: -1px;
	font-size: 2rem
}

.box-search.input-cat-left .iconSearchDrop,
.box-search.input-cat-right .iconSearchDrop {
	width: auto;
	min-width: auto
}

.box-search.input-cat-left .iconSearchDrop .title,
.box-search.input-cat-right .iconSearchDrop .title {
	font-weight: 300;
	padding: .1rem 7rem .1rem 2rem;
	white-space: nowrap;
	letter-spacing: 0
}

.box-search.input-cat-left .iconSearchDrop .title::before,
.box-search.input-cat-right .iconSearchDrop .title::before {
	position: absolute;
	display: inline-block;
	top: 50%;
	right: 2rem;
	color: #999;
	font-size: 1.2rem;
	-webkit-transform: translateY(-51%);
	transform: translateY(-51%)
}

.box-search.show-input .control {
	background-color: #f4f4f4;
	border-radius: 50px
}

.box-search.show-input .search {
	font-style: italic;
	padding: .8rem 5.5rem .8rem 1.5rem
}

.box-search.show-input .button-search {
	border: none;
	background-color: transparent;
	padding: .6rem 1.5rem .6rem .8rem
}

.box-search.show-input-line .search {
	padding: 1rem 5rem 1rem 1rem
}

.box-search.show-input-line .button-search {
	border: none;
	background-color: transparent;
	padding: .6rem 1.5rem .6rem .8rem
}

.category-dropdown {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	z-index: 1
}

.category-dropdown .dropdown-toggle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	color: #333;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.01em;
	text-transform: uppercase;
	padding: 1.5rem 1.9rem 1.6rem 2rem;
	min-width: 200px;
	-webkit-transition: background .4s, color .1s;
	transition: background .4s, color .1s
}

.category-dropdown .dropdown-toggle:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background-color: #c96;
	-webkit-transition: all .35s;
	transition: all .35s
}

.category-dropdown .dropdown-toggle i {
	font-size: 1rem;
	position: absolute;
	right: 1.5rem
}

@media (min-width:576px) {
	.category-dropdown .dropdown-toggle {
		min-width: 230px
	}
}

@media (min-width:768px) {
	.category-dropdown .dropdown-toggle {
		min-width: 270px
	}
}

.category-dropdown .dropdown-menu {
	left: 0;
	width: 100%;
	margin: 0;
	border-radius: 0;
	border: none;
	padding: 0;
	-webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05)
}

.category-dropdown .dropdown-item {
	color: #666;
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.01em;
	border: thin solid #ebebeb;
	border-top: none;
	padding: .9rem 1.9rem;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: transparent
}

.category-dropdown .dropdown-item.dropdown-item-lead {
	color: #333;
	font-weight: 500;
	background-color: #f9f9f9
}

.category-dropdown .dropdown-toggle:after {
	content: '\f131';
	font-family: molla;
	border: none;
	font-size: 2.3rem;
	line-height: 1;
	margin-left: 2.3rem;
	width: auto;
	height: auto
}

@media (min-width:576px) {
	.category-dropdown .dropdown-toggle:after {
		margin-left: 3.5rem
	}
}

@media (min-width:768px) {
	.category-dropdown .dropdown-toggle:after {
		margin-left: 6.7rem
	}
}

.category-dropdown.show .dropdown-toggle,
.category-dropdown:hover .dropdown-toggle {
	color: #fff !important
}

.category-dropdown.show .dropdown-toggle:after {
	content: '\f191'
}

.box-settings .select-currency,
.box-settings .select-language {
	border-bottom: 1px dotted #ccc;
	padding-top: 12px;
	padding-bottom: 20px
}

.box-settings .currency-title,
.box-settings .language-title {
	color: #333;
	font-size: 1.1rem;
	text-transform: uppercase;
	margin-bottom: .7rem
}

.box-settings .list-links li {
	line-height: 3rem
}

.box-settings .list-links .perlink::before {
	content: ' / ';
	display: inline-block;
	min-width: 15px;
	text-align: center
}

.curcy_list {
	max-height: 26rem;
	overflow: auto
}

.curcy_item {
	cursor: pointer
}

.curcy_item .curc_label {
	color: #333;
	padding: 0 1.2rem;
	margin-top: .5rem;
	font-size: 1.4rem;
	line-height: 2rem;
	display: block
}

.breadcrumbs {
	list-style: none;
	padding: 1.1rem 0;
	background-color: transparent;
	font-size: 1.4rem;
	margin: 0;
	border-radius: 0;
	border-bottom: none
}

@media (max-width:992px) {
	.breadcrumbs {
		padding: 10px 0
	}
}

.breadcrumbs a:not(:hover) {
	color: #999
}

.breadcrumbs>.col-auto {
	max-width: 100%
}

.breadcrumbs ul {
	margin: 0;
	padding: 0;
	background-color: transparent;
	border-radius: 0
}

.breadcrumbs li,
.breadcrumbs li a,
.breadcrumbs li+li:before {
	display: inline-block;
	vertical-align: middle
}

.breadcrumbs li {
	padding-right: 10px
}

.breadcrumbs li:last-child {
	padding-right: 0;
	color: #111
}

.breadcrumbs li span {
	max-width: 16rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
	vertical-align: middle
}

.breadcrumbs li:last-child span {
	max-width: 19rem
}

.breadcrumbs li+li:before {
	font-family: molla, sans-serif;
	font-size: 1.3rem;
	content: "\f112";
	padding: 0 10px 0 0;
	color: inherit
}

.breadcrumb>.active {
	color: #111
}

.breadcrumbs_nav_products li a span {
	display: inline-block;
	vertical-align: middle;
	border-bottom: 1px solid transparent;
	line-height: 1.1;
	-webkit-transition: border-color .3s ease;
	-ms-transition: border-color .3s ease;
	transition: border-color .3s ease
}

.breadcrumbs_nav_products li a:after,
.breadcrumbs_nav_products li a:before {
	font-family: molla;
	font-style: normal;
	font-weight: 400;
	font-size: 1.4rem;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	text-align: center;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.breadcrumbs_nav_products li .nav_products_prev:before {
	content: '\f111';
	margin-left: .5rem
}

.breadcrumbs_nav_products li .nav_products_next:after {
	content: '\f112';
	margin-right: .5rem
}

.breadcrumbs_nav_products li:after,
.breadcrumbs_nav_products li:before {
	display: none !important
}

.breadcrumbs_nav_products li:first-child:not(:last-child) {
	padding-right: 2.5rem
}

.slide_i {
	z-index: 0
}

.kt_home_slide .page-width {
	max-width: 100%;
	transform: translate(var(--x), var(--y));
	-moz-transform: translate(var(--x), var(--y));
	-webkit-transform: translate(var(--x), var(--y));
	-o-transform: translate(var(--x), var(--y))
}

.slide_t-content {
	top: var(--y);
	left: var(--x);
	position: absolute;
	display: inline-block;
	width: 100%;
	z-index: 3
}

.slide_t-content .page-width {
	display: inline-block;
	padding: 0 15px
}

@media (min-width:769px) {
	.slide_t-content .page-width {
		padding: 0 10px
	}
}

.slide_t-wrap {
	position: relative;
	height: 100%;
	overflow: hidden
}

.sl-anime p {
	margin-bottom: 0
}

.swiper-container:not(.swiper-container-initialized) .swiper-slide:first-child .sl-anime {
	opacity: 1;
	transform: translateY(0)
}

.sl-anime {
	opacity: 0;
	transform: translateY(-100%);
	transition: opacity var(--seconds) ease, -webkit-transform var(--seconds) ease;
	transition: opacity var(--seconds) ease, transform var(--seconds) ease;
	transition: opacity var(--seconds) ease, transform var(--seconds) ease, -webkit-transform var(--seconds) ease;
	will-change: transform, opacity;
	-webkit-backface-visibility: hidden
}

.swiper-slide-active .sl-anime,
.swiper-slide-visible .sl-anime {
	opacity: 1;
	transform: translateY(0)
}

@media (max-width:767px) {
	.slideshow__button .btn {
		min-width: 14rem;
		padding: .8rem
	}
}

.kt_home_slide {
	position: relative;
	z-index: 0
}

.kt_home_slide .imgRatio-wrap,
.kt_home_slide .imgRatio__text-wrap {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%
}

.kt_home_slide .slide-wrap {
	position: relative;
	height: 100%;
	overflow: hidden
}

.kt_home_slide .swiper-container-horizontal>.swiper-pagination-bullets,
.kt_home_slide .swiper-pagination-custom,
.kt_home_slide .swiper-pagination-fraction {
	bottom: 25px
}

@media (max-width:576px) {

	.kt_home_slide .swiper-container-horizontal>.swiper-pagination-bullets,
	.kt_home_slide .swiper-pagination-custom,
	.kt_home_slide .swiper-pagination-fraction {
		bottom: 0
	}
}

.kt_home_slide .imgRatio video {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	min-width: 100%;
	overflow: hidden;
	z-index: 1;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.kt_home_slide .imgRatio video::-webkit-media-controls {
	display: none !important;
	-webkit-appearance: none
}

.kt_home_slide .imgRatio video::-webkit-media-controls-overlay-play-button {
	display: none !important
}

.kt_home_slide .swiper-slide-active .mbYTP_wrapper {
	z-index: 1 !important
}

.kt_home_slide .swiper-no-overflow .imgRatio::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.kt_home_slide .slide_i .embed-responsive.rounded {
	border-radius: .5rem !important
}

.kt_home_slide .embed-responsive-item.video_btn {
	background-color: var(--bglazy)
}

.kt_home_slide .embed-responsive-item.video_btn .btn-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 4.5rem;
	height: 4.5rem;
	box-shadow: 0 0 0 1rem rgba(255, 255, 255, .2)
}

#md_qvModal {
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar
}

@media only screen and (max-width:767px) {
	#md_qvModal .modal-dialog {
		margin: 0
	}
}

#md_qvModal .entry-summary {
	overflow: hidden
}

#md_qvModal .content-summary {
	transform: translateY(100px);
	-webkit-transform: translateY(100px);
	opacity: 0;
	transition: all .5s ease .2s;
	-webkit-transition: all .5s ease .2s
}

#md_qvModal.show .content-summary {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	opacity: 1
}

@media (min-width:992px) {
	.product-images-info>div {
		max-width: 49%
	}
}

.content-summary>* {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%
}

.entry-summary {
	padding-bottom: 2rem;
	will-change: transform, top
}

.entry-summary.fixed {
	position: fixed
}

.entry-title {
	padding-bottom: 5px;
	margin-top: 15px;
	margin-bottom: .5rem;
	max-height: none !important
}

@media (min-width:768px) {
	.entry-title {
		margin-top: 0
	}
}

.entry-price {
	line-height: 1;
	margin-bottom: 2rem;
	padding-top: 5px
}

.entry-price ins {
	text-decoration: none
}

.entry-price del {
	font-size: 1.8rem;
	color: #999
}

.entry-price [class|=UnitPrice] {
	display: block;
	margin-top: .8rem;
	font-size: 1.4rem;
	color: #999
}

.entry-price .product__policies {
	font-size: 1.3rem;
	margin-top: 1rem;
	color: #666
}

.entry-short-description {
	margin-bottom: 2rem
}

.subtt_gr {
	font-size: 1.6rem;
	width: 100%
}

.subtt_gr .entry-price.price {
	display: inline-block;
	margin: 0 .5rem
}

.entry-buttons {
	--width: 18.5rem;
	--gap: 2rem;
	display: flex;
	display: -ms-flexbox;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	margin-top: calc(var(--gap) * -1);
	margin-left: calc(var(--gap) * -1);
	max-width: 46rem
}

.entry-buttons>* {
	margin-top: var(--gap);
	margin-left: var(--gap);
	flex: 1 1 var(--width);
	max-width: var(--width);
	order: 2
}

.entry-buttons .shopifyPaymentButton,
.entry-buttons .single_add_to_cart_button {
	--width: 100%;
	flex: 1 1 var(--width);
	max-width: 100%
}

.entry-buttons .single_add_to_cart_button {
	--width: calc(100% - 12rem - var(--gap) * 2)
}

.entry-buttons .wishlist_compare_btns {
	--width: auto;
	flex: 0 0 var(--width);
	display: flex;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center
}

.entry-buttons .wishlist_compare_btns>* {
	--width: calc(50% - var(--gap) / 2);
	flex: 1 1 var(--width);
	max-width: var(--width);
	min-width: auto;
	padding-left: 0;
	padding-right: 0
}

@media (min-width:480px) {
	.entry-buttons .wishlist_compare_btns>* {
		--gap: 4rem
	}
}

.entry-buttons .wishlist_compare_btns .btn.quick-view+.btn.compare,
.entry-buttons .wishlist_compare_btns .btn.wishlist+.btn.compare {
	margin-left: var(--gap)
}

.entry-buttons .wishlist_compare_btns .btn.quick-view+.btn.compare:before,
.entry-buttons .wishlist_compare_btns .btn.wishlist+.btn.compare:before {
	content: '';
	position: absolute;
	left: calc(var(--gap)/ -2);
	top: 0;
	height: 100%;
	border-right: 1px dashed #e5e5e5
}

.entry-buttons .btn.compare,
.entry-buttons .btn.quick-view,
.entry-buttons .btn.wishlist {
	padding: 0;
	--color_bg: transparent;
	--border: transparent
}

.entry-buttons .btn.compare i,
.entry-buttons .btn.quick-view i,
.entry-buttons .btn.wishlist i {
	font-size: 1.35em;
	line-height: .75em;
	margin-top: -2px
}

.entry-buttons .btn.compare span,
.entry-buttons .btn.quick-view span,
.entry-buttons .btn.wishlist span {
	border-bottom: 1px solid transparent;
	-webkit-transition: border-color .3s ease;
	-ms-transition: border-color .3s ease;
	transition: border-color .3s ease
}

.entry-buttons .btn.compare:not(:hover) span,
.entry-buttons .btn.quick-view:not(:hover) span,
.entry-buttons .btn.wishlist:not(:hover) span {
	color: #666
}

.atc_btn_big .quantity input.input-qty {
	padding-top: 1.15rem !important;
	padding-bottom: 1.15rem !important;
	line-height: 1.5;
	height: auto
}

.atc_btn_big .shopify-payment-button button,
.atc_btn_big .single_add_to_cart_button {
	padding-top: 1.15rem;
	padding-bottom: 1.15rem;
	font-weight: 600
}

.ask-product-button .btn {
	--btn_color: #666
}

.ask-product-button .btn:hover {
	--btn_color: var(--primary)
}

.quantity.js-item-quantity {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	flex: 1 1 12rem;
	max-width: none
}

.quantity.js-item-quantity .control {
	width: 100%;
	height: 100%
}

.quantity.js-item-quantity .input-qty {
	height: 100%
}

.quantity .input-qty {
	border: 1px solid #d7d7d7;
	padding: .6rem 1.5rem;
	width: 100%;
	line-height: 1.9;
	height: 4rem
}

.shopify-payment-button__button--hidden {
	display: none !important
}

.shopify-payment-button button {
	color: var(--color, --btn_color);
	background-color: var(--color_bg, --btn_color_bg) !important;
	border: thin solid var(--border, --btn_border);
	text-align: center;
	text-transform: uppercase;
	padding: .85rem 1.5rem;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.01em;
	width: 100%;
	min-width: 170px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 0;
	white-space: normal;
	-webkit-transition: all .3s;
	transition: all .3s
}

.single_add_to_cart_button.btn-rounded+.shopifyPaymentButton .shopify-payment-button button {
	border-radius: .3rem
}

.single_add_to_cart_button.btn-round+.shopifyPaymentButton .shopify-payment-button button {
	border-radius: 3rem
}

.shopify-cleanslate ul {
	padding: 0;
	list-style: none
}

.product-detail-image {
	position: relative;
	z-index: 0
}

.btns-prd-act {
	right: 25px;
	bottom: 15px
}

.btns-prd-act button {
	background-color: #fff;
	border: none;
	padding: 0;
	outline: 0 !important;
	color: #999;
	cursor: pointer;
	width: 4rem;
	height: 4rem;
	font-size: 2rem;
	position: relative;
	-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .15);
	-webkit-transition: box-shadow .3s ease;
	-ms-transition: box-shadow .3s ease;
	transition: box-shadow .3s ease
}

.btns-prd-act button:not(:first-child) {
	margin-left: 1.5rem
}

.btns-prd-act button:hover {
	-webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, .15);
	box-shadow: 0 0 0 0 rgba(0, 0, 0, .15)
}

.btns-prd-act .kt-video-player {
	position: relative;
	font-size: 1.4rem;
	letter-spacing: .01rem
}

.btns-prd-act .kt-video-player:after {
	content: 'o';
	position: absolute;
	top: -6px;
	right: -4px;
	line-height: 1;
	font-size: 1.2rem
}

.btns-prd-act .kt-wide-popup {
	display: block;
	width: 2.4rem;
	margin: 0 auto;
	max-height: 100%
}

.btns-prd-act .kt-wide-popup svg {
	fill: currentColor
}

.p-sgl__photo.aspectRatio {
	max-width: none !important
}

.layout-sidebar .product-sidebar {
	order: 0
}

.product-sidebar .mini-list .product-name {
	margin-bottom: 1rem
}

.product-sidebar .mini-list .product-price {
	padding-bottom: 0;
	margin-bottom: 0
}

.product-sidebar .mini-list .product-inner {
	padding-bottom: 0;
	border: none
}

.preOrder {
	width: 100%
}

.preOrder>i {
	padding-right: 10px;
	color: #f44336
}

.preOrder>span {
	font-style: italic;
	border-bottom: 1px solid
}

.product-mix-a-match .product-form:not(.may-add) .single_add_to_cart_button {
	opacity: .6;
	pointer-events: none;
	max-width: none
}

.product-form__item.selector-wrapper {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	margin-bottom: 1rem
}

.product-form__item label {
	display: block;
	font-size: 1.4rem;
	margin: 0
}

.product-form__item>label {
	min-width: 4.3rem
}

.product-form__item>label strong {
	font-size: 1.3rem
}

.product-form__item .sizeGuide_attach {
	margin-left: 15px;
	display: block;
	min-width: 130px;
	text-align: center
}

.product-form__item .sizeGuide_attach a {
	width: auto;
	min-width: auto;
	background-color: transparent;
	border: none
}

.product-form__item .sizeGuide_attach a span {
	margin-bottom: .2rem
}

.product-form__item .sizeGuide_attach a:before {
	margin-right: 1rem;
	font-size: 1.8rem
}

.product-form__item .sizeGuide_attach a:not(:hover) {
	color: #999
}

.fake_select.not_select>label {
	display: none
}

.swatch.bg-contain {
	background-size: contain;
	background-repeat: no-repeat
}

.fake_select {
	margin-left: 10px;
	min-width: 13rem
}

.fake_select>ul {
	padding-left: 0;
	position: relative;
	line-height: 0
}

.fake_select>ul>li {
	line-height: normal
}

.fake_select>ul li._unavailable {
	visibility: hidden;
	opacity: 0;
	position: absolute !important;
	left: 0;
	z-index: -1
}

.fake_select>ul span.kt_flash_lable {
	padding-left: 5px;
	text-transform: lowercase;
	color: #616161;
	display: none
}

.fake_select>ul li._soulout span.kt_flash_lable {
	display: inline-block
}

.fake_select>ul li._soulout {
	opacity: .5
}

.fake_select.combobox {
	position: relative;
	margin-top: .5rem;
	margin-bottom: .5rem
}

.fake_select.combobox label {
	color: #999;
	width: 100%;
	margin: 0;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border: 1px solid #d7d7d7;
	padding: 10px 28px 10px 18px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: right 10px center
}

.fake_select.combobox label span.ico {
	right: 10px;
	position: absolute;
	line-height: 14px;
	font-size: 1.2rem
}

.fake_select.combobox>ul {
	position: absolute;
	left: 0;
	min-width: 100%;
	width: auto;
	top: 100%;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	border-width: 1px;
	border-style: solid;
	border-color: #d7d7d7;
	padding: 0;
	z-index: 99
}

.fake_select.combobox>ul li {
	padding: 5px 20px;
	text-transform: capitalize;
	cursor: pointer;
	margin: 1px 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	float: left;
	font-size: 1.3rem;
	position: relative
}

.fake_select.combobox>ul li:first-child {
	border-top: 0
}

.fake_select.combobox>ul li.selected,
.fake_select.combobox>ul li:hover {
	background-color: #f4f4f6;
	color: #656565;
	margin: 1px 0;
	border-top: 5px;
	-webkit-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.fake_select.combobox>ul li span.swatch {
	width: 14px;
	height: 14px;
	background-position: center;
	margin-right: 7px;
	display: inline-block;
	position: absolute;
	width: 8px !important;
	left: 5px;
	top: 7px
}

.fake_select.combobox>ul li span.kt_price_lable {
	float: right;
	padding-left: 15px
}

.fake_select.combobox>ul li .option_title {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.fake_select.combobox.show label {
	border-bottom-color: transparent
}

.fake_select.combobox.show ul {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s
}

.fake_select.variant_image li {
	margin-top: 10px
}

.fake_select.variant_image li div {
	cursor: pointer
}

.fake_select.variant_image li>div:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border: 1px solid transparent;
	left: 0;
	top: 0;
	z-index: 1;
	pointer-events: none;
	-webkit-transition: border-color .3s ease;
	-ms-transition: border-color .3s ease;
	transition: border-color .3s ease
}

.--js-selector.op_pre_select .fake_select.variant_image li.selected>div:before {
	border-color: transparent
}

.fake_select.with_out_variant_image {
	width: 100%;
	margin-left: 0
}

.fake_select.not_select>ul {
	margin-left: -5px;
	margin-right: -5px
}

.fake_select.not_select li {
	display: inline-block;
	position: relative;
	white-space: nowrap;
	text-align: center;
	margin: 5px;
	line-height: 1
}

.fake_select.not_select li.color_sw {
	cursor: pointer;
	margin-right: 5px;
	border-color: transparent;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out
}

.fake_select.not_select li.color_sw span.option_title {
	display: none;
	min-width: var(--width);
	min-height: var(--height);
	line-height: var(--height)
}

.fake_select.not_select li.color_sw.selected,
.fake_select.not_select li.color_sw:hover {
	border-color: #777
}

.fake_select.not_select li.color_sw.selected .swatch,
.fake_select.not_select li.color_sw:hover .swatch {
	box-shadow: 0 0 0 1px #ccc;
	border-color: #fff !important
}

.fake_select.not_select li.selected.color_sw .swatch {
	cursor: auto
}

.fake_select.not_select li.sw .option_title {
	min-width: var(--width);
	min-height: var(--height);
	line-height: var(--height);
	cursor: pointer;
	display: inline-block;
	padding: 0 5px;
	background-color: #ececec;
	color: #333;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out
}

.fake_select.not_select li.sw.selected .option_title,
.fake_select.not_select li.sw:hover .option_title {
	color: #fff
}

.fake_select.not_select li.sw.selected .option_title {
	cursor: auto
}

.fake_select.not_select span.swatch {
	display: inline-block;
	width: var(--width);
	height: var(--height);
	border: 2px solid #fff;
	border-radius: 2px;
	box-shadow: 0 0 0 1px transparent;
	background-position: center;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out
}

.fake_select.not_select.radio_button:not(.inline) li {
	display: block;
	text-align: initial
}

.fake_select.not_select.radio_button:not(.inline) .check_btn {
	margin-left: 0
}

.fake_select.circle span.swatch {
	border-radius: 100%
}

.fake_select.circle .sw .option_title {
	border-radius: 100%
}

.fake_select.square .sw span.option_title {
	border-radius: 2px;
	text-transform: uppercase
}

.fake_select.square .sw span.option_title .kt_flash_lable,
.fake_select.square .sw span.option_title .kt_price_lable {
	display: none
}

span.check_btn {
	background-color: #fff;
	border: 2px solid #e0e0e0;
	width: 18px;
	height: 18px;
	border-radius: 20px;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
	position: relative
}

span.check_btn:after {
	content: '';
	position: absolute;
	background-color: transparent;
	width: 10px;
	height: 10px;
	top: 2px;
	left: 2px;
	border-radius: 20px;
	-webkit-transition: background-color .3s ease;
	-ms-transition: background-color .3s ease;
	transition: background-color .3s ease
}

.fake_select.radio_button li {
	cursor: pointer
}

.fake_select.radio_button li:not(:first-child) .check_btn {
	margin-left: 10px
}

.swatch.full_background {
	background-size: contain;
	background-position: center
}

.op_pre_select.error .fake_select label {
	border-width: thin;
	border-color: #f44336;
	border-style: dashed;
	color: #f44336;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
	box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease
}

.--js-selector.error .fake_select.not_select li.color_sw .swatch {
	box-shadow: 0 0 0 1px red;
	border-color: #fff !important
}

.main-image-wapper {
	position: relative
}

.main-image-wapper .flashs {
	left: 3rem
}

@media (max-width:992px) {
	.product-images {
		--grid-gutter: 0
	}

	.product-images .thumbnails {
		--grid-gutter: 10px
	}
}

.product-detail-image .swiper-container {
	z-index: 0
}

.product-detail-image .swiper-wrapper {
	z-index: 0
}

.p-sgl__photo {
	z-index: 0
}

.p-sgl__photos-item {
	overflow: hidden
}

.p-sgl__thumb {
	cursor: pointer
}

.p-sgl__thumb img {
	background-size: 40px
}

.main-image .p-sgl__photo,
.thumbnails .p-sgl__thumb {
	position: relative;
	display: block;
	margin: auto
}

.main-image .gallery-video .zoomImg {
	display: none !important
}

.main-image .video_content {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.main-image .video_content .video-element {
	width: 100%
}

.main-image .video_content .playerBox {
	bottom: auto;
	position: absolute !important;
	top: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	border: 0;
	margin: 0 !important
}

.main-image .video_content>.bgndVideo iframe,
.main-image .video_content>model-viewer,
.main-image .video_content>video {
	opacity: 0
}

.main-image .video_content .plyr {
	min-width: auto;
	width: 100%;
	max-width: auto
}

.main-image .model_content {
	height: 100%
}

.main-image .model_content .shopify-model-viewer-ui,
.main-image .model_content model-viewer {
	height: 100%;
	width: 100%
}

.main-image .swiper-button-next,
.main-image .swiper-button-prev {
	background-image: none;
	width: 30px
}

.main-image .view-in-space[data-shopify-xr-hidden] {
	display: none !important
}

[data-use-thumb=false] .main-image {
	-ms-flex: 0 0 100% !important;
	flex: 0 0 100% !important;
	max-width: 100% !important
}

.thumbnails.oneImageThumb {
	overflow: hidden !important;
	height: 0 !important;
	min-height: 0
}

.thumbnails .p-sgl__thumb {
	overflow: hidden;
	z-index: 0
}

.thumbnails .p-sgl__thumb:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
	border: thin solid transparent;
	background-color: rgba(255, 255, 255, .2)
}

.thumbnails .swiper-slide-thumb-active .p-sgl__thumb:before {
	background-color: transparent;
	border-color: var(--primary)
}

.thumbnails .btn.play {
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	min-width: auto;
	z-index: 1;
	right: 0;
	top: 0;
	position: absolute;
	padding: 0;
	color: #3a3a3a;
	background-color: #fff;
	border: 1px solid #efefef
}

.thumbnails .btn.play i {
	font-size: 1.4rem;
	margin-right: -3px !important
}

.thumbnails .icon {
	fill: #fff;
	width: 3.8rem;
	height: 3.8rem;
	vertical-align: baseline
}

.thumbnails .icon-3d-badge-full-color-outline,
.thumbnails .icon-video-badge-full-color-outline {
	stroke: rgba(58, 58, 58, .05)
}

.thumbnails .icon-3d-badge-full-color-element,
.thumbnails .icon-video-badge-full-color-element {
	fill: #3a3a3a
}

@media (max-width:575px) {
	.thumbnails .p-sgl__thumbs {
		--grid-gutter: 5px
	}

	.thumbnails [data-slides-per-view="3"]:not(.has-its) .swiper-slide:not([style]),
	.thumbnails [data-slides-per-view="4"]:not(.has-its) .swiper-slide:not([style]),
	.thumbnails [data-slides-per-view="5"]:not(.has-its) .swiper-slide:not([style]) {
		max-width: 25%
	}

	.thumbnails [data-slides-per-view]:not(.has-its) .swiper-slide:not([style]):nth-child(3),
	.thumbnails [data-slides-per-view]:not(.has-its) .swiper-slide:not([style]):nth-child(4) {
		position: initial;
		opacity: initial;
		z-index: initial
	}
}

[data-vertical=true] .p-sgl__thumbs-item {
	margin-top: 1rem
}

@media (min-width:576px) {
	[data-vertical=true] .thumbs-wrapper {
		position: absolute;
		height: 100%;
		width: 100%
	}

	[data-vertical=true] .thumbs-wrapper .p-sgl__thumbs-item {
		height: auto;
		margin-top: 0;
		max-width: 100% !important;
		margin-right: 0
	}

	[data-vertical=true] .thumbs-wrapper:not(.has-its) .p-sgl__thumbs-item {
		margin-bottom: 1rem
	}

	[data-vertical=true] .thumbs-wrapper:not(.has-its) .p-sgl__thumbs-item:last-child {
		margin-bottom: 0
	}

	[data-vertical=true] .thumbs-wrapper:not(.has-its)>.swiper-wrapper {
		height: auto;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column
	}
}

[data-vertical=false] .p-sgl__thumbs-item {
	margin-top: 1rem
}

[data-vertical=false] [data-space-between="10"] .p-sgl__thumbs-item {
	margin-top: 1rem
}

@media (max-width:767px) {
	.p-sgl__photos {
		margin-bottom: 0
	}
}

#resize-image-product,
#resize-image-product-qv,
#resize-info-product {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	visibility: hidden;
	z-index: -1
}

@media only screen and (min-width:768px) {
	.content-summary.max-height-true {
		overflow: hidden auto;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar
	}

	.content-summary.max-height-true::-webkit-scrollbar {
		width: 5px;
		background-color: #f5f5f5;
		visibility: hidden
	}

	.content-summary.max-height-true::-webkit-scrollbar-thumb {
		background-color: #9e9e9e;
		visibility: hidden
	}

	.content-summary.max-height-true::-webkit-scrollbar-track {
		-webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, .1);
		background-color: #f5f5f5;
		visibility: hidden
	}

	.content-summary.max-height-true:hover::-webkit-scrollbar,
	.content-summary.max-height-true:hover::-webkit-scrollbar-thumb,
	.content-summary.max-height-true:hover::-webkit-scrollbar-track {
		visibility: visible
	}

	.content-summary.max-height-true[style] {
		padding: 0 2px
	}
}

.group-product {
	text-align: left;
	width: 100%;
	margin-bottom: 0;
	border-left: 1px solid #eee
}

.group-product>tbody>tr>td,
.group-product>tbody>tr>th {
	padding: 1.5rem;
	line-height: 24px;
	border: 1px solid #eee;
	vertical-align: middle;
	max-width: 300px
}

.group-product>tbody>tr>th {
	background-color: #eee;
	border: none;
	font-weight: 400
}

.group-product>tbody>tr>td.quantity-inner {
	width: 15rem;
	border-left: none
}

.group-product .itemGroupProducts>td:first-child {
	border-right: none
}

.group-product .sticky {
	position: sticky;
	left: 1rem
}

.group-product .item-wrap {
	margin-left: -1rem;
	margin-right: -1rem;
	display: -ms-flexbox;
	display: flex;
	z-index: 0
}

.group-product .item-thumb {
	padding-left: 1rem;
	padding-right: 1rem;
	display: inline-block;
	min-width: 95px;
	position: sticky;
	z-index: 1;
	left: -1px;
	background-color: #fff
}

.group-product .item-name {
	padding-left: 1rem;
	padding-right: 1rem;
	display: inline-block;
	min-width: 19rem;
	text-align: initial;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease
}

.group-product .item-name a {
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 56px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-size: 1.4rem;
	line-height: 1.8rem;
	margin-bottom: .6rem
}

.group-product .item-name a:not(:hover) {
	color: #333
}

.group-product a.thumb-img {
	max-width: 75px;
	border-radius: 6px;
	display: block;
	overflow: hidden;
	border: 1px solid #f5f5f5
}

.group-product .quantity .control {
	width: 100%
}

.group-product .quantity .input-qty {
	height: 35px
}

.group-product .price {
	margin: 0;
	font-size: 14px;
	margin: 0 -2px;
	min-width: 81px
}

.group-product .price del,
.group-product .price ins {
	padding: 0 2px;
	display: inline-block
}

.group-product .price ins {
	text-decoration: none
}

.group-product .price del {
	color: #999
}

.group-product .th-price {
	text-align: center
}

.group-product .th-qty {
	text-align: center;
	width: 100px;
	border-right: 1px solid #eee
}

.group-product .product-form__variants {
	padding: 3px 10px 3px 20px;
	max-width: 100%;
	font-size: 1.2rem;
	background-color: transparent
}

.table-products.mini .item-name {
	opacity: 0
}

.social-share {
	margin-top: 0
}

.social-share ul {
	padding: 0;
	text-align: center
}

.social-share ul li {
	margin: 0
}

.social-share ul li a {
	font-size: 1.4rem;
	line-height: 2.14;
	background-color: transparent !important;
	width: 3rem;
	height: 3rem;
	display: inline-block;
	color: #999;
	border-radius: 5rem;
	border: 1px solid #999
}

.product-desc-content h2 {
	font-weight: 400;
	font-size: 2.4rem;
	letter-spacing: -.01em;
	margin-bottom: 1.8rem
}

.product-desc-content h3 {
	font-weight: 400;
	font-size: 1.6rem;
	letter-spacing: -.01em;
	margin-bottom: 1.8rem
}

.product-desc-content ul {
	color: #333
}

.product-desc-content a {
	color: #333;
	border-bottom: thin solid #b8b8b8;
	transition: all .35s ease
}

.product-desc-content p {
	color: #666
}

.product-desc-content blockquote {
	color: #333;
	font-style: normal;
	font-weight: 400;
	font-size: 2.4rem;
	line-height: 1.25;
	letter-spacing: -.01em;
	margin-bottom: 1.6rem
}

.product-desc-content blockquote p {
	margin-bottom: 0;
	color: inherit;
	font-weight: inherit
}

.product-desc-content blockquote cite {
	font-weight: 300;
	font-size: 1.4rem;
	letter-spacing: 0
}

.tabs_style_0.tab-details-product .card-title a {
	color: var(--text);
	font-weight: 600;
	font-size: 1.8rem
}

.tabs_style_0.tab-details-product .card-title a:before {
	color: var(--text)
}

.tabs_style_0 .accordion .card.bg-light {
	margin-bottom: 3rem;
	border-bottom: thin solid #ebebeb
}

.tabs_style_1 .nav.nav-pills .nav-link {
	text-transform: none;
	font-size: 1.6rem;
	color: #333;
	border-bottom-width: .2rem
}

@media (min-width:1200px) {
	.tabs_style_1 .nav.nav-pills .nav-link {
		min-width: 16.8rem;
		padding-left: 3rem;
		padding-right: 3rem
	}
}

.tabs_style_1 .nav-pills+.tab-content .tab-pane {
	padding: 2rem 1.5rem
}

@media (min-width:768px) {
	.tabs_style_1 .nav-pills+.tab-content .tab-pane {
		padding: 3rem
	}
}

.tabs_style_1 .tab-content>.tab-pane {
	padding: 0
}

.tabs_style_1 .tab-content>.tab-pane .border {
	padding: 2.4rem 2.2rem
}

.tabs_style_2 .nav.nav-pills .nav-link {
	text-transform: none;
	font-size: 1.6rem;
	color: #333;
	border-top: .2rem solid transparent;
	border-bottom: none;
	padding-top: 1.2rem;
	padding-bottom: 1.2rem
}

@media (min-width:1200px) {
	.tabs_style_2 .nav.nav-pills .nav-link {
		min-width: 16.8rem;
		padding-left: 3rem;
		padding-right: 3rem
	}
}

.tabs_style_2 .tab-pane {
	padding: 0
}

.tabs_style_2 .nav-pills+.tab-content .tab-pane {
	padding: 3rem
}

.tabs_style_3 .card-title {
	font-weight: 400
}

.product-desc-row {
	display: flex;
	align-items: center;
	padding-top: 5rem;
	padding-bottom: 5rem;
	min-height: 500px
}

.product-desc-row.text-white h2,
.product-desc-row.text-white h3,
.product-desc-row.text-white h4,
.product-desc-row.text-white p {
	color: inherit
}

.shipByLocation p {
	margin-bottom: 0
}

.shipByLocation span.flag {
	display: inline-block;
	height: 20px;
	width: 26px;
	line-height: 1;
	vertical-align: middle;
	margin: 0 7px;
	border-radius: 2px;
	overflow: hidden;
	background-color: #fff;
	margin-top: -2px
}

.shipByLocation span.flag img {
	opacity: .85;
	max-height: 100%
}

.product-list-grid.row.no-gutters .p-style-15 {
	margin-right: -1px;
	margin-bottom: -1px
}

.product-list-grid.row.no-gutters .p-style-15>.clearfix {
	margin-top: 0 !important
}

.product-single-countdown>p {
	color: #757575;
	margin-right: 3px;
	display: inline-block
}

.product-single-countdown .svg-icon {
	width: 2.4rem;
	height: 2.4rem;
	margin-right: 7px;
	vertical-align: top
}

.entry-summary.text-center .kt_progress_bar {
	margin: 0 auto
}

.summary.text-center .product-single-countdown {
	-ms-flex-pack: center;
	justify-content: center
}

.summary.text-center .kt_countdown.style02 {
	text-align: left;
	min-width: auto
}

.kt_progress_bar {
	max-width: 370px
}

.kt_progress_bar .progress {
	border-radius: .2rem
}

.categories_wrapper {
	max-width: 100%
}

.categories_wrapper>span {
	color: #999
}

.categories_wrapper a:not(:hover) {
	color: #666
}

.social_sharing_wrapper {
	max-width: 100%
}

.social_sharing_wrapper span.social-label {
	color: #999
}

.shop_attributes th {
	font-weight: 500;
	padding: 3px 10px 3px 0
}

.shop_attributes td p:last-child {
	margin-bottom: 0
}

.product_meta {
	padding-top: 1rem;
	display: inline-block;
	width: 100%;
	border: none
}

.product_meta td {
	border: none;
	padding: .7rem 1rem
}

.product_meta td.title_wrapper {
	font-weight: 500;
	color: #424242;
	padding-left: 0;
	min-width: 9rem;
	font-size: 1.4rem
}

.product_meta td:not(.title_wrapper) {
	font-weight: 300
}

.product_meta span.availalbe {
	font-weight: 500;
	color: #4caf50;
	font-size: 1.6rem
}

.product_meta td a {
	color: #616161;
	font-size: 1.4rem
}

.product_meta td a:hover {
	color: #222
}

.product_meta .social-share ul {
	margin: 0 -10px !important
}

.product_meta .social-share ul a {
	width: 30px !important;
	text-align: center
}

@media (max-width:767px) {

	.product_meta td a,
	.product_meta td.title_wrapper {
		font-size: 1.4rem
	}

	.product_meta span.availalbe {
		font-size: 1.4rem
	}
}

.shipping_rates {
	color: #666;
	padding: 1.5rem
}

.shipping_rates .product_delivery .mb-2 {
	margin-bottom: 0
}

.psgl-vendor-sku a:not(:hover) {
	color: #666
}

.product-review-section .box-list-reviews {
	padding: 2.5rem 1.5rem 3px;
	background-color: #fafafa;
	border: 3px solid #f5f5f5
}

.product-review-section .box-list-reviews>.row>.col-md-6.col-lg-6.col-sm-12:nth-of-type(2) h4.title-border {
	text-align: right
}

.product-review-section h4.title-border {
	font-size: 1.8rem
}

.lz-place.fbt-prd:before {
	margin-bottom: 2rem
}

.fbt-place-info:before {
	padding-top: 94px;
	max-width: 768px;
	background-size: 90% 24px, 75% 24px, 85% 24px;
	background-position: left 0, left 34px, left 68px
}

.fbt-prd:before {
	padding-top: 94px;
	background-size: 10rem 100%, 10rem 100%, 10rem 100%;
	background-position: 0 0, 12rem 0, 24rem 0
}

.collection_title h1 {
	margin-bottom: 0;
	font-size: 28px;
	text-transform: capitalize
}

.result-count {
	color: #999
}

.result-count>span {
	color: #333
}

.show-grid-list {
	margin: 0;
	padding: 0
}

.show-grid-list>li {
	min-width: 2rem;
	text-align: center
}

.show-grid-list>li>span:hover i {
	background-color: #333
}

.show-grid-list>li>.active i {
	background-color: #333
}

.show-grid-list .show-grid,
.show-grid-list .show-list,
.show-grid-list .show-pds {
	cursor: pointer
}

.show-grid-list .kt--drop-in {
	width: 22rem;
	right: 0;
	left: auto
}

.show-grid-list .kt--drop-in .table-view {
	padding: .8rem 0
}

.show-grid-list .kt--drop-in .table-view li {
	line-height: 0;
	margin-bottom: 10px;
	padding-left: 7px;
	padding-right: 0;
	width: auto;
	margin-right: 0
}

.show-grid-list .kt--drop-in .table-view li:first-child {
	padding-left: 0
}

.show-grid-list .kt--drop-in .table-view li:last-child,
.show-grid-list .kt--drop-in .table-view li:nth-child(4n) {
	margin-right: 0;
	margin-left: 0
}

.show-grid-list .kt--drop-in .table-view li .show-grid {
	margin-bottom: 0;
	cursor: pointer
}

.show-grid-list .kt--drop-in .table-view li .show-grid.active i,
.show-grid-list .kt--drop-in .table-view li .show-grid:hover i {
	border-color: #111;
	background-color: #111
}

.show-grid-list .products-view {
	line-height: normal;
	width: 100%;
	padding: 0
}

.show-grid-list .products-view li .show-pds {
	color: #333;
	padding: .8rem 1.5rem;
	margin: 0;
	display: block;
	transition: all .3s ease-out;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out
}

.show-grid-list .products-view li .show-pds.active {
	pointer-events: none
}

.show-grid-list .products-view li .show-pds.active,
.show-grid-list .products-view li:hover .show-pds {
	background-color: #f5f5f5
}

.show-grid-list:hover .kt--drop-in.products-view {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	-ms-transform: translateY(0);
	-webkit-transform: translateY(0);
	pointer-events: auto
}

.left-sidebar .sidebar {
	order: -1
}

.left-sidebar .kt--filter-gr-i.orderby-wapper .kt--filter-gr-i_ul {
	left: auto;
	right: 1px
}

.leftlis .kt--filter.kt_sidebar .kt--filter-gr-i,
.rightlis .kt--filter.kt_sidebar .kt--filter-gr-i {
	border: none;
	border-bottom: 2px solid #e5e5e5;
	padding: 14px 0 30px;
	margin-bottom: 15px
}

.shop-top {
	padding: 5px 0;
	margin-top: -5px;
	margin-bottom: 1.5rem
}

@media (max-width:991px) {
	.shop-top {
		position: sticky;
		position: -webkit-sticky;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9;
		background-color: #fff
	}
}

.shop_tyle_market .shop-top {
	background-color: #f8f8f8;
	padding: 1rem
}

@media (min-width:575px) {
	.shop_tyle_market .shop-top {
		padding: 2rem
	}
}

@media (min-width:992px) {
	.shop_tyle_market .layered_subtitle_heading span.ico {
		display: none
	}
}

.filterCanvas.hasFilter:before {
	content: '';
	position: absolute;
	width: .8rem;
	height: .8rem;
	border-radius: 1rem;
	top: 5px;
	right: -4px
}

.isotoped .ly__ms:not([style]) {
	opacity: 0;
	z-index: -1
}

.collection-products .grid-item:not(.list) {
	margin-bottom: 2rem
}

@media (min-width:768px) {
	.collection-products .grid-item:not(.list) {
		margin-bottom: 4rem
	}
}

.collection-products .product-listing {
	--grid-gutter: 8px
}

.collection-products .product {
	height: 100%
}

.section-title.title-sidebar h3 {
	font-size: 1.8rem
}

.widget_recent_product .widget-title {
	margin: 20px 0 15px
}

.widget_recent_product .product-categories li {
	line-height: normal;
	padding: 15px 0;
	overflow: hidden
}

.widget_recent_product .product-thumb {
	width: 80px;
	float: left
}

.widget_recent_product .product-info {
	overflow: hidden;
	padding-left: 30px
}

.widget_recent_product .product-name {
	line-height: 20px;
	margin-bottom: 5px;
	font-weight: 400
}

.widget_recent_product .product-name a {
	font-size: 12px;
	text-transform: uppercase;
	line-height: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 56px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}

.widget_recent_product .price {
	color: #222
}

.widget_recent_product .price ins {
	text-decoration: none
}

.widget_recent_product .price del {
	color: #999
}

.widget_product_categories li {
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	transition: all .3s ease-out
}

.widget_product_categories li a {
	text-transform: capitalize;
	padding-right: 3rem
}

.widget_product_categories li a label {
	white-space: normal
}

.widget_product_categories li a .count {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 50%;
	min-width: 2.5rem;
	height: 2rem;
	margin-top: -1rem;
	font-weight: 300;
	font-size: 1.3rem;
	line-height: 1;
	border-radius: .6rem;
	color: #999;
	background-color: #f8f8f8;
	min-height: auto;
	width: auto
}

.widget_product_categories li a .count:after {
	display: none
}

.widget_product_categories li.current-cat>a .count {
	color: #fff;
	background-color: #333
}

.widget_product_categories li.current-cat>a .custom-control-label::before {
	color: #fff;
	border-color: #333;
	background-color: #333
}

.widget_product_categories li.current-cat>a .custom-control-label::after {
	background-image: none;
	opacity: 1;
	visibility: visible
}

.widget_product_categories ul.child_collection {
	padding-left: 25px;
	transition: all .3s ease-out;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	position: relative
}

.widget_product_categories ul.child_collection li {
	overflow: visible !important;
	position: relative
}

.widget_product_categories ul.child_collection:before {
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	left: 15px;
	background-color: #e0e0e0
}

.widget_product_categories>ul.product-categories>li.showAny ul.child_collection,
.widget_product_categories>ul.product-categories>li:hover ul.child_collection {
	max-height: 300px;
	visibility: visible;
	opacity: 1;
	transition: all .5s ease-out;
	-webkit-transition: all .5s ease-out;
	-moz-transition: all .5s ease-out;
	-o-transition: all .5s ease-out;
	-ms-transition: all .5s ease-out
}

@media (min-width:992px) {
	.widget_product_categories .market-layout .kt--filter-gr-i_ul {
		max-height: none !important;
		overflow: visible !important
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul li {
		line-height: normal
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul li a {
		padding-left: 0;
		padding-right: 2.6rem;
		margin-bottom: .7rem
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul li a label {
		padding-left: 0;
		margin-left: 0;
		margin-top: 0
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul li a label:before {
		display: none
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul li:last-child a {
		margin-bottom: 0
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul li.opened a label:after {
		content: '\e802'
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul .level-1>a label {
		font-size: 1.4rem;
		color: #333
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul>li {
		margin-bottom: .5rem
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul>li:last-child a {
		margin-bottom: 0
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul>li.level-1-has-child label:after {
		left: auto;
		right: 0;
		content: '\f110';
		color: #333;
		opacity: 1;
		visibility: visible
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul .child_collection {
		padding-left: 0;
		transition: none !important
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul .child_collection:before {
		display: none
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul .child_collection li {
		line-height: normal
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul .child_collection li a {
		padding-right: 0;
		margin-bottom: .7rem
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul .child_collection li a label {
		padding-right: 0;
		margin-right: 0;
		font-weight: 300;
		color: #666;
		font-size: 1.3rem
	}

	.widget_product_categories .market-layout .kt--filter-gr-i_ul .child_collection li a label:after,
	.widget_product_categories .market-layout .kt--filter-gr-i_ul .child_collection li a label:before {
		display: none
	}
}

.get__shipping .form-group {
	margin-bottom: 1rem
}

.get__shipping .icon__shipping {
	padding-right: 2.5rem;
	padding-left: 0
}

.get__shipping .icon__shipping i {
	font-size: 1.5rem;
	line-height: 1;
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -.75rem;
	opacity: 0;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
	-webkit-transform: translateX(-6px);
	transform: translateX(-6px)
}

.get__shipping .icon__shipping:focus i,
.get__shipping .icon__shipping:hover i {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0)
}

.get__shipping .icon__shipping.error {
	color: red
}

.get__shipping svg.svg-icon__shipping circle,
.get__shipping svg.svg-icon__shipping ellipse,
.get__shipping svg.svg-icon__shipping g,
.get__shipping svg.svg-icon__shipping line,
.get__shipping svg.svg-icon__shipping path,
.get__shipping svg.svg-icon__shipping polygon,
.get__shipping svg.svg-icon__shipping polyline,
.get__shipping svg.svg-icon__shipping rect {
	fill: inherit;
	stroke: inherit
}

.get__shipping symbol.svg-icon__shipping circle,
.get__shipping symbol.svg-icon__shipping ellipse,
.get__shipping symbol.svg-icon__shipping g,
.get__shipping symbol.svg-icon__shipping line,
.get__shipping symbol.svg-icon__shipping path,
.get__shipping symbol.svg-icon__shipping polygon,
.get__shipping symbol.svg-icon__shipping polyline,
.get__shipping symbol.svg-icon__shipping rect {
	fill: inherit;
	stroke: inherit
}

.get__shipping .price-item__shipping span.money {
	color: red;
	font-weight: 600
}

.get__shipping .show__shipping {
	line-height: normal
}

.pagination_ {
	overflow-y: auto;
	white-space: nowrap
}

.pagination .page-numbers,
.pagination a.btn--narrow {
	letter-spacing: initial;
	min-height: 30px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-width: 3rem;
	height: 4rem;
	font-weight: 400;
	font-size: 1.4rem;
	padding: 0 .3rem;
	line-height: 1;
	color: #706f6c;
	border-radius: .3rem;
	background-color: transparent;
	border: thin solid transparent
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover,
.pagination a.btn--narrow.current,
.pagination a.btn--narrow:hover {
	background-color: transparent;
	border-color: #ebebeb
}

.pagination>li {
	margin: 0 5px
}

.pagination>li>a,
.pagination>li>span {
	color: #111;
	box-shadow: none;
	background-color: transparent
}

.pagination>li>a:focus,
.pagination>li>a:hover {
	color: #111;
	box-shadow: none;
	background-color: transparent
}

.pagination>li>span:focus,
.pagination>li>span:hover {
	color: #111;
	box-shadow: none;
	background-color: transparent
}

.btn--narrow.btn--disabled {
	cursor: auto;
	color: #7f7f7f;
	padding: 6px 12px
}

.pagination a.btn--narrow.btn-next,
.pagination a.btn--narrow.btn-prev {
	padding: 6px 0;
	line-height: 14px;
	margin: 0 5px;
	padding-left: 1rem;
	padding-right: 1rem;
	min-width: 80px
}

.pagination a.btn--narrow.btn-next i:first-child,
.pagination a.btn--narrow.btn-prev i:first-child {
	margin-right: 1rem;
	margin-left: 0
}

.pagination a.btn--narrow.btn-next i:last-child,
.pagination a.btn--narrow.btn-prev i:last-child {
	margin-left: 1rem;
	margin-right: 0
}

.pagination a.btn--narrow.btn-next.disabled,
.pagination a.btn--narrow.btn-prev.disabled {
	border-color: transparent;
	color: #eaeaea;
	pointer-events: none
}

.threesixty .nav_bar a {
	margin: 3px 5px 0
}

.threesixty .nav_bar a:before {
	font-family: molla;
	font-size: 24px
}

.threesixty .nav_bar a.nav_bar_previous:before {
	content: '\f111' !important
}

.threesixty .nav_bar a.nav_bar_play:before {
	content: '\f2be' !important
}

.threesixty .nav_bar a.nav_bar_stop:before {
	content: '' !important;
	width: 1.8rem;
	height: 2rem;
	border-width: 0 .2rem;
	border-style: solid;
	margin-top: .4rem
}

.threesixty .nav_bar a.nav_bar_next:before {
	content: '\f112' !important
}

.bg-move.image_bg_section,
.bg-parallax.image_bg_section,
.bg-simple.image_bg_section {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1
}

.bg-simple .image_bg {
	margin-left: 50%;
	transform: translateX(-50%)
}

.bg-parallax .image_bg {
	width: 100vw;
	height: 100vh;
	margin-left: 50%;
	transform: translateX(-50%);
	background-position-y: top !important
}

.bg-move .image_bg {
	transform: scale(1.1)
}

.kt-wishlist.added [class*=" fkt-heart"]:before,
.kt-wishlist.added [class^=fkt-heart]:before {
	content: '\f233'
}

.table-compare [data-n-opt] {
	display: block
}

.table-compare .product {
	box-shadow: none !important;
	text-align: initial
}

.table-compare .product .content__variants_list,
.table-compare .product .product-price,
.table-compare .product .product-price-rate,
.table-compare .product .ratings-container {
	-ms-flex-pack: start;
	justify-content: flex-start
}

.table-compare .product-inner h3.product-name {
	font-size: 1.4rem;
	margin-top: 1.5rem;
	margin-bottom: 2.5rem;
	line-height: 1.5;
	min-height: 4rem
}

.table-compare .product-inner h3.product-name a:not(:hover) {
	color: #333
}

.table-compare thead {
	height: 0;
	opacity: 0
}

.table-compare thead th {
	padding: 0;
	border: none
}

.table-compare tr:nth-child(2n+2) {
	background-color: #fbfbfb
}

.table-compare tr:nth-child(2n+2):after {
	content: ''
}

.table-compare td,
.table-compare th {
	min-width: 218px;
	padding: 2rem 1rem;
	border-color: transparent
}

.table-compare th {
	text-align: right;
	padding-right: 4rem;
	font-weight: 500;
	color: #999
}

.table-compare .cp_prd-thumb td {
	padding-top: 4rem;
	position: relative
}

.table-compare .cp_prd-thumb .compare-remove {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -1.5rem;
	width: 3rem;
	height: 3rem;
	text-align: center;
	line-height: 3rem;
	color: #333;
	font-size: 1.8rem
}

.table-compare .cp_prd-thumb .compare-remove:hover {
	color: #ef837b
}

.table-compare .product-price {
	margin-bottom: 0;
	line-height: normal;
	font-size: 1.4rem
}

.table-compare .name_option {
	display: block !important;
	margin-bottom: .8rem
}

.table-compare .fkt-cart-plus:before {
	font-size: 1.8rem;
	padding-right: .5rem;
	margin-top: -1px
}

.table-compare .add_new.aspectRatio {
	background-color: transparent !important;
	border: 1px solid #ededed;
	cursor: pointer
}

.table-compare .add_new.aspectRatio i {
	font-size: 3rem;
	line-height: 1
}

.table-compare .add_new.aspectRatio>div {
	top: 50%;
	left: 0;
	width: 100%;
	margin-top: -26px;
	color: #999
}

.table-compare .product-excerpt {
	max-height: 270px;
	overflow-y: auto
}

.table-compare .cp_prd-availability span {
	color: #ef837b
}

.table-compare .cp_prd-availability .in_stock {
	color: #a6c76c
}

#compare-modal .compare-remove {
	line-height: 3.5rem
}

#compare-modal tr.no-products.odd td {
	min-height: 200px;
	text-transform: uppercase;
	padding: 3rem 0
}

#compare-modal .close {
	margin: 15px;
	top: 0;
	right: 0
}

#compare-modal .no-compare {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	padding: 30px;
	text-align: center;
	font-size: 2.4rem
}

#compare-modal [data-rating="0.0"] {
	display: block !important
}

#compare-modal .product-loop-variants .variants_list [data-maybe-hide=true]:not(.active) {
	display: block !important
}

#compare-modal .product-loop-variants .variants_list .more.kt_view_qs {
	display: none !important
}

#compare-modal .prd--option2,
#compare-modal .prd--option3 {
	display: block
}

.table-responsive {
	overflow-y: hidden
}

.mini-compare-content {
	padding: 2.2rem 3rem 2.5rem;
	width: 300px !important
}

.mini-compare-content .no-compare p {
	font-size: 1.3rem;
	margin-bottom: 0
}

.mini-compare-content .compare-products {
	list-style: none;
	padding: 0;
	margin: 0
}

.mini-compare-content .compare-product {
	position: relative;
	padding: .5rem 0;
	margin: 0;
	box-shadow: none !important
}

.mini-compare-content .compare-product:hover {
	box-shadow: none
}

.mini-compare-content .btn-remove {
	position: absolute;
	top: 50%;
	right: -.55rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	color: #ccc;
	font-size: 1.3rem;
	line-height: 1;
	text-align: center;
	margin-top: -1.2rem
}

.mini-compare-content .btn-remove:focus,
.mini-compare-content .btn-remove:hover {
	color: #333
}

.mini-compare-content .compare-product-title {
	color: #333;
	font-weight: 300;
	font-size: 1.3rem;
	line-height: 1.35;
	margin: 0;
	letter-spacing: -.01em;
	padding-right: 15px
}

.mini-compare-content .compare-product-title a {
	color: inherit
}

.mini-compare-content .compare-actions {
	display: flex;
	align-items: center;
	margin-top: 2rem
}

.mini-compare-content .compare-actions .action-link {
	font-size: 1.3rem;
	color: #333
}

.mini-compare-content .compare-actions .action-link:focus,
.mini-compare-content .compare-actions .action-link:hover {
	text-decoration: underline
}

.mini-compare-content .compare-actions .btn {
	font-size: 1.3rem;
	min-width: 110px;
	margin-left: auto;
	padding-top: .65rem;
	padding-bottom: .65rem
}

.product-grid-countdown:not(.showOn),
.product-single-countdown:not(.showOn) {
	display: none !important
}

.kt_countdown {
	display: flex;
	display: -ms-flexbox;
	flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	justify-content: space-between;
	-ms-flex-pack: justify;
	align-items: center;
	-ms-flex-align: center
}

.kt_countdown span.sign {
	display: inline-block;
	font-size: 20px;
	line-height: 1;
	left: 100%
}

.kt_countdown.style01 .block {
	position: relative;
	display: inline-block;
	width: 8rem;
	text-align: center;
	font-weight: 300;
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: 0
}

.kt_countdown.style01 span.flip-top {
	font-weight: 400;
	font-size: 3rem;
	letter-spacing: -.025em
}

.kt_countdown.style01 span.label {
	display: block
}

.kt_countdown.style02 {
	display: inline-block;
	min-width: 16rem
}

.kt_countdown.style02 .block {
	display: inline-block;
	position: relative
}

.kt_countdown.style02 .block.cdday span.label {
	display: inline-block;
	text-transform: lowercase
}

.kt_countdown.style02 .block.cdday span.flip-top {
	padding-right: 3px
}

.kt_countdown.style02 .block.cdday:after {
	content: ','
}

.kt_countdown.style02 .block:after {
	content: ':'
}

.kt_countdown.style02 .block:last-child span.flip-top {
	padding-right: 0
}

.kt_countdown.style02 .block:last-child:after {
	display: none
}

.kt_countdown.style02 .block:first-child span.flip-top {
	padding-left: 0
}

.kt_countdown.style02 span.sign {
	display: none
}

.kt_countdown.style02 span.label {
	display: none
}

.kt_countdown.style02 span.flip-top {
	font-size: 1.8rem;
	padding-right: 5px;
	padding-left: 5px
}

.kt_countdown.style03 .block {
	position: relative;
	display: inline-block;
	min-width: 5rem;
	padding: 1.5rem .5rem;
	text-align: center;
	font-weight: 300;
	font-size: 1.2rem;
	line-height: 1;
	background-color: transparent;
	border-radius: .3rem;
	border: thin solid #e1e1e1;
	font-weight: 400;
	color: #333
}

.kt_countdown.style03 span.sign {
	font-size: 30px;
	margin: 0 6px
}

.kt_countdown.style03 span.flip-top {
	display: inline-block;
	font-size: 1.8rem;
	letter-spacing: -.03em;
	margin-bottom: .4rem
}

.kt_countdown.style03 span.label {
	display: block;
	text-transform: lowercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

@media (min-width:375px) {
	.kt_countdown.style03 .block {
		min-width: 7rem;
		padding: 2.1rem .5rem
	}

	.kt_countdown.style03 span.flip-top {
		font-size: 2.4rem
	}
}

@media (min-width:576px) {
	.kt_countdown.style03 span.flip-top {
		font-size: 3rem
	}
}

.kt_countdown.style04 .block {
	position: relative;
	display: inline-block;
	min-width: 5rem;
	padding: .5rem 0;
	text-align: center;
	font-weight: 300;
	font-size: 1.2rem;
	line-height: 1;
	font-weight: 400;
	color: #333
}

.kt_countdown.style04 span.sign {
	margin: -15px 6px 0
}

.kt_countdown.style04 span.flip-top {
	display: inline-block;
	letter-spacing: -.03em;
	margin-bottom: .4rem;
	width: 100%;
	font-size: 2.4rem;
	color: #fff;
	border-radius: 5px;
	padding: 1rem
}

.kt_countdown.style04 span.label {
	display: block;
	text-transform: lowercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

@media (min-width:375px) {
	.kt_countdown.style04 .block {
		padding: 1rem 0
	}
}

.kt_countdown.style05 {
	padding: 0 1.5rem
}

.kt_countdown.style05 .block {
	position: relative;
	display: inline-block;
	min-width: 5rem;
	padding: .5rem;
	text-align: center;
	font-size: 1rem;
	line-height: 1;
	font-weight: 400;
	color: #333
}

.kt_countdown.style05 span.flip-top {
	display: inline-block;
	letter-spacing: -.03em;
	margin-bottom: 0;
	width: 100%;
	font-size: 1.6rem;
	color: #fff
}

.kt_countdown.style05 span.sign {
	color: #fff
}

.kt_countdown.style05 span.label {
	color: #fff;
	display: block;
	text-transform: lowercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	letter-spacing: -.01em;
	font-size: 0
}

.kt_countdown.style05 span.label:before {
	font-size: 1rem
}

@media (min-width:375px) {
	.kt_countdown.style05 .block {
		padding: .7rem .5rem
	}
}

.kt_countdown.style06 .block {
	position: relative;
	display: inline-block;
	min-width: 5.5rem;
	padding: .5rem 0;
	text-align: center;
	font-size: 1rem;
	line-height: 1;
	font-weight: 400;
	color: #333;
	background-color: #fafafa;
	border-radius: 3px
}

.kt_countdown.style06 span.flip-top {
	display: inline-block;
	letter-spacing: -.03em;
	margin-bottom: 0;
	width: 100%;
	font-size: 1.6rem
}

.kt_countdown.style06 span.sign {
	color: transparent;
	padding: 5px;
	font-size: 0
}

.kt_countdown.style06 span.label {
	display: block;
	text-transform: lowercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	letter-spacing: -.01em;
	padding-top: .7rem
}

@media (min-width:375px) {
	.kt_countdown.style06 .block {
		padding: 1rem 0
	}
}

.socials_ .socials {
	margin: 0 -5px;
	display: inline-block
}

.socials_ .socials>li {
	margin-right: 0;
	margin-left: 0
}

.socials_ .socials a.social-icon {
	display: inline-block;
	min-width: 1.4rem;
	margin: 0 5px;
	transition: all .35s ease
}

.socials_ span.social-label {
	display: inline-block;
	padding-right: 2rem
}

.socials_.socials_color .social-facebook:not(:hover) {
	color: #1977f2
}

.socials_.socials_color .social-twitter:not(:hover) {
	color: #79c8ed
}

.socials_.socials_color .social-instagram:not(:hover) {
	color: #dd6d9a
}

.socials_.socials_color .social-youtube:not(:hover) {
	color: #e66262
}

.socials_.socials_color .social-pinterest:not(:hover) {
	color: #e66262
}

.socials_.socials_color .social-tumblr:not(:hover) {
	color: #36465d
}

.socials_.socials_color .social-linkedin:not(:hover) {
	color: #39c
}

.socials_.socials_color .social-google-plus:not(:hover) {
	color: #d74937
}

.socials_.social-icons-colored .social-icon {
	text-align: center
}

.socials_.social-icons-colored .social-icon.social-facebook {
	color: #fff;
	border-color: #8f79ed;
	background-color: #8f79ed
}

.socials_.social-icons-colored .social-icon.social-twitter {
	color: #fff;
	border-color: #79c8ed;
	background-color: #79c8ed
}

.socials_.social-icons-colored .social-icon.social-instagram {
	color: #fff;
	border-color: #dd6d9a;
	background-color: #dd6d9a
}

.socials_.social-icons-colored .social-icon.social-youtube {
	color: #fff;
	border-color: #e66262;
	background-color: #e66262
}

.socials_.social-icons-colored .social-icon.social-pinterest {
	color: #fff;
	border-color: #e66262;
	background-color: #e66262
}

.socials_.social-icons-colored .social-icon.social-linkedin {
	color: #fff;
	border-color: #39c;
	background-color: #39c
}

.socials_.social-icons-colored .social-icon.social-google-plus:not(:hover) {
	color: #fff;
	border-color: #d74937;
	background-color: #d74937
}

.socials_.social-icons-colored .social-icon:focus,
.socials_.social-icons-colored .social-icon:hover {
	background-color: #fff !important;
	border-color: #d7d7d7 !important
}

.socials_.social-icons-colored .social-icon:focus.social-facebook,
.socials_.social-icons-colored .social-icon:hover.social-facebook {
	color: #8f79ed
}

.socials_.social-icons-colored .social-icon:focus.social-twitter,
.socials_.social-icons-colored .social-icon:hover.social-twitter {
	color: #79c8ed
}

.socials_.social-icons-colored .social-icon:focus.social-instagram,
.socials_.social-icons-colored .social-icon:hover.social-instagram {
	color: #dd6d9a
}

.socials_.social-icons-colored .social-icon:focus.social-youtube,
.socials_.social-icons-colored .social-icon:hover.social-youtube {
	color: #e66262
}

.socials_.social-icons-colored .social-icon:focus.social-pinterest,
.socials_.social-icons-colored .social-icon:hover.social-pinterest {
	color: #e66262
}

.socials_.social-icons-colored .social-icon:focus.social-linkedin,
.socials_.social-icons-colored .social-icon:hover.social-linkedin {
	color: #39c
}

.socials_.social-icons-colored .social-icon:focus.social-google-plus,
.socials_.social-icons-colored .social-icon:hover.social-google-plus {
	color: #d74937
}

.socials_.style-01 .socials {
	margin: 0 -10px
}

.socials_.style-01 a.social-icon {
	font-size: 1.3rem;
	margin: 0 10px;
	border-radius: 50%;
	text-decoration: none;
	text-align: center
}

.socials_.style-02 .social-label {
	display: none
}

.socials_.style-02 a.social-icon {
	border-width: 1px;
	border-style: solid;
	border-radius: 50px;
	width: 4rem;
	height: 4rem;
	line-height: 3.8rem;
	font-size: 1.8rem;
	text-align: center
}

.socials_.style-02.style-02-small .social-icon {
	width: 3rem;
	height: 3rem;
	line-height: 2.8rem;
	font-size: 1.2rem
}

.socials_.style-03 .social-label {
	display: none
}

.socials_.style-03 a.social-icon {
	width: 4.6rem;
	height: 4.6rem;
	font-size: 1.8rem;
	line-height: 4.6rem;
	margin-bottom: 10px;
	border-radius: 50px;
	border: thin solid #e1e2e6
}

.socials_.social-icons-vertical {
	margin-bottom: 2rem
}

.socials_.social-icons-vertical .socials>li {
	margin-right: 0
}

.socials_.social-icons-vertical a.social-icon {
	width: 4rem;
	height: 4rem;
	font-size: 1.6rem;
	line-height: 4rem
}

@media (min-width:992px) {
	.socials_.social-icons-vertical {
		flex-direction: column;
		text-align: center;
		padding-bottom: 4rem
	}

	.entry-fullwidth .socials_.social-icons-vertical {
		margin-bottom: 0
	}

	.socials_.social-icons-vertical .social-label {
		margin-right: 0;
		margin-bottom: 1.1rem
	}

	.socials_.social-icons-vertical .social-icon {
		margin-bottom: 1rem
	}

	.socials_.social-icons-vertical .social-icon+.social-icon {
		margin-left: 0
	}
}

.spr-starrating,
.spr-starratings {
	line-height: 1
}

.spr-starrating [class*=" spr-icon-"]:before,
.spr-starrating [class^=spr-icon-]:before,
.spr-starratings [class*=" spr-icon-"]:before,
.spr-starratings [class^=spr-icon-]:before {
	width: 1.2em;
	text-align: left;
	line-height: 1;
	font-size: 1.4rem;
	vertical-align: middle
}

.spr-starrating .spr-icon,
.spr-starratings .spr-icon {
	width: auto;
	height: auto;
	line-height: 1;
	top: -2px;
	font-size: 1.3rem !important
}

.spr-starrating .spr-icon-star,
.spr-starratings .spr-icon-star {
	color: #ffc107
}

.spr-starrating .spr-icon {
	top: 0
}

.spr-starrating [class*=" spr-icon-"]:before,
.spr-starrating [class^=spr-icon-]:before {
	font-size: 1.3rem
}

.spr-badge-caption {
	font-size: 1.3rem;
	color: #ccc
}

.spr-icon.spr-icon-star-empty {
	opacity: 1 !important;
	color: #ccc
}

.spr-form-label {
	margin-bottom: .5rem
}

.spr-form-input {
	padding-left: 8px;
	padding-right: 8px;
	border: 1px solid #a9a9a9;
	box-shadow: none
}

.spr-form-input>.spr-form-input-textarea {
	padding: 0;
	min-width: 100%;
	border: none
}

.spr-form-input.spr-starrating {
	border: none
}

.spr-form-input a {
	border: none
}

.spr-form-review-rating .spr-icon.spr-icon-star-empty {
	color: #ffc107
}

.spr-form-review-rating .spr-icon-star-hover {
	color: #ffc107
}

.tab-details-product .box-list-reviews .spr-header-title {
	display: none
}

.tab-details-product .box-list-reviews .spr-container {
	padding: 0;
	border: none
}

.spr-badge-starrating {
	margin: 0 !important
}

.spr-badge-caption {
	margin-left: 3px !important
}

.bg-pattern {
	position: relative;
	overflow: hidden
}

.bg-pattern .bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	transition: all .1s ease
}

.bg-pattern .bg img {
	max-width: none
}

.kt_banner_all_page p {
	font-size: 1.8rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto
}

@media (max-width:768px) {
	.kt_banner_all_page p {
		font-size: 1.4rem
	}
}

.table_suggest {
	margin-bottom: 0;
	width: 100%;
	display: table;
	max-width: 100%
}

.table-cell-top {
	display: table-cell;
	vertical-align: middle
}

.kt-products-suggest {
	position: fixed;
	bottom: 25px;
	left: 15px;
	z-index: 100;
	background: #fff;
	transform: translateZ(0);
	-webkit-transition: transform .25s ease-in-out;
	-moz-transition: transform .25s ease-in-out;
	-ms-transition: transform .25s ease-in-out;
	-o-transition: transform .25s ease-in-out;
	transition: transform .25s ease-in-out;
	box-shadow: rgba(116, 116, 116, .05) 0 0 4px, rgba(32, 32, 32, .05) 0 0 8px !important;
	-webkit-box-shadow: rgba(116, 116, 116, .05) 0 0 4px, rgba(32, 32, 32, .05) 0 0 8px !important;
	-moz-box-shadow: rgba(116, 116, 116, .05) 0 0 4px, rgba(32, 32, 32, .05) 0 0 8px !important;
	width: 290px
}

.kt-products-suggest:before {
	content: '';
	display: inline-block;
	z-index: -1;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .05);
	-webkit-transition: box-shadow .25s ease-in-out;
	-moz-transition: box-shadow .25s ease-in-out;
	-ms-transition: box-shadow .25s ease-in-out;
	-o-transition: box-shadow .25s ease-in-out;
	transition: box-shadow .25s ease-in-out;
	transition-property: box-shadow;
	transition-duration: .25s;
	transition-timing-function: ease-in-out;
	transition-delay: initial
}

.kt-products-suggest:hover {
	transform: translate(0, -4px);
	-webkit-transition: transform .25s ease-in-out;
	-moz-transition: transform .25s ease-in-out;
	-ms-transition: transform .25s ease-in-out;
	-o-transition: transform .25s ease-in-out;
	transition: transform .25s ease-in-out
}

.kt-products-suggest:hover:before {
	box-shadow: rgba(45, 45, 45, .05) 0 1px 1px, rgba(49, 49, 49, .05) 0 2px 2px, rgba(42, 42, 42, .05) 0 4px 4px, rgba(49, 49, 49, .05) 0 16px 16px, rgba(35, 35, 35, .05) 0 32px 32px;
	-webkit-transition: box-shadow .25s ease-in-out;
	-moz-transition: box-shadow .25s ease-in-out;
	-ms-transition: box-shadow .25s ease-in-out;
	-o-transition: box-shadow .25s ease-in-out;
	transition: box-shadow .25s ease-in-out
}

.kt-products-suggest .product-suggest {
	position: relative;
	display: block
}

.kt-products-suggest .suggest-close {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	height: 20px;
	width: 20px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	background-color: #111;
	text-decoration: none;
	font-size: 18px;
	cursor: pointer;
	transition: color .4s, background-color .4s, border-color .4s, opacity .4s;
	outline: 0
}

.kt-products-suggest .table_suggest .table-cell-top:not(.img) {
	padding: 0 10px
}

.kt-products-suggest .table_suggest .table-cell-top.img {
	width: 85px
}

.kt-products-suggest .table_suggest a {
	letter-spacing: .3px;
	text-decoration: none;
	display: block;
	margin-bottom: 0;
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.5;
	text-transform: uppercase;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	float: left;
	width: 100%
}

.kt-products-suggest .price {
	margin-top: 10px;
	display: block
}

.from-ago,
.minutes-ago {
	font-size: 12px
}

.kt_progress_bar .count {
	padding: 2px 5px;
	font-weight: 700;
	border-radius: 3px;
	transition: all .3s ease
}

.kt_progress_bar .items-count p {
	padding-bottom: 5px;
	margin: 0
}

.product_delivery #fromDate,
.product_delivery #toDate {
	border-bottom: 1px solid
}

.realTime #number_counter {
	padding: 0 4px;
	border-radius: 3px;
	color: #fff
}

.kt_slideshow,
.kt_slideshowSimple {
	overflow: hidden
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	pointer-events: auto
}

.swiper-button-next.swiper-button-disabled.swiper-button-lock,
.swiper-button-prev.swiper-button-disabled.swiper-button-lock {
	display: none
}

.swiper-button-next,
.swiper-button-prev {
	background-image: none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.swiper-button-next:before,
.swiper-button-prev:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

.swiper-container:not(.swiper-container-initialized) .swiper-button-next,
.swiper-container:not(.swiper-container-initialized) .swiper-button-prev,
.swiper-container:not(.swiper-container-initialized)+.swiper-buttons .swiper-button-next,
.swiper-container:not(.swiper-container-initialized)+.swiper-buttons .swiper-button-prev {
	opacity: 0
}

@media (max-width:768px) {

	.swiper-button-next,
	.swiper-button-prev {
		min-width: 40px
	}

	.swiper-button-next {
		right: 0
	}

	.swiper-button-prev {
		left: 0
	}
}

.swiper-container-has-nav .swiper-button-next,
.swiper-container-has-nav .swiper-button-prev {
	display: inline-block
}

.swiper-container-has-nav+.swiper-buttons .swiper-button-next,
.swiper-container-has-nav+.swiper-buttons .swiper-button-prev {
	display: inline-block
}

.swiper-container-horizontal>.swiper-scrollbar {
	left: 0;
	bottom: 0;
	width: 100%
}

.swiper-buttons {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.swiper-buttons>.content-buttons {
	height: 100%
}

.swiper-fixed-fshadow .swiper-buttons {
	height: calc(100% - 190px);
	height: -o-calc(100% - 190px);
	height: -ms-calc(100% - 190px);
	height: -moz-calc(100% - 190px);
	height: -webkit-calc(100% - 190px)
}

.swiper-fixed-fshadow .swiper-pagination-outside .swiper-buttons {
	height: calc(100% - 231px);
	height: -o-calc(100% - 231px);
	height: -ms-calc(100% - 231px);
	height: -moz-calc(100% - 231px);
	height: -webkit-calc(100% - 231px)
}

.swiper-pagination-bullet {
	background: 0 0;
	border: 1px solid #ccc;
	height: 8px;
	width: 8px;
	border-radius: 5px;
	opacity: 1;
	-webkit-transition: width .3s ease;
	-moz-transition: width .3s ease;
	-ms-transition: width .3s ease;
	-o-transition: width .3s ease;
	transition: width .3s ease
}

.swiper-pagination-bullet-active {
	width: 18px;
	border-radius: 5px;
	background-color: #ccc
}

.swiper-pagination-white .swiper-pagination-bullet {
	border-color: #fff
}

.swiper-pagination-white .swiper-pagination-bullet-active {
	background-color: #fff;
	border-color: #fff
}

.swiper-pagination-primary .swiper-pagination-bullet {
	border-color: var(--primary)
}

.swiper-pagination-primary .swiper-pagination-bullet-active {
	background-color: var(--primary);
	border-color: var(--primary)
}

.swiper-no-overflow {
	overflow: visible
}

.swiper-no-overflow .swiper-slide-next .lazyload,
.swiper-no-overflow .swiper-slide-prev .lazyload {
	visibility: visible !important
}

.nav-mode-white .swiper-button-next,
.nav-mode-white .swiper-button-prev {
	color: #fff
}

.nav-top-left+.swiper-buttons,
.nav-top-right+.swiper-buttons {
	position: absolute;
	top: -3.8rem;
	right: 0;
	width: 8rem
}

.nav-top-left+.swiper-buttons {
	left: 0;
	right: auto
}

.nav-center-center:not(:hover) .swiper-button-next,
.nav-center-center:not(:hover) .swiper-button-prev {
	opacity: 0;
	visibility: hidden
}

.nav-center-center:not(:hover) .swiper-button-next {
	right: -1rem
}

.nav-center-center:not(:hover) .swiper-button-prev {
	left: -1rem
}

@media (min-width:768px) {
	.nav-center-center:not(:hover) .swiper-button-next {
		right: -3.5rem
	}

	.nav-center-center:not(:hover) .swiper-button-prev {
		left: -3.5rem
	}
}

.nav-center-outside .swiper-button-next {
	right: -1rem
}

.nav-center-outside .swiper-button-prev {
	left: -1rem
}

@media (min-width:1200px) {

	.nav-center-outside .swiper-button-next,
	.nav-center-outside .swiper-button-prev {
		width: 44px
	}

	.nav-center-outside:not(:hover) .swiper-button-next,
	.nav-center-outside:not(:hover) .swiper-button-prev {
		opacity: 0;
		visibility: hidden
	}

	.nav-center-outside:not(:hover) .swiper-button-next {
		right: 1.5rem
	}

	.nav-center-outside:not(:hover) .swiper-button-prev {
		left: 1.5rem
	}

	.nav-center-outside .swiper-button-next {
		right: -4.5rem
	}

	.nav-center-outside .swiper-button-prev {
		left: -4.5rem
	}
}

.nav-top-left .swiper-buttons,
.nav-top-right .swiper-buttons {
	width: auto;
	height: auto
}

.nav-top-left .swiper-button-next,
.nav-top-left .swiper-button-prev,
.nav-top-right .swiper-button-next,
.nav-top-right .swiper-button-prev {
	min-width: auto;
	position: relative;
	top: auto;
	bottom: auto;
	right: auto !important;
	left: auto !important
}

.nav-top-right .swiper-buttons {
	right: 0;
	left: auto
}

.nav-mode-primary .swiper-button-next,
.nav-mode-primary .swiper-button-prev {
	color: var(--primary)
}

.nav-mode-white .swiper-button-next,
.nav-mode-white .swiper-button-prev {
	color: #fff
}

.nav-style1 .swiper-button-next,
.nav-style1 .swiper-button-prev,
.nav-style2 .swiper-button-next,
.nav-style2 .swiper-button-prev {
	border-radius: 50px;
	background-color: transparent;
	width: 40px;
	height: 40px;
	font-size: 1.5em
}

@media (min-width:768px) {

	.nav-style1.nav-center-outside .swiper-button-next,
	.nav-style2.nav-center-outside .swiper-button-next {
		right: -4.5rem
	}

	.nav-style1.nav-center-outside .swiper-button-prev,
	.nav-style2.nav-center-outside .swiper-button-prev {
		left: -4.5rem
	}

	.nav-style1.nav-center-outside:not(:hover) .swiper-button-next,
	.nav-style1.nav-center-outside:not(:hover) .swiper-button-prev,
	.nav-style2.nav-center-outside:not(:hover) .swiper-button-next,
	.nav-style2.nav-center-outside:not(:hover) .swiper-button-prev {
		opacity: 0;
		visibility: hidden
	}

	.nav-style1.nav-center-outside:not(:hover) .swiper-button-next,
	.nav-style2.nav-center-outside:not(:hover) .swiper-button-next {
		right: 1.5rem
	}

	.nav-style1.nav-center-outside:not(:hover) .swiper-button-prev,
	.nav-style2.nav-center-outside:not(:hover) .swiper-button-prev {
		left: 1.5rem
	}
}

@media (min-width:1200px) {

	.nav-style1.nav-center-outside .swiper-button-next,
	.nav-style2.nav-center-outside .swiper-button-next {
		right: -5.5rem
	}

	.nav-style1.nav-center-outside .swiper-button-prev,
	.nav-style2.nav-center-outside .swiper-button-prev {
		left: -5.5rem
	}
}

.nav-style1 .swiper-button-next,
.nav-style1 .swiper-button-prev {
	background-color: #fff
}

.nav-style1.nav-mode-white .swiper-button-next,
.nav-style1.nav-mode-white .swiper-button-prev {
	color: #333
}

.nav-style2 .swiper-button-next,
.nav-style2 .swiper-button-prev {
	border-width: 1px;
	border-style: solid;
	border-color: #fff
}

.nav-style2.nav-mode-default .swiper-button-next,
.nav-style2.nav-mode-default .swiper-button-prev {
	border-color: var(--primary)
}

.nav-style2.nav-mode-primary .swiper-button-next,
.nav-style2.nav-mode-primary .swiper-button-prev {
	border-color: var(--primary)
}

.nav-style3.swiper-container-has-nav .swiper-button-next,
.nav-style3.swiper-container-has-nav .swiper-button-prev {
	display: inline-block;
	height: 100%;
	top: 0;
	left: 0;
	margin-top: 0;
	background: rgba(255, 255, 255, .75)
}

.nav-style3.swiper-container-has-nav .swiper-button-next:after,
.nav-style3.swiper-container-has-nav .swiper-button-prev:after {
	content: '';
	display: block;
	width: 10px;
	height: 100%;
	position: absolute;
	left: 100%;
	top: 0;
	border-radius: 20px 0 0 20px;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(nav-prev-shadow.png)
}

.nav-style3.swiper-container-has-nav .swiper-button-next:hover,
.nav-style3.swiper-container-has-nav .swiper-button-prev:hover {
	color: var(--primary);
	background: #fff
}

@media (max-width:768px) {

	.nav-style3.swiper-container-has-nav .swiper-button-next,
	.nav-style3.swiper-container-has-nav .swiper-button-prev {
		min-width: auto
	}
}

.nav-style3.swiper-container-has-nav .swiper-button-next {
	right: 0;
	left: auto
}

.nav-style3.swiper-container-has-nav .swiper-button-next:after {
	left: auto;
	right: 100%;
	background-image: url(nav-next-shadow.png)
}

.nav-style3.swiper-container-has-nav .swiper-button-disabled {
	opacity: 0
}

.nav-style3.swiper-container-has-dot.swiper-container-has-nav .swiper-button-next,
.nav-style3.swiper-container-has-dot.swiper-container-has-nav .swiper-button-prev {
	height: 92%
}

.swiper-fixed-fshadow .nav-style3.swiper-container-has-dot.swiper-container-has-nav .swiper-button-next,
.swiper-fixed-fshadow .nav-style3.swiper-container-has-dot.swiper-container-has-nav .swiper-button-prev {
	top: 11px
}

.swiper-fixed-fshadow .nav-style3.swiper-container-has-nav .swiper-button-next,
.swiper-fixed-fshadow .nav-style3.swiper-container-has-nav .swiper-button-prev {
	height: calc(100% - 2.2rem);
	height: -o-calc(100% - 2.2rem);
	height: -ms-calc(100% - 2.2rem);
	height: -moz-calc(100% - 2.2rem);
	height: -webkit-calc(100% - 2.2rem);
	top: 1.1rem
}

.swiper-slide:not(.swiper-slide-visible) .shopify-model-viewer-ui {
	visibility: hidden
}

.swiper-container-fade .swiper-slide:not(.swiper-slide-visible) {
	opacity: 0 !important
}

footer {
	width: 100%;
	font-weight: 300;
	font-size: 1.4rem
}

footer .widget {
	margin-bottom: 4rem
}

footer .widget-title {
	font-weight: 500;
	font-size: 1.6rem;
	letter-spacing: -.01em;
	margin-top: 0;
	margin-bottom: 1.9rem;
	position: relative
}

@media (max-width:575px) {
	footer .widget-title {
		padding-bottom: 1.5rem;
		border-bottom: 1px solid;
		cursor: pointer;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: justify;
		justify-content: space-between
	}

	footer .widget-title:after {
		content: '\f2c2';
		display: inline-block;
		font-family: molla;
		line-height: 1;
		transition: all .3s
	}

	footer .widget-title.onHide:after {
		content: '\f28e'
	}

	footer .widget-title+.widget-list,
	footer .widget-title>div {
		display: none
	}
}

footer .widget-about-title {
	display: block;
	font-weight: 300;
	font-size: 1.3rem;
	letter-spacing: 0;
	margin-bottom: .4rem
}

.footer-middle {
	padding: 6.7rem 0 2.2rem
}

.footer-logo {
	margin-bottom: 2rem;
	margin-top: -.8rem
}

.widget-about p {
	max-width: 255px
}

.widget-about p:last-of-type {
	margin-bottom: 3.2rem
}

.widget-about-info {
	font-weight: 400;
	font-size: 2rem;
	letter-spacing: -.01em;
	line-height: 1.3;
	padding-top: .7rem
}

.widget-newsletter form {
	padding-top: .7rem
}

.widget-newsletter .form-control {
	height: 4.6rem;
	padding-top: 1.15rem;
	padding-bottom: 1.15rem;
	background-color: #fff;
	border-right-width: 0
}

.widget-newsletter .form-control:not(:focus) {
	border-color: #dadada
}

.widget-newsletter .btn {
	min-width: 4.6rem;
	font-size: 1.5rem;
	padding: 1.1rem 1rem
}

.widget-newsletter .btn i {
	margin: 0 !important
}

.widget-list {
	margin-bottom: 0
}

.widget-list li:not(:last-child) {
	margin-bottom: .4rem
}

@media (min-width:576px) {
	.widget-list {
		display: block !important
	}
}

.widget-call {
	position: relative;
	font-size: 1.3rem;
	padding: 2.1rem 2rem 1.6rem 7rem;
	border: thin solid #ebebeb;
	border-radius: .3rem;
	line-height: 1.25;
	max-width: 270px
}

.widget-call i {
	display: inline-block;
	font-size: 3rem;
	line-height: 1;
	position: absolute;
	left: 2rem;
	top: 50%;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%)
}

.widget-call a {
	font-weight: 400;
	font-size: 2rem
}

.widget-call a:focus,
.widget-call a:hover {
	box-shadow: none
}

.footer-bottom {
	border-top-width: 0px;
	border-top-style: solid;
	padding-top: 1.1rem;
	padding-bottom: 1.9rem
}

.footer-payments {
	margin-bottom: 0
}

.payment_image {
	padding-top: .5rem;
	display: block
}

.footer-menu {
	display: inline-block;
	align-items: center;
	margin-bottom: .8rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0
}

.footer-menu li {
	position: relative;
	display: inline-block
}

.footer-menu li:before {
	content: '';
	display: inline-block;
	width: 1px;
	height: 1.2rem;
	position: absolute;
	left: -1.1rem;
	top: 50%;
	margin-top: -.6rem;
	background-color: #b5b5b5
}

.footer-menu li:first-child:before {
	display: none
}

.footer-menu li+li {
	margin-left: 2.1rem
}

.footer-menu a {
	box-shadow: 0 1px 0 #b5b5b5
}

@media screen and (min-width:992px) {
	.footer-copyright {
		margin-bottom: 0;
		text-align: left;
		display: inline-block
	}

	.footer-menu {
		margin-bottom: 0;
		margin-left: .6rem;
		margin-right: 0
	}
}

.footer_02 .widget-about p {
	max-width: none
}

.footer_03 .widget-about p {
	max-width: 540px
}

.footer_03 .widget-newsletter .input-group-append .btn {
	border-left: none
}

.footer_06 .socials_.style-02 .social-icon {
	border: none
}

.footer_07 .widget-title {
	font-size: 1.3rem
}


.title-lg {
	font-weight: 600 !important;
	font-size: 3rem !important;
	letter-spacing: -.01em !important
}

.title-sm {
	font-size: 2rem !important
}

.title-separator {
	font-weight: 300;
	color: #ccc
}

.title-desc {
	color: #777;
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.01em;
	margin-bottom: 0
}

.title-link {
	font-weight: 500
}

.title-link i {
	font-size: 1.5rem
}

.title-link i:last-child {
	margin-left: .5rem
}

.heading {
	margin-bottom: 1.6rem
}

.heading.heading-flex {
	display: flex;
	flex-direction: column;
	text-align: center
}

.heading .title {
	margin-bottom: 0
}

.heading.heading-center {
	text-align: center
}

.heading.heading-center .title {
	margin-bottom: 1.5rem
}

.heading.heading-center .title-lg {
	margin-bottom: 2.4rem
}

.heading-right {
	margin-top: .5rem
}

@media (min-width:992px) {
	.heading.heading-flex {
		align-items: center;
		flex-direction: row;
		text-align: left
	}

	.heading-right {
		margin-top: 0;
		margin-left: auto
	}
}

.heading.style_2 {
	margin-left: 2rem;
	display: flex;
	justify-content: space-between;
	background-color: #333;
	align-items: center
}

.heading.style_2 .title {
	margin-bottom: 0;
	margin-left: -1.4rem;
	padding: 1.5rem 3.5rem;
	position: relative;
	font-size: 2rem;
	letter-spacing: -.025rem;
	color: #333;
	font-weight: 400
}

.heading.style_2 .title span {
	position: relative
}

.heading.style_2 .title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #fcb941;
	transform: skewX(-16deg)
}

.heading.style_2 .button-more .sub-title,
.heading.style_2 .button-more a {
	padding: 1.1rem 3.5rem 1.1rem 4rem;
	font-size: 1.4rem;
	text-transform: uppercase
}

@media (max-width:767px) {
	.heading.style_2 {
		margin-left: 0;
		-ms-flex-pack: center;
		justify-content: center
	}

	.heading.style_2>div {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}

	.heading.style_2 .button-more,
	.heading.style_2 .title {
		width: 100%;
		-ms-flex-pack: center;
		justify-content: center
	}

	.heading.style_2 .title {
		margin-left: 0;
		text-align: center
	}

	.heading.style_2 .title::before {
		transform: none
	}
}

.section-title {
	position: relative
}

.section-title h3 {
	margin-bottom: 0;
	position: relative;
	display: inline-block
}

.section-title .sub-title {
	margin-bottom: 0;
	color: #555;
	display: block;
	position: relative;
	line-height: 1.5;
	letter-spacing: -.01em
}

.dark-mode .section-title h3 {
	color: #fff
}

.dark-mode .section-title .sub-title {
	color: #999
}

.icon-boxes-container .swiper-scrollbar {
	-webkit-transition: opacity .3s;
	transition: opacity .3s
}

.icon-boxes-container:not(:hover) .swiper-scrollbar {
	opacity: .2
}

.icon-boxes-container .icon-box.icon-box-sm {
	font-size: 1.4rem;
	line-height: 1.86
}

@media screen and (max-width:1199px) {
	.icon-boxes-container .icon-box-sm br {
		display: none
	}
}

.icon-box {
	color: #999;
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.01em;
	margin-bottom: 4rem
}

.icon-box a {
	color: #999
}

.icon-box-title {
	color: var(--cl_title);
	font-weight: var(--title_f_w);
	font-size: 1.8rem;
	letter-spacing: -.025em;
	margin-bottom: .9rem
}

.icon-box-icon {
	color: var(--cl_icon);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	line-height: 1;
	margin-bottom: 2rem
}

.icon-box-icon a {
	color: inherit
}

.icon-box-content p {
	color: var(--cl_desc)
}

.icon-box-content p:last-child {
	margin-bottom: 0
}

.icon-box-left {
	position: relative;
	padding-left: 70px
}

.icon-box-left .icon-box-icon {
	position: absolute;
	left: 0;
	top: -1rem
}

.icon-box-circle .icon-box-icon {
	width: 7rem;
	height: 7rem;
	border-radius: 50%;
	color: #fff
}

.icon-box-circle.icon-box-left {
	padding-left: 100px
}

.icon-box-circle.icon-box-left .icon-box-icon {
	left: 1rem
}

.icon-box-card {
	padding: 6.5rem 2rem 6rem
}

.icon-box-card .icon-box-icon {
	margin-bottom: 1.3rem
}

.icon-box-side {
	display: flex;
	width: 100%;
	padding-top: 2rem;
	padding-bottom: 2rem;
	margin-bottom: 0
}

.icon-box-side p {
	margin-bottom: 0
}

.icon-box-side .icon-box-icon {
	display: inline-block;
	line-height: 0;
	min-width: 7rem;
	text-align: center;
	margin-bottom: 0
}

.icon-box-side .icon-box-title {
	letter-spacing: -.01em;
	margin-top: .2rem;
	margin-bottom: 0
}

.icon-boxes-separator [class*=col-]+[class*=col-]:before {
	content: '';
	display: block;
	width: .1rem;
	height: 5.3rem;
	background-color: #e9e9e9;
	position: absolute;
	left: -.3rem;
	top: 50%;
	margin-top: -2.55rem
}

.icon-box-card-border {
	padding: 3rem 2rem 3.2rem;
	border: thin solid #ebebeb;
	-webkit-transition: all .3s;
	transition: all .3s
}

.icon-box-card-border .icon-box-icon {
	font-size: 3rem;
	margin-bottom: 1.3rem
}

.icon-box-card-border:hover * {
	color: #fff !important
}

.testimonial-icon {
	position: relative
}

.testimonial-icon:before {
	font-family: molla;
	content: '\f10d';
	display: inline-block;
	font-style: normal;
	font-weight: 400;
	font-size: 2.6rem;
	line-height: 1;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem
}

.testimonial {
	margin-bottom: 0
}

.testimonial .img {
	display: inline-block !important;
	width: 70px;
	border-radius: 50%;
	overflow: hidden;
	margin-top: 1rem;
	margin-bottom: 2.1rem
}

.testimonials-slide .style_02 .testimonial-icon:after,
.testimonials-slide .style_02 .testimonial-icon:before {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.testimonials-slide .style_02 .testimonial-icon:before {
	width: 5.6rem;
	height: 5.6rem;
	border-radius: 50%;
	font-size: 1.6rem;
	line-height: 1;
	color: #fff;
	margin-bottom: 3.6rem
}

.testimonials-slide .style_02 .testimonial-icon:after {
	content: '';
	position: absolute;
	top: .8rem;
	left: 50%;
	margin-left: -35px;
	width: 7rem;
	height: 7rem;
	border-radius: 50%;
	border-width: 1px;
	border-style: solid;
	border-color: #f9f9f9
}

.testimonials-slide .style_02 blockquote {
	font-style: normal;
	padding-bottom: 4.2rem
}

.testimonials-slide .style_02 blockquote p {
	max-width: 840px
}

.testimonials-slide .style_02 h4 {
	font-size: 2rem;
	font-weight: 400
}

.testimonials-slide .style_03 .quote {
	font-size: 10rem;
	font-weight: 400;
	font-family: Montserrat;
	letter-spacing: 0;
	color: #222;
	height: 9rem;
	margin-top: -4.5rem;
	overflow: hidden;
	font-style: normal;
	display: inline-block
}

.testimonials-slide .style_03 p {
	font-size: 1.8rem;
	font-family: 'Playfair Display';
	color: #222;
	letter-spacing: 0
}

.testimonials-slide .style_03 cite {
	font-size: 1.3rem;
	font-weight: 400
}

.testimonials-slide .style_04 .rate_star {
	font-size: 1.6rem
}

.testimonials-slide .style_04 .img {
	margin: -8.5rem auto 0;
	z-index: 1;
	position: relative;
	width: auto;
	max-width: 10rem
}

.testimonials-slide .style_04 .testimonial {
	padding: 2.5rem 3rem 4.5rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	z-index: 0;
	position: relative;
	margin-top: 7rem;
	height: calc(100% - 7rem);
	height: -webkit-calc(100% - 7rem);
	height: -ms-calc(100% - 7rem)
}

.testimonials-slide .style_04 h4 {
	font-size: 2rem;
	font-weight: 700;
	font-style: normal;
	margin-bottom: .5rem;
	margin-top: 1rem
}

.testimonials-slide .style_04 p {
	font-family: 'Playfair Display';
	color: #666;
	letter-spacing: 0;
	margin-bottom: .5rem
}

.testimonials-slide .style_04 cite {
	font-size: 1.6rem;
	font-weight: 700
}

.testimonials-slide .style_05 .img {
	width: 9.8rem
}

.testimonials-slide .style_05 .rate_star {
	font-size: 1.6rem
}

.testimonials-slide .style_05 .testimonial {
	font-size: 1.4rem
}

.testimonials-slide .style_05 h4 {
	font-size: 1.6rem;
	font-weight: 600;
	font-style: normal;
	margin-bottom: .5rem;
	margin-top: 1rem
}

.testimonials-slide .style_05 p {
	color: #666;
	letter-spacing: 0;
	margin-bottom: .5rem;
	font-weight: 300;
	line-height: 1.6;
	font-style: italic
}

.testimonials-slide .style_05 cite {
	font-style: normal
}

.testimonials-slide .style_06 blockquote {
	font-style: normal
}

.testimonials-slide .style_06 blockquote p {
	color: #333;
	max-width: 74rem;
	font-family: 'Playfair Display';
	font-size: 1.8rem;
	letter-spacing: .02rem
}

.testimonials-slide .style_06 cite {
	color: #999;
	font-size: 1.6rem;
	font-weight: 400
}

.testimonials-slide .style_06 .img {
	width: 150px
}

.testimonials-slide .style_07 blockquote {
	font-style: normal
}

.testimonials-slide .style_07 blockquote h4 {
	color: #222;
	font-family: var(--f_family_second, var(--f_family));
	font-size: 2rem;
	letter-spacing: -.5px;
	margin: 1.5rem 0 1.3rem 0;
	line-height: 1.1
}

.testimonials-slide .style_07 blockquote p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 1.7rem;
	line-height: 1.8em;
	margin: 0 auto 22px auto;
	color: #333;
	max-width: 81.5rem
}

.testimonials-slide .style_07 cite {
	color: #333;
	font-size: 1.5rem;
	font-weight: 400
}

.testimonials-slide .style_07 .img {
	width: 150px
}

.testimonials-slide .style_08 blockquote.testimonial {
	max-width: 452px;
	margin-left: auto;
	margin-right: auto
}

.testimonials-slide .style_08 blockquote p {
	font-style: normal;
	color: #666;
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: -.18px;
	margin: 0 0 25px 0
}

.testimonials-slide .style_08 blockquote cite {
	color: var(--secondary)
}

.testimonials-slide .style_08 blockquote span.rate_munberic {
	font-weight: 600;
	margin: 0 0 5px;
	color: #d33e3e;
	display: block;
	font-size: 3.4rem;
	font-style: normal
}

.testimonials-slide .style_08 .testimonial--wrap {
	padding: 0 10px;
	border-style: solid;
	border-width: 0 0 0 1px;
	border-color: transparent;
	height: 100%
}

.testimonials-slide .style_08.swiper-slide-visible:nth-child(2n) .testimonial--wrap {
	border-color: #ebebeb
}

.testimonials-slide .style_08 .testimonial .img {
	display: block !important;
	border-radius: 0;
	width: auto;
	margin: 2rem auto 0;
	text-align: center
}

.md_socials_and_customers_say .section-title h3 {
	margin-bottom: 2.8rem
}

.md_socials_and_customers_say .sub-title {
	margin-bottom: 3.5rem
}

.md_socials_and_customers_say blockquote {
	font-size: 1.4rem;
	line-height: 1.875
}

.md_socials_and_customers_say cite {
	font-size: 1.6rem
}

.md_socials_and_customers_say .testimonial-icon:before {
	margin-top: 0;
	font-size: 1.8rem
}

.md_socials_and_customers_say .testimonial-icon cite>span {
	margin-top: 1rem
}

.md_socials_and_customers_say .col-lg-6+.col-lg-6:before {
	content: '';
	width: .1rem;
	display: block;
	height: 80%;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-color: #ebebeb
}

@media screen and (max-width:991px) {
	.md_socials_and_customers_say .col-lg-6+.col-lg-6:before {
		height: .1rem;
		width: 80%;
		left: 10%;
		top: 0;
		bottom: auto
	}
}

.accordion {
	margin-bottom: 3rem
}

.card {
	border-radius: 0;
	margin-bottom: 0;
	border: none;
	border-top: thin solid #ebebeb
}

.card:last-child {
	border-bottom: thin solid #ebebeb
}

.card-header {
	position: relative;
	padding: 0;
	border: none;
	font-weight: 700;
	line-height: 1.5;
	background-color: transparent;
	margin: 0
}

.card-header::after {
	display: block;
	clear: both;
	content: ''
}

.card-title {
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 0
}

.card-title a {
	display: block;
	padding: 1.7rem 4rem 1.7rem 1.2rem;
	position: relative;
	border: none;
	background-color: transparent;
	outline: 0 !important
}

.card-title a i {
	min-width: 17px;
	margin-right: 2.4rem
}

.card-title a:before {
	content: '\e802';
	display: inline-block;
	position: absolute;
	right: 1.2rem;
	top: 50%;
	font-family: molla;
	line-height: 1;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transition: all .3s
}

.card-title a.collapsed {
	color: #333
}

.card-title a.collapsed:focus,
.card-title a.collapsed:hover {
	color: var(--primary)
}

.card-title a.collapsed:before {
	content: '\f110';
	color: #8c8c8c;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%)
}

.card-body {
	padding: .4rem 4rem 1.8rem 1.2rem;
	border: none;
	border-radius: 0
}

.accordion-icon .card-body {
	padding-left: 5.5rem !important
}

.accordion-plus .card-title a:before {
	content: '\f28e'
}

.accordion-plus .card-title a.collapsed:before {
	content: '\f2c2'
}

.accordion-rounded .card:first-child {
	border-radius: .3rem .3rem 0 0
}

.accordion-rounded .card:last-child {
	border-radius: 0 0 .3rem .3rem
}

.card.card-box .card-title a {
	padding-left: 2rem;
	padding-right: 2rem
}

.card.card-box .card-title a:before {
	right: 2rem
}

.card.card-box .card-title a i {
	margin-right: 1.4rem
}

.card.card-box .card-body {
	padding: 1rem 2rem 2rem
}

.card.card-sm .card-title {
	font-size: 1.6rem;
	letter-spacing: -.01em
}

.card.card-sm .card-title a {
	padding-top: 2.1rem;
	padding-bottom: 2.1rem
}

.card.card-sm .card-title a:before {
	right: 2rem
}

.card.card-sm .card-body {
	padding: 1rem 2rem 2rem
}

.card.bg-light,
.card.bg-white {
	background-color: #fff !important;
	border: thin solid #ebebeb
}

.card.bg-light .card-title a,
.card.bg-white .card-title a {
	background-color: #fff
}

.card.bg-light .card-title a.collapsed {
	background-color: #fafafa
}

.nav-link:focus {
	outline: 0 !important
}

.nav.nav-tabs {
	border-bottom-right-radius: .3rem;
	border: thin solid #d7d7d7;
	border-top-width: 0;
	border-right-width: 0;
	border-left-width: 0
}

.nav.nav-tabs .nav-link {
	color: #999;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.025em;
	padding: .85rem 2.2rem;
	border-top-left-radius: .3rem;
	border-top-right-radius: .3rem;
	text-align: center
}

.nav.nav-tabs .nav-link:focus,
.nav.nav-tabs .nav-link:hover {
	border-color: transparent
}

.nav.nav-tabs .nav-item+.nav-item {
	margin-left: .1rem
}

.nav.nav-tabs .nav-item .nav-link.active,
.nav.nav-tabs .nav-item.show .nav-link {
	border-color: #d7d7d7;
	border-bottom-color: transparent
}

.nav.nav-tabs.nav-tabs-bg .nav-link:not(.active) {
	border-color: #ebebeb #ebebeb #d7d7d7 #ebebeb;
	background-color: #fafafa
}

.nav.nav-tabs.justify-content-center {
	border-bottom-left-radius: .3rem;
	border-bottom-right-radius: .3rem
}

.tab-content-border {
	border: thin solid #d7d7d7;
	border-radius: .3rem;
	border-top-left-radius: 0;
	border-top-width: 0
}

.justify-content-center+.tab-content-border {
	border-top-left-radius: .3rem
}

.tab-pane {
	padding: 1.4rem 2.2rem
}

.tab-pane p:last-child:not(:first-child) {
	margin-bottom: 0
}

.nav.nav-pills .nav-link {
	color: #999;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.01em;
	padding: .45rem 1rem;
	border-radius: 0;
	text-align: center;
	text-transform: uppercase;
	border: none;
	border-bottom: thin solid transparent;
	background-color: transparent
}

.nav.nav-pills .nav-link:focus {
	outline: 0 !important
}

.nav.nav-pills .nav-item+.nav-item {
	margin-left: 1rem
}

.nav.nav-pills .nav-item .nav-link.active,
.nav.nav-pills .nav-item.show .nav-link {
	border-color: #d7d7d7
}

.nav-pills+.tab-content .tab-pane {
	padding: 1.4rem 1rem
}

.nav-pills+.tab-content .tab-pane p:last-child:not(:first-child) {
	margin-bottom: 0
}

.nav.nav-border-anim .nav-link {
	position: relative;
	border-bottom: none
}

.nav.nav-border-anim .nav-link:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: .1rem;
	transform-origin: right center;
	transform: scale(0, 1);
	transition: transform .3s ease
}

.form-tab .nav.nav-border-anim .nav-link:before {
	height: .2rem
}

.nav.nav-border-anim .nav-link.active:before {
	transform-origin: left center;
	transform: scale(1, 1)
}

.nav.nav-border-anim.nav-pills-mobile .nav-link:before {
	height: .2rem
}

@media (min-width:768px) {
	.tabs-vertical {
		display: flex;
		align-items: flex-start;
		align-items: stretch
	}

	.tabs-vertical .tab-content-border {
		border-top-width: .1rem;
		border-left-width: 0;
		border-bottom-left-radius: 0
	}

	.tabs-vertical .nav {
		flex-shrink: 0
	}

	.tabs-vertical .nav .nav-link {
		min-width: 100px
	}

	.tabs-vertical .nav.nav-tabs {
		border-bottom-width: 0;
		border-right-width: .1rem
	}

	.tabs-vertical .nav.nav-tabs .nav-link {
		border-top-left-radius: .3rem;
		border-top-right-radius: 0;
		border-bottom-left-radius: .3rem
	}

	.tabs-vertical .nav.nav-tabs .nav-item {
		margin-bottom: 0;
		margin-right: -1px
	}

	.tabs-vertical .nav.nav-tabs .nav-item+.nav-item {
		margin-left: 0;
		margin-top: 1px
	}

	.tabs-vertical .nav.nav-tabs .nav-item .nav-link.active,
	.tabs-vertical .nav.nav-tabs .nav-item.show .nav-link {
		border-color: #d7d7d7;
		border-right-color: transparent
	}

	.tabs-vertical .nav.nav-tabs.nav-tabs-bg .nav-link:not(.active) {
		border-color: #ebebeb #d7d7d7 #ebebeb #ebebeb;
		background-color: #fafafa
	}
}

.announcement {
	position: relative
}

.announcement .announcement-item {
	padding-top: .5rem;
	padding-bottom: .5rem
}

@media (max-width:768px) {
	.announcement .announcement-item {
		font-size: 12px
	}
}

.announcement p {
	margin-bottom: 0
}

.announcement .close {
	height: 100%;
	background-color: transparent !important
}

.announcement .close::after,
.announcement .close::before {
	width: 14px
}

.md_call_to_action .bg-image {
	position: relative;
	background-position: center right;
	background-size: cover
}

@media (max-width:767px) {
	.md_call_to_action .bg-image {
		background-size: cover
	}
}

.cta .input-group {
	margin-bottom: 0
}

.cta .form-control {
	height: 4.6rem;
	padding-top: 1.15rem;
	padding-bottom: 1.15rem;
	background-color: #fff
}

.cta .form-control:not(:focus):not(.form-control-white) {
	border-color: #dadada
}

.cta .btn {
	padding-top: 1.15rem;
	padding-bottom: 1.15rem
}

.cta .btn:not(.btn-block) {
	min-width: 170px
}

.cta.bg-image {
	background-color: #f5f5f5
}

.cta-title {
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.2;
	letter-spacing: -.03em;
	margin-bottom: 0
}

.cta-desc {
	margin-bottom: 1.5rem
}

.cta-horizontal .form-control {
	flex-grow: 1;
	margin-right: 2rem
}

.cta-horizontal-box {
	padding-top: 5.2rem;
	padding-bottom: 4.8rem
}

.cta-horizontal-box .cta-desc,
.cta-horizontal-box .form-control {
	margin-bottom: 0
}

.cta-heading {
	padding-top: .7rem;
	margin-bottom: 2.7rem
}

.cta-heading .cta-title {
	margin-bottom: .5rem
}

.cta-text {
	padding-top: .5rem
}

.cta-text .cta-title {
	margin-bottom: 2.1rem
}

.cta-text .cta-desc {
	margin-bottom: 2.3rem
}

.cta-separator {
	position: relative
}

.cta-separator [class*=col-]+[class*=col-]:before {
	content: "";
	width: .1rem;
	display: block;
	height: 80%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-color: #ebebeb
}

.cta-separator.bg-image [class*=col-]+[class*=col-]:before {
	background-color: #dadada
}

.cta-wrapper {
	padding-top: 5.6rem;
	padding-bottom: 5.6rem;
	max-width: 370px;
	margin-left: auto;
	margin-right: auto
}

.cta-wrapper .cta-title {
	margin-bottom: .6rem
}

.cta-wrapper .cta-desc {
	margin-bottom: 2rem
}

.cta-wrapper.cta-text {
	max-width: 330px
}

.cta-wrapper.cta-text .cta-title {
	margin-bottom: 1.6rem
}

.cta-wrapper.cta-text .cta-desc {
	margin-bottom: 2.6rem
}

.cta-border {
	padding-top: 3.9rem;
	padding-bottom: 3.9rem;
	border: 1rem solid #f5f5f5
}

.cta-border .cta-content {
	display: flex;
	align-items: center;
	padding-left: 1.5rem
}

.cta-border .cta-heading {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0;
	padding-top: 0;
	padding-bottom: 2rem
}

.cta-border .cta-title {
	margin: 0
}

.cta-border .cta-text {
	position: relative;
	padding: 0;
	margin-right: 2rem;
	flex-grow: 1;
	padding-left: 3rem
}

.cta-border .cta-text::before {
	content: "";
	display: block;
	background-color: #f5f5f5;
	width: .5rem;
	height: 9rem;
	position: absolute;
	left: -3px;
	top: 50%;
	margin-top: -4.5rem
}

.cta-border p {
	margin-bottom: 0
}

.cta-display .cta-title {
	font-weight: 600;
	font-size: 3rem;
	letter-spacing: -.01em
}

.cta-display .cta-desc {
	font-size: 1.6rem;
	margin-bottom: .5rem
}

@media (min-width:992px) {
	.cta-border .cta-heading {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 26.5%;
		flex: 0 0 26.5%;
		max-width: 26.5%;
		padding-right: 3rem;
		padding-bottom: 0
	}
}

@media (min-width:992px) {
	.cta-border p {
		max-width: 460px
	}
}

@media screen and (max-width:1199px) {
	.cta-horizontal-box {
		padding-left: 3rem;
		padding-right: 3rem
	}
}

@media screen and (max-width:991px) {
	.cta-horizontal-box .cta-desc {
		margin-bottom: 1.5rem
	}
}

.round_mode .cta .input-group input {
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px
}

.round_mode .cta .input-group-append button {
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px
}

@media screen and (max-width:576px) {
	.round_mode .cta .input-group input.form-control {
		border-top-right-radius: 50px;
		border-bottom-right-radius: 50px
	}

	.round_mode .cta .input-group-append button {
		border-top-left-radius: 50px;
		border-bottom-left-radius: 50px
	}
}

@media screen and (max-width:576px) {
	.cta.design_1 .input-group input.form-control {
		width: 100%;
		margin-right: 0;
		margin-bottom: 2rem
	}

	.cta.design_1 .input-group-append {
		width: 100%;
		-ms-flex-pack: center;
		justify-content: center
	}
}

.cta.design_2 .cta-desc {
	font-size: 1.6rem
}

@media (min-width:577px) and (max-width:767px) {
	.cta.design_2 .btn {
		min-width: auto
	}
}

@media screen and (max-width:576px) {
	.cta.design_2 .input-group input.form-control {
		width: 100%;
		margin-right: 0;
		margin-bottom: 2rem
	}

	.cta.design_2 .input-group-append {
		width: 100%;
		-ms-flex-pack: center;
		justify-content: center
	}
}

@media screen and (min-width:992px) {
	.cta.design_3 {
		padding: 3rem 7rem
	}
}

.cta.design_3 form {
	width: 100%;
	max-width: 550px
}

.cta.design_3 .form-control {
	margin-right: 0;
	border-top-left-radius: .3rem;
	border-bottom-left-radius: .3rem
}

.cta.design_3 .btn:not(.btn-block) {
	min-width: 140px
}

.cta.design_5.cta-border {
	padding-top: 3.6rem;
	padding-bottom: 3.6rem
}

@media (max-width:319px) {
	.cta.design_7 {
		text-align: center
	}
}

.cta.design_7 .cta-title {
	font-weight: 600;
	font-size: 1.6rem;
	letter-spacing: -.005em;
	margin-top: .3rem;
	margin-bottom: .2rem
}

.cta.design_7 .form-control {
	margin-right: 0
}

.cta.design_7 .input-group-append .btn {
	min-width: 140px
}

@media (max-width:576px) {
	.cta.design_7 .form-control {
		width: 100%;
		margin-bottom: 1.5rem
	}

	.cta.design_7 .input-group-append {
		margin-left: 0;
		width: 100%;
		-ms-flex-pack: center;
		justify-content: center
	}
}

.cta.design_8 {
	background-color: #fff;
	padding-top: 6rem;
	padding-bottom: 7rem;
	position: relative
}

.cta.design_8 .cta-title {
	font-weight: 400;
	font-size: 3rem;
	letter-spacing: -.025em;
	margin-bottom: .5rem
}

.cta.design_8 .cta-desc {
	color: #999;
	font-size: 1.6rem;
	line-height: 1.5;
	margin-bottom: 2rem
}

.cta.design_8 .cta-desc .highlight {
	color: #333
}

@media (min-width:992px) {
	.cta.design_8:before {
		content: '';
		position: absolute;
		height: calc(100% - 40px);
		height: -o-calc(100% - 40px);
		height: -ms-calc(100% - 40px);
		height: -moz-calc(100% - 40px);
		height: -webkit-calc(100% - 40px);
		width: 1px;
		left: 50%;
		top: 20px;
		margin-left: -1px;
		background-color: #ebebeb
	}
}

.cta.design_8 .newletter .input-group>input {
	margin: 0;
	border-bottom-left-radius: 40px;
	border-top-left-radius: 40px;
	border-right: none
}

.cta.design_8 .newletter .input-group button {
	font-size: 0;
	min-width: auto;
	padding: 1.1rem 2.5rem;
	border-top-right-radius: 40px;
	border-bottom-right-radius: 40px
}

.cta.design_8 .newletter .input-group button i {
	font-size: 1.4rem;
	margin: 0
}

.cta.design_8.design_8-1 {
	padding-bottom: 6rem
}

.cta.design_8.design_8-1 .cta-title {
	font-weight: 400;
	font-size: 3rem;
	letter-spacing: -.025em;
	margin-bottom: 0
}

.cta.design_8.design_8-1 .cta-desc {
	color: #999;
	font-size: 1.6rem;
	line-height: 1.5;
	margin-bottom: 2rem
}

.dark-mode .cta.design_8 {
	background-color: #333
}

.cta.design_9 .product_image {
	position: absolute;
	left: 0;
	top: -5px
}

.cta.design_9 .cta-title {
	font-weight: 400
}

.cta.design_9 .cta-text {
	font-size: 2rem;
	line-height: 1.3;
	letter-spacing: -.01em;
	margin-right: 0
}

.cta.design_9 .btn {
	min-width: 230px
}

.cta.design_9 .btn i:last-child {
	margin-left: 2.5rem
}

@media (max-width:991px) {
	.cta.design_9 .cta-content {
		padding: 0 3rem
	}
}

.cta.design_10 .cta-text p {
	font-size: 2.2rem;
	line-height: 1.3;
	letter-spacing: -.025em;
	margin-right: 0;
	margin-bottom: .6rem
}

.cta.design_10 i {
	font-size: 1.4rem;
	color: #666
}

.cta.design_10 i strong {
	font-weight: 500
}

@media (max-width:991px) {
	.cta.design_10 .cta-content {
		text-align: center
	}
}

.cta.design_11 .cta-title {
	font-size: 2.4rem
}

.cta.design_11 .cta-desc {
	font-size: 1.6rem
}

@media (max-width:576px) {
	.cta.design_11 .form-control {
		width: 100%;
		border-radius: 50px;
		margin-bottom: 1.5rem
	}

	.cta.design_11 .input-group-append {
		width: 100%;
		margin: 0 !important;
		-ms-flex-pack: center;
		justify-content: center
	}
}

.round_mode .cta.design_11 .input-group input {
	font-style: italic
}

.round_mode .cta.design_11 .input-group-append {
	margin-left: -20px
}

.round_mode .cta.design_11 .input-group-append button {
	border-radius: 50px
}

.cta.design_12 .cta-title {
	font-size: 3rem
}

.cta.design_12 .cta-desc {
	font-size: 1.6rem;
	margin-bottom: .5rem
}

.cta.design_13 .cta-icon {
	color: #333;
	display: inline-block;
	font-size: 4.5rem;
	line-height: 1;
	margin-bottom: 1.1rem
}

.cta.design_13 .cta-title {
	font-weight: 600;
	font-size: 1.6rem;
	letter-spacing: -.025em;
	margin-bottom: 1rem
}

.cta.design_13 .cta-desc {
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.01em;
	margin-bottom: 2.4rem
}

.cta.design_13 .newsletter-desc {
	font-weight: 300;
	font-size: 1.2rem;
	line-height: 1.5;
	margin: 0;
	margin-top: 1.4rem
}

.cta.design_13 .input-group {
	max-width: 570px;
	margin-left: auto;
	margin-right: auto
}

.cta.design_14 .input-group input {
	font-style: italic;
	border-radius: .3rem
}

.cta.design_14 .input-group-append {
	margin-left: 10px
}

.cta.design_14 .input-group-append button {
	border-radius: .3rem;
	text-transform: uppercase
}

.cta.design_14 .input-group-append button:not(:hover) {
	color: #fff;
	background-color: rgba(255, 255, 255, .2);
	border-radius: .3rem !important;
	border-color: rgba(255, 255, 255, .2)
}

.cta.design_15 .cta-newsletter {
	padding-left: 1rem;
	padding-right: 1rem
}

.cta.design_15 .cta-title {
	font-weight: 600;
	font-size: 2.4rem;
	line-height: 1.25;
	letter-spacing: -.025em;
	margin-bottom: .6rem
}

.cta.design_15 .cta-desc {
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.01em;
	margin-bottom: 2.4rem
}

.cta.design_15 .input-group {
	max-width: 570px;
	margin-left: auto;
	margin-right: auto
}

.cta.design_15 .cta-icon {
	color: #333;
	display: inline-block;
	font-size: 4.5rem;
	line-height: 1;
	margin-bottom: 1.1rem
}

.cta.design_15 .btn {
	width: auto;
	min-width: auto;
	text-transform: uppercase;
	border-top-right-radius: .3rem;
	border-bottom-right-radius: .3rem
}

.cta.design_15 .form-control {
	border-top-left-radius: .3rem;
	border-bottom-left-radius: .3rem
}

@media (max-width:576px) {
	.cta.design_15 .form-control {
		width: 100%;
		margin-bottom: 1.5rem
	}

	.cta.design_15 .input-group-append {
		width: 100%;
		margin: 0 !important;
		-ms-flex-pack: center;
		justify-content: center
	}
}

.cta.design_16 .cta-title {
	font-weight: 600;
	font-size: 2.4rem;
	line-height: 1.25;
	letter-spacing: -.025em;
	margin-bottom: .6rem
}

.cta.design_16 .cta-desc {
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.5;
	letter-spacing: -.01em;
	margin-bottom: 2.4rem
}

.cta.design_16 .input-group {
	max-width: 570px;
	margin-left: auto;
	margin-right: auto
}

.cta.design_16 .cta-icon {
	color: #333;
	display: inline-block;
	font-size: 4.5rem;
	line-height: 1;
	margin-bottom: 1.1rem
}

.cta.design_16 .btn {
	width: 100%;
	min-width: auto;
	text-transform: uppercase
}

.cta.design_16 .form-control {
	width: 100%;
	margin-bottom: 1.5rem
}

.cta.design_16 .input-group-append {
	width: 100%;
	margin: 0 !important;
	-ms-flex-pack: center;
	justify-content: center
}

.cta.design_17 .cta-heading {
	display: flex;
	text-transform: uppercase;
	padding: 0 2rem 0 4rem;
	position: relative;
	margin: 0
}

.cta.design_17 .cta-heading::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: .3rem;
	background-color: #666;
	width: .1rem
}

.cta.design_17 .price {
	display: flex;
	position: relative
}

.cta.design_17 .price h4 {
	margin-bottom: 0;
	display: flex;
	align-items: center;
	font-size: 2.4rem
}

.cta.design_17 .price h3 {
	font-size: 5.4rem;
	letter-spacing: -.01rem;
	margin-bottom: 2rem;
	margin-left: 1rem
}

.cta.design_17 .price sup {
	font-size: 1.6rem;
	letter-spacing: -.01rem;
	margin-top: 2rem
}

.cta.design_17 .cta-desc {
	padding-left: 2rem;
	text-transform: uppercase
}

.cta.design_17 .cta-desc h4 {
	font-size: 1.6rem;
	letter-spacing: -.01rem;
	margin: 0
}

.cta.design_17 .cta-desc h4 h3 {
	font-size: 2.4rem;
	letter-spacing: -.01rem;
	margin-top: .2rem;
	margin-bottom: 0
}

@media screen and (max-width:767px) {
	.cta.design_17 .cta-heading::after {
		top: unset;
		right: unset;
		bottom: 1.5rem;
		width: 19rem;
		height: .1rem
	}

	.cta.design_17 .cta-heading {
		-ms-flex-pack: center;
		justify-content: center
	}

	.cta.design_17 .cta-desc,
	.cta.design_17 .cta-heading {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0
	}

	.cta.design_17 .cta-desc {
		text-align: center
	}
}

.cta.design_18 .form-control {
	border-width: 0 0 .1rem 0
}

.cta.design_18 .btn {
	border-width: .1rem
}

.cta.design_19 .form-control {
	border-radius: .3rem;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
	box-shadow: 0 5px 10px rgba(0, 0, 0, .05)
}

.cta.design_19 p.cta-desc {
	font-size: 1.6rem;
	max-width: 56.5rem;
	margin: auto
}

.cta.design_19 form.newletter {
	max-width: 56.5rem;
	margin: auto
}

.cta.design_19 .btn:not(.btn-block) {
	min-width: 13rem
}

@media (hover:none) {
	.overflow-scroll-wrapper .box-tabs {
		white-space: nowrap;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-pack: start !important;
		justify-content: start !important;
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important
	}
}

.md_products_section .box-tabs li {
	display: inline-block;
	font-size: 1.5rem;
	letter-spacing: -.01em;
	text-transform: capitalize
}

.md_products_section .box-tabs a {
	display: block;
	padding: .45rem 1rem;
	margin: 0 .5rem;
	position: relative;
	text-transform: uppercase;
	border-bottom-width: 1px;
	border-bottom-style: solid
}

.md_products_section .box-tabs a:not(.active) {
	color: #999;
	border-bottom-color: transparent
}

.md_products_section .none-big-title .box-tabs a {
	padding: 0 1rem
}

.md_products_section .tab-list-ajax .tab-content {
	position: relative
}

.md_products_section .tab-list-ajax .tab-content.including .swiper-buttons {
	opacity: 0
}

.md_products_section .tab-list-ajax .lazyload+div,
.md_products_section .tab-list-ajax .lazyloading+div {
	opacity: 0
}

.md_products_section .tab-pane {
	padding: 0
}

.md_products_section .tab-product.none-big-title .box-tabs a {
	font-size: 24px;
	color: #999;
	text-transform: capitalize
}

.md_products_section .tab-product.none-big-title .box-tabs a.active {
	color: #333
}

@media (max-width:992px) {
	.md_products_section_show .section-title {
		width: 100%;
		text-align: center
	}
}

.md_products_section_show_2 a.aspectRatio {
	border: 1px solid #f1f1f1;
	padding-bottom: 112.5%
}

.md_products_section_show_2 .grid-item.list.mini-list .product-thumb {
	width: 80px
}

.md_products_section_show_2 .grid-item.list.mini-list .product-info {
	width: calc(100% - 80px);
	width: -o-calc(100% - 80px);
	width: -ms-calc(100% - 80px);
	width: -moz-calc(100% - 80px);
	width: -webkit-calc(100% - 80px)
}

.md_products_section_show_2 .grid-item.list.mini-list .flashs {
	display: none
}

.md_products_section_show_2 .grid-item.list.mini-list .product-price {
	font-size: 1.4rem;
	margin-bottom: 0;
	padding-bottom: 0
}

.md_products_section_show_2 .grid-item.list.mini-list .add-to-cart .btn {
	padding-left: 0;
	padding-right: 0
}

.md_products_section_show_3 .product {
	border-bottom: thin solid #ebebeb
}

.md_products_section_show_3 .p-style-09 .product-body {
	padding-bottom: 2rem
}

.md_products_section_show_3 .kt_countdown.style05 span.sign {
	color: #fff
}

.md_products_section_show_3 .product-countdown.style05 {
	padding-right: 1rem;
	padding-left: 1rem;
	opacity: 1;
	visibility: visible;
	pointer-events: auto
}

@media screen and (min-width:1200px) {
	.md_products_section_show_3 .product-countdown.style05 .kt_countdown {
		padding-right: 1rem;
		padding-left: 1rem
	}
}

.md_products_section_show_4 .product-list {
	background-color: #fff;
	border: 1px solid #ebebeb;
	display: inline-block;
	width: 100%;
	padding: 2rem
}

.md_products_section_show_4 .product-thumb {
	float: none;
	width: 100px
}

.md_products_section_show_4 .product-info {
	float: none;
	padding: 0 0 0 3rem;
	width: calc(100% - 100px);
	width: -o-calc(100% - 100px);
	width: -ms-calc(100% - 100px);
	width: -moz-calc(100% - 100px);
	width: -webkit-calc(100% - 100px)
}

.md_products_section_show_4 .grid-item.list {
	margin-bottom: 0
}

.md_products_section_show_4 .grid-item.list .product-inner {
	border-bottom: none;
	float: none;
	min-height: 13rem;
	padding-bottom: 0;
	margin-bottom: .5rem
}

.md_products_section_show_4 .grid-item.list:last-child .product-inner {
	padding-bottom: 0;
	margin-bottom: 0
}

.md_products_section_show_4 .grid-item.list .product-price {
	margin-bottom: 0;
	padding-bottom: 1rem;
	font-weight: 600
}

.md_products_section_show_4 .title-link {
	font-weight: 400;
	font-size: 1.3rem;
	color: #999
}

.md_products_section_show_4 .flashs {
	top: 0;
	left: 0
}

.md_products_section_slide_2 .cat-banner {
	max-width: 480px;
	margin-bottom: 2rem;
	margin-left: auto;
	margin-right: auto
}

@media screen and (min-width:1200px) {
	.md_products_section_slide_2 .cat-banner {
		max-width: none
	}
}

.md_products_section_slide_2 .cat-banner-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-size: cover;
	background-position: center center
}

.md_products_section_slide_2 .cat-banner-list h2 {
	font-weight: 600;
	font-size: 2rem;
	letter-spacing: -.025em;
	margin-bottom: 2rem
}

.md_products_section_slide_2 .cat-banner-list h2 a:not(:hover) {
	color: #333
}

.md_products_section_slide_2 .cat-banner-list ul {
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.5
}

.md_products_section_slide_2 .cat-banner-list ul a:before {
	content: '•';
	margin-right: .8rem
}

.md_products_section_slide_2 .cat-banner-list li:not(.list-all-link) a:not(:hover) {
	color: #333
}

.md_products_section_slide_2 .cat-banner-list li:not(:last-child) {
	margin-bottom: .8rem
}

.md_products_section_slide_2 .cat-banner-list .list-all-link a:focus,
.md_products_section_slide_2 .cat-banner-list .list-all-link a:hover {
	-webkit-box-shadow: 0 1px 0 var(--primary);
	box-shadow: 0 1px 0 var(--primary)
}

.md_products_section_slide_2 .banner-list-content {
	padding-left: 4rem;
	padding-top: 1rem
}

@media screen and (min-width:1920px) {
	.md_products_section_slide_2 .col-xxl-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.65%;
		flex: 0 0 33.65%;
		max-width: 33.65%
	}

	.md_products_section_slide_2 .col-xxl-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.35%;
		flex: 0 0 66.35%;
		max-width: 66.35%
	}
}

@media screen and (min-width:1920px) {
	.md_products_section_slide_2 .product {
		min-height: 420px
	}
}

.md_products_section_slide_2 .swiper-fixed-fshadow .swiper-container {
	padding: 0 0 200px;
	margin: 0 0 -200px
}

@media (max-width:992px) {
	.md_products_section_slide_banner_1 .section-title {
		width: 100%;
		text-align: center
	}
}

.md_products_section_slide_banner_1 .img__banner {
	border-radius: 3px
}

.md_products_section_slide_banner_1 .banner_items .product {
	box-shadow: none !important
}

.md_products_section_slide_banner_1 .banner_items .product-inner {
	background-color: transparent;
	width: 100%;
	padding: 5rem 3.5rem 5.5rem
}

.md_products_section_slide_banner_1 .banner_items .product-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 4rem 2rem 4rem 3.5rem
}

.md_products_section_slide_banner_1 .banner_items .product-thumb {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0;
	-webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, .05);
	box-shadow: 1px 3px 5px rgba(0, 0, 0, .05)
}

.md_products_section_slide_banner_1 .banner_items .product-body {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	padding: 1.7rem 0 1.8rem 1.5rem;
	background-color: transparent;
	width: auto
}

@media (min-width:576px) {
	.md_products_section_slide_banner_1 .banner_items .product-body {
		padding-left: 3rem
	}
}

.md_products_section_slide_banner_1 .banner_items .product-vendor {
	color: #fff
}

.md_products_section_slide_banner_1 .banner_items .product-name {
	color: #fff;
	font-weight: 600;
	font-size: 2.4rem;
	line-height: 1.25;
	letter-spacing: -.025em;
	margin-bottom: .6rem
}

.md_products_section_slide_banner_1 .banner_items .smallCard .product-name {
	max-height: 6rem
}

.md_products_section_slide_banner_1 .banner_items .product-price {
	font-size: 2.4rem;
	margin-bottom: 1rem
}

.md_products_section_slide_banner_1 .banner_items .product-price del,
.md_products_section_slide_banner_1 .banner_items .product-price ins {
	color: #fff
}

.md_products_section_slide_banner_1 .banner_items .kt-button {
	min-width: auto;
	padding-left: .8rem;
	padding-right: .8rem;
	max-width: 100%
}

.md_products_section_slide_banner_1 .banner_items .fkt-cart-plus:before {
	content: '\e812';
	font-size: 1.8rem;
	margin-right: .7rem
}

@media (hover:none) {
	.md_products_section_slide_banner_1 .product-name {
		max-height: 6rem
	}
}

@media (max-width:992px) {
	.md_products_section_tab_slide_2 .section-title {
		width: 100%;
		text-align: center
	}
}

.md_products_section_tab_slide_2 .box-tabs a {
	padding: .45rem 10px;
	text-transform: none;
	line-height: 1.5
}

@media (max-width:992px) {
	.md_products_section_tab_slide_banner .section-title {
		width: 100%;
		text-align: center
	}
}

.md_products_section_tab_slide_banner .box-tabs a {
	padding: 0 10px
}

@media (min-width:992px) {
	.md_products_section_tab_slide_banner .banner-wrapper {
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%
	}

	.md_products_section_tab_slide_banner .tabs-wrapper {
		-ms-flex: 0 0 80%;
		flex: 0 0 80%;
		max-width: 80%
	}
}

@media (min-width:992px) {
	.md_products_section_tab_slide_banner .width-2 .banner-wrapper {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%
	}

	.md_products_section_tab_slide_banner .width-2 .tabs-wrapper {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%
	}
}

.md_products_section_tab_slide_banner .banner-wrapper .text-content {
	z-index: 1;
	padding-left: 3rem;
	padding-top: 3rem
}

.md_products_section_tab_slide_banner .banner-wrapper .text-content h3 {
	font-size: 2rem;
	color: #fff
}

.md_products_section_tab_slide_banner .banner-wrapper .text-content.top .product-info {
	padding-right: 1.5rem
}

.md_products_section_tab_slide_banner .banner-wrapper .text-content.bottom {
	bottom: 0;
	top: auto;
	left: 0;
	padding: 0
}

.md_products_section_tab_slide_banner .banner-wrapper .text-content.bottom .product-info {
	padding: .6rem 3rem
}

.md_products_section_tab_slide_banner .banner-wrapper .product-name {
	font-size: 1.6rem;
	font-weight: 400;
	margin-bottom: .5rem
}

.md_products_section_tab_slide_banner_2 .text-content {
	top: 2rem;
	bottom: 3.5rem;
	right: 4rem;
	left: 4rem;
	padding: .4rem 0 0 0 !important;
	transform: translateY(0);
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.md_products_section_tab_slide_banner_2 .text-content .banner-title {
	color: #fff;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.3;
	margin-bottom: 1.5rem;
	letter-spacing: -.03em;
	border-bottom: thin solid #fff
}

.md_products_section_tab_slide_banner_2 .text-content .banner-title h3 {
	font-size: 1.8rem;
	letter-spacing: .1em;
	font-weight: 300;
	text-transform: uppercase
}

.md_products_section_tab_slide_banner_2 .text-content .product-price {
	margin-bottom: 0
}

.md_products_section_tab_slide_banner_2 .text-content .product-price ins {
	color: #fff;
	font-size: 4rem;
	font-weight: 600;
	letter-spacing: .01em;
	margin-bottom: 0
}

.md_products_section_tab_slide_banner_2 .text-content .product-price del {
	display: none
}

.md_products_section_tab_slide_banner_2 .text-content .product-name a {
	color: #fff;
	letter-spacing: 0;
	font-weight: 300
}

.md_products_section_tab_slide_banner_2 .text-content .btn.banner-link {
	font-size: 1.3rem;
	letter-spacing: .1em;
	border-width: .2rem;
	min-width: 100%;
	margin-top: 2.5rem
}

.md_products_section_tab_slide_banner_3 .box-tabs li {
	font-size: 1.3rem
}

.md_products_section_tab_slide_banner_3 .box-tabs li a {
	padding: 0 5px
}

.md_products_section_tab_slide_banner_3 .swiper-slide.banner-item .text-content {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0
}

.md_products_section_tab_slide_banner_3 .swiper-slide.banner-item .flashs {
	top: 0;
	left: 0
}

.md_products_section_tab_slide_banner_3 .swiper-slide.banner-item .banner-title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.3
}

.md_products_section_tab_slide_banner_3 .swiper-slide.banner-item .btn {
	border-width: .2rem;
	font-weight: 600;
	padding: .5rem 1.5rem
}

.md_products_section_tab_banner .section-title {
	margin-left: 2rem;
	background-color: #333
}

.md_products_section_tab_banner .section-title ul {
	margin-left: -1.4rem;
	-ms-flex-direction: row;
	flex-direction: row
}

.md_products_section_tab_banner .section-title .box-tabs a {
	border: none;
	padding: .75rem 4rem;
	color: var(--primary)
}

.md_products_section_tab_banner .section-title .box-tabs a span {
	position: relative
}

.md_products_section_tab_banner .section-title .box-tabs a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #333;
	transform: skewX(-15deg)
}

.md_products_section_tab_banner .section-title .box-tabs a.active {
	color: #333
}

.md_products_section_tab_banner .section-title .box-tabs a.active::before {
	background-color: var(--primary)
}

.md_products_section_tab_banner .section-title .button-more a {
	padding: 1.1rem 3.5rem 1.1rem 4rem;
	font-size: 1.4rem;
	text-transform: uppercase
}

@media (max-width:767px) {
	.md_products_section_tab_banner .section-title {
		margin-left: 0;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.md_products_section_tab_banner .section-title ul {
		margin-left: 0;
		width: 100%;
		-ms-flex-pack: center;
		justify-content: center
	}

	.md_products_section_tab_banner .section-title .box-tabs a {
		padding: .45rem 2rem
	}

	.md_products_section_tab_banner .section-title .box-tabs a::before {
		display: none
	}

	.md_products_section_tab_banner .section-title .box-tabs a.active {
		color: #d7d7d7
	}

	.md_products_section_tab_banner .section-title .button-more {
		width: 100%;
		-ms-flex-pack: center;
		justify-content: center
	}
}

.md_products_section_tab_banner .product-lg {
	box-shadow: 0 3px 20px rgba(0, 0, 0, .03);
	position: relative;
	background-color: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.md_products_section_tab_banner .product-lg .product-label {
	transform: skewX(-10deg);
	border-radius: .3rem;
	color: #fff;
	margin-bottom: 1rem;
	font-size: 1.4rem;
	background-color: #fcb941;
	text-transform: uppercase;
	margin: 2rem 2rem;
	padding: .8rem 1.5rem;
	position: absolute;
	z-index: 1;
	top: 2rem;
	left: 2rem;
	line-height: 1.6rem;
	letter-spacing: -.01em;
	min-width: 45px;
	text-align: center
}

.md_products_section_tab_banner .product-lg .product-body {
	padding: 5rem 4rem
}

@media (max-width:991px) {
	.md_products_section_tab_banner .product-lg .product-body {
		padding: 3.5rem 3rem
	}
}

.md_products_section_tab_banner .product-lg .product-media {
	background-color: #fff;
	margin: 0
}

.md_products_section_tab_banner .product-lg .save-price {
	margin-bottom: 1rem
}

.md_products_section_tab_banner .product-lg .save-price span {
	font-size: 1.5rem;
	letter-spacing: -.01rem;
	color: #ef837b;
	text-transform: uppercase;
	margin-bottom: 2rem
}

.md_products_section_tab_banner .product-lg .product-title {
	font-size: 2.6rem;
	letter-spacing: -.01rem;
	font-weight: 700;
	margin-bottom: 0
}

.md_products_section_tab_banner .product-lg .product-title a:not(:hover) {
	color: #333
}

.md_products_section_tab_banner .product-lg .product-price {
	font-size: 2.8rem
}

.md_categories_banner_1 .menu-vertical>li:not(:last-child)>a {
	border-bottom-color: transparent
}

.md_categories_banner_1 .menu-vertical>li:hover>a {
	background-color: var(--bg)
}

.banner-product {
	position: relative;
	display: block
}

.banner-product:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, .7);
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	opacity: 0;
	z-index: 1
}

.banner-product:hover:before {
	opacity: 1
}

.banner-product .info {
	top: 0;
	width: 100%;
	height: 100%;
	left: 0
}

.banner-product .text {
	position: absolute;
	top: 50%;
	z-index: 1;
	color: #fff;
	font-size: 1.2rem;
	text-transform: uppercase;
	left: 0;
	width: 100%;
	padding: 0 40px;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	display: none
}

.banner-product:hover .text {
	display: block
}

.banner-product .price {
	padding: .8rem 1.5rem;
	color: #222;
	position: absolute;
	bottom: 3rem;
	right: 3rem;
	background-color: #fff;
	z-index: 1;
	font-size: 1.4rem;
	box-shadow: 0 0 6px rgba(0, 0, 0, .09)
}

.banner-product .price ins {
	text-decoration: none
}

.banner-product .price del {
	color: #aaa;
	font-size: 1.2rem
}

.img__banner {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	position: relative
}

.img__banner[title~=px]:after {
	content: attr(title);
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 1.6rem;
	transform: translate(-50%, -50%)
}

.item__banner {
	z-index: 0
}

.video-banner-title {
	letter-spacing: -.025em;
	margin-bottom: 3.6rem;
	font-weight: 700
}

.video-banner-title>span {
	display: block;
	font-weight: 400;
	font-size: 2.4rem;
	letter-spacing: -.03em;
	margin-bottom: 1.6rem
}

.kt_instagram .info {
	bottom: 0;
	left: 0;
	background-color: #fff;
	padding: 5px 12px
}

.instagram-feed {
	display: block;
	position: relative;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center
}

.instagram-feed:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(51, 51, 51, .4);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	opacity: 0;
	visibility: hidden;
	z-index: 1
}

.instagram-feed:before {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #fff;
	font-size: 2rem;
	margin-left: -.85rem;
	margin-top: -1rem;
	opacity: 0;
	visibility: hidden;
	z-index: 2
}

.instagram-feed:hover:after,
.instagram-feed:hover:before {
	opacity: 1;
	visibility: visible
}

.item-blog.entry {
	color: #999;
	background-color: #fff;
	font-size: 1.5rem;
	line-height: 1.73;
	letter-spacing: -.01em;
	margin-bottom: 2rem
}

.item-blog .entry-media {
	margin-bottom: 1.7rem
}

.item-blog .comment,
.item-blog .entry-meta a {
	color: inherit
}

.item-blog .entry-title {
	font-weight: 600;
	font-size: 1.8rem;
	letter-spacing: -.01em;
	margin-bottom: 1.4rem;
	padding-bottom: 0
}

.item-blog .entry-title a:not(:hover) {
	color: inherit
}

.item-blog .read-more {
	padding: 0;
	font-weight: 400;
	text-transform: uppercase
}

.item-blog.entry-display {
	transition: box-shadow .35s ease
}

.item-blog.entry-display .entry-body {
	padding: 0 2rem 2.5rem
}

.item-blog.entry-display:hover {
	box-shadow: 5px 5px 10px rgba(0, 0, 0, .03), -5px 5px 10px rgba(0, 0, 0, .03)
}

.md_blog .read-more {
	box-shadow: none !important
}

.item-blog.type01 .hide_desc .entry-content>p {
	display: none
}

.item-blog.type01 .hide_desc .entry-title {
	margin-bottom: .6rem
}

.item-blog.type02 .entry-title {
	font-weight: 400;
	font-size: 2rem;
	padding-bottom: 0;
	margin-bottom: .9rem
}

.item-blog.type02 .entry-meta {
	margin-bottom: .3rem
}

.item-blog.type03:hover {
	box-shadow: none
}

.item-blog.type03 .entry-body {
	padding: 0
}

.item-blog.type03 .entry-title {
	font-weight: 400;
	font-size: 2rem;
	margin-bottom: .9rem;
	padding-bottom: 0
}

.item-blog.type03 .comment,
.item-blog.type03 .entry-meta a {
	margin-bottom: 0
}

.item-blog.type04 {
	background-color: #fff;
	height: 100%;
	margin-bottom: 0
}

.item-blog.type04 .entry-body {
	padding: 0 2rem 2rem
}

.item-blog.type04 .entry-title {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -.025em;
	margin-bottom: .6rem;
	padding-bottom: 0
}

.item-blog.type04 .comment,
.item-blog.type04 .entry-meta a {
	margin-bottom: 0
}

.item-blog.type04 .entry-content p {
	margin-bottom: .6rem;
	font-size: 1.4rem
}

.item-blog.type04 .read-more {
	font-size: 1.4rem;
	letter-spacing: 0;
	padding-bottom: 0;
	text-transform: capitalize
}

.item-blog.type05 .comment,
.item-blog.type05 .entry-meta a {
	margin-bottom: 0
}

.item-blog.type05 .entry-title {
	font-size: 1.6rem;
	margin-top: 0;
	margin-bottom: 0
}

.item-blog.type05 .read-more {
	font-size: 1.4rem;
	letter-spacing: 0;
	padding-bottom: 0;
	text-transform: capitalize
}

.item-blog.type05 .read-more:not(:hover):not(:focus) {
	color: #999
}

.icon__brand {
	height: 100%;
	display: -ms-flexbox;
	display: flex
}

.icon__brand .lazyload,
.icon__brand .lazyloading {
	opacity: 1;
	width: auto
}

.icon__brand .img__banner {
	border-left: 0;
	min-height: 100%
}

.icon__brand img {
	mix-blend-mode: multiply;
	object-fit: contain;
	height: 6rem;
	margin: auto;
	background-image: none
}

.brands-slide .img__banner {
	background-size: auto
}

.brands-slide .img__banner.lazyloaded {
	background-color: transparent
}

.brands-slide.style-default .icon__brand {
	min-height: 10rem;
	border: 1px solid #ebebeb;
	border-right-color: transparent
}

.brands-slide.style-default .swiper-slide-active .icon__brand {
	border-left: 0
}

.brands-slide.style-type01 .img__banner {
	border: none
}

.brands-content {
	display: flex;
	flex-wrap: wrap;
	margin-left: auto;
	margin-right: auto
}

@media (min-width:1200px) {
	.brands-content {
		flex: 0 0 60%;
		max-width: 60%
	}
}

.brands-content .img__banner {
	background-size: auto
}

.brands-content .img__banner.lazyloaded {
	background-color: transparent
}

.newsletter {
	padding: 6rem 2rem;
	position: relative;
	text-align: center;
	display: table;
	width: 100%;
	z-index: 1
}

.newsletter .form-newsletter {
	border-bottom: 1px solid #e5e5e5;
	display: table;
	width: 100%;
	text-align: center;
	position: relative
}

.newsletter .form-newsletter .errors ul {
	list-style: none
}

.newsletter .form-newsletter .errors ul li {
	color: red
}

.newsletter .form-newsletter>input {
	border: medium none;
	float: left;
	width: 60%;
	font-size: 1.3rem;
	color: #aaa;
	padding: 0;
	padding-left: 10px;
	width: 100%
}

.newsletter .newsletter-submit {
	background: 0 0;
	border: medium none;
	color: #222;
	font-size: 1.2rem;
	text-transform: uppercase;
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 0 1rem;
	height: 100%
}

.newsletter:after {
	border-style: solid;
	border-width: 6px;
	content: "";
	float: left;
	position: absolute;
	z-index: -3;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0
}

.newsletter.style2 {
	margin-top: 0;
	padding: 60px 15px;
	border: 6px solid #c99947
}

.newsletter.style2:after {
	display: none
}

.newsletter.style2 .form-newsletter {
	width: 100%
}

@media (min-width:992px) {
	.newsletter {
		padding: 8rem 6rem 9rem 4.5rem
	}

	.newsletter:after {
		left: -165px;
		width: auto
	}
}

.video {
	position: relative
}

.video .button-play {
	width: 6rem;
	height: 6rem;
	display: inline-block;
	background: url(BT_sprites.png) no-repeat;
	background-position: -338px -10px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
	font-size: 0
}

.video img {
	width: 100%
}

.hl-countdown_1 [data-section-type=banner-section] {
	background-size: cover;
	background-repeat: no-repeat
}

@media only screen and (min-width:576px) {
	.hl-countdown_1 [data-section-type=banner-section] {
		background-position: center
	}
}

.lookbookWrapper .owl-dots {
	position: absolute;
	bottom: 5px;
	z-index: 1;
	width: 100%
}

.kt_pin_item {
	overflow: hidden
}

.kt_pin_item:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, .1);
	pointer-events: none;
	opacity: 0;
	-webkit-transition: all .4s ease 0s;
	-moz-transition: all .4s ease 0s;
	-o-transition: all .4s ease 0s;
	transition: all .4s ease 0s
}

.kt_pin_item .kt_pin {
	position: absolute;
	text-align: center;
	border-radius: 50px;
	color: #fff;
	cursor: pointer;
	padding: 0;
	z-index: 1
}

.kt_pin_item .kt_pin:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 150%;
	height: 150%
}

.kt_pin_item .kt_pin:before {
	content: '';
	position: absolute;
	top: 1%;
	left: 1%;
	width: 150%;
	height: 150%
}

.kt_pin_item .kt_pin .kt_pin_name {
	position: relative;
	display: block
}

.kt_pin_item .kt_pin .kt_pin_name .kt_pin_animate {
	position: absolute;
	border-radius: 100px;
	top: 50%;
	left: 50%;
	border: 5px solid;
	transform: translate(-50%, -50%) scale(1);
	-webkit-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
	-moz-transform: translate(-50%, -50%) scale(1);
	-webkit-animation: borderinfinite 1s linear infinite;
	animation: borderinfinite 1s linear infinite
}

.kt_pin_item .kt_pin_icon {
	font-size: 18px
}

.kt_pin_item .pin-mini2-place:before {
	padding-top: 94px;
	max-width: 768px;
	background-size: 90px 100%, 70% 24px, 44% 20px;
	background-position: left 0, 110px 10px, 110px 50px
}

.kt_pin_item .kt_pin_pritem {
	width: 100%;
	max-width: 320px;
	display: block;
	padding: 1rem;
	overflow: hidden;
	margin-bottom: 1rem;
	background-color: var(--bg)
}

@media (min-width:360px) {
	.kt_pin_item .kt_pin_pritem {
		width: 320px
	}
}

.kt_pin_item .kt_pin_pritem:last-child {
	margin-bottom: 0
}

.kt_pin_item .kt_pin_pritem .flashs {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto
}

.kt_pin_item .kt_pin_pritem .flashs>span {
	line-height: 1.4;
	border-radius: 0;
	width: auto;
	height: auto;
	transform: none
}

.kt_pin_item .kt_pin_pritem .product-inner {
	display: -ms-flexbox !important;
	display: flex !important
}

.kt_pin_item .kt_pin_pritem .product-thumb {
	width: 9rem;
	padding: 0
}

.kt_pin_item .kt_pin_pritem .product-price {
	margin-bottom: .6rem
}

.kt_pin_item .kt_pin_pritem .product-info {
	padding: 0 1rem;
	color: #212121;
	font-size: 13px
}

.kt_pin_item .kt_pin_pritem .add-to-cart {
	margin-bottom: 5px
}

.kt_pin_item .kt_pin_pritem .add-to-cart form {
	display: none
}

.kt_pin_item .kt_pin_pritem .add-to-cart .btn {
	padding: 0;
	text-transform: capitalize;
	font-weight: 400
}

.kt_pin_item .kt_pin_pritem .product-name {
	font-size: 1.4rem;
	line-height: 1.4;
	font-weight: 400
}

.kt_pin_item .kt_pin_pritem .product-name a:not(:hover) {
	color: var(--text)
}

.kt_pin_item .kt_pin_pritem .product-variants-wrapper {
	display: none
}

.kt_pin_item .tippy-tooltip {
	border-radius: 0;
	background-color: #fff;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
	box-shadow: 0 5px 10px rgba(0, 0, 0, .05)
}

.kt_pin_item .tippy-content {
	padding: 0
}

.kt_pin_item .tippy-arrow {
	color: var(--bg)
}

.kt_pin_item .product-loop-variants {
	display: none
}

@-webkit-keyframes borderinfinite {
	0% {
		border-width: 5px
	}

	50% {
		border-width: 10px;
		transform: translate(-50%, -50%) scale(1.2);
		-webkit-transform: translate(-50%, -50%) scale(1.2);
		-ms-transform: translate(-50%, -50%) scale(1.2);
		-moz-transform: translate(-50%, -50%) scale(1.2)
	}

	100% {
		border-width: 5px
	}
}

@keyframes borderinfinite {
	0% {
		border-width: 5px
	}

	50% {
		border-width: 10px;
		transform: translate(-50%, -50%) scale(1.2);
		-webkit-transform: translate(-50%, -50%) scale(1.2);
		-ms-transform: translate(-50%, -50%) scale(1.2);
		-moz-transform: translate(-50%, -50%) scale(1.2)
	}

	100% {
		border-width: 5px
	}
}

.cat-block {
	padding-bottom: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	position: relative
}

.cat-block:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-transition: -webkit-box-shadow .35s ease;
	transition: -webkit-box-shadow .35s ease;
	transition: box-shadow .35s ease;
	transition: box-shadow .35s ease, -webkit-box-shadow .35s ease
}

.cat-block:hover:after {
	-webkit-box-shadow: 1px 5px 10px rgba(0, 0, 0, .08);
	box-shadow: 1px 5px 10px rgba(0, 0, 0, .08)
}

.cat-block figure {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	margin: 0;
	min-height: 110px
}

.cat-block figure span {
	position: relative
}

.cat-block img {
	margin-left: auto;
	margin-right: auto
}

.cat-block-title {
	color: #333;
	font-weight: 400;
	font-size: 1.4rem;
	letter-spacing: -.01em;
	margin-bottom: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 3rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal
}

.cat-block span {
	color: #ccc
}

@media (max-width:767px) {
	.item-card_list .cat-block-title {
		font-size: 1.2rem
	}
}

@media (min-width:768px) {
	.item-card_list figure {
		min-height: 12.4rem
	}
}

@media (hover:none) {
	.item-card_list {
		padding-bottom: 1.5rem
	}
}

.item-card_list.type_2 .cat-block-title {
	height: auto;
	border-bottom: 1px solid transparent;
	padding-bottom: 3px
}

.item-card_list.type_2 .cat-block:hover .cat-block-title {
	color: var(--primary);
	border-bottom-color: var(--primary)
}

.item-card_list.type_2 figure span {
	padding: 1rem
}

@media (min-width:1200px) {
	.item-card_list.type_2 figure {
		min-height: 14.5rem
	}
}

.item-card_list.type_3 .cat-block-title {
	text-transform: uppercase;
	color: #999
}

.item-card_list.type_3 .cat-block:hover {
	background-color: #fff
}

.item-card_list.type_3 .cat-block:hover .molla-svg-icon {
	color: var(--primary)
}

.item-card_list.type_3 figure span {
	padding: 1rem
}

.item-card_list.type_3 .molla-svg-icon {
	width: 4.8rem;
	color: #222;
	transition: color .3s ease-in-out
}

@media (min-width:768px) {
	.item-card_list.type_3 figure {
		min-height: 11.5rem
	}
}

.entry {
	position: relative;
	margin-bottom: 3rem;
	font-size: 1.4rem;
	line-height: 1.85
}

@media (max-width:767px) {
	.blog-content .entry {
		padding-bottom: 3rem;
		border-bottom: 1px solid #ebebeb
	}
}

.entry-media {
	position: relative;
	margin-bottom: 2.4rem
}

.entry-media>a {
	position: relative;
	display: block
}

.entry-video {
	display: block
}

.entry-video:after {
	content: '\ec2c';
	font-family: molla;
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 7rem;
	height: 7rem;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -3.5rem;
	margin-top: -3.5rem;
	font-size: 1.8rem;
	line-height: 1;
	color: #fff;
	background-color: transparent;
	border-radius: 50%;
	border: .2rem solid #fff;
	-webkit-transition: all .35s ease;
	transition: all .35s ease
}

.entry-video:focus:after,
.entry-video:hover:after {
	background-color: #fff;
	box-shadow: 0 0 0 1.6rem rgba(255, 255, 255, .2)
}

.entry-meta {
	display: flex;
	align-items: center;
	flex-flow: wrap;
	color: #ccc;
	font-size: 1.4rem;
	line-height: 1.5;
	margin-bottom: .5rem
}

.text-center .entry-meta {
	justify-content: center
}

.entry-meta a {
	color: inherit;
	transition: all .3s ease
}

.entry-meta .meta-separator:first-child {
	display: none
}

.meta-separator {
	margin-left: 1.1rem;
	margin-right: 1.1rem
}

.entry-title {
	font-weight: 600;
	font-size: 2.4rem;
	line-height: 1.25;
	letter-spacing: -.025em;
	margin-bottom: .6rem
}

.entry-title a {
	color: inherit
}

.entry-cats {
	color: #999;
	font-size: 1.4rem;
	line-height: 1.5;
	margin-bottom: 1.5rem
}

.entry-cats a {
	color: inherit;
	transition: all .3s ease
}

.entry-content p {
	margin-bottom: 1.3rem
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0
}

.videoWrapper embed,
.videoWrapper iframe,
.videoWrapper object {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.videoWrapper embed.fullw,
.videoWrapper iframe.fullw,
.videoWrapper object.fullw {
	max-width: none !important
}

.read-more {
	display: inline-block;
	position: relative;
	font-weight: 400;
	letter-spacing: -.01em;
	padding-bottom: .1rem;
	transition: all .3s ease
}

.read-more:after {
	font-family: molla;
	content: '\f274';
	font-size: 1.5rem;
	line-height: 1;
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -.75rem;
	opacity: 0;
	transition: all .25s ease;
	transform: translateX(-6px)
}

.read-more:focus,
.read-more:hover {
	padding-right: 2.2rem
}

.read-more:focus:after,
.read-more:hover:after {
	opacity: 1;
	transform: translateX(0)
}

.menu-cat {
	margin: 0 0 2rem;
	padding: 0;
	display: flex;
	align-items: center;
	flex-flow: wrap
}

.menu-cat li {
	margin-right: 3.6rem
}

.menu-cat li:last-child {
	margin-right: 0
}

.menu-cat.justify-content-center li {
	margin-left: 1.8rem;
	margin-right: 1.8rem
}

.menu-cat.justify-content-center li:lat-child {
	margin-right: 1.8rem
}

.menu-cat a {
	display: inline-block;
	color: #333;
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.5;
	padding-top: .4rem;
	padding-bottom: .4rem
}

.menu-cat a span {
	color: #ccc;
	font-weight: 400;
	margin-left: .8rem
}

.entry-grid .entry-title {
	font-size: 1.8rem
}

.entry-grid .entry-media {
	margin-bottom: 1.4rem
}

.entry-grid .entry-cats {
	margin-bottom: .9rem
}

.entry-container {
	width: 100%;
	position: relative;
	margin-bottom: .5rem
}

.entry-item {
	float: left;
	padding: 0 10px
}

.animate-items .entry-item {
	transition-property: opacity, transform;
	transition-duration: .45s;
	opacity: 0;
	transform: translateY(100px)
}

.entry-item,
.entry-sizer {
	width: 100%
}

.entry-list p {
	margin-bottom: 1rem
}

.entry-mask.entry {
	margin-bottom: 2rem
}

.entry-mask:before {
	content: '';
	display: block;
	height: 50%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	background: -moz-linear-gradient(top, rgba(125, 185, 232, 0) 0, #000 100%);
	background: -webkit-linear-gradient(top, rgba(125, 185, 232, 0) 0, #000 100%);
	background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0, #000 100%);
	opacity: .75;
	transition: all .3s;
	pointer-events: none
}

.entry-mask .entry-media {
	margin-bottom: 0
}

.entry-mask .entry-gallery:after,
.entry-mask .entry-video:after {
	width: auto;
	height: auto;
	left: 3rem;
	top: 3rem;
	margin-left: 0;
	margin-top: 0;
	font-size: 1.6rem;
	line-height: 1;
	border: none
}

.entry-mask .entry-gallery:focus:after,
.entry-mask .entry-gallery:hover:after,
.entry-mask .entry-video:focus:after,
.entry-mask .entry-video:hover:after {
	color: #fff;
	background-color: transparent;
	box-shadow: none
}

.entry-mask .entry-gallery:after {
	color: #fff;
	position: absolute;
	content: '\f24d';
	font-family: molla;
	top: 2.6rem
}

.entry-mask .entry-body {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 1.7rem 1.8rem 2.7rem 2.8rem;
	z-index: 5
}

.entry-mask .entry-cats,
.entry-mask .entry-meta {
	color: #ebebeb
}

.entry-mask .entry-cats {
	margin-bottom: 0
}

.entry-mask .entry-title {
	color: #fff;
	font-size: 2rem
}

.entry-mask:hover:before {
	opacity: .9
}

.widget {
	margin-bottom: 4.5rem
}

.sidebar {
	margin-top: 3rem
}

.widget-title {
	color: #333;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1.1;
	letter-spacing: -.01em;
	margin-bottom: 2rem
}

.widget-search .widget-title {
	margin-bottom: 1.3rem
}

.widget-search form {
	position: relative
}

.widget-search .form-control {
	height: 4rem;
	padding: .95rem 5rem .95rem 1.4rem;
	font-weight: 300;
	font-size: 1.3rem;
	background-color: transparent;
	margin-bottom: 0
}

.widget-search .btn {
	position: absolute;
	right: .8rem;
	top: 50%;
	min-width: 0;
	font-weight: 400;
	font-size: 1.8rem;
	--border: transparent;
	padding: 0;
	width: 3rem;
	height: 3rem;
	margin-top: -1.5rem;
	background-color: transparent
}

.widget-search .btn i {
	margin: 0 !important
}

.widget-cats ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.widget-cats li:not(:last-child) {
	margin-bottom: 1rem
}

.widget-cats a {
	color: #333;
	display: block;
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.5
}

.widget-cats a span {
	float: right
}

.widget-banner-sidebar {
	position: relative
}

.banner-sidebar-title {
	color: #999;
	text-align: center;
	font-weight: 300;
	font-size: 1.3rem;
	line-height: 1;
	letter-spacing: -.01em;
	margin-bottom: .8rem;
	text-transform: uppercase
}

.posts-list {
	list-style: none;
	padding: .4rem 0 .2rem;
	margin: 0
}

.posts-list li {
	margin-bottom: 2rem
}

.posts-list li::after {
	display: block;
	clear: both;
	content: ''
}

.posts-list li:last-child {
	margin-bottom: 0
}

.posts-list figure {
	float: left;
	max-width: 80px;
	margin-right: 2rem;
	margin-bottom: 0
}

.posts-list figure a {
	display: block
}

.posts-list div {
	padding-top: .6rem
}

.posts-list span {
	display: block;
	color: #ccc;
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.25;
	letter-spacing: -.01em;
	margin-bottom: .5rem
}

.posts-list h4 {
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.4;
	letter-spacing: 0;
	margin-bottom: 0
}

.posts-list a {
	color: #333
}

.banner-sidebar {
	position: relative;
	text-align: center;
	line-height: 0
}

.banner-sidebar>a {
	display: inline-block
}

.tagcloud {
	display: flex;
	align-items: center;
	flex-flow: wrap;
	padding-top: .3rem;
	margin-right: -1rem;
	margin-bottom: -1rem
}

.tagcloud a {
	display: block;
	color: #999;
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.4;
	border-radius: .3rem;
	padding: .65rem .9rem;
	background-color: #fafafa;
	border: thin solid #ebebeb;
	margin-right: 1rem;
	margin-bottom: 1rem;
	transition: all .3s ease
}

.tagcloud a:focus,
.tagcloud a:hover {
	background-color: #fff
}

.widget-text p:last-child {
	margin-bottom: 0
}

@media screen and (min-width:768px) {
	.entry-list {
		margin-bottom: 5rem
	}

	.entry-list .col-md-5 {
		-ms-flex: 0 0 45%;
		-webkit-box-flex: 0;
		flex: 0 0 45%;
		max-width: 45%
	}

	.entry-list .entry-media {
		max-width: 376px;
		margin-bottom: 0
	}

	.entry-list .col-md-7 {
		-ms-flex: 0 0 55%;
		-webkit-box-flex: 0;
		flex: 0 0 55%;
		max-width: 55%
	}
}

@media screen and (min-width:992px) {
	.sidebar {
		margin-top: -.3rem
	}

	.entry {
		margin-bottom: 6rem
	}

	.entry-grid {
		margin-bottom: 4rem
	}

	.item_1>.entry-grid .entry-media,
	.item_2>.entry-grid .entry-media {
		margin-bottom: 2.4rem
	}

	.item_1>.entry-grid .entry-title,
	.item_2>.entry-grid .entry-title {
		font-size: 2.4rem
	}

	.item_1>.entry-grid .entry-cats,
	.item_2>.entry-grid .entry-cats {
		margin-bottom: 1.5rem
	}

	.item_3 .entry-grid .entry-video a:after,
	.item_4 .entry-grid .entry-video a:after {
		width: 5rem;
		height: 5rem;
		margin-left: -2.5rem;
		margin-top: -2.5rem
	}

	.col-lg-3 .entry-grid .entry-video a:focus:after,
	.col-lg-3 .entry-grid .entry-video a:hover:after,
	.col-lg-4 .entry-grid .entry-video a:focus:after,
	.col-lg-4 .entry-grid .entry-video a:hover:after {
		-webkit-box-shadow: 0 0 0 1rem rgba(255, 255, 255, .2);
		box-shadow: 0 0 0 1rem rgba(255, 255, 255, .2)
	}

	.entry-list {
		margin-bottom: 7rem
	}

	.entry-list:last-of-type {
		margin-bottom: 6rem
	}

	.entry-list .entry-body {
		padding-left: 1.5rem
	}

	.entry-mask .entry-title {
		font-size: 2.4rem
	}
}

.entry.single-entry {
	margin-bottom: 4rem
}

.single-entry .entry-body {
	margin-bottom: 4rem
}

.single-entry .entry-cats,
.single-entry .entry-meta {
	color: #ccc
}

.single-entry .entry-cats a:not(:hover):not(:focus),
.single-entry .entry-meta a:not(:hover):not(:focus) {
	color: #666
}

.single-entry .entry-title-big {
	font-weight: 400;
	font-size: 4rem
}

.editor-content::after {
	display: block;
	clear: both;
	content: ''
}

.editor-content .float-left {
	margin-right: 4.8rem;
	margin-bottom: 2rem
}

.editor-content .float-right {
	margin-left: 4.8rem;
	margin-bottom: 2rem
}

.editor-content img {
	margin-bottom: 2rem
}

.editor-content p {
	margin-bottom: 2.4rem
}

.editor-content h3 {
	font-weight: 400;
	font-size: 2.4rem;
	margin-bottom: 2rem
}

.editor-content a {
	color: #333;
	-webkit-box-shadow: 0 1px 0 #333;
	box-shadow: 0 1px 0 #333;
	-webkit-transition: all .35s ease;
	transition: all .35s ease
}

.editor-content blockquote {
	position: relative;
	color: #333;
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1.67;
	padding: 4rem 2rem 4rem 7rem;
	border-left: 0thin solid transparent;
	background-color: #fafafa;
	margin-top: 4.2rem;
	margin-bottom: 4.2rem
}

.editor-content blockquote p:last-child {
	margin-bottom: 0
}

.editor-content blockquote:before {
	color: #ebebeb;
	content: '\f10e';
	font-weight: 400;
	font-size: 3rem;
	line-height: 1;
	font-family: molla;
	position: absolute;
	left: 2rem;
	top: 50%;
	margin-top: -1.5rem
}

@media (min-width:768px) {
	.editor-content blockquote {
		padding: 4rem 6rem 4rem 12rem
	}

	.editor-content blockquote:before {
		left: 4rem
	}
}

.editor-content ul li {
	position: relative;
	margin-bottom: 2.7rem
}

.editor-content ul li:before {
	display: inline-block;
	content: '•';
	font-size: 1.8rem;
	line-height: 1;
	margin-right: 1rem;
	vertical-align: middle;
	margin-top: -1px
}

.entry-footer {
	margin-top: 3.6rem;
	margin-bottom: 5rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.entry-footer .social-icon {
	font-size: 1.3rem
}

.entry-tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-flow: wrap;
	flex-flow: wrap;
	padding-top: .2rem
}

.entry-tags span {
	margin-right: 1rem
}

.entry-tags a {
	display: block;
	color: #999;
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1.4;
	border-radius: .3rem;
	padding: .45rem .9rem;
	background-color: #fafafa;
	border: thin solid #ebebeb;
	margin-right: .5rem;
	margin-bottom: 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.entry-tags a:focus,
.entry-tags a:hover {
	color: #c96;
	background-color: #fff
}

.pager-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 3.5rem;
	border-bottom: thin solid #ebebeb;
	margin-bottom: 4.5rem
}

.pager-link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	font-weight: 400;
	padding-top: .55rem;
	padding-bottom: .55rem;
	font-size: 1.4rem;
	line-height: 1.5;
	-webkit-transition: all .35s ease;
	transition: all .35s ease
}

.pager-link+.pager-link {
	border-left: thin solid #ebebeb
}

.pager-link:after {
	color: #333;
	display: block;
	font-family: molla;
	font-size: 1.5rem;
	line-height: 1;
	position: absolute;
	top: 50%;
	-webkit-transition: all .35s ease .05s;
	transition: all .35s ease .05s;
	margin-top: -.8rem
}

.pager-link.pager-link-prev {
	padding-left: 5rem;
	padding-right: 1rem
}

.pager-link.pager-link-prev:after {
	content: '\f273';
	left: 1.5rem
}

@media (min-width:768px) {
	.pager-link.pager-link-prev {
		padding-left: 10rem
	}

	.pager-link.pager-link-prev:after {
		left: 3rem
	}
}

.pager-link.pager-link-next {
	padding-left: 1rem;
	padding-right: 10rem;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	text-align: right
}

.pager-link.pager-link-next:after {
	content: '\f274';
	right: 3rem
}

.pager-link:focus.pager-link-prev,
.pager-link:hover.pager-link-prev {
	padding-left: 7rem
}

.pager-link:focus.pager-link-prev:after,
.pager-link:hover.pager-link-prev:after {
	left: 0
}

.pager-link:focus.pager-link-next,
.pager-link:hover.pager-link-next {
	padding-right: 7rem
}

.pager-link:focus.pager-link-next:after,
.pager-link:hover.pager-link-next:after {
	right: 0
}

.pager-link:focus .pager-link-title,
.pager-link:hover .pager-link-title {
	-webkit-box-shadow: 0 .1rem 0 #333;
	box-shadow: 0 .1rem 0 #333
}

.pager-link-title {
	display: inline-block;
	margin-top: .6rem;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	color: #333;
	font-size: 1.5rem;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.related-posts {
	padding-bottom: 4.5rem;
	margin-bottom: 4.5rem;
	border-bottom: thin solid #ebebeb
}

.related-posts .title {
	font-weight: 600;
	font-size: 1.8rem;
	letter-spacing: -.025em;
	margin-bottom: 3rem
}

.related-posts .entry.entry-grid {
	margin-bottom: 0
}

.related-posts .entry-grid .entry-title {
	font-weight: 400
}

.comments {
	margin-bottom: 5rem
}

.comments .title {
	font-weight: 600;
	font-size: 1.8rem;
	letter-spacing: -.025em;
	margin-bottom: 4.5rem
}

.comments ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.comments ul ul {
	margin-top: 4rem;
	margin-left: 8rem;
	padding-top: 4.5rem;
	border-top: thin solid #ebebeb
}

.comments li {
	border-bottom: thin solid #ebebeb;
	padding-bottom: 4rem;
	margin-bottom: 5rem
}

.comments li:last-child {
	border-bottom-width: 0;
	margin-bottom: 0;
	padding-bottom: 0
}

.comment {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.comment-media {
	border-radius: 50px;
	overflow: hidden;
	min-width: 50px
}

.comment-body {
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding-left: 3rem
}

.comment-reply {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #999;
	position: absolute;
	right: 0;
	top: 0;
	font-weight: 300;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: -.01em;
	padding-bottom: .4rem;
	-webkit-transition: all .35s ease;
	transition: all .35s ease
}

.comment-reply:after {
	font-family: molla;
	content: '\f279';
	font-size: 1.5rem;
	margin-left: .7rem
}

.comment-reply:focus,
.comment-reply:hover {
	color: #c96;
	-webkit-box-shadow: 0 1px 0 #c96;
	box-shadow: 0 1px 0 #c96
}

.comment-user {
	margin-bottom: 1rem
}

.comment-user h4 {
	color: #333;
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: -.01em;
	margin-bottom: 0
}

.comment-user h4 a {
	color: inherit
}

.comment-user h4 a:focus,
.comment-user h4 a:hover {
	color: #c96
}

.comment-user h4 span {
	display: block
}

.comment-date {
	color: #ccc;
	font-weight: 300;
	font-size: 1.3rem;
	line-height: 1
}

.reply {
	background-color: #fafafa;
	padding: 4rem 3rem 5rem;
	margin-bottom: 2rem
}

.reply .heading {
	margin-bottom: 2.4rem
}

.reply .title {
	font-weight: 600;
	font-size: 1.8rem;
	letter-spacing: -.025em;
	margin-bottom: .9rem
}

.reply .title-desc {
	color: #ccc;
	font-size: 1.3rem;
	letter-spacing: -.01em
}

.reply .form-control {
	background-color: #fff
}

.reply textarea.form-control {
	min-height: 100px
}

.cartCost,
.cartCostTotal {
	color: #111;
	font-size: 1.6rem;
	font-weight: 500
}

.agree_checkbox {
	margin-bottom: 1rem
}

.agree_checkbox label {
	margin-bottom: 0
}

.agree_checkbox input {
	margin-top: 0;
	margin-right: 1rem;
	display: inline-block;
	vertical-align: middle
}

.agree_checkbox a {
	color: #6b76e6
}

.alert-terms-conditions p {
	margin-bottom: 0
}

.spendFreeShip .progress {
	height: .8rem;
	position: relative;
	background-color: #9e9e9e;
	overflow: initial;
	margin: 1rem 0 .8rem
}

.spendFreeShip .progress-bar {
	background-color: #a6c76c;
	font-size: 0;
	border-radius: .25rem
}

.spendFreeShip .text_progress {
	line-height: 1.8rem;
	margin-bottom: .5rem
}

.spendFreeShip .text_progress .money {
	color: #e53939
}

.spendFreeShip .text_progress>span:last-child {
	display: none
}

.spendFreeShip.congratulations .text_progress {
	right: 0;
	width: 100%
}

.spendFreeShip.congratulations .text_progress>span:first-child {
	display: none
}

.spendFreeShip.congratulations .text_progress>span:last-child {
	display: block
}

#cart-form {
	position: relative
}

#cart-form+.progress {
	opacity: 0;
	position: absolute;
	left: 1rem;
	right: 1rem;
	top: -.5rem
}

#cart-form.loading {
	pointer-events: none
}

#cart-form.loading+.progress {
	opacity: 1
}

.cart-discount.input-group {
	max-width: 350px
}

.question_mark {
	cursor: pointer
}

.info-discount {
	top: 100%;
	margin-top: 2rem;
	right: 0;
	width: 25rem;
	padding: .2rem 1rem;
	border-radius: .2rem;
	border: 1px solid #bee5eb;
	color: #0c5460;
	background-color: #d1ecf1;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .3s;
	transition: all .3s;
	text-align: center;
	cursor: auto;
	z-index: 1
}

.question_mark {
	cursor: pointer
}

.question_mark:hover .info-discount {
	margin-top: 1rem;
	opacity: 1;
	visibility: visible
}

.item__cart {
	width: 100%;
	-webkit-transition: padding-top .3s ease;
	-moz-transition: padding-top .3s ease;
	-o-transition: padding-top .3s ease;
	transition: padding-top .3s ease
}

.item__cart .variation {
	line-height: normal;
	font-size: 1.2rem
}

.item__cart .variation a {
	font-size: 1.4rem;
	--grid-gutter: 5px
}

.item__cart a.remove-item.remove {
	font-style: italic;
	font-size: 1.2rem
}

.item__cart a.remove-item.remove:not(:hover) {
	color: #999
}

.info__cart .product-name {
	font-size: 1.3rem;
	margin-bottom: 0
}

.info__cart .product-name a:not(:hover) {
	color: #333
}

.item__gift_item .remove-item {
	display: none !important
}

.item__gift_item .action__cart {
	display: none
}

.item__gift_item .info__cart {
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%
}

.item__gift_item .product-name {
	pointer-events: none
}

.item__wrap_item .product-name {
	pointer-events: none
}

#cartModal .modal-header {
	padding-left: 3rem;
	padding-right: 3rem;
	border: none;
	background-color: #f9f9f9
}

#cartModal .modal-header h3 {
	font-size: 1.8rem;
	padding-top: .5rem;
	padding-bottom: .5rem
}

#cartModal .product-name {
	margin-bottom: .5rem;
	font-size: 1.4rem
}

#cartModal .product-name a:not(:hover) {
	color: #333
}

#cartModal .cart__popup-item {
	margin-bottom: 1.5rem
}

#cartModal .cart__popup-empty {
	display: none
}

#cartModal .cart__popup-action {
	padding: 3rem 2rem 3.8rem;
	border: .1rem dashed #d7d7d7;
	background-color: #f9f9f9
}

#cartModal .cart__popup-action .table {
	margin-bottom: 0
}

#cartModal .cart__popup-action .table td,
#cartModal .cart__popup-action .table th {
	padding: 0;
	border: none;
	font-weight: 400;
	color: #555;
	vertical-align: middle
}

#cartModal .cart__popup-action .table th {
	width: 45%
}

#cartModal .cart__popup-action .table td {
	text-align: right
}

#cartModal h6.cart__popup-title {
	font-size: 1.4rem
}

#cartModal .quantity .input-qty {
	min-width: 10rem
}

#cartModal .agree_checkbox label {
	font-size: 1.3rem
}

#cartModal .ajax__list-cart.loading {
	min-height: 90px
}

#cartModal .ajax__list-cart.loading:after {
	content: '';
	background-image: url(Infinity-1.2s-68px.svg);
	width: 68px;
	height: 40px;
	background-size: auto;
	background-position: center;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -34px
}

#cartModal .modal-footer {
	border-color: #f7f7f7;
	padding: 1.5rem 3rem;
	display: block
}

@media (max-width:576px) {
	#cartModal .modal-footer .btn {
		min-width: auto;
		width: 100%;
		padding-left: 1rem;
		padding-right: 1rem;
		font-size: 1.3rem
	}
}

.page-header h1 {
	color: #333;
	font-size: 3.2rem;
	font-weight: 400;
	letter-spacing: -.025em;
	margin-bottom: 0
}

@media (min-width:768px) {
	.page-header h1 {
		font-size: 4rem
	}
}

.page-header h1 span {
	display: block;
	font-size: 1.6rem;
	margin-top: .8rem
}

@media (min-width:768px) {
	.page-header h1 span {
		font-size: 2rem
	}
}

.page-header.page-header-big h1 span {
	font-size: 1.4rem;
	margin-top: .4rem;
	letter-spacing: 0
}

@media (min-width:768px) {
	.page-header.page-header-big h1 span {
		font-size: 1.6rem
	}
}

.content_kt_page_head .image_bg_section {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1
}

.banner-effect1 {
	display: block;
	position: relative
}

.banner-effect1:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	background-color: rgba(51, 51, 51, .25);
	transition: all .35s ease;
	pointer-events: none
}

.banner-effect1:hover:before {
	visibility: visible;
	opacity: 1
}

.banner-effect2 {
	display: block;
	position: relative
}

.banner-effect2:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	background-color: rgba(0, 0, 0, .4);
	-webkit-transition: all .8s ease 0s;
	transition: all .8s ease 0s;
	opacity: 0;
	z-index: 1;
	pointer-events: none
}

.banner-effect2:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	background-color: rgba(0, 0, 0, .4);
	-webkit-transition: all .8s ease 0s;
	transition: all .8s ease 0s;
	opacity: 0;
	z-index: 1;
	left: inherit;
	right: 0;
	width: 0%;
	background-color: rgba(0, 0, 0, .3);
	-webkit-transition: all .1s ease 0s;
	transition: all .1s ease 0s;
	pointer-events: none
}

.banner-effect2:hover:before {
	width: 0%;
	opacity: 1
}

.banner-effect2:hover:after {
	width: 100%
}

.banner-effect3 {
	display: block;
	position: relative
}

.banner-effect3:after {
	content: "";
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 1;
	pointer-events: none;
	-webkit-transition: all .3s ease-out 0s;
	transition: all .3s ease-out 0s;
	pointer-events: none
}

@media (min-width:768px) {
	.banner-effect3:after {
		top: 3rem;
		left: 3rem;
		bottom: 3rem;
		right: 3rem
	}
}

.banner-effect3:after {
	border: 5px solid transparent
}

.banner-effect3:hover:after {
	background-color: rgba(255, 255, 255, .4);
	border-color: rgba(255, 255, 255, .4)
}

.banner-effect4 {
	overflow: hidden;
	display: block;
	position: relative
}

.banner-effect4 img {
	transform-origin: 0 0 0;
	-webkit-transition: transform .3s ease 0s;
	transition: transform .3s ease 0s
}

.banner-effect4:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, .25);
	opacity: 0;
	-webkit-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	z-index: 1;
	pointer-events: none
}

.banner-effect4:hover:before {
	opacity: 1
}

.banner-effect4:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}

.banner-effect5 {
	display: block;
	position: relative;
	overflow: hidden
}

.banner-effect5:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, .3);
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	pointer-events: none
}

.banner-effect5:hover:before {
	visibility: visible;
	opacity: 1
}

.banner-effect6,
.banner-effect7,
.banner-effect8 {
	display: block;
	position: relative;
	overflow: hidden
}

.banner-effect6 .img__banner,
.banner-effect7 .img__banner,
.banner-effect8 .img__banner {
	background-size: 100.5%;
	background-position: center;
	-webkit-transition: background-size .8s ease-in-out;
	transition: background-size .8s ease-in-out
}

.banner-effect6:hover .img__banner,
.banner-effect7:hover .img__banner,
.banner-effect8:hover .img__banner {
	background-size: 110%
}

.banner-effect6 img,
.banner-effect7 img,
.banner-effect8 img {
	transform-origin: center center;
	-webkit-transition: transform .8s ease 0s;
	transition: transform .8s ease 0s
}

.banner-effect6:hover img,
.banner-effect7:hover img,
.banner-effect8:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}

.banner-effect7 .img__banner {
	background-position: left center
}

.banner-effect7:hover img {
	transform-origin: left center
}

.banner-effect8 .img__banner {
	background-position: right center
}

.banner-effect8:hover img {
	transform-origin: right center
}

#toast {
	position: fixed;
	top: 32px;
	right: 32px;
	z-index: 999999
}

.toast {
	display: flex;
	align-items: center;
	background-color: #fff;
	border-radius: 2px;
	padding: 20px 0;
	min-width: 400px;
	max-width: 450px;
	border-left: 4px solid;
	box-shadow: 0 5px 8px rgba(0, 0, 0, .08);
	transition: all linear .3s
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(calc(100% + 32px))
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

@keyframes fadeOut {
	to {
		opacity: 0
	}
}

.toast--success {
	border-color: #47d864
}

.toast--success .toast__icon {
	color: #47d864
}

.toast--error {
	border-color: #ff623d
}

.toast--error .toast__icon {
	color: #ff623d
}

.toast+.toast {
	margin-top: 24px
}

.toast__icon {
	font-size: 24px
}

.toast__close,
.toast__icon {
	padding: 0 16px
}

.toast__body {
	flex-grow: 1
}

.toast__title {
	font-size: 16px;
	font-weight: 600;
	color: #333
}

.toast__msg {
	font-size: 14px;
	color: #888;
	margin-top: 6px;
	line-height: 1.5
}

.toast__close {
	font-size: 20px;
	color: rgba(0, 0, 0, .3);
	cursor: pointer
}

@media only screen and (-webkit-min-device-pixel-ratio:2) {

	input,
	textarea {
		font-size: 16px !important;
		line-height: 26px
	}

	input::-webkit-input-placeholder,
	textarea::-webkit-input-placeholder {
		font-size: 1.4rem;
		line-height: 26px
	}

	input.input-qty {
		padding: .5rem 1.5rem !important
	}
}

@media (hover:none) {
	.overflow-scroll-wrapper {
		overflow: hidden;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: none;
		scrollbar-width: none
	}

	.overflow-scroll-wrapper::-webkit-scrollbar {
		display: none
	}
}

.svg-icon {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	vertical-align: middle;
	fill: currentColor
}

svg.svg-icon circle,
svg.svg-icon ellipse,
svg.svg-icon g,
svg.svg-icon line,
svg.svg-icon path,
svg.svg-icon polygon,
svg.svg-icon polyline,
svg.svg-icon rect,
symbol.svg-icon circle,
symbol.svg-icon ellipse,
symbol.svg-icon g,
symbol.svg-icon line,
symbol.svg-icon path,
symbol.svg-icon polygon,
symbol.svg-icon polyline,
symbol.svg-icon rect {
	fill: inherit;
	stroke: inherit
}

.form-control {
	position: relative
}

.form-control:before {
	content: ''
}

.input-group-append {
	z-index: 0
}

.customColor {
	position: fixed;
	top: 100px;
	z-index: -1
}

.customColor.lazyloading[data-include]:after {
	display: none
}

.swiper-fixed-fshadow {
	display: -ms-flexbox;
	display: flex;
	z-index: 0;
	position: relative
}

.swiper-fixed-fshadow>div {
	width: 100%
}

.swiper-fixed-fshadow .swiper-container {
	-ms-touch-action: pan-y;
	touch-action: pan-y
}

.swiper-fixed-fshadow .swiper-container {
	padding: 10px 9px 200px;
	margin: -10px -9px -200px
}

.swiper-fixed-fshadow .swiper-container.swiper-container-has-dot .swiper-wrapper {
	padding-bottom: 50px
}

.swiper-fixed-fshadow .swiper-pagination {
	bottom: 205px;
	z-index: 1;
	left: 10px;
	right: 10px;
	width: calc(100% - 20px);
	width: -o-calc(100% - 20px);
	width: -ms-calc(100% - 20px);
	width: -moz-calc(100% - 20px);
	width: -webkit-calc(100% - 20px)
}

.swiper-container-has-dot .swiper-pagination.swiper-pagination-outside {
	position: static;
	margin-top: 1.5rem;
	margin-right: -4px;
	margin-left: -4px;
	width: auto;
	display: block;
	z-index: 0
}

.w-100.swiper-fixed-fshadow .section-width.w-100 .swiper-container {
	padding: 10px 0 200px;
	margin: -10px 0 -200px
}

.scroll_top {
	top: 80%;
	right: 1.5rem;
	width: 4rem;
	height: 4rem;
	background-color: #fff;
	text-align: center;
	line-height: 3.6rem;
	z-index: 10;
	display: none;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease
}

.scroll_top::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	z-index: -1;
	box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease
}

.scroll_top:hover {
	transform: translateY(-2px)
}

.scroll_top:hover::after {
	opacity: 1
}

#snow_ef_t4 {
	display: block;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: fixed;
	background-color: rgba(0, 0, 0, .01);
	background-image: url(//cdn.shopify.com/s/files/1/0454/0937/0270/t/19/assets/snow.png?v=16553593660886074577), url(//cdn.shopify.com/s/files/1/0454/0937/0270/t/19/assets/snow1.png?v=1614684097228081620), url(//cdn.shopify.com/s/files/1/0454/0937/0270/t/19/assets/snow2.png?v=129476425637610107);
	background-repeat: repeat;
	z-index: 100000;
	pointer-events: none;
	-moz-animation: snow_ef_t4 10s linear infinite;
	-webkit-animation: snow_ef_t4 10s linear infinite;
	animation: snow_ef_t4 10s linear infinite
}

@keyframes snow_ef_t4 {
	0% {
		background-position: 0 0, 0 0, 0 0
	}

	100% {
		background-position: 500px 3000px, 0 400px, 0 300px
	}
}

.modal-content {
	border: none;
	border-radius: 0
}

.mfp-container .mfp-content {
	text-align: center
}

.mfp-content .white-popup {
	display: inline-block;
	position: relative
}

.modal-header .close {
	background-color: transparent !important;
	top: 7px
}

.modal-header .close:after,
.modal-header .close:before {
	background-color: #666
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
	right: 0 !important
}

.alert .close {
	background-color: transparent !important
}

.alert .close::after,
.alert .close::before {
	background-color: #333;
	top: 3px
}

.shopify-challenge__container {
	padding-top: 4.5rem;
	padding-bottom: 7.5rem
}

#sizeModal .table-bordered,
#sizeModal .table-bordered td,
#sizeModal .table-bordered th {
	border: 1px solid #dee2e6;
	vertical-align: middle;
	text-align: center;
	padding: 1.5rem .75rem
}

.box-icon-midas {
	font-size: 2.4rem;
	margin-top: 2.5rem;
	text-align: center
}

.box-icon-midas span {
	display: block;
	font-size: 1.2rem;
	font-style: normal
}

.content-sidebar .col-xl-3>.row>.shopify-section {
	padding-right: 10px;
	padding-left: 10px;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%
}

@media (min-width:576px) and (max-width:1199px) {
	.content-sidebar .col-xl-3>.row>.shopify-section:not(.md_products_section_show_3) {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%
	}
}

.content-sidebar .sidebar-wrapper .item-blog.type04 .entry-body {
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0
}

.content-sidebar .sidebar-wrapper .swiper-fixed-fshadow .swiper-container-has-dot .swiper-pagination.swiper-pagination-outside {
	text-align: initial
}

.page-container {
	min-height: 500px
}

.shopify-section {
	position: relative
}

.widget_flt_slider .kt--filter-gr-i_ul {
	overflow: visible !important
}

.widget_flt_slider .kt--filter-gr-i_ul li.ui-slider {
	line-height: normal !important;
	cursor: auto !important;
	text-transform: none !important;
	overflow: visible !important
}

.widget_flt_slider .kt--filter-gr-i_ul label {
	margin-bottom: .5rem
}

.widget_flt_slider .kt--filter-gr-i_ul .amount {
	font-size: 1.4rem;
	font-weight: 600;
	display: flex;
	display: -ms-flexbox
}

.widget_flt_slider .kt--filter-gr-i_ul .btn {
	font-size: 1.4rem
}

.widget_flt_slider .ui-slider {
	position: relative
}

.widget_flt_slider .ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.4rem;
	height: 1.4rem;
	cursor: pointer;
	-ms-touch-action: none;
	touch-action: none
}

.widget_flt_slider .ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7rem;
	display: block;
	border: 0;
	background-position: 0 0
}

.widget_flt_slider .ui-slider-horizontal {
	height: .8rem;
	background-color: #eee;
	margin-left: .6rem;
	margin-right: .6rem
}

.widget_flt_slider .ui-slider-horizontal .ui-slider-handle {
	top: -.3rem;
	margin-left: -.7rem;
	background-color: #c96;
	border-radius: 2px
}

.widget_flt_slider .ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%
}

.widget_flt_slider .ui-slider-horizontal .ui-slider-range-min {
	left: 0
}

.widget_flt_slider .ui-slider-horizontal .ui-slider-range-max {
	right: 0
}

.widget_flt_slider .ui-slider-vertical {
	width: .8rem;
	height: 100px
}

.widget_flt_slider .ui-slider-vertical .ui-slider-handle {
	left: -.3rem;
	margin-left: 0;
	margin-bottom: -.7rem
}

.widget_flt_slider .ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%
}

.widget_flt_slider .ui-slider-vertical .ui-slider-range-min {
	bottom: 0
}

.widget_flt_slider .ui-slider-vertical .ui-slider-range-max {
	top: 0
}

.theme_alt {
	max-width: 36rem;
	left: 50%;
	transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	border-radius: .5rem
}

.dropdown-menu {
	font-size: 1.4rem
}

.brdx2 {
	border-width: 2px !important
}

.brdx3 {
	border-width: 3px !important
}

@media (min-width:992px) {
	.modal-lg {
		max-width: 1024px
	}
}

@media (min-width:1440px) {
	.modal-xl {
		max-width: 1180px
	}
}

.tab-content>.tab-pane.fade {
	transition-duration: .3s
}

.list-inline-item:not(:last-child) {
	margin-right: .5rem
}

.offset-1 {
	margin-left: 8.333333%
}

.offset-2 {
	margin-left: 16.666667%
}

.offset-3 {
	margin-left: 25%
}

.offset-4 {
	margin-left: 33.333333%
}

.offset-5 {
	margin-left: 41.666667%
}

.offset-6 {
	margin-left: 50%
}

.offset-7 {
	margin-left: 58.333333%
}

.offset-8 {
	margin-left: 66.666667%
}

.offset-9 {
	margin-left: 75%
}

.offset-10 {
	margin-left: 83.333333%
}

.offset-11 {
	margin-left: 91.666667%
}

@media (min-width:576px) {
	.offset-sm-0 {
		margin-left: 0
	}

	.offset-sm-1 {
		margin-left: 8.333333%
	}

	.offset-sm-2 {
		margin-left: 16.666667%
	}

	.offset-sm-3 {
		margin-left: 25%
	}

	.offset-sm-4 {
		margin-left: 33.333333%
	}

	.offset-sm-5 {
		margin-left: 41.666667%
	}

	.offset-sm-6 {
		margin-left: 50%
	}

	.offset-sm-7 {
		margin-left: 58.333333%
	}

	.offset-sm-8 {
		margin-left: 66.666667%
	}

	.offset-sm-9 {
		margin-left: 75%
	}

	.offset-sm-10 {
		margin-left: 83.333333%
	}

	.offset-sm-11 {
		margin-left: 91.666667%
	}
}

@media (min-width:768px) {
	.offset-md-1 {
		margin-left: 8.333333%
	}

	.offset-md-2 {
		margin-left: 16.666667%
	}

	.offset-md-3 {
		margin-left: 25%
	}

	.offset-md-4 {
		margin-left: 33.333333%
	}

	.offset-md-5 {
		margin-left: 41.666667%
	}

	.offset-md-6 {
		margin-left: 50%
	}

	.offset-md-7 {
		margin-left: 58.333333%
	}

	.offset-md-8 {
		margin-left: 66.666667%
	}

	.offset-md-9 {
		margin-left: 75%
	}

	.offset-md-10 {
		margin-left: 83.333333%
	}

	.offset-md-11 {
		margin-left: 91.666667%
	}
}

@media (min-width:992px) {
	.offset-lg-0 {
		margin-left: 0
	}

	.offset-lg-1 {
		margin-left: 8.333333%
	}

	.offset-lg-2 {
		margin-left: 16.666667%
	}

	.offset-lg-3 {
		margin-left: 25%
	}

	.offset-lg-4 {
		margin-left: 33.333333%
	}

	.offset-lg-5 {
		margin-left: 41.666667%
	}

	.offset-lg-6 {
		margin-left: 50%
	}

	.offset-lg-7 {
		margin-left: 58.333333%
	}

	.offset-lg-8 {
		margin-left: 66.666667%
	}

	.offset-lg-9 {
		margin-left: 75%
	}

	.offset-lg-10 {
		margin-left: 83.333333%
	}

	.offset-lg-11 {
		margin-left: 91.666667%
	}
}

@media (min-width:1200px) {
	.offset-xl-0 {
		margin-left: 0
	}

	.offset-xl-1 {
		margin-left: 8.333333%
	}

	.offset-xl-2 {
		margin-left: 16.666667%
	}

	.offset-xl-3 {
		margin-left: 25%
	}

	.offset-xl-4 {
		margin-left: 33.333333%
	}

	.offset-xl-5 {
		margin-left: 41.666667%
	}

	.offset-xl-6 {
		margin-left: 50%
	}

	.offset-xl-7 {
		margin-left: 58.333333%
	}

	.offset-xl-8 {
		margin-left: 66.666667%
	}

	.offset-xl-9 {
		margin-left: 75%
	}

	.offset-xl-10 {
		margin-left: 83.333333%
	}

	.offset-xl-11 {
		margin-left: 91.666667%
	}
}

@media (min-width:1600px) {
	.offset-xxl-2 {
		margin-left: 16.666667%
	}
}

.pt-gutter {
	padding-top: calc(var(--grid-gutter) * 2)
}

.pb-gutter {
	padding-bottom: calc(var(--grid-gutter) * 2)
}

.mt-gutter {
	margin-top: calc(var(--grid-gutter) * 2)
}

.mb-gutter {
	margin-bottom: calc(var(--grid-gutter) * 2)
}

.mr-auto {
	margin-right: auto
}

.ml-auto {
	margin-left: auto
}

.mx-auto {
	margin-left: auto;
	margin-right: auto
}

.m-0 {
	margin: 0
}

.p-0 {
	padding: 0
}

.my-0 {
	margin-top: 0;
	margin-bottom: 0
}

.mt-0 {
	margin-top: 0
}

.mr-0 {
	margin-right: 0
}

.mb-0 {
	margin-bottom: 0
}

.ml-0 {
	margin-left: 0
}

.py-0 {
	padding-top: 0;
	padding-bottom: 0
}

.pt-0 {
	padding-top: 0
}

.pr-0 {
	padding-right: 0
}

.pb-0 {
	padding-bottom: 0
}

.pl-0 {
	padding-left: 0
}

.mr-autoi {
	margin-right: auto !important
}

.ml-autoi {
	margin-left: auto !important
}

.mx-autoi {
	margin-right: auto !important;
	margin-left: auto !important
}

.m-0i {
	margin: 0 !important
}

.p-0i {
	padding: 0 !important
}

.my-0i {
	margin-top: 0 !important;
	margin-bottom: 0 !important
}

.mt-0i {
	margin-top: 0 !important
}

.mb-0i {
	margin-bottom: 0 !important
}

.py-0i {
	padding-top: 0 !important;
	padding-bottom: 0 !important
}

.pt-0i {
	padding-top: 0 !important
}

.pb-0i {
	padding-bottom: 0 !important
}

.m-1 {
	margin: 1rem
}

.p-1 {
	padding: 1rem
}

.my-1 {
	margin-top: 1rem;
	margin-bottom: 1rem
}

.mt-1 {
	margin-top: 1rem
}

.mr-1 {
	margin-right: 1rem
}

.mb-1 {
	margin-bottom: 1rem
}

.ml-1 {
	margin-left: 1rem
}

.py-1 {
	padding-top: 1rem;
	padding-bottom: 1rem
}

.pt-1 {
	padding-top: 1rem
}

.pr-1 {
	padding-right: 1rem
}

.pb-1 {
	padding-bottom: 1rem
}

.pl-1 {
	padding-left: 1rem
}

.mr-autoi {
	margin-right: auto !important
}

.ml-autoi {
	margin-left: auto !important
}

.mx-autoi {
	margin-right: auto !important;
	margin-left: auto !important
}

.m-1i {
	margin: 1rem !important
}

.p-1i {
	padding: 1rem !important
}

.my-1i {
	margin-top: 1rem !important;
	margin-bottom: 1rem !important
}

.mt-1i {
	margin-top: 1rem !important
}

.mb-1i {
	margin-bottom: 1rem !important
}

.py-1i {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important
}

.pt-1i {
	padding-top: 1rem !important
}

.pb-1i {
	padding-bottom: 1rem !important
}

.m-2 {
	margin: 2rem
}

.p-2 {
	padding: 2rem
}

.my-2 {
	margin-top: 2rem;
	margin-bottom: 2rem
}

.mt-2 {
	margin-top: 2rem
}

.mr-2 {
	margin-right: 2rem
}

.mb-2 {
	margin-bottom: 2rem
}

.ml-2 {
	margin-left: 2rem
}

.py-2 {
	padding-top: 2rem;
	padding-bottom: 2rem
}

.pt-2 {
	padding-top: 2rem
}

.pr-2 {
	padding-right: 2rem
}

.pb-2 {
	padding-bottom: 2rem
}

.pl-2 {
	padding-left: 2rem
}

.mr-autoi {
	margin-right: auto !important
}

.ml-autoi {
	margin-left: auto !important
}

.mx-autoi {
	margin-right: auto !important;
	margin-left: auto !important
}

.m-2i {
	margin: 2rem !important
}

.p-2i {
	padding: 2rem !important
}

.my-2i {
	margin-top: 2rem !important;
	margin-bottom: 2rem !important
}

.mt-2i {
	margin-top: 2rem !important
}

.mb-2i {
	margin-bottom: 2rem !important
}

.py-2i {
	padding-top: 2rem !important;
	padding-bottom: 2rem !important
}

.pt-2i {
	padding-top: 2rem !important
}

.pb-2i {
	padding-bottom: 2rem !important
}

.m-3 {
	margin: 3rem
}

.p-3 {
	padding: 3rem
}

.my-3 {
	margin-top: 3rem;
	margin-bottom: 3rem
}

.mt-3 {
	margin-top: 3rem
}

.mr-3 {
	margin-right: 3rem
}

.mb-3 {
	margin-bottom: 3rem
}

.ml-3 {
	margin-left: 3rem
}

.py-3 {
	padding-top: 3rem;
	padding-bottom: 3rem
}

.pt-3 {
	padding-top: 3rem
}

.pr-3 {
	padding-right: 3rem
}

.pb-3 {
	padding-bottom: 3rem
}

.pl-3 {
	padding-left: 3rem
}

.mr-autoi {
	margin-right: auto !important
}

.ml-autoi {
	margin-left: auto !important
}

.mx-autoi {
	margin-right: auto !important;
	margin-left: auto !important
}

.m-3i {
	margin: 3rem !important
}

.p-3i {
	padding: 3rem !important
}

.my-3i {
	margin-top: 3rem !important;
	margin-bottom: 3rem !important
}

.mt-3i {
	margin-top: 3rem !important
}

.mb-3i {
	margin-bottom: 3rem !important
}

.py-3i {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important
}

.pt-3i {
	padding-top: 3rem !important
}

.pb-3i {
	padding-bottom: 3rem !important
}

.m-4 {
	margin: 4rem
}

.p-4 {
	padding: 4rem
}

.my-4 {
	margin-top: 4rem;
	margin-bottom: 4rem
}

.mt-4 {
	margin-top: 4rem
}

.mr-4 {
	margin-right: 4rem
}

.mb-4 {
	margin-bottom: 4rem
}

.ml-4 {
	margin-left: 4rem
}

.py-4 {
	padding-top: 4rem;
	padding-bottom: 4rem
}

.pt-4 {
	padding-top: 4rem
}

.pr-4 {
	padding-right: 4rem
}

.pb-4 {
	padding-bottom: 4rem
}

.pl-4 {
	padding-left: 4rem
}

.mr-autoi {
	margin-right: auto !important
}

.ml-autoi {
	margin-left: auto !important
}

.mx-autoi {
	margin-right: auto !important;
	margin-left: auto !important
}

.m-4i {
	margin: 4rem !important
}

.p-4i {
	padding: 4rem !important
}

.my-4i {
	margin-top: 4rem !important;
	margin-bottom: 4rem !important
}

.mt-4i {
	margin-top: 4rem !important
}

.mb-4i {
	margin-bottom: 4rem !important
}

.py-4i {
	padding-top: 4rem !important;
	padding-bottom: 4rem !important
}

.pt-4i {
	padding-top: 4rem !important
}

.pb-4i {
	padding-bottom: 4rem !important
}

.m-5 {
	margin: 5rem
}

.p-5 {
	padding: 5rem
}

.my-5 {
	margin-top: 5rem;
	margin-bottom: 5rem
}

.mt-5 {
	margin-top: 5rem
}

.mr-5 {
	margin-right: 5rem
}

.mb-5 {
	margin-bottom: 5rem
}

.ml-5 {
	margin-left: 5rem
}

.py-5 {
	padding-top: 5rem;
	padding-bottom: 5rem
}

.pt-5 {
	padding-top: 5rem
}

.pr-5 {
	padding-right: 5rem
}

.pb-5 {
	padding-bottom: 5rem
}

.pl-5 {
	padding-left: 5rem
}

.mr-autoi {
	margin-right: auto !important
}

.ml-autoi {
	margin-left: auto !important
}

.mx-autoi {
	margin-right: auto !important;
	margin-left: auto !important
}

.m-5i {
	margin: 5rem !important
}

.p-5i {
	padding: 5rem !important
}

.my-5i {
	margin-top: 5rem !important;
	margin-bottom: 5rem !important
}

.mt-5i {
	margin-top: 5rem !important
}

.mb-5i {
	margin-bottom: 5rem !important
}

.py-5i {
	padding-top: 5rem !important;
	padding-bottom: 5rem !important
}

.pt-5i {
	padding-top: 5rem !important
}

.pb-5i {
	padding-bottom: 5rem !important
}

.mx-2 {
	margin-left: 2rem;
	margin-right: 2rem
}

.mb-6 {
	margin-bottom: 7rem
}

.pb-6 {
	margin-bottom: 7rem
}

.mb-7 {
	margin-bottom: 7rem
}

.pb-7 {
	margin-bottom: 7rem
}

@media (min-width:576px) {
	.mr-sm-auto {
		margin-right: auto
	}

	.ml-sm-auto {
		margin-left: auto
	}

	.mx-sm-auto {
		margin-left: auto;
		margin-right: auto
	}

	.m-sm-0 {
		margin: 0
	}

	.p-sm-0 {
		padding: 0
	}

	.my-sm-0 {
		margin-top: 0;
		margin-bottom: 0
	}

	.mt-sm-0 {
		margin-top: 0
	}

	.mr-sm-0 {
		margin-right: 0
	}

	.mb-sm-0 {
		margin-bottom: 0
	}

	.ml-sm-0 {
		margin-left: 0
	}

	.py-sm-0 {
		padding-top: 0;
		padding-bottom: 0
	}

	.pt-sm-0 {
		padding-top: 0
	}

	.pr-sm-0 {
		padding-right: 0
	}

	.pb-sm-0 {
		padding-bottom: 0
	}

	.pl-sm-0 {
		padding-left: 0
	}

	.mr-sm-autoi {
		margin-right: auto !important
	}

	.ml-sm-autoi {
		margin-left: auto !important
	}

	.mx-sm-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-sm-0i {
		margin: 0 !important
	}

	.p-sm-0i {
		padding: 0 !important
	}

	.my-sm-0i {
		margin-top: 0 !important;
		margin-bottom: 0 !important
	}

	.mt-sm-0i {
		margin-top: 0 !important
	}

	.mb-sm-0i {
		margin-bottom: 0 !important
	}

	.py-sm-0i {
		padding-top: 0 !important;
		padding-bottom: 0 !important
	}

	.pt-sm-0i {
		padding-top: 0 !important
	}

	.pb-sm-0i {
		padding-bottom: 0 !important
	}

	.m-sm-1 {
		margin: 1rem
	}

	.p-sm-1 {
		padding: 1rem
	}

	.my-sm-1 {
		margin-top: 1rem;
		margin-bottom: 1rem
	}

	.mt-sm-1 {
		margin-top: 1rem
	}

	.mr-sm-1 {
		margin-right: 1rem
	}

	.mb-sm-1 {
		margin-bottom: 1rem
	}

	.ml-sm-1 {
		margin-left: 1rem
	}

	.py-sm-1 {
		padding-top: 1rem;
		padding-bottom: 1rem
	}

	.pt-sm-1 {
		padding-top: 1rem
	}

	.pr-sm-1 {
		padding-right: 1rem
	}

	.pb-sm-1 {
		padding-bottom: 1rem
	}

	.pl-sm-1 {
		padding-left: 1rem
	}

	.mr-sm-autoi {
		margin-right: auto !important
	}

	.ml-sm-autoi {
		margin-left: auto !important
	}

	.mx-sm-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-sm-1i {
		margin: 1rem !important
	}

	.p-sm-1i {
		padding: 1rem !important
	}

	.my-sm-1i {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important
	}

	.mt-sm-1i {
		margin-top: 1rem !important
	}

	.mb-sm-1i {
		margin-bottom: 1rem !important
	}

	.py-sm-1i {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important
	}

	.pt-sm-1i {
		padding-top: 1rem !important
	}

	.pb-sm-1i {
		padding-bottom: 1rem !important
	}

	.m-sm-2 {
		margin: 2rem
	}

	.p-sm-2 {
		padding: 2rem
	}

	.my-sm-2 {
		margin-top: 2rem;
		margin-bottom: 2rem
	}

	.mt-sm-2 {
		margin-top: 2rem
	}

	.mr-sm-2 {
		margin-right: 2rem
	}

	.mb-sm-2 {
		margin-bottom: 2rem
	}

	.ml-sm-2 {
		margin-left: 2rem
	}

	.py-sm-2 {
		padding-top: 2rem;
		padding-bottom: 2rem
	}

	.pt-sm-2 {
		padding-top: 2rem
	}

	.pr-sm-2 {
		padding-right: 2rem
	}

	.pb-sm-2 {
		padding-bottom: 2rem
	}

	.pl-sm-2 {
		padding-left: 2rem
	}

	.mr-sm-autoi {
		margin-right: auto !important
	}

	.ml-sm-autoi {
		margin-left: auto !important
	}

	.mx-sm-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-sm-2i {
		margin: 2rem !important
	}

	.p-sm-2i {
		padding: 2rem !important
	}

	.my-sm-2i {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important
	}

	.mt-sm-2i {
		margin-top: 2rem !important
	}

	.mb-sm-2i {
		margin-bottom: 2rem !important
	}

	.py-sm-2i {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important
	}

	.pt-sm-2i {
		padding-top: 2rem !important
	}

	.pb-sm-2i {
		padding-bottom: 2rem !important
	}

	.m-sm-3 {
		margin: 3rem
	}

	.p-sm-3 {
		padding: 3rem
	}

	.my-sm-3 {
		margin-top: 3rem;
		margin-bottom: 3rem
	}

	.mt-sm-3 {
		margin-top: 3rem
	}

	.mr-sm-3 {
		margin-right: 3rem
	}

	.mb-sm-3 {
		margin-bottom: 3rem
	}

	.ml-sm-3 {
		margin-left: 3rem
	}

	.py-sm-3 {
		padding-top: 3rem;
		padding-bottom: 3rem
	}

	.pt-sm-3 {
		padding-top: 3rem
	}

	.pr-sm-3 {
		padding-right: 3rem
	}

	.pb-sm-3 {
		padding-bottom: 3rem
	}

	.pl-sm-3 {
		padding-left: 3rem
	}

	.mr-sm-autoi {
		margin-right: auto !important
	}

	.ml-sm-autoi {
		margin-left: auto !important
	}

	.mx-sm-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-sm-3i {
		margin: 3rem !important
	}

	.p-sm-3i {
		padding: 3rem !important
	}

	.my-sm-3i {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important
	}

	.mt-sm-3i {
		margin-top: 3rem !important
	}

	.mb-sm-3i {
		margin-bottom: 3rem !important
	}

	.py-sm-3i {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important
	}

	.pt-sm-3i {
		padding-top: 3rem !important
	}

	.pb-sm-3i {
		padding-bottom: 3rem !important
	}

	.m-sm-4 {
		margin: 4rem
	}

	.p-sm-4 {
		padding: 4rem
	}

	.my-sm-4 {
		margin-top: 4rem;
		margin-bottom: 4rem
	}

	.mt-sm-4 {
		margin-top: 4rem
	}

	.mr-sm-4 {
		margin-right: 4rem
	}

	.mb-sm-4 {
		margin-bottom: 4rem
	}

	.ml-sm-4 {
		margin-left: 4rem
	}

	.py-sm-4 {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.pt-sm-4 {
		padding-top: 4rem
	}

	.pr-sm-4 {
		padding-right: 4rem
	}

	.pb-sm-4 {
		padding-bottom: 4rem
	}

	.pl-sm-4 {
		padding-left: 4rem
	}

	.mr-sm-autoi {
		margin-right: auto !important
	}

	.ml-sm-autoi {
		margin-left: auto !important
	}

	.mx-sm-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-sm-4i {
		margin: 4rem !important
	}

	.p-sm-4i {
		padding: 4rem !important
	}

	.my-sm-4i {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important
	}

	.mt-sm-4i {
		margin-top: 4rem !important
	}

	.mb-sm-4i {
		margin-bottom: 4rem !important
	}

	.py-sm-4i {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important
	}

	.pt-sm-4i {
		padding-top: 4rem !important
	}

	.pb-sm-4i {
		padding-bottom: 4rem !important
	}

	.m-sm-5 {
		margin: 5rem
	}

	.p-sm-5 {
		padding: 5rem
	}

	.my-sm-5 {
		margin-top: 5rem;
		margin-bottom: 5rem
	}

	.mt-sm-5 {
		margin-top: 5rem
	}

	.mr-sm-5 {
		margin-right: 5rem
	}

	.mb-sm-5 {
		margin-bottom: 5rem
	}

	.ml-sm-5 {
		margin-left: 5rem
	}

	.py-sm-5 {
		padding-top: 5rem;
		padding-bottom: 5rem
	}

	.pt-sm-5 {
		padding-top: 5rem
	}

	.pr-sm-5 {
		padding-right: 5rem
	}

	.pb-sm-5 {
		padding-bottom: 5rem
	}

	.pl-sm-5 {
		padding-left: 5rem
	}

	.mr-sm-autoi {
		margin-right: auto !important
	}

	.ml-sm-autoi {
		margin-left: auto !important
	}

	.mx-sm-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-sm-5i {
		margin: 5rem !important
	}

	.p-sm-5i {
		padding: 5rem !important
	}

	.my-sm-5i {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important
	}

	.mt-sm-5i {
		margin-top: 5rem !important
	}

	.mb-sm-5i {
		margin-bottom: 5rem !important
	}

	.py-sm-5i {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important
	}

	.pt-sm-5i {
		padding-top: 5rem !important
	}

	.pb-sm-5i {
		padding-bottom: 5rem !important
	}
}

@media (min-width:768px) {
	.mr-md-auto {
		margin-right: auto
	}

	.ml-md-auto {
		margin-left: auto
	}

	.mx-md-auto {
		margin-left: auto;
		margin-right: auto
	}

	.m-md-0 {
		margin: 0
	}

	.p-md-0 {
		padding: 0
	}

	.my-md-0 {
		margin-top: 0;
		margin-bottom: 0
	}

	.mt-md-0 {
		margin-top: 0
	}

	.mr-md-0 {
		margin-right: 0
	}

	.mb-md-0 {
		margin-bottom: 0
	}

	.ml-md-0 {
		margin-left: 0
	}

	.py-md-0 {
		padding-top: 0;
		padding-bottom: 0
	}

	.pt-md-0 {
		padding-top: 0
	}

	.pr-md-0 {
		padding-right: 0
	}

	.pb-md-0 {
		padding-bottom: 0
	}

	.pl-md-0 {
		padding-left: 0
	}

	.mr-md-autoi {
		margin-right: auto !important
	}

	.ml-md-autoi {
		margin-left: auto !important
	}

	.mx-md-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-md-0i {
		margin: 0 !important
	}

	.p-md-0i {
		padding: 0 !important
	}

	.my-md-0i {
		margin-top: 0 !important;
		margin-bottom: 0 !important
	}

	.mt-md-0i {
		margin-top: 0 !important
	}

	.mb-md-0i {
		margin-bottom: 0 !important
	}

	.py-md-0i {
		padding-top: 0 !important;
		padding-bottom: 0 !important
	}

	.pt-md-0i {
		padding-top: 0 !important
	}

	.pb-md-0i {
		padding-bottom: 0 !important
	}

	.m-md-1 {
		margin: 1rem
	}

	.p-md-1 {
		padding: 1rem
	}

	.my-md-1 {
		margin-top: 1rem;
		margin-bottom: 1rem
	}

	.mt-md-1 {
		margin-top: 1rem
	}

	.mr-md-1 {
		margin-right: 1rem
	}

	.mb-md-1 {
		margin-bottom: 1rem
	}

	.ml-md-1 {
		margin-left: 1rem
	}

	.py-md-1 {
		padding-top: 1rem;
		padding-bottom: 1rem
	}

	.pt-md-1 {
		padding-top: 1rem
	}

	.pr-md-1 {
		padding-right: 1rem
	}

	.pb-md-1 {
		padding-bottom: 1rem
	}

	.pl-md-1 {
		padding-left: 1rem
	}

	.mr-md-autoi {
		margin-right: auto !important
	}

	.ml-md-autoi {
		margin-left: auto !important
	}

	.mx-md-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-md-1i {
		margin: 1rem !important
	}

	.p-md-1i {
		padding: 1rem !important
	}

	.my-md-1i {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important
	}

	.mt-md-1i {
		margin-top: 1rem !important
	}

	.mb-md-1i {
		margin-bottom: 1rem !important
	}

	.py-md-1i {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important
	}

	.pt-md-1i {
		padding-top: 1rem !important
	}

	.pb-md-1i {
		padding-bottom: 1rem !important
	}

	.m-md-2 {
		margin: 2rem
	}

	.p-md-2 {
		padding: 2rem
	}

	.my-md-2 {
		margin-top: 2rem;
		margin-bottom: 2rem
	}

	.mt-md-2 {
		margin-top: 2rem
	}

	.mr-md-2 {
		margin-right: 2rem
	}

	.mb-md-2 {
		margin-bottom: 2rem
	}

	.ml-md-2 {
		margin-left: 2rem
	}

	.py-md-2 {
		padding-top: 2rem;
		padding-bottom: 2rem
	}

	.pt-md-2 {
		padding-top: 2rem
	}

	.pr-md-2 {
		padding-right: 2rem
	}

	.pb-md-2 {
		padding-bottom: 2rem
	}

	.pl-md-2 {
		padding-left: 2rem
	}

	.mr-md-autoi {
		margin-right: auto !important
	}

	.ml-md-autoi {
		margin-left: auto !important
	}

	.mx-md-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-md-2i {
		margin: 2rem !important
	}

	.p-md-2i {
		padding: 2rem !important
	}

	.my-md-2i {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important
	}

	.mt-md-2i {
		margin-top: 2rem !important
	}

	.mb-md-2i {
		margin-bottom: 2rem !important
	}

	.py-md-2i {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important
	}

	.pt-md-2i {
		padding-top: 2rem !important
	}

	.pb-md-2i {
		padding-bottom: 2rem !important
	}

	.m-md-3 {
		margin: 3rem
	}

	.p-md-3 {
		padding: 3rem
	}

	.my-md-3 {
		margin-top: 3rem;
		margin-bottom: 3rem
	}

	.mt-md-3 {
		margin-top: 3rem
	}

	.mr-md-3 {
		margin-right: 3rem
	}

	.mb-md-3 {
		margin-bottom: 3rem
	}

	.ml-md-3 {
		margin-left: 3rem
	}

	.py-md-3 {
		padding-top: 3rem;
		padding-bottom: 3rem
	}

	.pt-md-3 {
		padding-top: 3rem
	}

	.pr-md-3 {
		padding-right: 3rem
	}

	.pb-md-3 {
		padding-bottom: 3rem
	}

	.pl-md-3 {
		padding-left: 3rem
	}

	.mr-md-autoi {
		margin-right: auto !important
	}

	.ml-md-autoi {
		margin-left: auto !important
	}

	.mx-md-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-md-3i {
		margin: 3rem !important
	}

	.p-md-3i {
		padding: 3rem !important
	}

	.my-md-3i {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important
	}

	.mt-md-3i {
		margin-top: 3rem !important
	}

	.mb-md-3i {
		margin-bottom: 3rem !important
	}

	.py-md-3i {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important
	}

	.pt-md-3i {
		padding-top: 3rem !important
	}

	.pb-md-3i {
		padding-bottom: 3rem !important
	}

	.m-md-4 {
		margin: 4rem
	}

	.p-md-4 {
		padding: 4rem
	}

	.my-md-4 {
		margin-top: 4rem;
		margin-bottom: 4rem
	}

	.mt-md-4 {
		margin-top: 4rem
	}

	.mr-md-4 {
		margin-right: 4rem
	}

	.mb-md-4 {
		margin-bottom: 4rem
	}

	.ml-md-4 {
		margin-left: 4rem
	}

	.py-md-4 {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.pt-md-4 {
		padding-top: 4rem
	}

	.pr-md-4 {
		padding-right: 4rem
	}

	.pb-md-4 {
		padding-bottom: 4rem
	}

	.pl-md-4 {
		padding-left: 4rem
	}

	.mr-md-autoi {
		margin-right: auto !important
	}

	.ml-md-autoi {
		margin-left: auto !important
	}

	.mx-md-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-md-4i {
		margin: 4rem !important
	}

	.p-md-4i {
		padding: 4rem !important
	}

	.my-md-4i {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important
	}

	.mt-md-4i {
		margin-top: 4rem !important
	}

	.mb-md-4i {
		margin-bottom: 4rem !important
	}

	.py-md-4i {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important
	}

	.pt-md-4i {
		padding-top: 4rem !important
	}

	.pb-md-4i {
		padding-bottom: 4rem !important
	}

	.m-md-5 {
		margin: 5rem
	}

	.p-md-5 {
		padding: 5rem
	}

	.my-md-5 {
		margin-top: 5rem;
		margin-bottom: 5rem
	}

	.mt-md-5 {
		margin-top: 5rem
	}

	.mr-md-5 {
		margin-right: 5rem
	}

	.mb-md-5 {
		margin-bottom: 5rem
	}

	.ml-md-5 {
		margin-left: 5rem
	}

	.py-md-5 {
		padding-top: 5rem;
		padding-bottom: 5rem
	}

	.pt-md-5 {
		padding-top: 5rem
	}

	.pr-md-5 {
		padding-right: 5rem
	}

	.pb-md-5 {
		padding-bottom: 5rem
	}

	.pl-md-5 {
		padding-left: 5rem
	}

	.mr-md-autoi {
		margin-right: auto !important
	}

	.ml-md-autoi {
		margin-left: auto !important
	}

	.mx-md-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-md-5i {
		margin: 5rem !important
	}

	.p-md-5i {
		padding: 5rem !important
	}

	.my-md-5i {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important
	}

	.mt-md-5i {
		margin-top: 5rem !important
	}

	.mb-md-5i {
		margin-bottom: 5rem !important
	}

	.py-md-5i {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important
	}

	.pt-md-5i {
		padding-top: 5rem !important
	}

	.pb-md-5i {
		padding-bottom: 5rem !important
	}
}

@media (min-width:992px) {
	.mr-lg-auto {
		margin-right: auto
	}

	.ml-lg-auto {
		margin-left: auto
	}

	.mx-lg-auto {
		margin-left: auto;
		margin-right: auto
	}

	.m-lg-0 {
		margin: 0
	}

	.p-lg-0 {
		padding: 0
	}

	.my-lg-0 {
		margin-top: 0;
		margin-bottom: 0
	}

	.mt-lg-0 {
		margin-top: 0
	}

	.mr-lg-0 {
		margin-right: 0
	}

	.mb-lg-0 {
		margin-bottom: 0
	}

	.ml-lg-0 {
		margin-left: 0
	}

	.py-lg-0 {
		padding-top: 0;
		padding-bottom: 0
	}

	.pt-lg-0 {
		padding-top: 0
	}

	.pr-lg-0 {
		padding-right: 0
	}

	.pb-lg-0 {
		padding-bottom: 0
	}

	.pl-lg-0 {
		padding-left: 0
	}

	.mr-lg-autoi {
		margin-right: auto !important
	}

	.ml-lg-autoi {
		margin-left: auto !important
	}

	.mx-lg-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-lg-0i {
		margin: 0 !important
	}

	.p-lg-0i {
		padding: 0 !important
	}

	.my-lg-0i {
		margin-top: 0 !important;
		margin-bottom: 0 !important
	}

	.mt-lg-0i {
		margin-top: 0 !important
	}

	.mb-lg-0i {
		margin-bottom: 0 !important
	}

	.py-lg-0i {
		padding-top: 0 !important;
		padding-bottom: 0 !important
	}

	.pt-lg-0i {
		padding-top: 0 !important
	}

	.pb-lg-0i {
		padding-bottom: 0 !important
	}

	.m-lg-1 {
		margin: 1rem
	}

	.p-lg-1 {
		padding: 1rem
	}

	.my-lg-1 {
		margin-top: 1rem;
		margin-bottom: 1rem
	}

	.mt-lg-1 {
		margin-top: 1rem
	}

	.mr-lg-1 {
		margin-right: 1rem
	}

	.mb-lg-1 {
		margin-bottom: 1rem
	}

	.ml-lg-1 {
		margin-left: 1rem
	}

	.py-lg-1 {
		padding-top: 1rem;
		padding-bottom: 1rem
	}

	.pt-lg-1 {
		padding-top: 1rem
	}

	.pr-lg-1 {
		padding-right: 1rem
	}

	.pb-lg-1 {
		padding-bottom: 1rem
	}

	.pl-lg-1 {
		padding-left: 1rem
	}

	.mr-lg-autoi {
		margin-right: auto !important
	}

	.ml-lg-autoi {
		margin-left: auto !important
	}

	.mx-lg-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-lg-1i {
		margin: 1rem !important
	}

	.p-lg-1i {
		padding: 1rem !important
	}

	.my-lg-1i {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important
	}

	.mt-lg-1i {
		margin-top: 1rem !important
	}

	.mb-lg-1i {
		margin-bottom: 1rem !important
	}

	.py-lg-1i {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important
	}

	.pt-lg-1i {
		padding-top: 1rem !important
	}

	.pb-lg-1i {
		padding-bottom: 1rem !important
	}

	.m-lg-2 {
		margin: 2rem
	}

	.p-lg-2 {
		padding: 2rem
	}

	.my-lg-2 {
		margin-top: 2rem;
		margin-bottom: 2rem
	}

	.mt-lg-2 {
		margin-top: 2rem
	}

	.mr-lg-2 {
		margin-right: 2rem
	}

	.mb-lg-2 {
		margin-bottom: 2rem
	}

	.ml-lg-2 {
		margin-left: 2rem
	}

	.py-lg-2 {
		padding-top: 2rem;
		padding-bottom: 2rem
	}

	.pt-lg-2 {
		padding-top: 2rem
	}

	.pr-lg-2 {
		padding-right: 2rem
	}

	.pb-lg-2 {
		padding-bottom: 2rem
	}

	.pl-lg-2 {
		padding-left: 2rem
	}

	.mr-lg-autoi {
		margin-right: auto !important
	}

	.ml-lg-autoi {
		margin-left: auto !important
	}

	.mx-lg-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-lg-2i {
		margin: 2rem !important
	}

	.p-lg-2i {
		padding: 2rem !important
	}

	.my-lg-2i {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important
	}

	.mt-lg-2i {
		margin-top: 2rem !important
	}

	.mb-lg-2i {
		margin-bottom: 2rem !important
	}

	.py-lg-2i {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important
	}

	.pt-lg-2i {
		padding-top: 2rem !important
	}

	.pb-lg-2i {
		padding-bottom: 2rem !important
	}

	.m-lg-3 {
		margin: 3rem
	}

	.p-lg-3 {
		padding: 3rem
	}

	.my-lg-3 {
		margin-top: 3rem;
		margin-bottom: 3rem
	}

	.mt-lg-3 {
		margin-top: 3rem
	}

	.mr-lg-3 {
		margin-right: 3rem
	}

	.mb-lg-3 {
		margin-bottom: 3rem
	}

	.ml-lg-3 {
		margin-left: 3rem
	}

	.py-lg-3 {
		padding-top: 3rem;
		padding-bottom: 3rem
	}

	.pt-lg-3 {
		padding-top: 3rem
	}

	.pr-lg-3 {
		padding-right: 3rem
	}

	.pb-lg-3 {
		padding-bottom: 3rem
	}

	.pl-lg-3 {
		padding-left: 3rem
	}

	.mr-lg-autoi {
		margin-right: auto !important
	}

	.ml-lg-autoi {
		margin-left: auto !important
	}

	.mx-lg-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-lg-3i {
		margin: 3rem !important
	}

	.p-lg-3i {
		padding: 3rem !important
	}

	.my-lg-3i {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important
	}

	.mt-lg-3i {
		margin-top: 3rem !important
	}

	.mb-lg-3i {
		margin-bottom: 3rem !important
	}

	.py-lg-3i {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important
	}

	.pt-lg-3i {
		padding-top: 3rem !important
	}

	.pb-lg-3i {
		padding-bottom: 3rem !important
	}

	.m-lg-4 {
		margin: 4rem
	}

	.p-lg-4 {
		padding: 4rem
	}

	.my-lg-4 {
		margin-top: 4rem;
		margin-bottom: 4rem
	}

	.mt-lg-4 {
		margin-top: 4rem
	}

	.mr-lg-4 {
		margin-right: 4rem
	}

	.mb-lg-4 {
		margin-bottom: 4rem
	}

	.ml-lg-4 {
		margin-left: 4rem
	}

	.py-lg-4 {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.pt-lg-4 {
		padding-top: 4rem
	}

	.pr-lg-4 {
		padding-right: 4rem
	}

	.pb-lg-4 {
		padding-bottom: 4rem
	}

	.pl-lg-4 {
		padding-left: 4rem
	}

	.mr-lg-autoi {
		margin-right: auto !important
	}

	.ml-lg-autoi {
		margin-left: auto !important
	}

	.mx-lg-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-lg-4i {
		margin: 4rem !important
	}

	.p-lg-4i {
		padding: 4rem !important
	}

	.my-lg-4i {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important
	}

	.mt-lg-4i {
		margin-top: 4rem !important
	}

	.mb-lg-4i {
		margin-bottom: 4rem !important
	}

	.py-lg-4i {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important
	}

	.pt-lg-4i {
		padding-top: 4rem !important
	}

	.pb-lg-4i {
		padding-bottom: 4rem !important
	}

	.m-lg-5 {
		margin: 5rem
	}

	.p-lg-5 {
		padding: 5rem
	}

	.my-lg-5 {
		margin-top: 5rem;
		margin-bottom: 5rem
	}

	.mt-lg-5 {
		margin-top: 5rem
	}

	.mr-lg-5 {
		margin-right: 5rem
	}

	.mb-lg-5 {
		margin-bottom: 5rem
	}

	.ml-lg-5 {
		margin-left: 5rem
	}

	.py-lg-5 {
		padding-top: 5rem;
		padding-bottom: 5rem
	}

	.pt-lg-5 {
		padding-top: 5rem
	}

	.pr-lg-5 {
		padding-right: 5rem
	}

	.pb-lg-5 {
		padding-bottom: 5rem
	}

	.pl-lg-5 {
		padding-left: 5rem
	}

	.mr-lg-autoi {
		margin-right: auto !important
	}

	.ml-lg-autoi {
		margin-left: auto !important
	}

	.mx-lg-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-lg-5i {
		margin: 5rem !important
	}

	.p-lg-5i {
		padding: 5rem !important
	}

	.my-lg-5i {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important
	}

	.mt-lg-5i {
		margin-top: 5rem !important
	}

	.mb-lg-5i {
		margin-bottom: 5rem !important
	}

	.py-lg-5i {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important
	}

	.pt-lg-5i {
		padding-top: 5rem !important
	}

	.pb-lg-5i {
		padding-bottom: 5rem !important
	}

	.mt-lg-7 {
		margin-top: 7rem
	}

	.mt-lg-10 {
		margin-top: 10rem
	}
}

@media (min-width:1200px) {
	.mr-xl-auto {
		margin-right: auto
	}

	.ml-xl-auto {
		margin-left: auto
	}

	.mx-xl-auto {
		margin-left: auto;
		margin-right: auto
	}

	.m-xl-0 {
		margin: 0
	}

	.p-xl-0 {
		padding: 0
	}

	.my-xl-0 {
		margin-top: 0;
		margin-bottom: 0
	}

	.mt-xl-0 {
		margin-top: 0
	}

	.mr-xl-0 {
		margin-right: 0
	}

	.mb-xl-0 {
		margin-bottom: 0
	}

	.ml-xl-0 {
		margin-left: 0
	}

	.py-xl-0 {
		padding-top: 0;
		padding-bottom: 0
	}

	.pt-xl-0 {
		padding-top: 0
	}

	.pr-xl-0 {
		padding-right: 0
	}

	.pb-xl-0 {
		padding-bottom: 0
	}

	.pl-xl-0 {
		padding-left: 0
	}

	.mr-xl-autoi {
		margin-right: auto !important
	}

	.ml-xl-autoi {
		margin-left: auto !important
	}

	.mx-xl-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-xl-0i {
		margin: 0 !important
	}

	.p-xl-0i {
		padding: 0 !important
	}

	.my-xl-0i {
		margin-top: 0 !important;
		margin-bottom: 0 !important
	}

	.mt-xl-0i {
		margin-top: 0 !important
	}

	.mb-xl-0i {
		margin-bottom: 0 !important
	}

	.py-xl-0i {
		padding-top: 0 !important;
		padding-bottom: 0 !important
	}

	.pt-xl-0i {
		padding-top: 0 !important
	}

	.pb-xl-0i {
		padding-bottom: 0 !important
	}

	.m-xl-1 {
		margin: 1rem
	}

	.p-xl-1 {
		padding: 1rem
	}

	.my-xl-1 {
		margin-top: 1rem;
		margin-bottom: 1rem
	}

	.mt-xl-1 {
		margin-top: 1rem
	}

	.mr-xl-1 {
		margin-right: 1rem
	}

	.mb-xl-1 {
		margin-bottom: 1rem
	}

	.ml-xl-1 {
		margin-left: 1rem
	}

	.py-xl-1 {
		padding-top: 1rem;
		padding-bottom: 1rem
	}

	.pt-xl-1 {
		padding-top: 1rem
	}

	.pr-xl-1 {
		padding-right: 1rem
	}

	.pb-xl-1 {
		padding-bottom: 1rem
	}

	.pl-xl-1 {
		padding-left: 1rem
	}

	.mr-xl-autoi {
		margin-right: auto !important
	}

	.ml-xl-autoi {
		margin-left: auto !important
	}

	.mx-xl-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-xl-1i {
		margin: 1rem !important
	}

	.p-xl-1i {
		padding: 1rem !important
	}

	.my-xl-1i {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important
	}

	.mt-xl-1i {
		margin-top: 1rem !important
	}

	.mb-xl-1i {
		margin-bottom: 1rem !important
	}

	.py-xl-1i {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important
	}

	.pt-xl-1i {
		padding-top: 1rem !important
	}

	.pb-xl-1i {
		padding-bottom: 1rem !important
	}

	.m-xl-2 {
		margin: 2rem
	}

	.p-xl-2 {
		padding: 2rem
	}

	.my-xl-2 {
		margin-top: 2rem;
		margin-bottom: 2rem
	}

	.mt-xl-2 {
		margin-top: 2rem
	}

	.mr-xl-2 {
		margin-right: 2rem
	}

	.mb-xl-2 {
		margin-bottom: 2rem
	}

	.ml-xl-2 {
		margin-left: 2rem
	}

	.py-xl-2 {
		padding-top: 2rem;
		padding-bottom: 2rem
	}

	.pt-xl-2 {
		padding-top: 2rem
	}

	.pr-xl-2 {
		padding-right: 2rem
	}

	.pb-xl-2 {
		padding-bottom: 2rem
	}

	.pl-xl-2 {
		padding-left: 2rem
	}

	.mr-xl-autoi {
		margin-right: auto !important
	}

	.ml-xl-autoi {
		margin-left: auto !important
	}

	.mx-xl-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-xl-2i {
		margin: 2rem !important
	}

	.p-xl-2i {
		padding: 2rem !important
	}

	.my-xl-2i {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important
	}

	.mt-xl-2i {
		margin-top: 2rem !important
	}

	.mb-xl-2i {
		margin-bottom: 2rem !important
	}

	.py-xl-2i {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important
	}

	.pt-xl-2i {
		padding-top: 2rem !important
	}

	.pb-xl-2i {
		padding-bottom: 2rem !important
	}

	.m-xl-3 {
		margin: 3rem
	}

	.p-xl-3 {
		padding: 3rem
	}

	.my-xl-3 {
		margin-top: 3rem;
		margin-bottom: 3rem
	}

	.mt-xl-3 {
		margin-top: 3rem
	}

	.mr-xl-3 {
		margin-right: 3rem
	}

	.mb-xl-3 {
		margin-bottom: 3rem
	}

	.ml-xl-3 {
		margin-left: 3rem
	}

	.py-xl-3 {
		padding-top: 3rem;
		padding-bottom: 3rem
	}

	.pt-xl-3 {
		padding-top: 3rem
	}

	.pr-xl-3 {
		padding-right: 3rem
	}

	.pb-xl-3 {
		padding-bottom: 3rem
	}

	.pl-xl-3 {
		padding-left: 3rem
	}

	.mr-xl-autoi {
		margin-right: auto !important
	}

	.ml-xl-autoi {
		margin-left: auto !important
	}

	.mx-xl-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-xl-3i {
		margin: 3rem !important
	}

	.p-xl-3i {
		padding: 3rem !important
	}

	.my-xl-3i {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important
	}

	.mt-xl-3i {
		margin-top: 3rem !important
	}

	.mb-xl-3i {
		margin-bottom: 3rem !important
	}

	.py-xl-3i {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important
	}

	.pt-xl-3i {
		padding-top: 3rem !important
	}

	.pb-xl-3i {
		padding-bottom: 3rem !important
	}

	.m-xl-4 {
		margin: 4rem
	}

	.p-xl-4 {
		padding: 4rem
	}

	.my-xl-4 {
		margin-top: 4rem;
		margin-bottom: 4rem
	}

	.mt-xl-4 {
		margin-top: 4rem
	}

	.mr-xl-4 {
		margin-right: 4rem
	}

	.mb-xl-4 {
		margin-bottom: 4rem
	}

	.ml-xl-4 {
		margin-left: 4rem
	}

	.py-xl-4 {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.pt-xl-4 {
		padding-top: 4rem
	}

	.pr-xl-4 {
		padding-right: 4rem
	}

	.pb-xl-4 {
		padding-bottom: 4rem
	}

	.pl-xl-4 {
		padding-left: 4rem
	}

	.mr-xl-autoi {
		margin-right: auto !important
	}

	.ml-xl-autoi {
		margin-left: auto !important
	}

	.mx-xl-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-xl-4i {
		margin: 4rem !important
	}

	.p-xl-4i {
		padding: 4rem !important
	}

	.my-xl-4i {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important
	}

	.mt-xl-4i {
		margin-top: 4rem !important
	}

	.mb-xl-4i {
		margin-bottom: 4rem !important
	}

	.py-xl-4i {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important
	}

	.pt-xl-4i {
		padding-top: 4rem !important
	}

	.pb-xl-4i {
		padding-bottom: 4rem !important
	}

	.m-xl-5 {
		margin: 5rem
	}

	.p-xl-5 {
		padding: 5rem
	}

	.my-xl-5 {
		margin-top: 5rem;
		margin-bottom: 5rem
	}

	.mt-xl-5 {
		margin-top: 5rem
	}

	.mr-xl-5 {
		margin-right: 5rem
	}

	.mb-xl-5 {
		margin-bottom: 5rem
	}

	.ml-xl-5 {
		margin-left: 5rem
	}

	.py-xl-5 {
		padding-top: 5rem;
		padding-bottom: 5rem
	}

	.pt-xl-5 {
		padding-top: 5rem
	}

	.pr-xl-5 {
		padding-right: 5rem
	}

	.pb-xl-5 {
		padding-bottom: 5rem
	}

	.pl-xl-5 {
		padding-left: 5rem
	}

	.mr-xl-autoi {
		margin-right: auto !important
	}

	.ml-xl-autoi {
		margin-left: auto !important
	}

	.mx-xl-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-xl-5i {
		margin: 5rem !important
	}

	.p-xl-5i {
		padding: 5rem !important
	}

	.my-xl-5i {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important
	}

	.mt-xl-5i {
		margin-top: 5rem !important
	}

	.mb-xl-5i {
		margin-bottom: 5rem !important
	}

	.py-xl-5i {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important
	}

	.pt-xl-5i {
		padding-top: 5rem !important
	}

	.pb-xl-5i {
		padding-bottom: 5rem !important
	}
}

@media (min-width:1600px) {
	.mr-xxl-auto {
		margin-right: auto
	}

	.ml-xxl-auto {
		margin-left: auto
	}

	.mx-xxl-auto {
		margin-left: auto;
		margin-right: auto
	}

	.m-xxl-0 {
		margin: 0
	}

	.p-xxl-0 {
		padding: 0
	}

	.my-xxl-0 {
		margin-top: 0;
		margin-bottom: 0
	}

	.mt-xxl-0 {
		margin-top: 0
	}

	.mr-xxl-0 {
		margin-right: 0
	}

	.mb-xxl-0 {
		margin-bottom: 0
	}

	.ml-xxl-0 {
		margin-left: 0
	}

	.py-xxl-0 {
		padding-top: 0;
		padding-bottom: 0
	}

	.pt-xxl-0 {
		padding-top: 0
	}

	.pr-xxl-0 {
		padding-right: 0
	}

	.pb-xxl-0 {
		padding-bottom: 0
	}

	.pl-xxl-0 {
		padding-left: 0
	}

	.mr-xxl-autoi {
		margin-right: auto !important
	}

	.ml-xxl-autoi {
		margin-left: auto !important
	}

	.mx-xxl-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-xxl-0i {
		margin: 0 !important
	}

	.p-xxl-0i {
		padding: 0 !important
	}

	.my-xxl-0i {
		margin-top: 0 !important;
		margin-bottom: 0 !important
	}

	.mt-xxl-0i {
		margin-top: 0 !important
	}

	.mb-xxl-0i {
		margin-bottom: 0 !important
	}

	.py-xxl-0i {
		padding-top: 0 !important;
		padding-bottom: 0 !important
	}

	.pt-xxl-0i {
		padding-top: 0 !important
	}

	.pb-xxl-0i {
		padding-bottom: 0 !important
	}

	.m-xxl-1 {
		margin: 1rem
	}

	.p-xxl-1 {
		padding: 1rem
	}

	.my-xxl-1 {
		margin-top: 1rem;
		margin-bottom: 1rem
	}

	.mt-xxl-1 {
		margin-top: 1rem
	}

	.mr-xxl-1 {
		margin-right: 1rem
	}

	.mb-xxl-1 {
		margin-bottom: 1rem
	}

	.ml-xxl-1 {
		margin-left: 1rem
	}

	.py-xxl-1 {
		padding-top: 1rem;
		padding-bottom: 1rem
	}

	.pt-xxl-1 {
		padding-top: 1rem
	}

	.pr-xxl-1 {
		padding-right: 1rem
	}

	.pb-xxl-1 {
		padding-bottom: 1rem
	}

	.pl-xxl-1 {
		padding-left: 1rem
	}

	.mr-xxl-autoi {
		margin-right: auto !important
	}

	.ml-xxl-autoi {
		margin-left: auto !important
	}

	.mx-xxl-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-xxl-1i {
		margin: 1rem !important
	}

	.p-xxl-1i {
		padding: 1rem !important
	}

	.my-xxl-1i {
		margin-top: 1rem !important;
		margin-bottom: 1rem !important
	}

	.mt-xxl-1i {
		margin-top: 1rem !important
	}

	.mb-xxl-1i {
		margin-bottom: 1rem !important
	}

	.py-xxl-1i {
		padding-top: 1rem !important;
		padding-bottom: 1rem !important
	}

	.pt-xxl-1i {
		padding-top: 1rem !important
	}

	.pb-xxl-1i {
		padding-bottom: 1rem !important
	}

	.m-xxl-2 {
		margin: 2rem
	}

	.p-xxl-2 {
		padding: 2rem
	}

	.my-xxl-2 {
		margin-top: 2rem;
		margin-bottom: 2rem
	}

	.mt-xxl-2 {
		margin-top: 2rem
	}

	.mr-xxl-2 {
		margin-right: 2rem
	}

	.mb-xxl-2 {
		margin-bottom: 2rem
	}

	.ml-xxl-2 {
		margin-left: 2rem
	}

	.py-xxl-2 {
		padding-top: 2rem;
		padding-bottom: 2rem
	}

	.pt-xxl-2 {
		padding-top: 2rem
	}

	.pr-xxl-2 {
		padding-right: 2rem
	}

	.pb-xxl-2 {
		padding-bottom: 2rem
	}

	.pl-xxl-2 {
		padding-left: 2rem
	}

	.mr-xxl-autoi {
		margin-right: auto !important
	}

	.ml-xxl-autoi {
		margin-left: auto !important
	}

	.mx-xxl-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-xxl-2i {
		margin: 2rem !important
	}

	.p-xxl-2i {
		padding: 2rem !important
	}

	.my-xxl-2i {
		margin-top: 2rem !important;
		margin-bottom: 2rem !important
	}

	.mt-xxl-2i {
		margin-top: 2rem !important
	}

	.mb-xxl-2i {
		margin-bottom: 2rem !important
	}

	.py-xxl-2i {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important
	}

	.pt-xxl-2i {
		padding-top: 2rem !important
	}

	.pb-xxl-2i {
		padding-bottom: 2rem !important
	}

	.m-xxl-3 {
		margin: 3rem
	}

	.p-xxl-3 {
		padding: 3rem
	}

	.my-xxl-3 {
		margin-top: 3rem;
		margin-bottom: 3rem
	}

	.mt-xxl-3 {
		margin-top: 3rem
	}

	.mr-xxl-3 {
		margin-right: 3rem
	}

	.mb-xxl-3 {
		margin-bottom: 3rem
	}

	.ml-xxl-3 {
		margin-left: 3rem
	}

	.py-xxl-3 {
		padding-top: 3rem;
		padding-bottom: 3rem
	}

	.pt-xxl-3 {
		padding-top: 3rem
	}

	.pr-xxl-3 {
		padding-right: 3rem
	}

	.pb-xxl-3 {
		padding-bottom: 3rem
	}

	.pl-xxl-3 {
		padding-left: 3rem
	}

	.mr-xxl-autoi {
		margin-right: auto !important
	}

	.ml-xxl-autoi {
		margin-left: auto !important
	}

	.mx-xxl-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-xxl-3i {
		margin: 3rem !important
	}

	.p-xxl-3i {
		padding: 3rem !important
	}

	.my-xxl-3i {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important
	}

	.mt-xxl-3i {
		margin-top: 3rem !important
	}

	.mb-xxl-3i {
		margin-bottom: 3rem !important
	}

	.py-xxl-3i {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important
	}

	.pt-xxl-3i {
		padding-top: 3rem !important
	}

	.pb-xxl-3i {
		padding-bottom: 3rem !important
	}

	.m-xxl-4 {
		margin: 4rem
	}

	.p-xxl-4 {
		padding: 4rem
	}

	.my-xxl-4 {
		margin-top: 4rem;
		margin-bottom: 4rem
	}

	.mt-xxl-4 {
		margin-top: 4rem
	}

	.mr-xxl-4 {
		margin-right: 4rem
	}

	.mb-xxl-4 {
		margin-bottom: 4rem
	}

	.ml-xxl-4 {
		margin-left: 4rem
	}

	.py-xxl-4 {
		padding-top: 4rem;
		padding-bottom: 4rem
	}

	.pt-xxl-4 {
		padding-top: 4rem
	}

	.pr-xxl-4 {
		padding-right: 4rem
	}

	.pb-xxl-4 {
		padding-bottom: 4rem
	}

	.pl-xxl-4 {
		padding-left: 4rem
	}

	.mr-xxl-autoi {
		margin-right: auto !important
	}

	.ml-xxl-autoi {
		margin-left: auto !important
	}

	.mx-xxl-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-xxl-4i {
		margin: 4rem !important
	}

	.p-xxl-4i {
		padding: 4rem !important
	}

	.my-xxl-4i {
		margin-top: 4rem !important;
		margin-bottom: 4rem !important
	}

	.mt-xxl-4i {
		margin-top: 4rem !important
	}

	.mb-xxl-4i {
		margin-bottom: 4rem !important
	}

	.py-xxl-4i {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important
	}

	.pt-xxl-4i {
		padding-top: 4rem !important
	}

	.pb-xxl-4i {
		padding-bottom: 4rem !important
	}

	.m-xxl-5 {
		margin: 5rem
	}

	.p-xxl-5 {
		padding: 5rem
	}

	.my-xxl-5 {
		margin-top: 5rem;
		margin-bottom: 5rem
	}

	.mt-xxl-5 {
		margin-top: 5rem
	}

	.mr-xxl-5 {
		margin-right: 5rem
	}

	.mb-xxl-5 {
		margin-bottom: 5rem
	}

	.ml-xxl-5 {
		margin-left: 5rem
	}

	.py-xxl-5 {
		padding-top: 5rem;
		padding-bottom: 5rem
	}

	.pt-xxl-5 {
		padding-top: 5rem
	}

	.pr-xxl-5 {
		padding-right: 5rem
	}

	.pb-xxl-5 {
		padding-bottom: 5rem
	}

	.pl-xxl-5 {
		padding-left: 5rem
	}

	.mr-xxl-autoi {
		margin-right: auto !important
	}

	.ml-xxl-autoi {
		margin-left: auto !important
	}

	.mx-xxl-autoi {
		margin-right: auto !important;
		margin-left: auto !important
	}

	.m-xxl-5i {
		margin: 5rem !important
	}

	.p-xxl-5i {
		padding: 5rem !important
	}

	.my-xxl-5i {
		margin-top: 5rem !important;
		margin-bottom: 5rem !important
	}

	.mt-xxl-5i {
		margin-top: 5rem !important
	}

	.mb-xxl-5i {
		margin-bottom: 5rem !important
	}

	.py-xxl-5i {
		padding-top: 5rem !important;
		padding-bottom: 5rem !important
	}

	.pt-xxl-5i {
		padding-top: 5rem !important
	}

	.pb-xxl-5i {
		padding-bottom: 5rem !important
	}
}