/*
 *
 * CSS VARS
 *
*/

:root {
	--color-dark: #000;
	--color-theme: #000;
	--color-black: #000;
	--color-darkgray: #444;
	--color-gray: #666;
	--color-lightgray: #999;
	--color-white: #FFF;
	--color-overlay: rgba(51, 51, 51, 0.75);
	--color-background: #F5F5F5;
	--color-lines: #DDD;
	--color-link: #333;
	--color-help: #8B8D8F;
	--color-helplight: #E6E6E6;
	--color-error: #F14244;
	--color-errorlight: #FFF1F0;
	--color-success: #3F9C35;
	--color-successlight: #F6FFED;
	--color-warning: #FAAD14;
	--color-warninglight: #FFFBE6;
	--color-info: #1890FF;
	--color-infolight: #E6F7FF;
	--color-buttoncart: #000;
	--color-buttoncart-hover: #333;

	--base-fontfamily: 'Inter', sans-serif;
	--container-padding: 24px;
	--container-padding-n: -24px;
	--row-padding: 12px;
	--row-padding-n: -12px;
	--color-featuredmenu: #DBA112;
	--mobile-popup-max-height: calc(var(--window-inner-height, 100vh) - max(30px, env(safe-area-inset-top)) - 10px);
	--mobile-popup-radius: 10px;

	--input-border-radius: 0px;
	--button-border-radius: 0px;

	/* Spacing */
	--sp-ex-small: 20px;
	--sp-small: 40px;
	--sp-medium: 80px;
	--sp-large: 120px;

	--sat: env(safe-area-inset-top);
    --sar: env(safe-area-inset-right);
    --sab: env(safe-area-inset-bottom);
    --sal: env(safe-area-inset-left);
}

@media screen and (max-width: 1199px) {
	:root {
		--container-padding: 14px;
		--container-padding-n: -14px;
	}
}

@media screen and (max-width: 767px) {
	:root {
		/* Spacing */
		--sp-ex-small: 15px;
		--sp-small: 30px;
		--sp-medium: 40px;
		--sp-large: 100px;
	}
}

/*@media screen and (max-width: 1599px) {
	:root {
		--container-padding: 15px;
		--container-padding-n: -15px;
	}
}*/

.row,
div.wrapper-form.row, div.wrapper-form .row {margin-right: var(--row-padding-n);margin-left: var(--row-padding-n);}
 .col-xs-1,  .col-sm-1,  .col-md-1,  .col-lg-1,  .col-xl-1,  .col-xs-2,  .col-sm-2,  .col-md-2,  .col-lg-2,  .col-xl-2,  .col-xs-3,  .col-sm-3,  .col-md-3,  .col-lg-3,  .col-xl-3,  .col-xs-4,
 .col-sm-4,  .col-md-4,  .col-lg-4,  .col-xl-4,  .col-xs-5,  .col-sm-5,  .col-md-5,  .col-lg-5,  .col-xl-5,  .col-xs-6,  .col-sm-6,  .col-md-6,  .col-lg-6,  .col-xl-6,  .col-xs-7,  .col-sm-7,
 .col-md-7,  .col-lg-7,  .col-xl-7,  .col-xs-8,  .col-sm-8,  .col-md-8,  .col-lg-8,  .col-xl-8,  .col-xs-9,  .col-sm-9,  .col-md-9,  .col-lg-9,  .col-xl-9,  .col-xs-10,  .col-sm-10,  .col-md-10,
 .col-lg-10,  .col-xl-10,  .col-xs-11,  .col-sm-11,  .col-md-11,  .col-lg-11,  .col-xl-11,  .col-xs-12,  .col-sm-12,  .col-md-12,  .col-lg-12,  .col-xl-12,
 div.wrapper-form .col-sm-1,  div.wrapper-form .col-sm-2,  div.wrapper-form .col-sm-3,  div.wrapper-form .col-sm-4,  div.wrapper-form .col-sm-5,  div.wrapper-form .col-sm-6,  div.wrapper-form .col-sm-7,  div.wrapper-form .col-sm-8,
 div.wrapper-form .col-sm-9,  div.wrapper-form .col-sm-10,  div.wrapper-form .col-sm-11,  div.wrapper-form .col-sm-12,  div.wrapper-form .form-field,  div.wrapper-form .bottom-form {padding-right: var(--row-padding);padding-left: var(--row-padding);}



/*
 *
 * Tipography
 *
*/
body, .paragraph, .gm-style, .page-content {
	/* Do not add styles */
	font-family: var(--base-fontfamily);
	font-weight: 300;
	font-size: 14px;
	color: var(--color-black);
}
body:not(.MacOS), body:not(.MacOS) .paragraph, body:not(.MacOS) .gm-style, body:not(.MacOS) .page-content {font-weight: 400;}

/* A */
a, .a {
	color: currentColor;
	text-decoration: underline;
}

/* PARAGRAPH */
.paragraph, .gm-style, .page-content {
	line-height: 160%;
}

/* PARAGRAPH - A */
.paragraph a, .paragraph .a,
a.paragraph, .paragraph.a {
	color: var(--color-link);
	text-decoration: underline;
}

/* A - Hover */
@media (hover) {
	a:hover, .a:hover,
	.paragraph a:hover, .paragraph .a:hover,
	a.paragraph:hover, .paragraph.a:hover {
		text-decoration: none;
	}

	.paragraph a:hover, a.paragraph:hover {
		color: var(--color-link);
		text-decoration: none;
	}
}

/* PARAGRAPH - B (For mozilla) */
body b, body strong {font-weight: bold;}

/* SMALL */
a.small, .a.small, .small, small, .small, .small::before, .small::after {
	font-weight: 300; /* Required font-weight  */
	font-size: 14px;
	color: var(--color-gray);
	line-height: 160%;
}
body:not(.MacOS) a.small, body:not(.MacOS) .a.small, body:not(.MacOS) .small,body:not(.MacOS) small,body:not(.MacOS) .small,body:not(.MacOS) .small::before,body:not(.MacOS) .small::after {font-weight: 400;}

/* MEGA-TITLE */
.mega-title {
	font-weight: 300;
	font-size: 46px;
	line-height: 140%;
}
body:not(.MacOS) .mega-title {font-weight: 400;}

/* TITLE */
h1:not(.nostyle), .h1:not(.nostyle), .title {
	font-weight: 400;
	font-size: 30px;
	line-height: 140%;
}
body:not(.MacOS) h1:not(.nostyle), body:not(.MacOS) .h1:not(.nostyle), body:not(.MacOS) .title {
	font-weight: 500;
}

/* SECONDARY-TITLE */
h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
	font-weight: 300;
	font-size: 26px;
	line-height: 140%;
}
body:not(.MacOS) h2:not(.nostyle), body:not(.MacOS) .h2:not(.nostyle), body:not(.MacOS) .secondary-title {
	font-weight: 400;
}

/* SUBTITLE */
h3:not(.nostyle), .h3:not(.nostyle), .subtitle {
	font-weight: 300;
	font-size: 20px;
	line-height: 140%;
	letter-spacing: 0.5px;
}

body:not(.MacOS) h3:not(.nostyle), body:not(.MacOS) .h3:not(.nostyle), body:not(.MacOS) .subtitle {
	font-weight: 400;
}

/* SECONDARY-SUBTITLE */
h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
	font-weight: 400;
	font-size: 18px;
	line-height: 140%;
}
body:not(.MacOS) h4:not(.nostyle), body:not(.MacOS) .h4:not(.nostyle), body:not(.MacOS) .secondary-subtitle{
	font-weight: 500;
}

/* LIST-NAV-TITLE */
.list-nav-title {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
}
body:not(.MacOS) .list-nav-title {font-weight: 500;}

.list-nav-title.active {
	text-decoration: underline;
}

/* SIGNATURE */
.signature {
	font-weight: 300;
	font-size: 14px;
	line-height: 121%;
	text-transform: uppercase;
	letter-spacing: 0.5;
}
body:not(.MacOS) .signature {
	font-weight: 400;
}

/* LIST-NAV-SUBTITLE */
.list-nav-subtitle {
	font-weight: 400;
	font-size: 14px;
	line-height: 160%;
}
body:not(.MacOS) .list-nav-subtitle {
	font-weight: 500;
}

.list-nav-subtitle.active {
	text-decoration: underline;
}

/* PRODUCT ITEM */
	/* Brand */
	.brand-list-product {
		font-weight: 600;
		font-size: 13px;
	} 

	/* Name */
	.product-item .desc .name {
		font-weight: 400;
		font-size: 13px;
		line-height: 150%;
	}
	body:not(.MacOS) .product-item .desc .name{
		font-weight: 500;
	}

	/* Price */
	.price {
		display: inline-grid;
		align-items: center;
		grid-auto-flow: column;
		grid-gap: 8px;
	}

	.price, .price p {
		font-weight: 400;
		font-size: 13px;
	}

	body:not(.MacOS) .price, body:not(.MacOS) .price p{
		font-weight: 500;
	}

	/* Price Old */
	.price .old {
		color: var(--color-gray);
		text-decoration: line-through;
		
	}

	/* Price Discount */
	.price .discount {
		background: #BC0A0A;
		/*Required*/color: var(--color-white);
		/*Required*/padding: 0px 5px 0px;
		min-height: 18px;
		line-height: 10px;
		border-radius: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		-ms-border-radius: 0;
		-o-border-radius: 0;
}

	/* Price Current */
	.price .current {}

	/* Price Desde, Type, packageType e Date */
	.price .desde, .price .type, .price .date, .price .packageType {
		font-weight: 300;
		font-size: 10px;
		line-height: 130%;
	}

	body:not(.MacOS) .price .desde, body:not(.MacOS) .price .type, body:not(.MacOS) .price .date, body:not(.MacOS) .price .packageType {
		font-weight: 400;
	}

	/* Price Desde, Type, packageType e Date */
	.price .desde, .price .type, .price .packageType {
		color: var(--color-gray);
	}

	/* Promo Date */
	.rdc-promo-date {
		color: var(--color-gray);
	}

	/* Promoção ultimos 30 dias */
	.rdc-promo-30days {
		color: var(--color-gray);	
	}

	/* Price Horizontal */
	.priceh {
		display: inline-grid;
		align-items: center;
		grid-auto-flow: column;
		grid-gap: 8px;
	}

	.priceh, .priceh p {
		font-weight: 400;
		font-size: 13px;
	}

	body:not(.MacOS) .priceh, body:not(.MacOS) .priceh p {
		font-weight: 500;
	}

	/* Price Horizontal Old */
	.priceh .old {
		color: var(--color-gray);
		text-decoration: line-through;
	}

	/* Price Horizontal Discount */
	.priceh .discount {
		background: #BC0A0A;
		/*Required*/color: var(--color-white);
		/*Required*/padding: 0px 5px 0px;
		min-height: 18px;
		line-height: 10px;
		border-radius: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		-ms-border-radius: 0;
		-o-border-radius: 0;
	}

	/* Price Horizontal Current */
	.priceh .current {}

	/* Price Horizontal Desde, Type, packageType e Date */
	.priceh .desde, .priceh .type, .priceh .date, .priceh .packageType {
		font-weight: 300;
		font-size: 10px;
		line-height: 130%;
	}
	body:not(.MacOS) .priceh .desde, body:not(.MacOS) .priceh .type, body:not(.MacOS) .priceh .date, body:not(.MacOS) .priceh .packageType{
		font-weight: 400;
	}

	/* Price Horizontal Desde, Type, packageType e Date */
	.priceh .desde, .priceh .type, .priceh .packageType {
		color: var(--color-gray);
	}

	body:not(.MacOS) .price p.discount { font-weight: 300; }
	body:not(.MacOS) .price p.old { font-weight: 400; }
	body:not(.MacOS) #main.product #rdc-productdetail-area-b .price p.old { font-weight: 300; }
@media screen and (max-width: 1199px) {
	/* MEGA-TITLE */
	.mega-title {
		font-size: 36px;
	}

	/* TITLE */
	h1:not(.nostyle), .h1:not(.nostyle), .title {
		font-size: 28px;
	}

	/* SECONDARY-TITLE */
	h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
		font-size: 22px;
	}

	/* SUBTITLE */
	h3:not(.nostyle), .h3:not(.nostyle), .subtitle {
		font-size: 18px;
		letter-spacing: 0;
	}

	/* SECONDARY-SUBTITLE */
	h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
		font-size: 16px;
	}

	/* LIST-NAV-TITLE 
	.list-nav-title {
		font-size: 15px;
	}*/

	/* LIST-NAV-SUBTITLE - Required for accordion contains secondary-subtitle 
	.list-nav-subtitle {
		font-size: 14px;
	}*/

	/* SIGNATURE 
	.signature {
		font-size: 14px;
	}*/

	/* PRODUCT ITEM */
	/*.product-item .desc .name,*/
	.product-item .price p {
		font-size: 12px;
	}

	body article.product-item .price p.discount{
		min-height: 15px;
		padding: 0 5px;
		line-height: 9px;
	}

	/* PRODUCT ITEM - Promo date */
	.product-item .price .type,
	.product-item .ref,
	.product-item .price .date {
		font-size: 8px;
		line-height: 140%;
		color: var(--color-darkgray);
	}
}

@media screen and (min-width: 1200px) {
	/* Colocar igual aos estilos anteriores de mobile */
	/* PRODUCT ITEM (SMALL) == MOBILE */
	.rdc-product-item-size-small .desc .name ,
	.rdc-product-item-size-small .price p {
		font-size: 13px;
	}

	/* PRODUCT ITEM - Promo date */
	.product-item .price .type,
	.product-item .ref,
	.product-item .price .date {
		font-size: 10px;
		line-height: 13px;
	}
	.product-item .price .date {
		color: var(--color-darkgray);
	}
}





/*
 *
 * Elements & Components
 *
*/

/* Primary Button */
	/* Normal */
	.button, button, input[type=submit], input[type=button] {
		font-weight: 500;
		font-size: 13px;
		line-height: 10px;
		color: var(--color-white);
		text-transform: uppercase;
		letter-spacing: 1px;
		padding: 0 30px;
		border: 1px solid var(--color-black);
		background-color: var(--color-black);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 200px;
		min-height: 42px;
		border-radius: var(--button-border-radius);
		user-select: none;
	}

	.button:not(.btn-cart).loader, button:not(.btn-cart).loader, input[type=submit]:not(.btn-cart).loader, input[type=button]:not(.btn-cart).loader {
		color: var(--color-black) !important;
		background: var(--color-black) !important;
		border-color: var(--color-black) !important;
	}

	/* Normal Hover */
	@media (hover) {
		.button:not([disabled]):hover, button:not([disabled]):hover, input[type=submit]:not([disabled]):hover, input[type=button]:not([disabled]):hover {
			color: var(--color-black);
			border-color: var(--color-black);
			background-color: transparent;
		}
	}

	/* Normal Disabled */
	.button[disabled], button[disabled], input[type=submit][disabled], input[type=button][disabled] {
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

	/* White */
	.button.btn-light, .button.white, button.btn-light, button.white, input[type=submit].btn-light, input[type=submit].white, input[type=button].btn-light, input[type=button].white {
		color: var(--color-black);
		border-color: var(--color-white);
		background-color: var(--color-white);
	}

	/* White Hover */
	@media (hover) {
		.button.btn-light:not([disabled]):hover, .button.white:not([disabled]):hover, button.btn-light:not([disabled]):hover, button.white:not([disabled]):hover, input[type=submit].btn-light:not([disabled]):hover, input[type=submit].white:not([disabled]):hover, input[type=button].btn-light:not([disabled]):hover, input[type=button].white:not([disabled]):hover {
			color: var(--color-white);
			border-color: var(--color-white);
			background-color: transparent;
		}
	}

	/* White Disabled */
	.button.btn-light[disabled], .button.white[disabled], button.btn-light[disabled], button.white[disabled], input[type=submit].btn-light[disabled], input[type=submit].white[disabled], input[type=button].btn-light[disabled], input[type=button].white[disabled] {
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

/* Secondary Button */
	/* Normal */
	.button.btn2, button.btn2, input[type=submit].btn2, input[type=button].btn2 {
		color: var(--color-black);
		border-color: var(--color-gray);
		background-color: transparent;
	}

	/* Normal Hover */
	@media (hover) {
		.button.btn2:not([disabled]):hover, button.btn2:not([disabled]):hover, input[type=submit].btn2:not([disabled]):hover, input[type=button].btn2:not([disabled]):hover, .buttonBlocks:not([disabled]):hover{
			color: var(--color-white);
			border-color: var(--color-black);
			background-color: var(--color-black);
		}
	}

	/* Normal Disable */
	.button.btn2[disabled], button.btn2[disabled], input[type=submit].btn2[disabled], input[type=button].btn2[disabled], .buttonBlocks[disabled]{
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

	/* White */
	.button.btn2.btn-light, .button.btn2.white, button.btn2.btn-light, button.btn2.white, input[type=submit].btn2.btn-light, input[type=submit].btn2.white, input[type=button].btn2.btn-light, input[type=button].btn2.white,
	body #main .contentTitles_button.btn-light {
		color: var(--color-white);
		border-color: var(--color-white);
		background-color: transparent;
	}

	/* White Hover */
	@media (hover) {
		.button.btn2.btn-light:not([disabled]):hover, .button.btn2.white:not([disabled]):hover, button.btn2.btn-light:not([disabled]):hover, button.btn2.white:not([disabled]):hover, input[type=submit].btn2.btn-light:not([disabled]):hover, input[type=submit].btn2.white:not([disabled]):hover, input[type=button].btn2.btn-light:not([disabled]):hover, input[type=button].btn2.white:not([disabled]):hover {
			color: var(--color-black); 
			border-color: var(--color-white);
			background-color: var(--color-white);
		}
	}

	/* White Disable */
	.button.btn2.btn-light[disabled], .button.btn2.white[disabled], button.btn2.btn-light[disabled], button.btn2.white[disabled], input[type=submit].btn2.btn-light[disabled], input[type=submit].btn2.white[disabled], input[type=button].btn2.btn-light[disabled], input[type=button].btn2.white[disabled] {
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

/* Button Link */
	/* Normal */
	.button.link, .link {
		display: inline; /* Required */
		font-weight: 300;
		font-size: 14px;
		line-height: 160%;
		text-decoration: none !important;
		padding: 2px 0;
		border: 0;
		background: transparent;
		color: var(--color-dark);
	}
	body:not(.MacOS) .button.link, body:not(.MacOS) .link {
		font-weight: 400;
	}

	.button.link:not(.cursor-default), .link:not(.cursor-default) {
		border-bottom: 1px solid currentColor;
	}

	/* Normal Hover */
	@media (hover) {
		.button.link:not([disabled]):hover, .link:not([disabled]):hover {
			border-color: transparent;
			color: currentColor;
		}
	}

	/* Normal Disable */
	.button.link[disabled], .link[disabled] {
		cursor: default !important;
		color: var(--color-lightgray);
	}

	/* White */
	.button.link.white, .link.white {
		color: var(--color-white);
	}

	/* White Hover */
	@media (hover) {
		.button.link.white:not([disabled]):hover, .link.white:not([disabled]):hover {

		}
	}

	/* White Disable */
	.button.link.white[disabled], .link.white[disabled] {
		cursor: default !important;
		color: var(--color-lightgray);
	}

/* Button Card */
	/* Normal */
	.button-card {
		transition: border-color 0.15s,
		box-shadow 0.15s;
		border-radius: var(--button-border-radius);
	}

	/* Normal hover e active */
	@media (hover) {
		.button-card:not(.disabled):not(.esgotado):hover {
			border-color: var(--color-gray);
		}
	}

	/* Active */
	.button-card.active {
		box-shadow: 0px 0px 0px 2px var(--color-theme);
		border-color: var(--color-theme);
	}

	/* Disable */
	.button-card.disabled {border-color: var(--color-background);}

	/* Esgotado */
	.button-card.esgotado {opacity: 0.5;}

	/* Title */
	.button-card-title {}

	/* Description */ 
	.button-card-desc {
		color: var(--color-gray);
	}

/* Buttons Cart */
	/* Normal */
	.btn-cart, .btn-cart-esgotado {
		font-weight: 500;
		font-size: 13px;
		line-height: 10px;
		letter-spacing: 1px;
		color: var(--color-white);
		text-transform: uppercase;
		padding: 0 40px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 200px;
		min-height: 42px;
		border: 1px solid var(--color-buttoncart);
		background-color: var(--color-buttoncart);
		white-space: nowrap;
		border-radius: var(--button-border-radius);
	}

	.btn-cart.loader {
		color: var(--color-buttoncart) !important;
		border-color: var(--color-buttoncart) !important;
		background-color: var(--color-buttoncart) !important;
	}

	/* Normal hover */
	@media (hover) {
		.btn-cart:not([disabled]):not(.loader):not(.btn-cart-esgotado):hover{
			color: var(--color-white);
			border-color: var(--color-buttoncart-hover);
			background-color: var(--color-buttoncart-hover);
		}
	}

	/* Normal Disable */ 
	.btn-cart[disabled] {
		cursor: default !important;
		opacity: 0.5;
	}

/* Button Esgotado */
body .btn-cart-esgotado{
	color: var(--color-white) !important;
	border-color: var(--color-lightgray) !important;
	background-color: var(--color-lightgray) !important;
	cursor: default !important;
	opacity: 1 !important;
}

/* Button Loading */
.button.loader, button.loader {
	position: relative;
}

.button.loader::before, button.loader::before, .btn-cart.loader::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 24px;
	height: 24px;
	margin: -13px 0 0 -13px;
	background: url("data:image/svg+xml,%3C!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL --%3E%3Csvg width='38' height='38' viewBox='0 0 38 38' xmlns='http://www.w3.org/2000/svg' stroke='%23fff'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(1 1)' stroke-width='2'%3E%3Ccircle stroke-opacity='.5' cx='18' cy='18' r='18'/%3E%3Cpath d='M36 18c0-9.94-8.06-18-18-18'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 18 18' to='360 18 18' dur='1s' repeatCount='indefinite'/%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center/24px;
}





/*
 *
 * Accordions N?o Feito
 *
*/
body .accordion > li {
	border-color: #CCC;
}

body .accordion > li.active {
	border-color: var(--color-black);
}

body .accordion > li.active + li {
	border-top-color: var(--color-black);
}

.accordion-head {
	user-select: none;
}

.accordion .accordion-head, .accordion .accordion-content {
	padding-left: 15px;
	padding-right: 4em;
}






/*
 *
 * Tabs
 *
*/
.tabs-container .tabs:not(.rdc-fixed-styles) li {
	/* margin: 0 7px; */
}

.tabs-container .tabs:not(.rdc-fixed-styles) .tabs-item {
	font-weight: 300;
	font-size: 14px;
	line-height: normal;
	color: var(--color-darkgray);
	text-decoration: none;
	cursor: pointer;
	display: block;
	padding: 10px 20px;
	border-bottom: 1px solid var(--color-lightgray);
	background-color: var(--color-white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	user-select: none;
}
body:not(.MacOS) .tabs-container .tabs:not(.rdc-fixed-styles) .tabs-item {
	font-weight: 400;
}

@media (hover) {
	.tabs-container .tabs:not(.rdc-fixed-styles) li:not(.sel) .tabs-item:hover {
		border-color: var(--color-black);
		color: var(--color-black);
	}
}

.tabs-container .tabs:not(.rdc-fixed-styles) li.sel .tabs-item {
	color: var(--color-black);
	border-color: var(--color-black);
	opacity: 1;
}

.tabs-container.vertical .tabs:not(.rdc-fixed-styles) .tabs-item {
	display: inline-block;
	padding-bottom: 0;
	border-bottom-width: 1px;
}

@media screen and (max-width: 1199px) {
	.tabs-container .tabs:not(.rdc-fixed-styles) {
		margin: 0 var(--container-padding-n);
	}

	.tabs-container .tabs:not(.rdc-fixed-styles) li:first-child {
		margin-left: var(--container-padding);
	}

	.tabs-container .tabs:not(.rdc-fixed-styles) li:last-child {
		margin-right: var(--container-padding);
		padding-right: 0;
	}
}






/*
 *
 * Form
 *
*/
/* Label (forms, filters, etc) */
.label-title, .label-subtitle, .label-desc {
	font-family: var(--base-fontfamily);
	font-weight: 300;
	font-size: 14px;
	line-height: 121%;
	color: var(--color-black);
	padding-bottom: 3px;
	padding-left: 4px;
}
body:not(.MacOS) .label-title, body:not(.MacOS) .label-subtitle, body:not(.MacOS) .label-desc {
	font-weight: 400;
}

body .form-field p span.asterisk{color: var(--color-black);}

div.wrapper-form .column .form-field{margin-bottom: 22px;}

body .magic-checkbox:checked+label:before, 
body .magic-radio:checked+label:before{border-color: var(--color-theme);}

.magic-checkbox+label:before, 
.magic-checkbox+span{ border-radius: 0; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0;border-color: var(--color-lines); }

body .magic-checkbox+label:after, 
body .magic-checkbox+span:after{
	top: calc(50% - 0px);
    left: 2px;
    transform: translateY(-50%) rotate(0deg);
    border: 0;
    width: 18px;
    height: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    -webkit-transform: translateY(-50%) rotate(0deg);
    -moz-transform: translateY(-50%) rotate(0deg);
    -ms-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m12.074 21.741 12.261-13.44A.897.897 0 0 1 25.028 8c.28 0 .513.1.697.298.183.199.275.452.275.76 0 .306-.092.56-.275.761L13.183 23.483c-.317.345-.687.517-1.11.517-.422 0-.792-.173-1.108-.52l-4.69-5.083C6.092 18.2 6 17.948 6 17.642s.091-.56.273-.761c.182-.2.413-.3.695-.3.28 0 .512.1.697.3l4.409 4.86Z'/%3E%3C/svg%3E");
}

body .magic-radio+label:after{
	background-color: var(--color-black);
}

.displayError .magic-checkbox+label:before, 
.displayError .magic-checkbox+span, 
.displayError .magic-radio+label:before, 
.displayError .magic-radio+span{border-color: var(--color-error) !important;}

textarea,  input[type=text], input[type=number], input[type=email], input[type=password], input[type=tel], input[type=search], input[type=file], select {
	padding: 9px 15px;
	border: 1px solid var(--color-lines);
	min-height: 42px;
	background-color: white;
	color: currentColor;
	/*Required*/
	border-radius: var(--input-border-radius);
	display: flex;
	align-items: center;
	-webkit-border-radius: var(--input-border-radius);
	-moz-border-radius: var(--input-border-radius);
	-ms-border-radius: var(--input-border-radius);
	-o-border-radius: var(--input-border-radius);
}

input[type=file] {
	padding: 9px 15px;
}

@media (hover) {
	input[type=text]:hover, input[type=number]:hover, input[type=email]:hover, input[type=password]:hover, input[type=tel]:hover, input[type=search]:hover, input[type=file]:hover, textarea:hover, div.select:not(.disabled):hover,
	.magic-checkbox+label:hover:before, .magic-radio+label:hover:before {
		border-color: var(--color-gray);
	}
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, input[type=tel]:focus, input[type=search]:focus, textarea:focus {
	border-color: var(--color-black);
}

input[type=text]:disabled, input[type=email]:disabled, input[type=password]:disabled, input[type=tel]:disabled, input[type=search]:disabled, textarea:disabled, div.select[disabled],
input[type=text].disabled, input[type=email].disabled, input[type=password].disabled, input[type=tel].disabled, input[type=search].disabled, textarea.disabled, div.select.disabled {
	background-color: var(--color-background) !important;
	border: 1px solid var(--color-lines)!important;
	-webkit-text-fill-color: var(--color-gray);
	-webkit-opacity: 1; 
	cursor: default;
}

div.select {
	position: relative;
	z-index: 0;
	display: block;
	border: 1px solid var(--color-lines);
	overflow-x: hidden;
	border-radius: var(--input-border-radius);
}

body div.select select {
	position: relative;
	width: 100%;
	padding: 9px 40px 9px 15px;
	min-height: 40px;
	height: auto;
	appearance:none;
	border: 0px !important;
	border-radius: 0 !important;
	background: transparent;
	z-index: 10;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	line-height: 160%; /* Mozilla */
}

body div.select::after {
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	right: 15px;
	width: 16px;
	height: 16px;
	background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M15.992 21c-.19 0-.366-.032-.525-.096a1.366 1.366 0 0 1-.47-.335L7.264 12.58A.933.933 0 0 1 7 11.954a.865.865 0 0 1 .264-.663c.188-.194.396-.291.624-.291.228 0 .436.097.623.291l7.48 7.73 7.479-7.73a.875.875 0 0 1 .606-.273c.24-.012.453.08.641.273.188.194.282.41.282.645 0 .235-.094.45-.282.644l-7.731 7.989c-.153.159-.31.27-.47.335-.16.064-.335.096-.525.096Z'/%3E%3C/svg%3E");
}

div.select.loading::after {
	background: url(/sysimages/variantsloader.gif) center center/18px no-repeat;
	width: 20px;
	right: 8px;
}

div.select select:disabled{
	background-color: var(--color-background);
}

div.select select::-ms-expand{
	display: none;
}

div.select[disabled]::after{
	opacity: 0.3;
}

::-webkit-input-placeholder {color: var(--color-gray);}
::-moz-placeholder {color: var(--color-gray);}
:-ms-input-placeholder {color: var(--color-gray);}
:-moz-placeholder {color: var(--color-gray);}

/*body .magic-checkbox:checked+label:before,
body .magic-radio:checked+label:before { border-color: var(--color-lines); }*/

body .magic-checkbox[disabled]+label:before,
body .magic-radio[disabled]+label:before { border-color: var(--color-lines); }





/*
 *
 * Messages Bar
 *
*/
.form-message .help,
.form-message .success,
.form-message .info,
.form-message .warning,
.form-message .error,
body .form-stock-message .help,
body .form-stock-message .success,
body .form-stock-message .info,
body .form-stock-message .warning,
body .form-stock-message .error {
	background-repeat: no-repeat;
	background-position: left 8px center;
	background-size: 18px;
	line-height: 12px;
	padding: 5px 8px 5px 36px;
	border-radius: var(--input-border-radius);
	border: 1px solid;
	font-size: 14px;
	color: var(--color-black);
	line-height: 160%;
}

.form-message .help {
	background-color: var(--color-helplight);
	border-color: var(--color-help) !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%238B8D8F' d='M16.031 21.811a.846.846 0 0 0 .622-.253.852.852 0 0 0 .253-.622.844.844 0 0 0-.255-.623.848.848 0 0 0-.622-.253.844.844 0 0 0-.622.254.849.849 0 0 0-.254.623.84.84 0 0 0 .256.622.846.846 0 0 0 .622.253M16.003 26a9.753 9.753 0 0 1-3.9-.787 10.114 10.114 0 0 1-3.176-2.137 10.097 10.097 0 0 1-2.14-3.174A9.73 9.73 0 0 1 6 16.003c0-1.382.262-2.682.787-3.9a10.114 10.114 0 0 1 2.137-3.176c.9-.901 1.958-1.614 3.174-2.14A9.73 9.73 0 0 1 15.997 6c1.382 0 2.682.262 3.9.787a10.114 10.114 0 0 1 3.176 2.137c.901.9 1.614 1.958 2.14 3.174A9.729 9.729 0 0 1 26 15.997a9.753 9.753 0 0 1-.787 3.9 10.114 10.114 0 0 1-2.137 3.176c-.9.901-1.957 1.614-3.174 2.14a9.729 9.729 0 0 1-3.899.787ZM16 24.889c2.482 0 4.583-.861 6.306-2.583 1.722-1.723 2.583-3.825 2.583-6.306 0-2.482-.861-4.583-2.583-6.306C20.583 7.972 18.48 7.111 16 7.111c-2.482 0-4.583.861-6.306 2.583C7.972 11.417 7.111 13.518 7.111 16s.861 4.583 2.583 6.306c1.723 1.722 3.824 2.583 6.306 2.583Zm.069-13.625c.563 0 1.047.175 1.453.525.408.349.611.785.611 1.309 0 .407-.114.776-.344 1.105a5.519 5.519 0 0 1-.793.91 6.787 6.787 0 0 0-1.006 1.14 2.77 2.77 0 0 0-.499 1.37.416.416 0 0 0 .136.363.526.526 0 0 0 .366.146c.15 0 .276-.05.378-.149a.674.674 0 0 0 .193-.353c.075-.374.223-.707.447-.999a7.83 7.83 0 0 1 .736-.828 7.91 7.91 0 0 0 1.023-1.249 2.67 2.67 0 0 0 .448-1.507c0-.817-.31-1.49-.928-2.02a3.245 3.245 0 0 0-2.179-.796c-.618 0-1.194.145-1.725.433a3.385 3.385 0 0 0-1.277 1.2.527.527 0 0 0-.07.382c.026.13.096.23.211.297a.589.589 0 0 0 .444.056.806.806 0 0 0 .396-.259c.246-.307.536-.562.87-.767a2.072 2.072 0 0 1 1.109-.309Z'/%3E%3C/svg%3E");
}

.form-message .success {
	background-color: var(--color-successlight);
	border-color: var(--color-success) !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%233F9C35' d='m14.402 18.769-2.774-2.773a.56.56 0 0 0-.382-.167.515.515 0 0 0-.404.167.546.546 0 0 0-.178.393c0 .144.06.275.178.393l2.931 2.931a.863.863 0 0 0 1.257 0l6.086-6.085a.56.56 0 0 0 .166-.382.516.516 0 0 0-.166-.404.546.546 0 0 0-.394-.178.546.546 0 0 0-.393.178l-5.927 5.927ZM16.003 26a9.753 9.753 0 0 1-3.9-.787 10.114 10.114 0 0 1-3.176-2.137 10.097 10.097 0 0 1-2.14-3.174A9.73 9.73 0 0 1 6 16.003c0-1.382.262-2.682.787-3.9a10.114 10.114 0 0 1 2.137-3.176c.9-.901 1.958-1.614 3.174-2.14A9.73 9.73 0 0 1 15.997 6c1.382 0 2.682.262 3.9.787a10.114 10.114 0 0 1 3.176 2.137c.901.9 1.614 1.958 2.14 3.174A9.729 9.729 0 0 1 26 15.997a9.753 9.753 0 0 1-.787 3.9 10.114 10.114 0 0 1-2.137 3.176c-.9.901-1.957 1.614-3.174 2.14a9.729 9.729 0 0 1-3.899.787ZM16 24.889c2.482 0 4.583-.861 6.306-2.583 1.722-1.723 2.583-3.825 2.583-6.306 0-2.482-.861-4.583-2.583-6.306C20.583 7.972 18.48 7.111 16 7.111c-2.482 0-4.583.861-6.306 2.583C7.972 11.417 7.111 13.518 7.111 16s.861 4.583 2.583 6.306c1.723 1.722 3.824 2.583 6.306 2.583Z'/%3E%3C/svg%3E");
}

.form-message .info {
	background-color: var(--color-infolight);
	border-color: var(--color-info) !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%231890FF' d='M16 21c.158 0 .29-.053.397-.16a.537.537 0 0 0 .159-.396v-5a.535.535 0 0 0-.16-.395.537.537 0 0 0-.396-.16.537.537 0 0 0-.396.16.54.54 0 0 0-.158.395v5c0 .158.053.29.16.396.106.107.238.16.396.16M16 13.308a.659.659 0 0 0 .487-.197.661.661 0 0 0 .196-.487.662.662 0 0 0-.196-.487.659.659 0 0 0-.487-.197.659.659 0 0 0-.487.197.662.662 0 0 0-.196.487.66.66 0 0 0 .196.487.66.66 0 0 0 .487.197ZM16.003 26a9.753 9.753 0 0 1-3.9-.787 10.114 10.114 0 0 1-3.176-2.137 10.097 10.097 0 0 1-2.14-3.174A9.73 9.73 0 0 1 6 16.003c0-1.382.262-2.682.787-3.9a10.114 10.114 0 0 1 2.137-3.176c.9-.901 1.958-1.614 3.174-2.14A9.73 9.73 0 0 1 15.997 6c1.382 0 2.682.262 3.9.787a10.114 10.114 0 0 1 3.176 2.137c.901.9 1.614 1.958 2.14 3.174A9.729 9.729 0 0 1 26 15.997a9.753 9.753 0 0 1-.787 3.9 10.114 10.114 0 0 1-2.137 3.176c-.9.901-1.957 1.614-3.174 2.14a9.729 9.729 0 0 1-3.899.787ZM16 24.889c2.482 0 4.583-.861 6.306-2.583 1.722-1.723 2.583-3.825 2.583-6.306 0-2.482-.861-4.583-2.583-6.306C20.583 7.972 18.48 7.111 16 7.111c-2.482 0-4.583.861-6.306 2.583C7.972 11.417 7.111 13.518 7.111 16s.861 4.583 2.583 6.306c1.723 1.722 3.824 2.583 6.306 2.583Z'/%3E%3C/svg%3E");
}

.form-message .warning {
	background-color: var(--color-warninglight);
	border-color: var(--color-warning) !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23FAAD14' d='M6.938 24a.886.886 0 0 1-.799-.452.912.912 0 0 1-.138-.433.81.81 0 0 1 .136-.471l9.058-15.192a.922.922 0 0 1 .354-.345A.966.966 0 0 1 16 7c.163 0 .313.036.45.107a.922.922 0 0 1 .355.345l9.06 15.192a.8.8 0 0 1 .134.47.876.876 0 0 1-.138.434.886.886 0 0 1-.798.452H6.938Zm.373-1.119h17.38L16 8.334 7.31 22.88Zm8.69-1.55c.2 0 .369-.066.504-.198a.654.654 0 0 0 .203-.49.654.654 0 0 0-.203-.49.693.693 0 0 0-.505-.198.693.693 0 0 0-.504.198.654.654 0 0 0-.203.49c0 .195.068.359.203.49a.693.693 0 0 0 .504.198Zm0-2.495c.163 0 .3-.054.41-.161a.535.535 0 0 0 .165-.399V13.8a.535.535 0 0 0-.166-.4.569.569 0 0 0-.41-.16c-.164 0-.3.054-.41.16a.537.537 0 0 0-.165.4v4.476c0 .158.055.291.166.399.11.107.247.16.41.16'/%3E%3C/svg%3E");
}

.form-message .error {
	background-color: var(--color-errorlight);
	border-color: var(--color-error) !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23F14244' d='M16.003 26a9.753 9.753 0 0 1-3.9-.787 10.114 10.114 0 0 1-3.176-2.137 10.097 10.097 0 0 1-2.14-3.174A9.73 9.73 0 0 1 6 16.003c0-1.382.262-2.682.787-3.9a10.114 10.114 0 0 1 2.137-3.176c.9-.901 1.958-1.614 3.174-2.14A9.73 9.73 0 0 1 15.997 6c1.382 0 2.682.262 3.9.787a10.114 10.114 0 0 1 3.176 2.137c.901.9 1.614 1.958 2.14 3.174A9.729 9.729 0 0 1 26 15.997a9.753 9.753 0 0 1-.787 3.9 10.114 10.114 0 0 1-2.137 3.176c-.9.901-1.957 1.614-3.174 2.14a9.729 9.729 0 0 1-3.899.787ZM16 24.889c2.482 0 4.583-.861 6.306-2.583 1.722-1.723 2.583-3.825 2.583-6.306 0-2.482-.861-4.583-2.583-6.306C20.583 7.972 18.48 7.111 16 7.111c-2.482 0-4.583.861-6.306 2.583C7.972 11.417 7.111 13.518 7.111 16s.861 4.583 2.583 6.306c1.723 1.722 3.824 2.583 6.306 2.583Z'/%3E%3Cpath fill='%23F14244' d='m16.218 16.939-3.244 3.252a.462.462 0 0 1-.358.15.54.54 0 0 1-.358-.17.498.498 0 0 1-.16-.363c0-.136.053-.257.16-.363l3.233-3.231-3.233-3.22a.51.51 0 0 1-.16-.368c0-.138.053-.26.16-.368a.502.502 0 0 1 .364-.16c.136 0 .257.053.363.16l3.233 3.252 3.219-3.252a.495.495 0 0 1 .358-.16c.132 0 .251.053.358.16a.51.51 0 0 1 .165.367.488.488 0 0 1-.165.36l-3.233 3.227 3.252 3.244c.106.107.16.226.16.358 0 .131-.054.25-.16.358a.51.51 0 0 1-.367.165.488.488 0 0 1-.36-.165l-3.227-3.233Z'/%3E%3C/svg%3E");
}

.form-field.displayError .label-title,
.form-field.displayError .checkbox-uni label {
	color: var(--color-error);
}

.form-field.displayError input,
.form-field.displayError div.select,
.form-field.displayError textarea,
.form-field.displayError .checkbox-uni .magic-checkbox+label:before{
	border-color: var(--color-error) !important;
}






/*
 *
 * Slim Scrollbar (Minicart, Product List Filters)
 * Customizar se necessário
 *
*/
/* Firefox used (scrollbar-width and scrollbar-color) */
/*
	body:not(.MacOS) .slim-scrollbar {
		scrollbar-width: thin;
		scrollbar-color: #AAA lightgray;
	}
	.slim-scrollbar::-webkit-scrollbar {
		width: 5px;
		height: 5px;
	}
	.slim-scrollbar::-webkit-scrollbar-track {
		background: lightgray;
	}
	.slim-scrollbar::-webkit-scrollbar-thumb {
		background-color: #AAA;
		border-radius: 8px;
	}
*/ 






/*
 *
 * Geral
 *
*/
.overlay::before {background-color: var(--color-overlay);content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 90;transition: unset;}
#containerSite-mask {background-color: transparent;}
.border-color {border-color: lightgray;}

/* CONTAINER => max-width: (1902px | 1600px | 1440px) + (--container-padding * 2) */
.container {max-width: calc(1902px + var(--container-padding) * 2);padding-left: var(--container-padding);padding-right: var(--container-padding);}
/* Se o max-width do container for (1902px), colocar o CSS abaixo */
.rdc-container-fullscreen {max-width: 1920px;/*padding-left: 0;padding-right: 0;*/}
@media screen and (max-width: 1440px) {
	.container {max-width: 1404px}
}
@media screen and (max-width: 1366px) {
	.container {max-width: 1332px}
}
@media screen and (max-width: 1280px) {
	.container {max-width: 1242px}
}

@media screen and (width: 1920px) {
	body.windows .container {max-width: 1902px;}
	/*body.windows .wishlist .section-products{margin: 0px -17px;}*/
	/*body.windows .section-products{margin: 0px -17px;}*/
	/*body.windows .section-products{margin: 0px -25px;}
	body.windows .section-products .column.first-line{padding: 0 4px 0;}
	body.windows .section-products .column:not(.first-line){padding: 40px 4px 0;}
	#main.wishlist .container.wrapper-wishlist, #rdc-productdetail-area-d div.rdc-detail-recommendation-campaign,
	.wrapper-products-container, #rdc-productdetail-area-d section { overflow: hidden; }*/
}



/*
 *
 * Sliders
 *
*/
.slider .slick-arrow, .rdc-slider-arrow {
	background-color: rgba(245, 245, 245, 0.3) !important;
	border-radius: 48px;
	box-shadow: 0px 0px 4px 0px rgba(51, 51, 51, 0.25);
	background-position: center !important;
	background-size: 20px;
}

.slider .slick-arrow.slick-disabled{visibility: hidden;}

.slick-dots { margin-top: -3px;margin-bottom: -3px; }
.slick-dots li{margin: 3px 3px;}
.slick-dots li button{ width: 20px; height: 3px;background-color: #DFDFDF;border-color: #DFDFDF; border-radius: 2px; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; }
.slick-dots li.slick-active button{background-color: #666666;border-color: #666666;}

@media screen and (min-width: 991px) and (max-width: 1199px) {
	.slick-dots li button { width: 15px;height: 3px; }
}

@media screen and (max-width: 797px) {
	article.product-item .slick-dots { margin-top: -2px;margin-bottom: -2px; }
	article.product-item .slick-dots li { margin: 2px 2px; }
	article.product-item .slick-dots li button { width: 10px;height: 2px; }
	#main.product #rdc-productdetail-area-a .slick-dots li button { height: 3px;width: 20px; }
}
@media screen and (max-width: 1199px) {
	article.product-item .slick-dots li button { width: 10px;height: 2px; }
}

@media (hover) {
	.slider .slick-arrow:hover, .rdc-slider-arrow:hover {opacity: 0.8;}
}

.slider .slick-arrow.slick-prev, .rdc-slider-prev {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23ddd' d='M11 15.992c0-.19.032-.366.097-.525.064-.161.176-.318.335-.47l7.988-7.732a.933.933 0 0 1 .626-.264.865.865 0 0 1 .663.264c.194.188.291.396.291.624 0 .228-.097.436-.291.623l-7.73 7.48 7.73 7.479c.17.164.26.366.273.606.012.24-.08.453-.273.641-.194.188-.41.282-.645.282-.235 0-.45-.094-.644-.282l-7.989-7.731a1.368 1.368 0 0 1-.334-.47 1.393 1.393 0 0 1-.097-.525Z'/%3E%3C/svg%3E");
}

.slider .slick-arrow.slick-next, .rdc-slider-next {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23ddd' d='M21 15.992c0-.19-.032-.366-.096-.525a1.366 1.366 0 0 0-.335-.47L12.58 7.264A.933.933 0 0 0 11.954 7a.865.865 0 0 0-.663.264c-.194.188-.291.396-.291.624 0 .228.097.436.291.623l7.73 7.48-7.73 7.479a.875.875 0 0 0-.273.606c-.012.24.08.453.273.641.194.188.41.282.645.282.235 0 .45-.094.644-.282l7.989-7.731c.159-.153.27-.31.335-.47.064-.16.096-.335.096-.525Z'/%3E%3C/svg%3E");
}

body .slick-arrow.slick-next { right: 20px; }
body .slick-arrow.slick-prev { left: 20px; }





/*
 *
 * Icons SVG
 *
*/
@media (hover) {
	a:not(.disabled):hover .rdc-icon-svg, .a:not(.disabled):hover .rdc-icon-svg, .rdc-icon-hover:hover {
		opacity: 0.5;
	}
	article.product-item a:not(.disabled):hover .rdc-icon-svg { opacity: 1; }
}

/* SVG icons Ex: {background-image: url("data:image/svg+xml,%3Csvg ... ");} */
@media screen and (max-width: 767px) {
	.rdc-icon-circle {background-size: 24px;}
}
@media screen and (min-width: 768px) {
	.rdc-icon-circle {background-size: 16px;}
}
body .rdc-icon-svg.rdc-icon-menu {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M5.336 8c0-.367.298-.665.665-.665h20a.665.665 0 1 1 0 1.33H6A.665.665 0 0 1 5.336 8Zm0 8c0-.367.298-.665.665-.665h20a.665.665 0 0 1 0 1.33H6A.665.665 0 0 1 5.336 16Zm0 8c0-.367.298-.665.665-.665h20a.665.665 0 0 1 0 1.33H6A.665.665 0 0 1 5.336 24Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-menu-close{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' d='m16 17.042-7.722 7.723a.743.743 0 0 1-.507.22.687.687 0 0 1-.535-.22.723.723 0 0 1-.236-.522.72.72 0 0 1 .236-.52L14.958 16 7.236 8.278a.743.743 0 0 1-.221-.507.687.687 0 0 1 .22-.535A.723.723 0 0 1 7.758 7a.72.72 0 0 1 .52.236L16 14.958l7.722-7.722a.743.743 0 0 1 .507-.221.69.69 0 0 1 .536.22.725.725 0 0 1 .235.522.72.72 0 0 1-.235.52L17.042 16l7.723 7.722a.743.743 0 0 1 .22.507c.01.2-.063.379-.22.536a.723.723 0 0 1-.522.235.723.723 0 0 1-.52-.235L16 17.042Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-share {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M9.076 28c-.591 0-1.085-.187-1.48-.56A1.84 1.84 0 0 1 7 26.044V14.207c0-.557.198-1.022.595-1.395.396-.374.89-.561 1.481-.561h2.078a.65.65 0 0 1 .459.173c.122.116.184.26.184.433a.572.572 0 0 1-.184.432.638.638 0 0 1-.46.173H9.076a.78.78 0 0 0-.544.233c-.164.156-.246.326-.246.512v11.837c0 .185.082.356.246.512a.78.78 0 0 0 .544.232h13.846a.78.78 0 0 0 .544-.232c.165-.156.247-.327.247-.512V14.207c0-.186-.082-.356-.247-.512a.78.78 0 0 0-.544-.233h-2.077a.646.646 0 0 1-.46-.173.56.56 0 0 1-.182-.432.57.57 0 0 1 .186-.433.641.641 0 0 1 .457-.173h2.078c.591 0 1.085.187 1.48.56.398.374.596.839.596 1.396v11.837c0 .557-.198 1.022-.594 1.395-.397.374-.89.561-1.482.561H9.076Zm6.28-21.063-2.244 2.115a.641.641 0 0 1-.91-.008c-.137-.133-.207-.276-.209-.428-.002-.152.067-.295.209-.429l3.071-2.893c.207-.196.45-.294.726-.294.277 0 .52.098.727.294l3.071 2.893c.12.113.184.252.193.415a.563.563 0 0 1-.193.443.662.662 0 0 1-.459.2.662.662 0 0 1-.459-.2l-2.237-2.108V19.52a.572.572 0 0 1-.184.432.646.646 0 0 1-.459.173.646.646 0 0 1-.459-.173.572.572 0 0 1-.183-.432V6.937Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-fb {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M24 23.2c0 .484-.244.8-.738.8h-4.15v-6.054h2.11l.32-2.595h-2.43v-1.349c0-.692.19-1.245 1.212-1.245h1.454v-2.063c-.445-.03-1.134-.095-2.036-.095-1.875 0-3.298 1.116-3.298 3.165v1.587h-2.222v2.595h2.222V24H8.747C8.249 24 8 23.684 8 23.2V9.077C8 8.592 8.249 8 8.747 8h14.515c.494 0 .738.592.738 1.077V23.2Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-in {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M20.576 24h-9.152A3.428 3.428 0 0 1 8 20.576v-9.152A3.428 3.428 0 0 1 11.424 8h9.152A3.428 3.428 0 0 1 24 11.425v9.15A3.428 3.428 0 0 1 20.576 24ZM11.424 9.868c-.858 0-1.556.698-1.556 1.556v9.152c0 .858.698 1.556 1.556 1.556h9.152c.858 0 1.556-.698 1.556-1.556v-9.152c0-.858-.698-1.556-1.556-1.556h-9.152ZM13.448 16A2.555 2.555 0 0 1 16 13.448 2.555 2.555 0 0 1 18.552 16 2.555 2.555 0 0 1 16 18.552 2.555 2.555 0 0 1 13.448 16ZM16 20.42A4.425 4.425 0 0 1 11.58 16 4.425 4.425 0 0 1 16 11.58 4.425 4.425 0 0 1 20.42 16 4.425 4.425 0 0 1 16 20.42Zm4.524-7.906a.796.796 0 1 0 0-1.592.796.796 0 0 0 0 1.592Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-lk {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M10.556 12.035c-.945 0-1.556-.68-1.556-1.52C9 9.66 9.63 9 10.595 9s1.556.659 1.574 1.516c0 .84-.61 1.519-1.613 1.519ZM12.071 23H9.078v-9.766h2.993V23Zm7.937 0H23v-5.774c0-2.876-1.476-4.214-3.445-4.214-1.615 0-2.58.94-2.974 1.577h-.06l-.137-1.357h-2.6c.04.878.079 1.897.079 3.116v6.65h2.994v-5.63c0-.28.02-.56.1-.76.217-.556.708-1.136 1.534-1.136 1.082 0 1.517.856 1.517 2.116V23Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-pi {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M17.003 19.602c-.94-.075-1.334-.558-2.07-1.02-.405 2.202-.9 4.314-2.364 5.418-.454-3.331.662-5.83 1.18-8.485-.883-1.543.106-4.648 1.971-3.885 2.295.943-1.987 5.74.887 6.34 3.001.623 4.227-5.403 2.366-7.36-2.69-2.83-7.826-.065-7.194 3.985.153.99 1.14 1.29.394 2.657-1.72-.396-2.234-1.803-2.167-3.68.105-3.071 2.66-5.223 5.221-5.519 3.241-.373 6.282 1.234 6.703 4.397.471 3.569-1.464 7.43-4.927 7.152Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-tm {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M19.999 22.235a7.485 7.485 0 0 1-1.507.595 6.07 6.07 0 0 1-1.457.17c-.594 0-1.118-.083-1.575-.244a3.305 3.305 0 0 1-1.167-.691c-.323-.297-.546-.617-.67-.953-.125-.34-.187-.827-.187-1.466v-4.912H12v-1.978a3.74 3.74 0 0 0 1.31-.771 3.78 3.78 0 0 0 .875-1.2c.22-.467.372-1.065.455-1.785h1.848v3.539h3.08v2.195h-3.08v3.592c0 .811.04 1.332.12 1.561.079.232.227.415.445.553.288.185.618.279.985.279.659 0 1.312-.232 1.962-.695v2.211h-.001Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-tw {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M21.176 8h2.76l-6.03 6.777L25 24h-5.554l-4.35-5.593L10.116 24H7.355l6.45-7.25L7 8h5.695l3.933 5.113L21.176 8Zm-.969 14.375h1.53L11.864 9.54h-1.64l9.983 12.836Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-vm {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M22.93 12.88c-.782 4.329-5.154 7.997-6.467 8.834-1.315.835-2.515-.337-2.95-1.223-.498-1.012-1.99-6.492-2.38-6.947-.392-.455-1.565.455-1.565.455L9 13.266s2.382-2.795 4.193-3.142c1.922-.372 1.918 2.896 2.38 4.711.448 1.756.748 2.76 1.138 2.76.391 0 1.138-.977 1.954-2.48.819-1.501-.034-2.829-1.634-1.884.64-3.77 6.681-4.68 5.9-.35Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-yt {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M8 16c0 5.319.138 6 8 6s8-.681 8-6-.138-6-8-6-8 .681-8 6Zm6.971-1.87 3.594 1.613c.313.142.313.372-.002.514l-3.592 1.612c-.313.14-.571-.017-.571-.35v-3.037c0-.334.258-.491.571-.351Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-wa {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M25 15.768c0 4.843-3.956 8.768-8.836 8.768a8.851 8.851 0 0 1-4.272-1.09L7 25l1.595-4.704a8.676 8.676 0 0 1-1.268-4.528C7.327 10.926 11.283 7 16.164 7 21.044 7 25 10.926 25 15.768Zm-8.836-7.372c-4.097 0-7.429 3.307-7.429 7.372 0 1.613.526 3.107 1.415 4.322l-.928 2.738 2.855-.907a7.424 7.424 0 0 0 4.088 1.219c4.096 0 7.429-3.307 7.429-7.371 0-4.065-3.333-7.373-7.43-7.373Zm4.164 9.198c.152.072.254.122.298.194.054.09.054.52-.126 1.022-.181.502-1.066.986-1.463 1.021-.068.006-.124.02-.182.034-.28.067-.592.142-2.417-.57-2.035-.796-3.376-2.77-3.653-3.178l-.047-.068c-.11-.145-.884-1.166-.884-2.222 0-.99.49-1.508.715-1.747l.042-.046a.8.8 0 0 1 .578-.269c.075 0 .15.005.222.01a3.053 3.053 0 0 0 .241.006c.122-.008.28-.018.44.36l.23.556c.189.456.4.967.438 1.04.054.108.09.233.018.377l-.03.059a1.214 1.214 0 0 1-.187.3l-.11.13c-.075.09-.15.181-.215.246-.108.107-.221.223-.095.438.127.215.561.919 1.205 1.488a5.587 5.587 0 0 0 1.6 1.003c.058.026.107.046.142.064.217.108.343.09.47-.054.126-.144.541-.628.685-.843.144-.215.29-.179.488-.107.198.071 1.263.591 1.48.699l.117.057Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-ms {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M16 7.002h-.393A8.828 8.828 0 0 0 7 15.627a8.461 8.461 0 0 0 3 6.42v2.579l.013.1a.375.375 0 0 0 .56.218l2.091-1.306.46.163a9.29 9.29 0 0 0 2.876.45 8.828 8.828 0 0 0 9-8.624 8.828 8.828 0 0 0-9-8.624Zm1.546 8.17 3.9-2.126a.375.375 0 0 1 .447.595l-4.5 4.5a.375.375 0 0 1-.51.019l-2.428-2.081-3.9 2.126a.375.375 0 0 1-.445-.594l4.5-4.5a.375.375 0 0 1 .51-.02l2.426 2.081Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-em {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M7.9 24c-.541 0-.993-.178-1.355-.534A1.789 1.789 0 0 1 6 22.136V10.863c0-.53.182-.973.545-1.329C6.908 9.18 7.36 9.001 7.9 9h16.2c.541 0 .993.178 1.355.534.363.356.545.799.545 1.33v11.271c0 .531-.181.975-.544 1.33-.363.356-.815.534-1.356.534L7.9 24Zm7.537-6.461-8.26-6.03v10.625c0 .208.067.378.203.51a.718.718 0 0 0 .52.2h16.2a.712.712 0 0 0 .52-.2.683.683 0 0 0 .203-.51V11.508l-8.26 6.029a.932.932 0 0 1-.563.187.932.932 0 0 1-.563-.187m.563-.99 8.598-6.26a.475.475 0 0 0-.147-.1.57.57 0 0 0-.216-.034H7.765a.51.51 0 0 0-.226.055.692.692 0 0 0-.181.122L16 16.548Zm8.823-5.057c0-.213-.026-.425-.078-.635l-.147-.567a.479.479 0 0 0-.147-.102.57.57 0 0 0-.216-.033H7.765a.51.51 0 0 0-.226.055.692.692 0 0 0-.181.122c-.046.17-.087.356-.125.559a3.274 3.274 0 0 0-.057.6v-1.334h17.648v1.335Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-phone {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m25.142 19.704-4.82-2.16a1.428 1.428 0 0 0-1.412.167l-2.52 2.143a.19.19 0 0 1-.171.006c-1.62-.782-3.297-2.45-4.082-4.046a.195.195 0 0 1 0-.171l2.15-2.552a1.43 1.43 0 0 0 .157-1.413L12.3 6.866a1.429 1.429 0 0 0-1.486-.856A5.535 5.535 0 0 0 6 11.51C6 19.5 12.5 26 20.49 26a5.536 5.536 0 0 0 5.5-4.814 1.429 1.429 0 0 0-.848-1.482Zm-4.652 5.072c-7.314 0-13.265-5.952-13.265-13.266a4.31 4.31 0 0 1 3.742-4.286h.023a.204.204 0 0 1 .188.133l2.153 4.808a.204.204 0 0 1 0 .17l-2.154 2.557a.487.487 0 0 0-.044.059 1.43 1.43 0 0 0-.093 1.4c.905 1.854 2.773 3.707 4.646 4.612a1.429 1.429 0 0 0 1.462-.145l2.519-2.143a.196.196 0 0 1 .163-.01l4.822 2.16a.205.205 0 0 1 .123.204 4.31 4.31 0 0 1-4.285 3.747Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-notification {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M7.643 23.648a.618.618 0 0 1-.458-.185.617.617 0 0 1-.185-.455.62.62 0 0 1 .185-.457.62.62 0 0 1 .458-.184h1.433v-7.593c0-1.674.532-3.147 1.595-4.418 1.064-1.27 2.412-2.062 4.043-2.375v-.7c0-.356.125-.658.374-.907.25-.25.553-.374.91-.374.355 0 .659.125.911.374.251.249.377.551.377.908v.7c1.632.312 2.98 1.104 4.042 2.374 1.063 1.272 1.594 2.744 1.594 4.418v7.592h1.435a.62.62 0 0 1 .458.184.627.627 0 0 1 .185.458.616.616 0 0 1-.185.456.625.625 0 0 1-.458.183l-16.714.002ZM15.996 27a1.994 1.994 0 0 1-1.466-.609 1.993 1.993 0 0 1-.606-1.46h4.152c0 .572-.203 1.06-.61 1.464a2.016 2.016 0 0 1-1.47.605Zm-5.634-4.634h11.276v-7.592c0-1.557-.55-2.883-1.647-3.978-1.097-1.094-2.428-1.64-3.991-1.64-1.563 0-2.894.546-3.99 1.64-1.098 1.095-1.647 2.42-1.647 3.978v7.592Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-help {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%238B8D8F' d='M16.031 21.811a.846.846 0 0 0 .622-.253.852.852 0 0 0 .253-.622.844.844 0 0 0-.255-.623.848.848 0 0 0-.622-.253.844.844 0 0 0-.622.254.849.849 0 0 0-.254.623.84.84 0 0 0 .256.622.846.846 0 0 0 .622.253M16.003 26a9.753 9.753 0 0 1-3.9-.787 10.114 10.114 0 0 1-3.176-2.137 10.097 10.097 0 0 1-2.14-3.174A9.73 9.73 0 0 1 6 16.003c0-1.382.262-2.682.787-3.9a10.114 10.114 0 0 1 2.137-3.176c.9-.901 1.958-1.614 3.174-2.14A9.73 9.73 0 0 1 15.997 6c1.382 0 2.682.262 3.9.787a10.114 10.114 0 0 1 3.176 2.137c.901.9 1.614 1.958 2.14 3.174A9.729 9.729 0 0 1 26 15.997a9.753 9.753 0 0 1-.787 3.9 10.114 10.114 0 0 1-2.137 3.176c-.9.901-1.957 1.614-3.174 2.14a9.729 9.729 0 0 1-3.899.787ZM16 24.889c2.482 0 4.583-.861 6.306-2.583 1.722-1.723 2.583-3.825 2.583-6.306 0-2.482-.861-4.583-2.583-6.306C20.583 7.972 18.48 7.111 16 7.111c-2.482 0-4.583.861-6.306 2.583C7.972 11.417 7.111 13.518 7.111 16s.861 4.583 2.583 6.306c1.723 1.722 3.824 2.583 6.306 2.583Zm.069-13.625c.563 0 1.047.175 1.453.525.408.349.611.785.611 1.309 0 .407-.114.776-.344 1.105a5.519 5.519 0 0 1-.793.91 6.787 6.787 0 0 0-1.006 1.14 2.77 2.77 0 0 0-.499 1.37.416.416 0 0 0 .136.363.526.526 0 0 0 .366.146c.15 0 .276-.05.378-.149a.674.674 0 0 0 .193-.353c.075-.374.223-.707.447-.999a7.83 7.83 0 0 1 .736-.828 7.91 7.91 0 0 0 1.023-1.249 2.67 2.67 0 0 0 .448-1.507c0-.817-.31-1.49-.928-2.02a3.245 3.245 0 0 0-2.179-.796c-.618 0-1.194.145-1.725.433a3.385 3.385 0 0 0-1.277 1.2.527.527 0 0 0-.07.382c.026.13.096.23.211.297a.589.589 0 0 0 .444.056.806.806 0 0 0 .396-.259c.246-.307.536-.562.87-.767a2.072 2.072 0 0 1 1.109-.309Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-info {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%231890FF' d='M16 21c.158 0 .29-.053.397-.16a.537.537 0 0 0 .159-.396v-5a.535.535 0 0 0-.16-.395.537.537 0 0 0-.396-.16.537.537 0 0 0-.396.16.54.54 0 0 0-.158.395v5c0 .158.053.29.16.396.106.107.238.16.396.16M16 13.308a.659.659 0 0 0 .487-.197.661.661 0 0 0 .196-.487.662.662 0 0 0-.196-.487.659.659 0 0 0-.487-.197.659.659 0 0 0-.487.197.662.662 0 0 0-.196.487.66.66 0 0 0 .196.487.66.66 0 0 0 .487.197ZM16.003 26a9.753 9.753 0 0 1-3.9-.787 10.114 10.114 0 0 1-3.176-2.137 10.097 10.097 0 0 1-2.14-3.174A9.73 9.73 0 0 1 6 16.003c0-1.382.262-2.682.787-3.9a10.114 10.114 0 0 1 2.137-3.176c.9-.901 1.958-1.614 3.174-2.14A9.73 9.73 0 0 1 15.997 6c1.382 0 2.682.262 3.9.787a10.114 10.114 0 0 1 3.176 2.137c.901.9 1.614 1.958 2.14 3.174A9.729 9.729 0 0 1 26 15.997a9.753 9.753 0 0 1-.787 3.9 10.114 10.114 0 0 1-2.137 3.176c-.9.901-1.957 1.614-3.174 2.14a9.729 9.729 0 0 1-3.899.787ZM16 24.889c2.482 0 4.583-.861 6.306-2.583 1.722-1.723 2.583-3.825 2.583-6.306 0-2.482-.861-4.583-2.583-6.306C20.583 7.972 18.48 7.111 16 7.111c-2.482 0-4.583.861-6.306 2.583C7.972 11.417 7.111 13.518 7.111 16s.861 4.583 2.583 6.306c1.723 1.722 3.824 2.583 6.306 2.583Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-success {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%233F9C35' d='m14.402 18.769-2.774-2.773a.56.56 0 0 0-.382-.167.515.515 0 0 0-.404.167.546.546 0 0 0-.178.393c0 .144.06.275.178.393l2.931 2.931a.863.863 0 0 0 1.257 0l6.086-6.085a.56.56 0 0 0 .166-.382.516.516 0 0 0-.166-.404.546.546 0 0 0-.394-.178.546.546 0 0 0-.393.178l-5.927 5.927ZM16.003 26a9.753 9.753 0 0 1-3.9-.787 10.114 10.114 0 0 1-3.176-2.137 10.097 10.097 0 0 1-2.14-3.174A9.73 9.73 0 0 1 6 16.003c0-1.382.262-2.682.787-3.9a10.114 10.114 0 0 1 2.137-3.176c.9-.901 1.958-1.614 3.174-2.14A9.73 9.73 0 0 1 15.997 6c1.382 0 2.682.262 3.9.787a10.114 10.114 0 0 1 3.176 2.137c.901.9 1.614 1.958 2.14 3.174A9.729 9.729 0 0 1 26 15.997a9.753 9.753 0 0 1-.787 3.9 10.114 10.114 0 0 1-2.137 3.176c-.9.901-1.957 1.614-3.174 2.14a9.729 9.729 0 0 1-3.899.787ZM16 24.889c2.482 0 4.583-.861 6.306-2.583 1.722-1.723 2.583-3.825 2.583-6.306 0-2.482-.861-4.583-2.583-6.306C20.583 7.972 18.48 7.111 16 7.111c-2.482 0-4.583.861-6.306 2.583C7.972 11.417 7.111 13.518 7.111 16s.861 4.583 2.583 6.306c1.723 1.722 3.824 2.583 6.306 2.583Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-error {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23F14244' d='M16.003 26a9.753 9.753 0 0 1-3.9-.787 10.114 10.114 0 0 1-3.176-2.137 10.097 10.097 0 0 1-2.14-3.174A9.73 9.73 0 0 1 6 16.003c0-1.382.262-2.682.787-3.9a10.114 10.114 0 0 1 2.137-3.176c.9-.901 1.958-1.614 3.174-2.14A9.73 9.73 0 0 1 15.997 6c1.382 0 2.682.262 3.9.787a10.114 10.114 0 0 1 3.176 2.137c.901.9 1.614 1.958 2.14 3.174A9.729 9.729 0 0 1 26 15.997a9.753 9.753 0 0 1-.787 3.9 10.114 10.114 0 0 1-2.137 3.176c-.9.901-1.957 1.614-3.174 2.14a9.729 9.729 0 0 1-3.899.787ZM16 24.889c2.482 0 4.583-.861 6.306-2.583 1.722-1.723 2.583-3.825 2.583-6.306 0-2.482-.861-4.583-2.583-6.306C20.583 7.972 18.48 7.111 16 7.111c-2.482 0-4.583.861-6.306 2.583C7.972 11.417 7.111 13.518 7.111 16s.861 4.583 2.583 6.306c1.723 1.722 3.824 2.583 6.306 2.583Z'/%3E%3Cpath fill='%23F14244' d='m16.218 16.939-3.244 3.252a.462.462 0 0 1-.358.15.54.54 0 0 1-.358-.17.498.498 0 0 1-.16-.363c0-.136.053-.257.16-.363l3.233-3.231-3.233-3.22a.51.51 0 0 1-.16-.368c0-.138.053-.26.16-.368a.502.502 0 0 1 .364-.16c.136 0 .257.053.363.16l3.233 3.252 3.219-3.252a.495.495 0 0 1 .358-.16c.132 0 .251.053.358.16a.51.51 0 0 1 .165.367.488.488 0 0 1-.165.36l-3.233 3.227 3.252 3.244c.106.107.16.226.16.358 0 .131-.054.25-.16.358a.51.51 0 0 1-.367.165.488.488 0 0 1-.36-.165l-3.227-3.233Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-warning {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23FAAD14' d='M6.938 24a.886.886 0 0 1-.799-.452.912.912 0 0 1-.138-.433.81.81 0 0 1 .136-.471l9.058-15.192a.922.922 0 0 1 .354-.345A.966.966 0 0 1 16 7c.163 0 .313.036.45.107a.922.922 0 0 1 .355.345l9.06 15.192a.8.8 0 0 1 .134.47.876.876 0 0 1-.138.434.886.886 0 0 1-.798.452H6.938Zm.373-1.119h17.38L16 8.334 7.31 22.88Zm8.69-1.55c.2 0 .369-.066.504-.198a.654.654 0 0 0 .203-.49.654.654 0 0 0-.203-.49.693.693 0 0 0-.505-.198.693.693 0 0 0-.504.198.654.654 0 0 0-.203.49c0 .195.068.359.203.49a.693.693 0 0 0 .504.198Zm0-2.495c.163 0 .3-.054.41-.161a.535.535 0 0 0 .165-.399V13.8a.535.535 0 0 0-.166-.4.569.569 0 0 0-.41-.16c-.164 0-.3.054-.41.16a.537.537 0 0 0-.165.4v4.476c0 .158.055.291.166.399.11.107.247.16.41.16'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-close {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m15.887 16.812-6.865 6.865a.66.66 0 0 1-.45.196.611.611 0 0 1-.476-.196.643.643 0 0 1-.21-.464c0-.169.07-.323.21-.463l6.864-6.864-6.864-6.864a.66.66 0 0 1-.196-.45.61.61 0 0 1 .196-.477.641.641 0 0 1 .463-.209c.17 0 .324.07.463.21l6.865 6.864 6.864-6.865a.66.66 0 0 1 .45-.196.611.611 0 0 1 .476.196c.14.14.21.294.21.464 0 .169-.07.323-.21.463l-6.864 6.864 6.864 6.864a.66.66 0 0 1 .197.45.61.61 0 0 1-.197.477.643.643 0 0 1-.463.209.643.643 0 0 1-.463-.21l-6.864-6.864Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-delete {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M10.362 26c-.57 0-1.06-.2-1.466-.602a1.957 1.957 0 0 1-.61-1.446V8.245h-.643a.623.623 0 0 1-.458-.183A.617.617 0 0 1 7 7.61a.629.629 0 0 1 .643-.633h4.5c0-.262.098-.49.296-.684A.957.957 0 0 1 13.133 6h5.734c.266 0 .497.097.694.292a.931.931 0 0 1 .296.685h4.5c.183 0 .335.06.458.182a.61.61 0 0 1 .185.453.626.626 0 0 1-.643.633h-.643v15.707c0 .563-.203 1.045-.61 1.446a2.01 2.01 0 0 1-1.466.602H10.362ZM22.43 8.245H9.57v15.707a.754.754 0 0 0 .791.78h11.276a.754.754 0 0 0 .79-.78V8.245Zm-8.604 13.95a.62.62 0 0 0 .457-.182.61.61 0 0 0 .185-.452V11.415c0-.18-.061-.33-.185-.451a.635.635 0 0 0-.459-.183.623.623 0 0 0-.641.634v10.146c0 .18.061.33.185.452.123.12.276.181.458.182Zm4.352 0a.623.623 0 0 0 .641-.634V11.415c0-.18-.061-.33-.185-.451a.633.633 0 0 0-.458-.183.623.623 0 0 0-.457.183.609.609 0 0 0-.185.451v10.146c0 .18.061.33.185.452.123.12.276.181.459.182Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-edit {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M6.058 27A1.026 1.026 0 0 1 5 25.942c.417-1.065.775-2.168 1.218-3.207.115-.266.267-.494.457-.684L23.35 5.382c.145-.144.298-.244.457-.3a1.487 1.487 0 0 1 .973 0c.166.056.31.157.432.302l1.406 1.403a.965.965 0 0 1 .3.433c.055.166.082.33.082.495 0 .16-.027.319-.082.478-.056.16-.157.312-.302.457L9.95 25.324c-.19.19-.417.341-.684.455-1.046.45-2.128.824-3.208 1.221Zm.252-1.31 2.452-1.047 13.825-13.816-.69-.723-.723-.69L7.357 23.238 6.31 25.69Zm15.585-15.584-.722-.692 1.414 1.413-.692-.721Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-search {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='m20.858 19.953 5.954 5.955a.64.64 0 1 1-.904.905l-5.955-5.955a8.994 8.994 0 0 1-5.917 2.215C9.053 23.073 5 19.019 5 14.037 5 9.054 9.053 5 14.036 5s9.037 4.054 9.037 9.037c0 2.261-.837 4.33-2.215 5.916ZM14.036 6.28c-4.277 0-7.757 3.48-7.757 7.758 0 4.277 3.48 7.756 7.757 7.756 4.278 0 7.758-3.48 7.758-7.756 0-4.278-3.48-7.758-7.758-7.758Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-wishlist {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M14.459 25.96a179.912 179.912 0 0 1-5.066-4.819c-1.349-1.347-2.421-2.544-3.217-3.593-.796-1.05-1.357-2.009-1.685-2.879A7.453 7.453 0 0 1 4 12.028c0-1.706.576-3.137 1.728-4.294C6.88 6.578 8.304 6 10 6a6.41 6.41 0 0 1 3.3.905c1.027.604 1.927 1.482 2.7 2.633v1.516h-.536c-.809-1.263-1.656-2.198-2.543-2.805A5.064 5.064 0 0 0 10 7.34c-1.3 0-2.404.446-3.31 1.337-.904.893-1.357 2.01-1.357 3.351 0 .755.156 1.52.467 2.298.311.778.867 1.672 1.667 2.684.8 1.011 1.889 2.2 3.266 3.565 1.378 1.365 3.134 3.02 5.267 4.967V27a.972.972 0 0 1-.72-.292l-.821-.747Z'/%3E%3Cpath fill='%23000' d='M17.541 25.96a179.96 179.96 0 0 0 5.066-4.819c1.349-1.347 2.421-2.544 3.217-3.593.796-1.05 1.357-2.009 1.685-2.879.327-.87.491-1.75.491-2.641 0-1.706-.576-3.137-1.728-4.294C25.12 6.578 23.696 6 22 6a6.403 6.403 0 0 0-3.3.905c-1.027.604-1.927 1.482-2.7 2.633v1.516h.536c.809-1.263 1.656-2.198 2.543-2.805A5.064 5.064 0 0 1 22 7.34c1.3 0 2.404.446 3.31 1.337.904.893 1.357 2.01 1.357 3.351 0 .755-.156 1.52-.467 2.298-.311.778-.867 1.672-1.667 2.684-.8 1.011-1.889 2.2-3.266 3.565-1.378 1.365-3.134 3.02-5.267 4.967V27a.972.972 0 0 0 .72-.292l.821-.747Z'/%3E%3C/svg%3E");}
/* body .rdc-icon-svg.rdc-icon-wishlist.active,
body .rdc-icon-svg.rdc-icon-wishlist-active {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M9.393 21.141a179.912 179.912 0 0 0 5.066 4.82l.821.747A.972.972 0 0 0 16 27a.972.972 0 0 0 .72-.292l.821-.747a179.96 179.96 0 0 0 5.066-4.82c1.349-1.347 2.421-2.544 3.217-3.593.796-1.05 1.357-2.009 1.685-2.879.327-.87.491-1.75.491-2.641 0-1.706-.576-3.137-1.728-4.294C25.12 6.578 23.696 6 22 6a6.403 6.403 0 0 0-3.3.905c-1.027.604-1.927 1.482-2.7 2.633-.773-1.151-1.673-2.029-2.7-2.633A6.403 6.403 0 0 0 10 6c-1.696 0-3.12.578-4.272 1.734C4.576 8.891 4 10.322 4 12.028c0 .89.164 1.771.49 2.641.329.87.89 1.83 1.686 2.879.796 1.049 1.868 2.246 3.217 3.593Z'/%3E%3C/svg%3E");} */
body .rdc-icon-svg.rdc-icon-cart:not(.active){background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M11.173 9.157v-.345C11.173 6.154 13.334 4 16 4s4.827 2.154 4.827 4.812v.345h2.416c.345 0 .636.255.682.595l2.069 15.472a.684.684 0 0 1-.682.776H6.688a.689.689 0 0 1-.682-.776l2.07-15.472a.687.687 0 0 1 .681-.595h2.416Zm1.376-.345c0-1.9 1.545-3.44 3.451-3.44 1.906 0 3.45 1.54 3.45 3.44v.345h-6.9v-.345ZM7.474 24.628l1.886-14.1h13.28l1.886 14.1H7.474Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
/* body .rdc-icon-svg.rdc-icon-cart.active,
body .rdc-icon-svg.rdc-icon-cart-active {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M11.173 9.157v-.345C11.173 6.154 13.334 4 16 4s4.827 2.154 4.827 4.812v.345h2.416c.345 0 .636.255.682.595l2.069 15.472a.684.684 0 0 1-.682.776H6.688a.689.689 0 0 1-.682-.776l2.07-15.472a.687.687 0 0 1 .681-.595h2.416Zm1.376-.345c0-1.9 1.545-3.44 3.451-3.44 1.906 0 3.45 1.54 3.45 3.44v.345h-6.9v-.345Z' clip-rule='evenodd'/%3E%3C/svg%3E");} */
body .rdc-icon-svg.rdc-icon-cart-add {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M11.173 9.157v-.345C11.173 6.154 13.334 4 16 4s4.827 2.154 4.827 4.812v.345h2.416c.345 0 .636.255.682.595l1.033 7.729A6.5 6.5 0 0 0 16.498 26h-9.81a.689.689 0 0 1-.682-.776l2.07-15.472a.687.687 0 0 1 .681-.595h2.416Zm1.376-.345c0-1.9 1.545-3.44 3.451-3.44 1.906 0 3.45 1.54 3.45 3.44v.345h-6.9v-.345ZM24.75 19.58c-.666-.387-1.416-.58-2.25-.581h-.001c-1.254 0-2.317.437-3.19 1.31-.873.874-1.309 1.938-1.309 3.19 0 1.253.436 2.317 1.31 3.19.063.064.128.126.194.185.836.75 1.834 1.125 2.996 1.125 1.253 0 2.316-.436 3.19-1.31.873-.873 1.31-1.937 1.31-3.19s-.438-2.316-1.31-3.19a4.591 4.591 0 0 0-.94-.73Zm.426 2.728-.426.426v-.002l-2.402 2.403a.871.871 0 0 1-.636.272.872.872 0 0 1-.627-.263l-1.261-1.261a.442.442 0 0 1-.147-.314c0-.111.048-.216.147-.314a.41.41 0 0 1 .324-.136c.118.006.22.052.303.136l1.261 1.261 2.837-2.836a.506.506 0 0 1 .201-.13.37.37 0 0 1 .111-.016.433.433 0 0 1 .315.146.412.412 0 0 1 .135.324.455.455 0 0 1-.135.304Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-comparator:not(.active) {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m7.836 21.767 3.167 3.215a.568.568 0 0 1-.006.829.588.588 0 0 1-.408.189.55.55 0 0 1-.408-.19l-3.909-3.967a.916.916 0 0 1-.21-.312.965.965 0 0 1-.062-.349c0-.126.02-.243.061-.349a.917.917 0 0 1 .211-.312l3.909-3.967a.574.574 0 0 1 .393-.176.55.55 0 0 1 .423.176.59.59 0 0 1 .19.418.59.59 0 0 1-.19.418l-3.16 3.207H24.65c.163 0 .3.056.411.167.11.113.165.252.165.418a.574.574 0 0 1-.165.418.557.557 0 0 1-.412.167H7.837Zm16.328-9.364H7.35a.557.557 0 0 1-.411-.167.574.574 0 0 1-.165-.418c0-.166.055-.306.165-.418a.557.557 0 0 1 .411-.167h16.814l-3.167-3.215a.568.568 0 0 1 .006-.829A.588.588 0 0 1 21.41 7c.145-.002.281.06.408.19l3.909 3.967c.1.101.17.205.21.312a.942.942 0 0 1 .062.349c0 .126-.02.243-.061.349a.917.917 0 0 1-.211.312l-3.909 3.967a.574.574 0 0 1-.393.176.55.55 0 0 1-.423-.176.59.59 0 0 1-.19-.418.59.59 0 0 1 .19-.418l3.161-3.207Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-comparator.active,
body .rdc-icon-svg.rdc-icon-comparator-active {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M25.918 11.529a1.18 1.18 0 0 0-.28-.405l-3.942-3.865A.896.896 0 0 0 21.099 7a.873.873 0 0 0-.654.254l-.005.004a.852.852 0 0 0-.278.612c0 .238.108.444.278.612l2.681 2.628H6.884a.88.88 0 0 0-.63.25h-.001a.836.836 0 0 0-.253.612c0 .234.083.444.253.612l.001.001a.88.88 0 0 0 .63.25h16.238l-2.687 2.634a.849.849 0 0 0-.265.587.83.83 0 0 0 .27.63l.005.004a.91.91 0 0 0 .62.268.875.875 0 0 0 .63-.272l3.943-3.864c.124-.121.221-.256.28-.406.056-.14.082-.289.082-.444 0-.155-.026-.304-.082-.444Zm-19.836 9.04c.06-.15.157-.284.28-.405l3.943-3.865a.896.896 0 0 1 .597-.257.873.873 0 0 1 .654.254l.005.004c.17.168.278.374.278.612a.852.852 0 0 1-.278.611L8.88 20.151h16.236a.88.88 0 0 1 .63.25l.002.001c.17.168.253.378.253.612a.836.836 0 0 1-.253.611l-.001.002a.88.88 0 0 1-.63.25H8.878l2.687 2.633a.857.857 0 0 1 .265.588.83.83 0 0 1-.27.63l-.005.004a.909.909 0 0 1-.62.268.875.875 0 0 1-.63-.272l-3.944-3.865a1.18 1.18 0 0 1-.28-.405A1.195 1.195 0 0 1 6 21.014c0-.155.026-.304.081-.444Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-location {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M16.763 15.1a1.9 1.9 0 0 0 .528-1.335 1.79 1.79 0 0 0-.526-1.32c-.366-.38-.77-.553-1.276-.553-.504 0-.903.173-1.264.554-.361.38-.527.801-.527 1.333 0 .528.165.946.527 1.321.365.379.768.552 1.275.552.505 0 .904-.174 1.263-.553Zm-3.382.89c-.588-.61-.881-1.348-.881-2.211 0-.864.291-1.603.875-2.217.585-.615 1.29-.923 2.114-.923.824 0 1.53.305 2.12.915.586.61.88 1.348.88 2.211 0 .864-.292 1.603-.875 2.217-.584.615-1.288.923-2.114.923-.825 0-1.531-.305-2.12-.916ZM7 14.142c0 1.069.228 2.164.685 3.286a18.54 18.54 0 0 0 1.757 3.3 30.1 30.1 0 0 0 2.387 3.123 42.137 42.137 0 0 0 2.59 2.738 1.505 1.505 0 0 0 .518.314 1.676 1.676 0 0 0 1.324-.09c.123-.066.238-.149.342-.248a44.775 44.775 0 0 0 2.592-2.725 27.37 27.37 0 0 0 2.631-3.53 19.526 19.526 0 0 0 1.489-2.894c.457-1.114.685-2.206.685-3.274 0-2.634-.814-4.81-2.444-6.526l-.03-.033C19.874 5.861 17.865 5 15.5 5c-2.366 0-4.375.861-6.025 2.584l-.03.032C7.814 9.333 7 11.51 7 14.143Zm15.22 2.783c.388-1.013.582-1.94.582-2.783 0-2.293-.693-4.185-2.08-5.677a12.044 12.044 0 0 0-.02-.02C19.32 6.967 17.585 6.228 15.5 6.23c-2.084 0-3.818.74-5.203 2.217l-.019.02c-1.387 1.491-2.08 3.384-2.08 5.677 0 .846.195 1.778.587 2.796.324.843.782 1.744 1.375 2.705a26.277 26.277 0 0 0 2.524 3.393 34.5 34.5 0 0 0 2.532 2.6l.022.02.07.065.192.176.185-.17.005-.004.096-.088.006-.006a34.465 34.465 0 0 0 2.544-2.614 26.189 26.189 0 0 0 2.504-3.372c.596-.965 1.056-1.872 1.38-2.718Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-tracking {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M13.648 15.307h-.002a.368.368 0 0 1-.105-.264.37.37 0 0 1 .105-.262l.001-.001a.359.359 0 0 1 .26-.107h1.417a.36.36 0 0 1 .26.107c.07.073.106.165.106.264 0 .098-.035.19-.106.262v.001a.359.359 0 0 1-.26.107h-1.417a.359.359 0 0 1-.26-.107Z'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M12.698 16.448a.738.738 0 0 0 .541.222h4.523a.757.757 0 0 0 .76-.77v-4.581a.756.756 0 0 0-.76-.771H13.24a.756.756 0 0 0-.76.77V15.9c0 .213.072.4.219.549Zm1.551-5.159h-1.01s-.007.004-.016.013c-.01.01-.012.016-.012.016v4.58s.003.008.012.018a.07.07 0 0 0 .016.012h4.523s.007-.003.016-.013a.074.074 0 0 0 .013-.016v-4.58s-.003-.008-.013-.017a.072.072 0 0 0-.016-.013h-1.01v2.006a.368.368 0 0 1-.175.32.362.362 0 0 1-.366.015l-.71-.36-.794.402s-.203.07-.358-.042c-.113-.08-.1-.287-.1-.287V11.29Zm.978 1.287a.615.615 0 0 1 .274-.066c.095 0 .187.023.274.066h.001l.244.124v-1.41h-1.039v1.41l.246-.124Z' clip-rule='evenodd'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M7.685 17.429C7.228 16.307 7 15.212 7 14.143c0-2.634.815-4.81 2.444-6.527l.03-.032C11.126 5.861 13.135 5 15.5 5c2.366 0 4.375.861 6.025 2.584l.031.033C23.186 9.333 24 11.509 24 14.143c0 1.068-.228 2.16-.685 3.274a19.526 19.526 0 0 1-1.747 3.298 27.37 27.37 0 0 1-2.373 3.126 44.775 44.775 0 0 1-2.592 2.725 1.538 1.538 0 0 1-.52.326 1.676 1.676 0 0 1-1.146.012 1.386 1.386 0 0 1-.2-.088 1.549 1.549 0 0 1-.318-.226 42.137 42.137 0 0 1-2.59-2.738 30.1 30.1 0 0 1-2.387-3.124 18.54 18.54 0 0 1-1.757-3.3Zm15.117-3.286c0 .842-.194 1.77-.582 2.783-.324.846-.784 1.753-1.38 2.718-.078.127-.159.255-.24.381a26.189 26.189 0 0 1-2.264 2.99 34.465 34.465 0 0 1-2.544 2.615l-.006.006-.096.088-.005.005-.185.17a36.655 36.655 0 0 1-.192-.176l-.07-.065-.022-.02a34.5 34.5 0 0 1-2.533-2.6 26.277 26.277 0 0 1-2.523-3.394c-.593-.96-1.051-1.862-1.375-2.705-.392-1.018-.587-1.95-.587-2.796 0-2.293.693-4.186 2.08-5.677l.02-.02C11.681 6.968 13.415 6.23 15.5 6.23s3.819.738 5.203 2.217l.018.02c1.388 1.492 2.081 3.385 2.081 5.677Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-user:not(.active){background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M16 15.78c-1.178 0-2.187-.431-3.027-1.291-.84-.86-1.26-1.894-1.259-3.1 0-1.207.42-2.241 1.259-3.101C13.812 7.429 14.82 7 16 7s2.188.43 3.027 1.288c.84.86 1.259 1.894 1.259 3.102 0 1.206-.42 2.24-1.259 3.099s-1.848 1.29-3.027 1.29Zm-10 9.7v-2.995c0-.604.171-1.168.514-1.694A3.486 3.486 0 0 1 7.9 19.566a19.95 19.95 0 0 1 4.047-1.49A16.937 16.937 0 0 1 16 17.58c1.352 0 2.703.166 4.053.497 1.35.332 2.698.828 4.046 1.49.58.29 1.042.7 1.385 1.226.344.526.516 1.09.516 1.694v2.995c0 .43-.142.79-.427 1.083-.286.29-.638.436-1.057.436H7.484c-.419 0-.77-.146-1.055-.438A1.49 1.49 0 0 1 6 25.483Zm1.429.057H24.57v-3.052c0-.323-.102-.628-.305-.914a2.491 2.491 0 0 0-.849-.723 17.815 17.815 0 0 0-3.637-1.34 15.562 15.562 0 0 0-7.56 0c-1.25.31-2.462.757-3.637 1.34a2.474 2.474 0 0 0-.849.723 1.55 1.55 0 0 0-.305.916v3.05ZM16 14.316c.786 0 1.459-.287 2.019-.86.56-.574.84-1.263.838-2.066 0-.805-.28-1.494-.838-2.068-.56-.573-1.232-.86-2.019-.859-.786 0-1.458.286-2.017.86a2.858 2.858 0 0 0-.84 2.067c0 .804.28 1.493.84 2.066.56.572 1.232.859 2.017.86Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-user.active,
body .rdc-icon-svg.rdc-icon-user-active {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M16 15.78c-1.178 0-2.187-.431-3.027-1.291-.84-.86-1.26-1.894-1.259-3.1 0-1.207.42-2.241 1.259-3.101C13.812 7.429 14.82 7 16 7s2.188.43 3.027 1.288c.84.86 1.259 1.894 1.259 3.102 0 1.206-.42 2.24-1.259 3.099s-1.848 1.29-3.027 1.29Zm-10 9.7v-2.995c0-.604.171-1.168.514-1.694A3.486 3.486 0 0 1 7.9 19.566a19.95 19.95 0 0 1 4.047-1.49A16.937 16.937 0 0 1 16 17.58c1.352 0 2.703.166 4.053.497 1.35.332 2.698.828 4.046 1.49.58.29 1.042.7 1.385 1.226.344.526.516 1.09.516 1.694v2.995c0 .43-.142.79-.427 1.083-.286.29-.638.436-1.057.436H7.484c-.419 0-.77-.146-1.055-.438A1.49 1.49 0 0 1 6 25.483Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-logout {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M8.063 26c-.588 0-1.078-.192-1.472-.578-.394-.385-.591-.866-.591-1.44V8.018c0-.575.197-1.055.591-1.44C6.985 6.193 7.475 6 8.063 6h7.541c.182 0 .334.06.456.179.122.12.183.268.183.446s-.061.326-.183.446a.626.626 0 0 1-.456.179H8.063a.761.761 0 0 0-.54.24c-.164.16-.246.337-.246.529V23.98c0 .192.082.368.246.529a.76.76 0 0 0 .54.24h7.541c.182 0 .334.06.456.179.122.12.183.269.183.446s-.061.326-.183.446a.626.626 0 0 1-.456.179H8.063Zm15.896-9.375H13.27a.624.624 0 0 1-.454-.179.6.6 0 0 1-.184-.446.6.6 0 0 1 .184-.446.624.624 0 0 1 .454-.179h10.69l-2.519-2.464a.618.618 0 0 1-.192-.423.588.588 0 0 1 .192-.454.64.64 0 0 1 .452-.21.633.633 0 0 1 .46.202l3.338 3.268a.956.956 0 0 1 0 1.412l-3.338 3.268a.63.63 0 0 1-.912-.008.607.607 0 0 1-.2-.446.617.617 0 0 1 .208-.438l2.51-2.457Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrowup {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M15.992 11c-.19 0-.366.032-.525.097a1.355 1.355 0 0 0-.47.335L7.264 19.42a.933.933 0 0 0-.264.626.865.865 0 0 0 .264.663c.188.194.396.291.624.291.228 0 .436-.097.623-.291l7.48-7.73 7.479 7.73c.164.17.366.26.606.273.24.012.453-.08.641-.273.188-.194.282-.41.282-.645 0-.235-.094-.45-.282-.644l-7.731-7.989a1.368 1.368 0 0 0-.47-.334 1.393 1.393 0 0 0-.525-.097Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrowdown {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M15.992 21c-.19 0-.366-.032-.525-.096a1.366 1.366 0 0 1-.47-.335L7.264 12.58A.933.933 0 0 1 7 11.954a.865.865 0 0 1 .264-.663c.188-.194.396-.291.624-.291.228 0 .436.097.623.291l7.48 7.73 7.479-7.73a.875.875 0 0 1 .606-.273c.24-.012.453.08.641.273.188.194.282.41.282.645 0 .235-.094.45-.282.644l-7.731 7.989c-.153.159-.31.27-.47.335-.16.064-.335.096-.525.096Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrowleft {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M11 15.992c0-.19.032-.366.097-.525.064-.161.176-.318.335-.47l7.988-7.732a.933.933 0 0 1 .626-.264.865.865 0 0 1 .663.264c.194.188.291.396.291.624 0 .228-.097.436-.291.623l-7.73 7.48 7.73 7.479c.17.164.26.366.273.606.012.24-.08.453-.273.641-.194.188-.41.282-.645.282-.235 0-.45-.094-.644-.282l-7.989-7.731a1.368 1.368 0 0 1-.334-.47 1.393 1.393 0 0 1-.097-.525Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrowright {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M21 15.992c0-.19-.032-.366-.096-.525a1.366 1.366 0 0 0-.335-.47L12.58 7.264A.933.933 0 0 0 11.954 7a.865.865 0 0 0-.663.264c-.194.188-.291.396-.291.624 0 .228.097.436.291.623l7.73 7.48-7.73 7.479a.875.875 0 0 0-.273.606c-.012.24.08.453.273.641.194.188.41.282.645.282.235 0 .45-.094.644-.282l7.989-7.731c.159-.153.27-.31.335-.47.064-.16.096-.335.096-.525Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrow-full-up {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M15.992 11c-.19 0-.366.032-.525.097a1.355 1.355 0 0 0-.47.335L7.264 19.42a.933.933 0 0 0-.264.626.865.865 0 0 0 .264.663c.188.194.396.291.624.291.228 0 .436-.097.623-.291l7.48-7.73 7.479 7.73c.164.17.366.26.606.273.24.012.453-.08.641-.273.188-.194.282-.41.282-.645 0-.235-.094-.45-.282-.644l-7.731-7.989a1.368 1.368 0 0 0-.47-.334 1.393 1.393 0 0 0-.525-.097Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrow-full-down {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M15.992 21c-.19 0-.366-.032-.525-.096a1.366 1.366 0 0 1-.47-.335L7.264 12.58A.933.933 0 0 1 7 11.954a.865.865 0 0 1 .264-.663c.188-.194.396-.291.624-.291.228 0 .436.097.623.291l7.48 7.73 7.479-7.73a.875.875 0 0 1 .606-.273c.24-.012.453.08.641.273.188.194.282.41.282.645 0 .235-.094.45-.282.644l-7.731 7.989c-.153.159-.31.27-.47.335-.16.064-.335.096-.525.096Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrow-full-left {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M11 15.992c0-.19.032-.366.097-.525.064-.161.176-.318.335-.47l7.988-7.732a.933.933 0 0 1 .626-.264.865.865 0 0 1 .663.264c.194.188.291.396.291.624 0 .228-.097.436-.291.623l-7.73 7.48 7.73 7.479c.17.164.26.366.273.606.012.24-.08.453-.273.641-.194.188-.41.282-.645.282-.235 0-.45-.094-.644-.282l-7.989-7.731a1.368 1.368 0 0 1-.334-.47 1.393 1.393 0 0 1-.097-.525Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-arrow-full-right {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M21 15.992c0-.19-.032-.366-.096-.525a1.366 1.366 0 0 0-.335-.47L12.58 7.264A.933.933 0 0 0 11.954 7a.865.865 0 0 0-.663.264c-.194.188-.291.396-.291.624 0 .228.097.436.291.623l7.73 7.48-7.73 7.479a.875.875 0 0 0-.273.606c-.012.24.08.453.273.641.194.188.41.282.645.282.235 0 .45-.094.644-.282l7.989-7.731c.159-.153.27-.31.335-.47.064-.16.096-.335.096-.525Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-scroll-up {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Crect width='32' height='32' fill='%23fff' opacity='.75' rx='2'/%3E%3Cpath fill='%23444' d='M15.585 7.077c.124-.051.26-.077.409-.077.148 0 .284.026.408.077.125.052.247.141.366.268l6.013 6.39a.74.74 0 0 1 .219.516c0 .189-.073.36-.22.516a.621.621 0 0 1-.498.218.673.673 0 0 1-.471-.218l-5.817-6.184-5.818 6.184c-.146.155-.307.233-.485.233-.177 0-.339-.078-.485-.233a.702.702 0 0 1-.205-.53.758.758 0 0 1 .205-.501l6.014-6.39c.118-.128.24-.217.365-.269Zm0 9c.124-.051.26-.077.409-.077.148 0 .284.026.408.077.125.052.247.141.366.268l6.013 6.39a.74.74 0 0 1 .219.516c0 .189-.073.36-.22.516a.621.621 0 0 1-.498.218.673.673 0 0 1-.471-.218l-5.817-6.184-5.818 6.184c-.146.155-.307.233-.485.233-.177 0-.339-.078-.485-.233a.702.702 0 0 1-.205-.53.758.758 0 0 1 .205-.501l6.014-6.39c.118-.128.24-.217.365-.269Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-scroll-down {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Crect width='32' height='32' fill='%23fff' opacity='.75' rx='2'/%3E%3Cpath fill='%23444' d='M15.585 24.923c.124.051.26.077.409.077.148 0 .284-.026.408-.077.125-.052.247-.141.366-.268l6.013-6.39a.737.737 0 0 0 .219-.516.737.737 0 0 0-.22-.516.621.621 0 0 0-.498-.218.673.673 0 0 0-.471.218l-5.817 6.184-5.818-6.184C10.03 17.078 9.87 17 9.691 17c-.177 0-.339.078-.485.233a.702.702 0 0 0-.205.53.756.756 0 0 0 .205.501l6.014 6.39c.118.128.24.217.365.269Zm0-9c.124.051.26.077.409.077.148 0 .284-.026.408-.077.125-.052.247-.141.366-.268l6.013-6.39A.737.737 0 0 0 23 8.748a.737.737 0 0 0-.22-.516.621.621 0 0 0-.498-.218.673.673 0 0 0-.471.218l-5.817 6.184-5.818-6.184C10.03 8.078 9.87 8 9.691 8c-.177 0-.339.078-.485.233a.702.702 0 0 0-.205.53.756.756 0 0 0 .205.501l6.014 6.39c.118.128.24.217.365.269Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-equal {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M8 20a.964.964 0 0 1-.708-.291.96.96 0 0 1-.292-.707.97.97 0 0 1 .292-.709A.96.96 0 0 1 8 18h16c.278 0 .514.097.708.291a.96.96 0 0 1 .292.707.97.97 0 0 1-.292.709A.96.96 0 0 1 24 20H8Zm0-6a.964.964 0 0 1-.708-.291.96.96 0 0 1-.292-.707.97.97 0 0 1 .292-.709A.96.96 0 0 1 8 12h16c.278 0 .514.097.708.291a.96.96 0 0 1 .292.707.97.97 0 0 1-.292.709A.96.96 0 0 1 24 14H8Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-plus {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M17 24a.964.964 0 0 1-.291.708.96.96 0 0 1-.707.292.97.97 0 0 1-.709-.292A.96.96 0 0 1 15 24v-7H8a.964.964 0 0 1-.708-.291.96.96 0 0 1-.292-.707.97.97 0 0 1 .292-.709A.96.96 0 0 1 8 15h7V8c0-.278.097-.514.291-.708A.96.96 0 0 1 15.998 7a.97.97 0 0 1 .709.292A.96.96 0 0 1 17 8v7h7c.278 0 .514.097.708.291a.96.96 0 0 1 .292.707.97.97 0 0 1-.292.709A.96.96 0 0 1 24 17h-7v7Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-minus {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M7.292 16.709c.194.194.43.291.708.291h16a.96.96 0 0 0 .708-.293.97.97 0 0 0 .292-.709.96.96 0 0 0-.292-.707A.964.964 0 0 0 24 15H8a.96.96 0 0 0-.708.293.97.97 0 0 0-.292.709.96.96 0 0 0 .292.707Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-chat {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M10.892 19.703h5.838a.468.468 0 0 0 .346-.14.471.471 0 0 0 .14-.347.468.468 0 0 0-.14-.346.47.47 0 0 0-.346-.139h-5.838a.469.469 0 0 0-.346.14.471.471 0 0 0-.14.347c0 .138.046.253.14.346a.472.472 0 0 0 .346.14Zm0-2.916h9.73a.469.469 0 0 0 .346-.14.471.471 0 0 0 .14-.347.468.468 0 0 0-.14-.347.47.47 0 0 0-.346-.138h-9.73a.468.468 0 0 0-.346.14.47.47 0 0 0-.14.346.47.47 0 0 0 .14.346.473.473 0 0 0 .346.139m0-2.917h8.757a.469.469 0 0 0 .346-.14.471.471 0 0 0 .14-.347.472.472 0 0 0-.487-.484h-8.756a.469.469 0 0 0-.346.14.471.471 0 0 0-.14.347.472.472 0 0 0 .486.484Zm-.898 9.237-1.658 1.656c-.246.246-.53.301-.852.166-.323-.134-.484-.373-.484-.72V11.065c0-.447.15-.82.45-1.12.3-.3.674-.45 1.121-.45h9.095a.47.47 0 0 1 .36.159.457.457 0 0 1 .126.364.49.49 0 0 1-.158.32.464.464 0 0 1-.328.13H8.57a.574.574 0 0 0-.411.186.573.573 0 0 0-.187.411v12.668l1.605-1.6h13.364a.57.57 0 0 0 .412-.186.573.573 0 0 0 .187-.411v-6.264a.47.47 0 0 1 .14-.346.472.472 0 0 1 .347-.14.47.47 0 0 1 .346.14c.093.093.14.209.14.346v6.264c0 .447-.15.82-.45 1.12-.3.3-.674.45-1.122.45H9.994ZM22.57 12.86a2.35 2.35 0 0 1-1.724-.709 2.336 2.336 0 0 1-.71-1.72c0-.675.236-1.248.708-1.721A2.34 2.34 0 0 1 22.566 8c.674 0 1.249.236 1.723.708S25 9.754 25 10.428c0 .675-.236 1.248-.708 1.721a2.341 2.341 0 0 1-1.723.712ZM7.973 11.065V23.48 10.467v.598Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-helpdesk {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M9.716 23.405a1.64 1.64 0 0 1-1.224-.502C8.164 22.567 8 22.149 8 21.649v-6.946c0-1.203.222-2.332.665-3.387a8.814 8.814 0 0 1 1.823-2.768 8.568 8.568 0 0 1 2.706-1.867A8.106 8.106 0 0 1 16.5 6c1.174 0 2.277.227 3.308.681a8.587 8.587 0 0 1 2.704 1.867 8.794 8.794 0 0 1 1.823 2.77A8.644 8.644 0 0 1 25 14.702v9.54c0 .5-.164.918-.49 1.253a1.643 1.643 0 0 1-1.226.504h-6.253a.529.529 0 0 1-.531-.544.53.53 0 0 1 .152-.388.51.51 0 0 1 .38-.156h6.252c.19 0 .347-.063.47-.188a.661.661 0 0 0 .183-.482v-.837h-1.553c-.474 0-.88-.17-1.214-.513a1.714 1.714 0 0 1-.502-1.243v-3.18c0-.488.167-.902.502-1.245a1.635 1.635 0 0 1 1.214-.513h1.553v-2.008c0-2.103-.726-3.898-2.178-5.385-1.452-1.487-3.205-2.23-5.259-2.23-2.054 0-3.807.743-5.26 2.23-1.451 1.487-2.178 3.282-2.178 5.385v2.008h1.554c.475 0 .88.171 1.214.513.335.343.502.758.502 1.245v3.18c0 .485-.167.9-.502 1.243a1.635 1.635 0 0 1-1.214.514h-.9Zm0-1.087h.9a.63.63 0 0 0 .47-.189.66.66 0 0 0 .183-.48v-3.18a.661.661 0 0 0-.184-.482.628.628 0 0 0-.47-.188H9.063v3.85a.66.66 0 0 0 .184.48.63.63 0 0 0 .47.189Zm12.668 0h1.553v-4.52h-1.553a.628.628 0 0 0-.47.189.661.661 0 0 0-.183.482v3.18a.66.66 0 0 0 .183.48.63.63 0 0 0 .47.189Zm-12.668-4.52h-.653 2.206-1.553Zm12.668 0h-.653 2.206-1.553Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-sendmessage {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M24.376 16.988 8.44 23.914a1 1 0 0 1-.978-.092c-.308-.2-.462-.49-.462-.871V9.05c0-.38.154-.672.462-.874a.996.996 0 0 1 .978-.089l15.936 6.925c.416.19.624.518.624.987s-.208.798-.624.988ZM8.273 22.571 23.363 16 8.273 9.43v5.105L14.444 16l-6.17 1.465v5.106Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-play {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Crect width='32' height='32' fill='%23F5F5F5' opacity='.75' rx='16'/%3E%3Cpath fill='%23000' d='m14.113 21.298 6.821-4.391c.346-.217.52-.518.52-.903 0-.386-.174-.689-.52-.91l-6.821-4.392c-.353-.25-.72-.273-1.099-.066-.38.208-.569.532-.569.971v8.786c0 .44.19.763.57.97.378.208.745.187 1.098-.063'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-pause {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Crect width='32' height='32' fill='%23F5F5F5' opacity='.75' rx='16'/%3E%3Cpath fill='%23000' d='M12.99 22.222a.856.856 0 0 0 .633-.256.86.86 0 0 0 .256-.633V10.667a.871.871 0 0 0-.89-.889.856.856 0 0 0-.633.256.863.863 0 0 0-.254.633v10.666c0 .253.085.464.256.633.17.17.381.255.633.256Zm6.018 0a.856.856 0 0 0 .633-.256.863.863 0 0 0 .254-.633V10.667a.856.856 0 0 0-.256-.633.869.869 0 0 0-.633-.256.856.856 0 0 0-.632.256.86.86 0 0 0-.256.633v10.666c0 .253.085.464.256.633.17.17.382.255.634.256Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-calendar {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M8.817 26c-.518 0-.95-.169-1.296-.507A1.695 1.695 0 0 1 7 24.228V10.22c0-.504.174-.926.52-1.264.347-.338.78-.508 1.297-.508h1.991V6.591a.57.57 0 0 1 .172-.423.593.593 0 0 1 .433-.168c.175 0 .32.056.435.168a.566.566 0 0 1 .172.423v1.856h8.047V6.55c0-.157.054-.287.162-.392a.557.557 0 0 1 .4-.158c.16 0 .295.052.402.157.107.104.16.235.16.392v1.898h1.992c.518 0 .95.17 1.296.508.347.338.521.76.521 1.264v14.01c0 .504-.173.925-.52 1.263-.347.339-.78.508-1.297.508H8.817Zm0-1.097h14.366c.173 0 .331-.07.476-.21a.64.64 0 0 0 .216-.465v-9.62H8.125v9.62a.64.64 0 0 0 .216.464c.145.14.303.211.476.211ZM8.125 13.51h15.75v-3.29a.64.64 0 0 0-.216-.465.672.672 0 0 0-.476-.21H8.817a.671.671 0 0 0-.476.21.64.64 0 0 0-.216.464v3.291Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-checked {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m12.074 21.741 12.261-13.44A.897.897 0 0 1 25.028 8c.28 0 .513.1.697.298.183.199.275.452.275.76 0 .306-.092.56-.275.761L13.183 23.483c-.317.345-.687.517-1.11.517-.422 0-.792-.173-1.108-.52l-4.69-5.083C6.092 18.2 6 17.948 6 17.642s.091-.56.273-.761c.182-.2.413-.3.695-.3.28 0 .512.1.697.3l4.409 4.86Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-clear {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Crect width='20' height='20' x='6' y='6' fill='%23999' rx='1'/%3E%3Cpath fill='%23fff' d='M16.686 16 21 20.314l-.686.686L16 16.686 11.686 21 11 20.314 15.314 16 11 11.686l.686-.686L16 15.314 20.314 11l.686.686L16.686 16Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-download {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M16 20.64c-.154 0-.296-.025-.426-.076a1.118 1.118 0 0 1-.381-.261L11.45 16.56a.695.695 0 0 1 0-1.01c.158-.158.328-.239.51-.241.182-.003.352.074.51.232l2.816 2.816V6.714A.695.695 0 0 1 16 6a.695.695 0 0 1 .714.714v11.643l2.816-2.816a.714.714 0 0 1 .496-.218c.191-.007.366.069.524.227.152.157.23.325.231.504.003.18-.074.349-.231.506l-3.743 3.743c-.124.124-.25.21-.381.261-.13.05-.272.076-.426.076ZM8.307 26c-.657 0-1.206-.22-1.646-.66-.44-.441-.661-.99-.661-1.647v-2.747a.695.695 0 0 1 .714-.714.695.695 0 0 1 .715.714v2.747c0 .219.091.42.274.604.184.183.385.274.604.274h15.386c.219 0 .42-.091.604-.274.183-.184.274-.385.274-.604v-2.747c0-.204.069-.374.205-.51a.695.695 0 0 1 .51-.205.695.695 0 0 1 .714.715v2.747c0 .657-.22 1.206-.66 1.646-.441.44-.99.661-1.647.661H8.307Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-star-empty {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath stroke='%23000' d='m21.594 9.78.11.192.216.047 8.441 1.851a1.447 1.447 0 0 1 1.068.98l.476-.153-.476.153a1.492 1.492 0 0 1-.298 1.435l-5.754 6.52-.144.163.021.217.871 8.698a1.49 1.49 0 0 1-.12.75 1.465 1.465 0 0 1-.47.588 1.431 1.431 0 0 1-1.427.155l-7.904-3.526-.203-.091-.204.09-7.904 3.527a1.424 1.424 0 0 1-1.427-.155 1.464 1.464 0 0 1-.47-.587 1.49 1.49 0 0 1-.12-.75l.87-8.7.023-.216-.145-.164L.87 14.287a1.477 1.477 0 0 1-.3-1.437 1.47 1.47 0 0 1 .407-.635c.187-.172.416-.29.661-.345l8.442-1.85.216-.048.11-.192 4.347-7.553c.128-.223.31-.406.53-.533a1.426 1.426 0 0 1 1.434 0c.218.127.401.31.529.533l4.347 7.553Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-star-half {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='url(%23a)' stroke='%23000' d='m21.594 9.78.11.192.216.047 8.441 1.851a1.447 1.447 0 0 1 1.068.98l.476-.153-.476.153a1.492 1.492 0 0 1-.298 1.435l-5.754 6.52-.144.163.021.217.871 8.698a1.49 1.49 0 0 1-.12.75 1.465 1.465 0 0 1-.47.588 1.431 1.431 0 0 1-1.427.155l-7.904-3.526-.203-.091-.204.09-7.904 3.527a1.424 1.424 0 0 1-1.427-.155 1.464 1.464 0 0 1-.47-.587 1.49 1.49 0 0 1-.12-.75l.87-8.7.023-.216-.145-.164L.87 14.287a1.477 1.477 0 0 1-.3-1.437 1.47 1.47 0 0 1 .407-.635c.187-.172.416-.29.661-.345l8.442-1.85.216-.048.11-.192 4.347-7.553c.128-.223.31-.406.53-.533a1.426 1.426 0 0 1 1.434 0c.218.127.401.31.529.533l4.347 7.553Z'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='16' x2='16.052' y1='16.525' y2='16.525' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23333'/%3E%3Cstop offset='1' stop-color='%23fff' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-star-full {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' d='M14.32 1.977a1.96 1.96 0 0 1 .712-.715 1.926 1.926 0 0 1 1.937 0c.295.171.54.418.711.715l4.347 7.554 8.442 1.851c.332.073.64.233.891.464.252.23.44.524.545.851a1.991 1.991 0 0 1-.399 1.919l-5.754 6.52.87 8.697c.035.343-.02.688-.159 1.003a1.964 1.964 0 0 1-.632.788 1.93 1.93 0 0 1-1.927.209l-7.903-3.527-7.904 3.527a1.924 1.924 0 0 1-1.927-.209 1.964 1.964 0 0 1-.632-.788 1.99 1.99 0 0 1-.16-1.003l.871-8.698-5.754-6.518a1.977 1.977 0 0 1-.4-1.92 1.97 1.97 0 0 1 .545-.851c.252-.231.56-.391.892-.464l8.442-1.851 4.347-7.554Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-marker {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M16.59 31.256a.752.752 0 0 1-1.18 0C15.019 30.715 5 18.605 5 11.366 5 5.074 9.976 0 16 0s11 5.142 11 11.366c0 7.239-10.018 19.416-10.41 19.89Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-marker-success {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%233F9C35' d='M16 0C9.919 0 5 5.008 5 11.2c0 7.079 7.812 16.998 10.27 19.943a.946.946 0 0 0 1.46 0C19.19 28.198 27 18.28 27 11.2 27 5.008 22.081 0 16 0Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-marker-error {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23F14244' d='M16 0C9.919 0 5 5.008 5 11.2c0 7.079 7.812 16.998 10.27 19.943a.946.946 0 0 0 1.46 0C19.19 28.198 27 18.28 27 11.2 27 5.008 22.081 0 16 0Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-clustering {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Ccircle cx='16' cy='16' r='16' fill='%23000'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-microphone {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M16 18c-.662 0-1.218-.23-1.67-.692-.45-.462-.676-1.031-.676-1.708V8.4c0-.677.226-1.246.677-1.708A2.241 2.241 0 0 1 15.999 6c.662 0 1.218.23 1.67.692.45.462.676 1.031.676 1.708v7.2c0 .677-.226 1.246-.677 1.708A2.241 2.241 0 0 1 16 18Zm-.587 8.4v-3.62c-1.693-.152-3.145-.84-4.358-2.064-1.212-1.223-1.895-2.718-2.048-4.486a.53.53 0 0 1 .129-.444.52.52 0 0 1 .414-.186c.166 0 .306.061.418.184a.885.885 0 0 1 .217.439c.153 1.538.787 2.819 1.902 3.842C13.202 21.088 14.507 21.6 16 21.6c1.513 0 2.822-.516 3.927-1.55 1.104-1.032 1.734-2.308 1.888-3.827a.886.886 0 0 1 .217-.44.546.546 0 0 1 .418-.183.53.53 0 0 1 .415.187.53.53 0 0 1 .13.443c-.155 1.728-.833 3.21-2.035 4.445-1.203 1.235-2.661 1.937-4.373 2.105v3.62a.59.59 0 0 1-.168.428A.564.564 0 0 1 16 27a.564.564 0 0 1-.418-.172.591.591 0 0 1-.168-.428ZM16 16.8c.333 0 .611-.115.837-.346a1.17 1.17 0 0 0 .336-.854V8.4c0-.34-.113-.625-.338-.854A1.127 1.127 0 0 0 16 7.2c-.332 0-.61.115-.835.346-.224.23-.336.515-.337.854v7.2c0 .34.112.625.337.856.226.23.504.345.835.344Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-nomicrophone {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m22.537 18.313-.912-.958a4.894 4.894 0 0 0 .329-1.325.854.854 0 0 1 .224-.437.572.572 0 0 1 .43-.18c.17 0 .312.066.424.198a.639.639 0 0 1 .157.457 7.316 7.316 0 0 1-.244 1.225c-.109.36-.244.7-.407 1.02m-4.2-4.209-1.148-1.147V8.198c0-.34-.115-.626-.345-.856a1.17 1.17 0 0 0-.858-.346c-.341 0-.627.115-.857.345a1.17 1.17 0 0 0-.347.857v2.309L13.58 9.305V8.198c0-.678.231-1.248.694-1.71.463-.463 1.034-.694 1.713-.694.68 0 1.25.23 1.714.693.462.463.693 1.033.693 1.711v5.642a.533.533 0 0 1-.017.14 1.792 1.792 0 0 1-.038.124Zm-2.953 12.13v-3.628c-1.737-.148-3.228-.836-4.472-2.064-1.244-1.227-1.945-2.727-2.103-4.498a.55.55 0 0 1 .556-.631c.173 0 .317.06.434.18.118.12.191.268.22.445.158 1.545.808 2.83 1.95 3.852 1.141 1.023 2.48 1.535 4.017 1.535.867 0 1.676-.171 2.427-.513a5.98 5.98 0 0 0 1.948-1.406l.859.857a7.113 7.113 0 0 1-2.062 1.543 6.816 6.816 0 0 1-2.57.7v3.628a.587.587 0 0 1-.602.601.58.58 0 0 1-.429-.173.581.581 0 0 1-.173-.428Zm10.583.574L5.18 6.042A.606.606 0 0 1 5 5.629a.56.56 0 0 1 .18-.437A.592.592 0 0 1 5.607 5c.157 0 .299.064.426.192L26.82 25.957c.112.113.172.25.18.413a.561.561 0 0 1-.18.438.591.591 0 0 1-.426.192.586.586 0 0 1-.425-.192Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-sound {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23F5F5F5' d='M16 0C7.16 0 0 7.16 0 16s7.16 16 16 16 16-7.16 16-16S24.84 0 16 0Z' opacity='.75'/%3E%3Cpath fill='%23000' d='M23.765 16c0-1.708-.457-3.266-1.371-4.676a8.481 8.481 0 0 0-3.678-3.162.812.812 0 0 1-.37-.348.509.509 0 0 1-.021-.46.588.588 0 0 1 .397-.326.816.816 0 0 1 .556.048 9.95 9.95 0 0 1 4.157 3.614C24.478 12.284 25 14.053 25 16c0 1.945-.522 3.715-1.565 5.31a9.952 9.952 0 0 1-4.156 3.614.826.826 0 0 1-.557.048.592.592 0 0 1-.397-.326.509.509 0 0 1 .02-.46.812.812 0 0 1 .371-.348 8.49 8.49 0 0 0 3.678-3.163c.914-1.41 1.37-2.968 1.37-4.675Zm-13.537 2.53H6.997a.959.959 0 0 1-.71-.29.983.983 0 0 1-.287-.72v-2.978c0-.287.096-.527.287-.72a.959.959 0 0 1 .71-.29h3.23l3.315-3.355a.595.595 0 0 1 .703-.14c.267.11.4.307.4.59v10.808c0 .283-.133.48-.4.59a.595.595 0 0 1-.703-.14l-3.314-3.355Zm9.975-2.497c0 .685-.124 1.333-.373 1.943a4.79 4.79 0 0 1-1.042 1.59.433.433 0 0 1-.47.056.395.395 0 0 1-.253-.39v-6.465c0-.185.085-.315.253-.39a.433.433 0 0 1 .47.053c.446.456.793 1 1.042 1.63a5.34 5.34 0 0 1 .373 1.975m-6.793-3.94-2.655 2.686h-3.52v2.5h3.52l2.655 2.686v-7.872Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-nosound {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23F5F5F5' d='M16 0C7.16 0 0 7.16 0 16s7.16 16 16 16 16-7.16 16-16S24.84 0 16 0Z' opacity='.75'/%3E%3Cpath fill='%23000' d='M20.547 23.667a9.444 9.444 0 0 1-.528.316 6.61 6.61 0 0 1-.559.281.59.59 0 0 1-.461 0 .542.542 0 0 1-.336-.316.51.51 0 0 1 .033-.44.67.67 0 0 1 .33-.32c.181-.074.348-.157.502-.249.154-.091.304-.2.45-.324l-4.747-4.356v2.628a.561.561 0 0 1-.377.564.563.563 0 0 1-.662-.138l-3.128-3.182H8.017a.905.905 0 0 1-.673-.273.938.938 0 0 1-.268-.685v-2.826c0-.275.089-.503.268-.685a.905.905 0 0 1 .673-.272h2.428l-5.27-5.361a.603.603 0 0 1-.174-.408.558.558 0 0 1 .174-.431.568.568 0 0 1 .413-.19c.15 0 .288.063.412.19l18.462 18.78c.108.11.167.247.175.41a.557.557 0 0 1-.175.43.568.568 0 0 1-.413.189.568.568 0 0 1-.412-.19l-3.09-3.143Zm2.598-2.378-.815-.83a8.132 8.132 0 0 0 1.505-4.728c0-1.61-.431-3.088-1.293-4.433a7.906 7.906 0 0 0-3.471-3.003.769.769 0 0 1-.35-.329.454.454 0 0 1-.012-.43.536.536 0 0 1 .368-.317.762.762 0 0 1 .524.046 9.408 9.408 0 0 1 3.922 3.426C24.508 12.2 25 13.88 25 15.73a9 9 0 0 1-.49 2.965 9.48 9.48 0 0 1-1.366 2.593m-3.23-3.286-1.457-1.482v-3.833c0-.176.084-.303.25-.382.167-.079.317-.066.451.037.447.43.778.954.993 1.57a5.59 5.59 0 0 1 .323 1.847c0 .403-.047.794-.14 1.171a4.38 4.38 0 0 1-.42 1.072m-4.683-4.764-1.998-2.056.959-.976a.563.563 0 0 1 .662-.137c.251.101.377.289.377.564v2.605Zm-1.165 6.255v-2.42l-2.456-2.499H8.24v2.37h3.321l2.505 2.549Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-payment {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M29 9.192v14.616c0 .625-.214 1.146-.642 1.564-.428.419-.962.628-1.601.628H6.243c-.639 0-1.172-.209-1.6-.627-.429-.419-.643-.94-.643-1.565V9.192c0-.624.214-1.146.643-1.564.428-.419.961-.628 1.6-.628h20.514c.639 0 1.172.21 1.6.628.429.418.643.94.643 1.564ZM5.389 12.168H27.61V9.192c0-.208-.089-.4-.267-.574-.178-.174-.374-.26-.587-.26H6.243c-.213 0-.409.086-.587.26-.178.174-.267.366-.267.574v2.976Zm0 3.235v8.405c0 .208.089.4.267.574.178.174.374.26.587.26h20.514c.213 0 .409-.086.587-.26.178-.174.267-.366.267-.574v-8.405H5.39Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-secure {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m15.122 17.923-2.343-2.425a.658.658 0 0 0-.451-.212c-.174-.01-.332.061-.477.212-.145.15-.218.312-.218.485s.073.335.218.485l2.53 2.627a.998.998 0 0 0 1.482 0l5.302-5.49a.707.707 0 0 0 .204-.471.656.656 0 0 0-.204-.5c-.146-.149-.302-.223-.469-.223-.167 0-.323.074-.469.224l-5.105 5.288ZM16.5 28a2.19 2.19 0 0 1-.377-.034 1.832 1.832 0 0 1-.367-.102c-2.584-1.02-5.95-2.75-7.472-5.189C6.76 20.236 6 17.597 6 14.755V8.933c0-.462.13-.88.387-1.255.258-.374.589-.646.991-.815l8.38-2.719c.256-.096.503-.144.742-.144s.486.048.742.144l8.38 2.719c.402.17.733.441.99.815.259.376.388.794.388 1.255v5.822c0 2.842-.761 5.481-2.284 7.92-1.522 2.439-4.888 4.168-7.472 5.188a1.882 1.882 0 0 1-.367.102 2.222 2.222 0 0 1-.377.034m0-1.28c2.275-.749 5.469-2.244 6.956-4.487 1.488-2.243 2.232-4.735 2.232-7.476v-5.85a.831.831 0 0 0-.53-.783l-8.38-2.718a.7.7 0 0 0-.278-.055.7.7 0 0 0-.278.055l-8.38 2.718a.83.83 0 0 0-.53.783v5.848c0 2.742.744 5.234 2.232 7.477 1.487 2.243 4.681 3.738 6.956 4.486Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-shipping {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M7.428 26.999c-.99 0-1.827-.36-2.515-1.08-.688-.72-1.032-1.596-1.032-2.625h-.784c-.31 0-.57-.11-.78-.33A1.13 1.13 0 0 1 2 22.15V9.289c0-.653.21-1.197.629-1.633.418-.437.94-.656 1.566-.656H19.97c.603 0 1.12.224 1.55.673.429.448.643.986.643 1.615v2.834h2.038c.347 0 .677.081.987.244.312.162.568.386.769.673l3.823 5.37c.073.094.128.199.165.314.036.114.054.238.054.373v3.053c0 .325-.105.597-.315.816-.21.219-.47.329-.781.329h-1.098c0 1.03-.345 1.904-1.037 2.625-.692.72-1.532 1.08-2.521 1.08-.988 0-1.826-.36-2.513-1.08-.688-.72-1.032-1.596-1.032-2.625h-9.717c0 1.035-.346 1.911-1.038 2.63-.692.717-1.533 1.075-2.52 1.075Zm.005-1.416c.611 0 1.13-.222 1.556-.666.426-.445.639-.986.639-1.623 0-.638-.213-1.179-.639-1.623a2.075 2.075 0 0 0-1.556-.666 2.07 2.07 0 0 0-1.555.666c-.426.444-.639.985-.639 1.623 0 .637.213 1.178.639 1.622.425.444.944.667 1.555.667Zm-4.075-3.706h.878c.193-.626.587-1.163 1.181-1.613a3.246 3.246 0 0 1 2.016-.675c.715 0 1.379.22 1.991.661.612.441 1.014.983 1.206 1.627h10.176V9.288a.868.868 0 0 0-.235-.626.795.795 0 0 0-.6-.245H4.195c-.21 0-.4.09-.575.272-.174.182-.262.382-.262.6v12.588Zm20.897 3.705c.61 0 1.13-.222 1.555-.666.425-.444.638-.985.638-1.622 0-.638-.213-1.179-.638-1.623a2.073 2.073 0 0 0-1.555-.666c-.611 0-1.13.222-1.555.666-.426.444-.639.985-.639 1.623 0 .637.213 1.178.639 1.622.425.444.944.666 1.555.666Zm-2.09-6.539h6.4l-3.736-5.15a1.023 1.023 0 0 0-.3-.258.754.754 0 0 0-.379-.096h-1.986v5.504Z'/%3E%3C/svg%3E");}
/* body .rdc-icon-svg.rdc-icon-find-shipping {} */
body .rdc-icon-svg.rdc-icon-click-collect {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M19.702 12.481a1.902 1.902 0 0 1-.548-1.367c0-.53.182-.99.544-1.37a1.765 1.765 0 0 1 1.32-.572c.513 0 .957.191 1.321.567.364.377.548.836.548 1.368 0 .53-.182.99-.543 1.37a1.765 1.765 0 0 1-1.32.572 1.78 1.78 0 0 1-1.322-.568Zm1.91-.747a.887.887 0 0 0 .25-.627.829.829 0 0 0-.248-.62.773.773 0 0 0-.597-.257.757.757 0 0 0-.588.257.846.846 0 0 0-.249.627.83.83 0 0 0 .248.62.77.77 0 0 0 .596.257.755.755 0 0 0 .588-.257Z' clip-rule='evenodd'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M17.477 7.525c-.955 1.003-1.43 2.272-1.43 3.794 0 .627.135 1.266.4 1.916a10.598 10.598 0 0 0 1.01 1.887c.408.612.862 1.204 1.362 1.775.498.57.989 1.087 1.475 1.552l.003.002a1.052 1.052 0 0 0 .353.213 1.13 1.13 0 0 0 .884-.061c.084-.045.162-.1.232-.167h.001c.485-.466.977-.98 1.474-1.545.5-.567.952-1.16 1.356-1.777l.148-.232c.34-.544.624-1.095.854-1.653a4.996 4.996 0 0 0 .401-1.91c0-1.522-.474-2.791-1.43-3.793l-.018-.02C23.587 6.505 22.407 6 21.024 6c-1.384 0-2.564.504-3.529 1.507l-.018.018Zm6.36.712.01.01c.749.803 1.127 1.822 1.127 3.072 0 .447-.103.946-.317 1.501a9.072 9.072 0 0 1-.765 1.5 14.56 14.56 0 0 1-1.397 1.873c-.427.488-.902.974-1.424 1.456l-.004.004-.043.04-.03-.028-.013-.012c-.52-.48-.992-.963-1.418-1.449a14.605 14.605 0 0 1-1.408-1.885 9.085 9.085 0 0 1-.762-1.492c-.215-.557-.32-1.06-.32-1.508 0-1.25.378-2.27 1.128-3.071l.01-.01c.748-.796 1.681-1.193 2.813-1.193 1.132 0 2.065.397 2.812 1.192Z' clip-rule='evenodd'/%3E%3Cpath fill='%23000' d='M15.14 7.818c.294 0 .567.062.818.187a5.752 5.752 0 0 0-.487 1.083.621.621 0 0 0-.328-.088.614.614 0 0 0-.425.16l-6.264 4.795a.9.9 0 0 0-.213.26.703.703 0 0 0-.078.331v10.272h4.295v-6c0-.27.09-.497.271-.68a.9.9 0 0 1 .669-.275h3.49a.9.9 0 0 1 .669.276.93.93 0 0 1 .27.68v6h4.295v-5.612c.385-.361.773-.75 1.164-1.166v6.777c0 .317-.116.593-.348.829a1.11 1.11 0 0 1-.816.353h-4.519a.932.932 0 0 1-.939-.955v-6h-3.043v6a.932.932 0 0 1-.938.955h-4.52a1.11 1.11 0 0 1-.815-.353A1.146 1.146 0 0 1 7 24.818V14.546a1.916 1.916 0 0 1 .751-1.528L14.016 8.2a1.78 1.78 0 0 1 1.123-.382Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-exchange {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M8.842 26a.706.706 0 0 1-.532-.223.779.779 0 0 1-.214-.558c0-.222.071-.408.214-.557a.706.706 0 0 1 .532-.224H18.92c1.547 0 2.865-.555 3.954-1.666 1.09-1.112 1.635-2.469 1.635-4.07 0-1.602-.544-2.953-1.634-4.055-1.09-1.101-2.408-1.652-3.955-1.652H7.366l3.898 4.08c.16.166.239.35.239.55a.78.78 0 0 1-.24.554.681.681 0 0 1-.542.234.741.741 0 0 1-.514-.234l-4.855-5.082a1.227 1.227 0 0 1-.273-.417A1.324 1.324 0 0 1 5 12.214c0-.168.026-.324.08-.465a1.21 1.21 0 0 1 .272-.417L10.21 6.25c.16-.167.335-.25.528-.25s.37.083.528.25a.74.74 0 0 1 .224.567.812.812 0 0 1-.224.539l-3.899 4.077H18.92c1.953 0 3.621.705 5.006 2.115C25.309 14.958 26 16.676 26 18.702s-.691 3.75-2.074 5.17C22.54 25.29 20.871 26 18.918 26H8.842Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-copy {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M7.794 19.333a1.73 1.73 0 0 1-1.27-.524A1.73 1.73 0 0 1 6 17.539V7.794c0-.496.175-.92.524-1.27A1.73 1.73 0 0 1 7.794 6h9.745c.496 0 .92.175 1.27.524.35.35.524.773.524 1.27v1.667a.54.54 0 0 1-.556.556.54.54 0 0 1-.555-.556V7.794a.662.662 0 0 0-.192-.49.665.665 0 0 0-.491-.193H7.794a.662.662 0 0 0-.49.192.665.665 0 0 0-.193.491v9.745c0 .2.064.363.192.491a.665.665 0 0 0 .491.192h1.667c.159 0 .29.053.397.16a.54.54 0 0 1 .159.396.54.54 0 0 1-.556.555H7.794ZM14.461 26c-.496 0-.92-.175-1.27-.524a1.73 1.73 0 0 1-.524-1.27V14.46c0-.496.175-.92.524-1.27a1.73 1.73 0 0 1 1.27-.524h9.745c.496 0 .92.175 1.27.524.35.35.524.773.524 1.27v9.745c0 .496-.175.92-.524 1.27a1.73 1.73 0 0 1-1.27.524H14.46Zm0-1.111h9.745a.662.662 0 0 0 .49-.192.665.665 0 0 0 .193-.491V14.46c0-.2-.064-.363-.192-.491a.665.665 0 0 0-.491-.192H14.46c-.2 0-.363.064-.491.192a.665.665 0 0 0-.192.491v9.745c0 .199.064.363.192.49a.665.665 0 0 0 .491.193Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-points{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M30 30V2h-6.809v1.566h5.245v24.868H15.657V26.88h11.22V11.866h-1.564v2.224h-1.32V8.007h-6.818v1.567h5.25v12.853H9.57v-4.453h1.49v2.965h9.878v-3.78h-1.564v2.214h-6.75v-6.748h6.75v2.238h1.564V11.06H11.06v5.347H9.57V9.574h5.296V8.007h-6.86v15.984h15.986v-8.336h1.32v9.656H6.687v-2.113H5.12v3.681h8.973v1.555H3.563V3.566h10.53v1.557H5.12v15.068h1.566V6.69h18.626v2.164h1.564v-3.73h-11.22V3.566h4.527V2H2v28h28Z'/%3E%3Cpath fill='%23000' d='M14.536 17.462h2.926v-2.924h-2.926v2.924Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-gift{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M8.298 24.297V14.64h-.202c-.31 0-.57-.105-.78-.316A1.049 1.049 0 0 1 7 13.547V11.07c0-.31.105-.57.316-.78.21-.21.471-.315.78-.315h4.332a1.454 1.454 0 0 1-.435-.659 2.63 2.63 0 0 1-.122-.801c0-.7.245-1.293.735-1.782A2.426 2.426 0 0 1 14.39 6c.405 0 .776.095 1.115.285.338.19.63.437.875.742.244-.308.536-.557.874-.744.338-.189.71-.283 1.114-.283.7 0 1.294.245 1.784.734s.734 1.083.734 1.783c0 .274-.041.538-.124.793a1.553 1.553 0 0 1-.433.666h4.576c.31 0 .57.105.78.316.21.21.316.47.316.78v2.474c0 .309-.105.57-.316.78-.21.21-.471.316-.78.316H24.7v9.655c0 .468-.167.869-.5 1.202a1.643 1.643 0 0 1-1.205.501H10.004a1.64 1.64 0 0 1-1.203-.501 1.638 1.638 0 0 1-.503-1.202Zm10.07-17.242c-.415 0-.761.14-1.041.42-.28.28-.42.627-.42 1.04 0 .415.14.762.42 1.042.28.28.626.42 1.04.42.415 0 .762-.14 1.042-.42.28-.28.42-.627.42-1.041 0-.414-.14-.76-.42-1.04a1.411 1.411 0 0 0-1.042-.421Zm-5.441 1.46c0 .415.14.762.42 1.042.28.28.628.42 1.042.42.414 0 .76-.14 1.042-.42.28-.28.42-.627.42-1.041 0-.414-.14-.76-.42-1.04a1.415 1.415 0 0 0-1.042-.421c-.414 0-.761.14-1.042.42-.28.28-.42.627-.42 1.04Zm-4.871 2.516v2.555h7.916V11.03H8.056Zm7.916 13.914V14.64H9.354v9.657c0 .189.061.344.184.466a.634.634 0 0 0 .466.182h5.968Zm1.056 0h5.968a.63.63 0 0 0 .466-.182.637.637 0 0 0 .183-.466V14.64h-6.617v10.305Zm7.916-11.36v-2.553h-7.916v2.554h7.916Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-home{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M7.5 26.44h5.538v-7.92c0-.357.117-.656.35-.897.232-.242.519-.363.862-.363h4.5c.343 0 .63.12.863.363.233.241.349.54.349.897v7.92H25.5V12.88a.945.945 0 0 0-.1-.436 1.182 1.182 0 0 0-.275-.343l-8.078-6.33a.782.782 0 0 0-.547-.211.782.782 0 0 0-.547.21L7.875 12.1a1.17 1.17 0 0 0-.274.344.945.945 0 0 0-.101.437V26.44Zm-1.5 0V12.88c0-.399.086-.777.258-1.133a2.4 2.4 0 0 1 .711-.883l8.078-6.36A2.262 2.262 0 0 1 16.495 4a2.3 2.3 0 0 1 1.458.504l8.078 6.36a2.4 2.4 0 0 1 .711.883c.172.357.258.735.258 1.134V26.44c0 .418-.15.783-.448 1.094-.3.31-.651.466-1.052.466h-5.828c-.343 0-.63-.12-.862-.362a1.246 1.246 0 0 1-.348-.899v-7.92h-3.924v7.92c0 .358-.116.658-.348.9-.232.24-.52.361-.862.361H7.5c-.402 0-.753-.155-1.051-.466A1.53 1.53 0 0 1 6 26.44Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-view1:not(.active) {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23666' fill-rule='evenodd' d='M5 4a1 1 0 0 0-1 1v22a1 1 0 0 0 1 1h22a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H5Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-view1.active,
body .rdc-icon-svg.rdc-icon-view1-active {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Crect width='24' height='24' x='4' y='4' fill='%23000' rx='1'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-view2:not(.active) {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23666' fill-rule='evenodd' d='M4 5a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5Zm1 23a1 1 0 0 1-1-1v-9a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1H5Zm13 0a1 1 0 0 1-1-1v-9a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1h-9Zm9-24a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1h-9a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h9Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-view2.active,
body .rdc-icon-svg.rdc-icon-view2-active {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M4 5a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5Zm1 12a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h9a1 1 0 0 0 1-1v-9a1 1 0 0 0-1-1H5Zm13 0a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h9a1 1 0 0 0 1-1v-9a1 1 0 0 0-1-1h-9Zm9-2a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-9a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h9Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-size-guide{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m26.476 21.695-9.545-7.024 2.386-1.756a.55.55 0 0 0 .225-.44 3.44 3.44 0 0 0-1.038-2.457A3.578 3.578 0 0 0 16 9c-.94 0-1.84.366-2.505 1.018a3.442 3.442 0 0 0-1.038 2.458c0 .145.059.285.164.388a.565.565 0 0 0 .791 0 .544.544 0 0 0 .164-.388 2.354 2.354 0 0 1 .668-1.625 2.455 2.455 0 0 1 3.315-.18c.473.389.776.94.848 1.541l-2.733 2.012-.02.015-10.13 7.456c-.22.161-.382.386-.463.642a1.25 1.25 0 0 0 .007.786c.086.255.252.477.473.634.222.157.489.242.763.243h19.393c.273 0 .54-.085.762-.242.223-.157.389-.38.475-.634.087-.255.09-.53.008-.787a1.282 1.282 0 0 0-.463-.642h-.002Zm-.606 1.082a.17.17 0 0 1-.065.093.174.174 0 0 1-.11.032H6.304a.19.19 0 0 1-.11-.035.183.183 0 0 1-.067-.202.183.183 0 0 1 .066-.092L16 15.357l9.806 7.216a.17.17 0 0 1 .065.204Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-timer{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m16.556 16.43 3.097 3.098c.104.1.156.226.156.376s-.052.28-.156.39a.476.476 0 0 1-.395.172.584.584 0 0 1-.397-.174l-3.148-3.146a.9.9 0 0 1-.206-.306.894.894 0 0 1-.063-.329v-4.485c0-.158.054-.29.16-.396a.537.537 0 0 1 .396-.16c.157 0 .289.053.396.16a.54.54 0 0 1 .158.396l.002 4.404ZM16.003 26a9.753 9.753 0 0 1-3.9-.787 10.114 10.114 0 0 1-3.176-2.137 10.097 10.097 0 0 1-2.14-3.174A9.73 9.73 0 0 1 6 16.003c0-1.382.262-2.682.787-3.9a10.114 10.114 0 0 1 2.137-3.176c.9-.901 1.958-1.614 3.174-2.14A9.73 9.73 0 0 1 15.997 6c1.382 0 2.682.262 3.9.787a10.114 10.114 0 0 1 3.176 2.137c.901.9 1.614 1.958 2.14 3.174A9.729 9.729 0 0 1 26 15.997a9.753 9.753 0 0 1-.787 3.9 10.114 10.114 0 0 1-2.137 3.176c-.9.901-1.957 1.614-3.174 2.14a9.729 9.729 0 0 1-3.899.787Zm8.886-10c0-2.482-.861-4.583-2.583-6.306C20.583 7.972 18.48 7.111 16 7.111c-2.482 0-4.583.861-6.306 2.583C7.972 11.417 7.111 13.518 7.111 16s.861 4.583 2.583 6.306c1.723 1.722 3.824 2.583 6.306 2.583s4.583-.861 6.306-2.583c1.722-1.723 2.583-3.825 2.583-6.306Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-address{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='m19.106 26.035-6.856-2.442-4.878 1.926a.93.93 0 0 1-.5.067 1.141 1.141 0 0 1-.443-.168.903.903 0 0 1-.315-.35A1.088 1.088 0 0 1 6 24.563V9.03c0-.24.054-.452.162-.636a.864.864 0 0 1 .473-.387l4.946-1.716c.104-.043.21-.075.322-.096a1.854 1.854 0 0 1 1.016.096l6.831 2.442 4.878-1.926a.931.931 0 0 1 .5-.067c.16.025.308.082.443.168.134.087.24.204.315.35.076.147.114.315.114.505v15.643a1.035 1.035 0 0 1-.731 1.012l-4.875 1.642a1.35 1.35 0 0 1-.32.083c-.104.013-.213.02-.325.02-.113 0-.221-.01-.325-.032a1.95 1.95 0 0 1-.318-.096Zm.019-1.318V9.788l-6.25-2.228v14.93l6.25 2.227Zm1.25 0 4.375-1.472V8.125l-4.375 1.663v14.93ZM7.25 24.202l4.375-1.713V7.56L7.25 9.081v15.12Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-filter{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M14.705 23a.639.639 0 0 1-.491-.216.766.766 0 0 1-.197-.535c0-.212.066-.39.197-.534a.641.641 0 0 1 .49-.215h2.565c.195 0 .359.072.49.216a.77.77 0 0 1 .198.535.76.76 0 0 1-.198.534.637.637 0 0 1-.49.215h-2.564Zm-5.156-5.75a.639.639 0 0 1-.491-.216.766.766 0 0 1-.197-.535.76.76 0 0 1 .197-.534.641.641 0 0 1 .49-.215h12.877c.196 0 .359.072.49.216a.763.763 0 0 1 .198.536.757.757 0 0 1-.198.534.637.637 0 0 1-.49.214H9.548ZM5.688 11.5a.635.635 0 0 1-.49-.216.771.771 0 0 1-.198-.536.76.76 0 0 1 .198-.534.64.64 0 0 1 .49-.214h20.625c.195 0 .358.072.489.216a.763.763 0 0 1 .198.536.76.76 0 0 1-.198.534.637.637 0 0 1-.49.214H5.688Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-info-size {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M16 21c.158 0 .29-.053.397-.16a.537.537 0 0 0 .159-.396v-5a.535.535 0 0 0-.16-.395.537.537 0 0 0-.396-.16.537.537 0 0 0-.396.16.54.54 0 0 0-.158.395v5c0 .158.053.29.16.396.106.107.238.16.396.16M16 13.308a.659.659 0 0 0 .487-.197.661.661 0 0 0 .196-.487.662.662 0 0 0-.196-.487.659.659 0 0 0-.487-.197.659.659 0 0 0-.487.197.662.662 0 0 0-.196.487.66.66 0 0 0 .196.487.66.66 0 0 0 .487.197ZM16.003 26a9.753 9.753 0 0 1-3.9-.787 10.114 10.114 0 0 1-3.176-2.137 10.097 10.097 0 0 1-2.14-3.174A9.73 9.73 0 0 1 6 16.003c0-1.382.262-2.682.787-3.9a10.114 10.114 0 0 1 2.137-3.176c.9-.901 1.958-1.614 3.174-2.14A9.73 9.73 0 0 1 15.997 6c1.382 0 2.682.262 3.9.787a10.114 10.114 0 0 1 3.176 2.137c.901.9 1.614 1.958 2.14 3.174A9.729 9.729 0 0 1 26 15.997a9.753 9.753 0 0 1-.787 3.9 10.114 10.114 0 0 1-2.137 3.176c-.9.901-1.957 1.614-3.174 2.14a9.729 9.729 0 0 1-3.899.787ZM16 24.889c2.482 0 4.583-.861 6.306-2.583 1.722-1.723 2.583-3.825 2.583-6.306 0-2.482-.861-4.583-2.583-6.306C20.583 7.972 18.48 7.111 16 7.111c-2.482 0-4.583.861-6.306 2.583C7.972 11.417 7.111 13.518 7.111 16s.861 4.583 2.583 6.306c1.723 1.722 3.824 2.583 6.306 2.583Z'/%3E%3C/svg%3E");}
/* body .rdc-icon-svg.rdc-icon-360 {} */

/* SVG icons cursor Ex: {cursor: url("data:image/svg+xml,%3Csvg ... "), default;} */
body .rdc-icon-svg.rdc-icon-cursor-zoom, body .rdc-icon-svg.rdc-icon-cursor-zoom * {cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23444' fill-rule='evenodd' d='m23.066 21.75 8.661 8.662a.93.93 0 1 1-1.315 1.316l-8.662-8.662a13.083 13.083 0 0 1-8.606 3.222C5.896 26.288 0 20.392 0 13.144 0 5.897 5.896 0 13.144 0s13.144 5.897 13.144 13.144c0 3.29-1.218 6.299-3.222 8.607ZM13.144 1.862C6.923 1.861 1.86 6.922 1.86 13.144c0 6.221 5.062 11.283 11.283 11.283 6.222 0 11.283-5.062 11.283-11.283 0-6.221-5.061-11.283-11.283-11.283Z' clip-rule='evenodd'/%3E%3C/svg%3E");}

/* SVG icons MASK Ex: {-webkit-mask: url("data:image/svg+xml,%3Csvg ... ");} */
body .rdc-icon-svg.rdc-icon-tag {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23000' d='M21.735 11.862a1.152 1.152 0 0 1-1.965-.812 1.147 1.147 0 0 1 1.15-1.148 1.152 1.152 0 0 1 1.152 1.148c0 .304-.121.596-.337.812Z'/%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M16.233 6.183c.3-.123.622-.185.947-.183l6.372.042a2.457 2.457 0 0 1 1.724.722c.456.458.713 1.077.714 1.723l.01 6.437a2.443 2.443 0 0 1-.719 1.736l-8.642 8.623a2.457 2.457 0 0 1-3.47 0l-6.45-6.435a2.448 2.448 0 0 1 .002-3.465l8.709-8.668c.23-.229.502-.41.803-.532Zm8.334 1.283a1.457 1.457 0 0 0-1.021-.428l-6.374-.042a1.458 1.458 0 0 0-1.037.424l-8.709 8.668a1.453 1.453 0 0 0-.001 2.056l6.45 6.435a1.455 1.455 0 0 0 2.059 0l8.64-8.624a1.452 1.452 0 0 0 .427-1.028l-.01-6.438a1.45 1.45 0 0 0-.424-1.023Z' clip-rule='evenodd'/%3E%3C/svg%3E");}
/* body .rdc-icon-shipping-express {} */


/* Mobile (Portrait) */
@media screen and (max-width: 767px) {}

/* Mobile (Landscape), Tablet (Portrait) */
@media screen and (min-width: 768px) and (max-width: 991px) {}

/* Tablet (Landscape) */
@media screen and (min-width: 992px) and (max-width: 1199px) {}

/* Desktop */
@media screen and (min-width: 1200px) {}

/*
 *
 * Submenu
 *
*/
.submenu-image-item-link p{font-weight: 400;color: var(--color-black);}
body:not(.MacOS) .submenu-image-item-link p{font-weight: 500;}
.submenu-image-item-link p:not(.cursor-default){border-bottom-color: transparent;}
.submenu-image-item-link p:not(.cursor-default):hover{border-bottom-color: currentColor;}

.header-submenu-nav .header-submenu-title:not(.header-submenu-title__has-sub) .header-nav-item-3{font-weight: 300;}
body:not(.MacOS) .header-submenu-nav .header-submenu-title:not(.header-submenu-title__has-sub) .header-nav-item-3{font-weight: 400;}

.header-submenu-nav.header-submenu-inst .header-submenu-title:not(.header-submenu-title__has-sub) .header-nav-item-3 { font-weight: 400; }
body:not(.MacOS) .header-submenu-nav.header-submenu-inst .header-submenu-title:not(.header-submenu-title__has-sub) .header-nav-item-3 { font-weight: 500; }

body .header-submenu-nav .header-nav-item-4:not(.cursor-default).featured,
body .header-submenu-nav .header-nav-item-4:not(.cursor-default).featured:hover{color: var(--color-featuredmenu);}
body #mobile-inst-menu{background-color: var(--color-white);border-top: 0;}
header .featured:hover{color: var(--color-featuredmenu);}

/*
 *
 * Menu Mobile
 *
*/
#mobile-inst-menu .mobile-inst-menu-exp{font-weight: 400;}
body:not(.MacOS) #mobile-inst-menu .mobile-inst-menu-exp{font-weight: 500;}

.mobile-menu-image-item-link p{font-weight: 400;color: var(--color-black);}
body:not(.MacOS) .mobile-menu-image-item-link p{font-weight: 500;}
.mobile-menu-image-item-link p:not(.cursor-default){border-bottom-color: transparent;}
.mobile-menu-image .mobile-menu-image-item .mobile-menu-image-item-img{line-height: 0;}

/*
 *
 * Footer
 *
*/
#footer .bottom-footer-column-left small{color: var(--color-black);}

/*
 *
 * Account
 *
*/

body .account.account-landing .list-nav-title.list-nav-title-fixed-fontsize.ac-lg-list-title{font-size: 16px;font-weight: 400;}
body:not(.MacOS) .account.account-landing .list-nav-title.list-nav-title-fixed-fontsize.ac-lg-list-title{font-weight: 500;}
body .account p:not(.label-title), 
body .account .paragraph, 
body .account td{color: var(--color-black);line-height: 160% !important;}

/* body .account .wrapper-page h1, 
body .account .wrapper-page .secondary-title.secondary-title-fixed-fontsize{font-size: 30px;line-height: 140% !important;text-transform: capitalize !important;} */

body .account .rdc-header-subtitle p{font-family: var(--base-fontfamily);color: var(--color-gray);}
body .account.account-landing .rdc-header-subtitle p{color: var(--color-black);}
body .account .account-menu ul li a{color: var(--color-lightgray);}

@media screen and (max-width: 991px) {
	body #rdc-account-menu-mobile-v3_title .list-nav-title{font-weight: 400;font-size: 16px;color: var(--color-darkgray);}
	body:not(.MacOS) #rdc-account-menu-mobile-v3_title .list-nav-title{font-weight: 500;}
}

@media screen and (max-width: 767px) {
	body .account.account-landing .title-page p { text-align: center; }
    body .account.account-landing .title-page .title-heading-titles {font-size: 28px;}
	body .account .list-nav-title.list-nav-title-fixed-fontsize.ac-lg-list-title{font-weight: 400;}
	body:not(.MacOS) .account .list-nav-title.list-nav-title-fixed-fontsize.ac-lg-list-title{font-weight: 500;}
	body .account .ac-lg-list-desc.paragraph{color: var(--color-darkgray);}
	body .account .bottom-form .changeSettings .special-button{font-size: 16px;line-height: 160%;}
}

/*
 *
 * Listagem
 *
*/
#list-top-center .filters-bar-btn.button span.item-name { font-size: 13px;font-weight: 500; }
@media screen and (max-width: 991px) {
	#rdc-list-total-results .paragraph{font-size: 12px;}
	.filters-bar-btn{background-color: transparent;min-height: auto;min-width: auto;padding: 0;border: 0;color: var(--color-black);font-size: 12px;line-height: 160%;text-transform: none;}
	#list-top-left p a{font-weight: 300;font-size: 20px;line-height: 28px;letter-spacing: 0.5px;text-transform: none;}
	body:not(.MacOS) #list-top-left p a{font-weight: 400;}
	.listBreadcrumb a{font-size: 12px;color: var(--color-dark);}
	.listBreadcrumb a.sel{font-weight: 400;}
	body:not(.MacOS) .listBreadcrumb a.sel{font-weight: 500;}
}

/*
 *
 * Product-item
 *
*/
article.product-item .desc .rdc-product-item-colors span{font-size: 13px;color: var(--color-gray);line-height: 160%;font-weight: 400;}
body:not(.MacOS) article.product-item .desc .rdc-product-item-colors span{font-weight: 500;}
article.product-item.rdc-product-item-size-small .rdc-product-item-name{font-size: 13px;}
article.product-item.rdc-product-item-size-small .desc .rdc-product-item-colors span{font-size: 11px;}
article.product-item.rdc-product-item-size-small .image .flags .flag{min-height: 12px;font-size: 8px;padding-left: 4px;padding-right: 4px;}

#container-search-results .list-nav-title{opacity: 1 !important;text-transform: none !important;}
body #rdc-overlay-search-resp-list li a{color: var(--color-black);}

@media screen and (max-width: 767px) {
	article.product-item .rdc-product-item-name{font-size: 13px;}
	article.product-item .desc .rdc-product-item-colors span{font-size: 12px;}

	.rdc-product-item-colors-size.rdc-product-item-colors-layout-1 .small,
	.rdc-product-item-colors-size.rdc-product-item-colors-layout-1 span{font-size: 12px;font-weight: 400;color: var(--color-gray) !important;}
	body:not(.MacOS) .rdc-product-item-colors-size.rdc-product-item-colors-layout-1 span{font-weight: 500;}
	
}

/*
 *
 * Search
 *
*/

/* Custom */
.wrapper-search-results .wrapper-suggestion {display: none;}
/*.search #rdc-list-total-results .rdc-search-total-exp3 {display: inline-block !important;}*/

@media screen and (max-width: 991px) {
	#rdc-list-total-results-mobile {padding-left: var(--row-padding);padding-right: var(--row-padding);padding-bottom: 1px;padding-top: 14px;display: none;}
	.search #rdc-list-total-results-mobile {display: block;}
	.search .wrapper-products{margin-top: 5px;}
	body #main.search #list-top-center { padding-bottom: 0; }
	#container-search-results { margin-top: -14px; }
	body.rdc-page-module-product_list.rdc-page-module-search #containerSite { margin-top: var(--header-search-height); }
}
@media screen and (max-width: 767px) {
	.search #rdc-list-total-results .rdc-search-total-exp3 {display: none !important;}
}

body:not(.MacOS) #main.products #rdc-list-total-results span.rdc-search-total-exp,
body:not(.MacOS) #footer .country-change-footer .paragraph span.a,
body:not(.MacOS) #main.product .stock-points-delivery .points p span.value { font-weight: 500 !important; }


/* #SCM-1385/2024 */

.wrapper-egifts #egift .wrapper-card-preview .card-preview .card-cod{display: none !important;}