/*
 *
 * CSS VARS
 *
*/

:root {
	--color-dark: #010101;
	--color-theme: #25A9E1;
	--color-black: #222222;
	--color-darkgray: #666666;
	--color-gray: #999999;
	--color-lightgray: #CCCCCC;
	--color-white: #FFF;
	--color-overlay: rgba(51, 51, 51, 0.75);
	--color-background: #F4F4F6;
	--color-lines: #DDDFE4;
	--color-link: #222222;
	--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: #27AAE1;
	--color-buttoncart-hover: #1793C6;

	--base-fontfamily: 'Outfit', Sans-Serif;
	--container-padding: 20px;
	--container-padding-n: -20px;
	--row-padding: 14px;
	--row-padding-n: -14px;
	--color-featuredmenu: #FF0D19;
	--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: 4px;
	--button-border-radius: 42px;

	/* Spacing */
	--sp-ex-small: 20px;
	--sp-small: 30px;
	--sp-medium: 60px;
	--sp-large: 100px;

	--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: 767px) {
	:root {
		/* Spacing */
		--sp-ex-small: 15px;
		--sp-small: 25px;
		--sp-medium: 50px;
		--sp-large: 80px;
	}
}

@media screen and (max-width: 1599px) {
	:root {
		--container-padding: 14px;
		--container-padding-n: -14px;
	}
}



/*
 *
 * Tipography
 *
*/
body, .paragraph, .gm-style, .page-content {
	/* Do not add styles */
	font-family: var(--base-fontfamily);
	font-weight: 300;
	font-size: 15px;
	color: var(--color-black);
}

/* A */
a, .a {
	color: currentColor;
	text-decoration: underline;
}

/* PARAGRAPH */
.paragraph, .gm-style, .page-content {
	line-height: 160%;
	font-weight: 300;
}

/* 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: 15px;
	color: var(--color-darkgray);
}

/* MEGA-TITLE */
.mega-title {
	font-weight: 700;
	font-size: 52px;
	line-height: 140%;
}

/* TITLE */
h1:not(.nostyle), .h1:not(.nostyle), .title {
	font-weight: 400;
	font-size: 48px;
	line-height: 140%;
}

/* SECONDARY-TITLE */
h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
	font-weight: 600;
	font-size: 34px;
	line-height: 140%;
}

/* SUBTITLE */
h3:not(.nostyle), .h3:not(.nostyle), .subtitle {
	font-weight: 600;
	font-size: 24px;
	line-height: 140%;
}

/* SECONDARY-SUBTITLE */
h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
	font-weight: 400;
	font-size: 24px;
	line-height: 140%;
}

/* LIST-NAV-TITLE */
.list-nav-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 160%;
}

.list-nav-title.active {
	color: var(--color-theme);
}

/* SIGNATURE */
.signature {
	color: var(--color-theme);
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 126%;
}

/* LIST-NAV-SUBTITLE */
.list-nav-subtitle {
	font-weight: 500;
	font-size: 15px;
	line-height: 140%;
}

.list-nav-subtitle.active {
	color: var(--color-theme);
}

/* PRODUCT */
	/* Brand */
		.brand-list-product,
		.rdc-product-item-brand {
			font-weight: 600;
			font-size: 13px;
		} 

	/* Name */
		.product-item .desc .name,
		.rdc-product-item-name {
			font-weight: 400;
			font-size: 13px;
			line-height: 150%;
		}

	/* Price */
		.price {
			display: inline-grid;
			align-items: baseline;
			grid-auto-flow: column;
			grid-gap: 6px;
		}

		.price, .price p {
			font-weight: 700;
			font-size: 14px;
		}

		/* Price Old */
		.price .old {
			color: var(--color-darkgray);
			text-decoration: line-through;
			margin-right: 0 !important;
			font-weight: 400;
		}

		/* Price Discount */
		.price .discount {
			background: var(--color-error); /* Required */
			color: var(--color-white); /* Required */
			padding: 0px 4px;
			border-radius: 2px;
			display: flex;
			align-items: center;
			justify-content: center;
			min-height: 17px;
			font-weight: 400;
		}

		/* Price Current */
		.price .discount + .current { color: var(--color-error); }
		.price .current {}

		/* Price Desde, Type, packageType */
		.price .desde, .price .type, .price .packageType, .price .date {
			font-weight: 300;
			font-size: 12px;
			line-height: 130%;
			color: var(--color-darkgray);
		}

	/* Price Horizontal */
		.priceh {
			display: inline-flex;
			align-items: baseline;
			grid-auto-flow: column;
			grid-gap: 0 6px;
			flex-wrap: wrap;
		}

		.priceh, .priceh p {
			font-weight: 700;
			font-size: 14px;
		}

		/* Priceh Old */
		.priceh .old {
			color: var(--color-darkgray);
			text-decoration: line-through;
			font-weight: 400;
		}

		/* Priceh Discount */
		.priceh .discount {
			background: var(--color-error);
			color: var(--color-white);
			padding: 0px 4px;
			border-radius: 2px;
			display: flex;
			align-items: center;
			justify-content: center;
			min-height: 17px;
			font-weight: 400;
		}

		/* Priceh Current */
		.priceh .current {}

		/* Priceh Desde, Type, packageType */
		.priceh .desde, .priceh .type, .priceh .packageType, .priceh .date {
			font-weight: 300;
			font-size: 12px;
			line-height: 130%;
			color: var(--color-darkgray);
		}

	/* Promo Date */
	.price .rdc-promo-date,
	.rdc-promo-date {
		font-weight: 300;
		font-size: 12px;
		line-height: 130%;
		color: var(--color-error);
	}

	/* Promoção ultimos 30 dias */
	.rdc-promo-30days {
		font-weight: 300;
		font-size: 12px;
		line-height: 130%;
		color: var(--color-gray);
	}

@media screen and (max-width: 1199px) {
	/* MEGA-TITLE */
	.mega-title {
		font-size: 34px;
	}

	/* TITLE */
	h1:not(.nostyle), .h1:not(.nostyle), .title {
		font-size: 30px;
	}

	/* SECONDARY-TITLE */
	h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
		font-size: 26px;
	}

	/* SUBTITLE */
	h3:not(.nostyle), .h3:not(.nostyle), .subtitle {
		font-size: 20px;
	}

	/* SECONDARY-SUBTITLE */
	h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
		font-size: 20px;
	}

	/* LIST-NAV-TITLE */
	.list-nav-title {
		font-size: 16px;
	}

	/* LIST-NAV-SUBTITLE - Required for accordion contains secondary-subtitle */
	.list-nav-subtitle {
		font-size: 15px;
		line-height: 160%;
	}

	/* SIGNATURE */
	.signature {
		font-size: 12px;
		letter-spacing: 0.5px;
	}

	/* PRODUCT */
	/* Brand */
	.brand-list-product,
	.rdc-product-item-brand {
		font-size: 13px;
	} 

	/* Name */
	.product-item .desc .name,
	.rdc-product-item-name {
		font-size: 13px;
	}

	/* Price */
	.price p {
		font-size: 12px;
	}

	/* Price Desde, Type, packageType */
	.price .desde, .price .type, .price .packageType, .price .date {
		font-size: 11px;
	}

	/* Promo Date */
	.price .date,
	.rdc-promo-date {
		font-size: 11px;
	}

	/* Promoção ultimos 30 dias */
	.rdc-promo-30days {
		font-size: 11px;
	}
}

/* PRODUCT ITEM SMALL == MOBILE */
@media screen and (min-width: 1200px) {
	/* Os estilos aplicados em mobile, devem ser colocados aqui. Exemplo: */
	.rdc-product-item-size-small .rdc-product-item-brand {
		font-size: 13px;
	}
}





/*
 *
 * Elements & Components
 *
*/

/* Primary Button */
	/* Normal */
	.button, button, input[type=submit], input[type=button] {
		font-weight: 500;
		font-size: 14px;
		line-height: 11px;
		color: var(--color-white);
		padding: 0px 30px;
		border: 1px solid var(--color-black);
		background-color: var(--color-black);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 180px;
		min-height: 42px;
		border-radius: var(--button-border-radius);
		user-select: none;
		text-transform: capitalize;
	}
	
	body.windows .button, body.windows button, body.windows input[type=submit], body.windows input[type=button] {
		padding: 1px 30px 0;
	}

	.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-black);
		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: 500;
		font-size: 14px;
		line-height: 126%;
		text-decoration: none !important;
		padding: 1px 0;
		border: 0;
		background: transparent;
	}

	.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;
		background-color: transparent !important;
		border-color: var(--color-lines);
	}

	/* Normal hover e active */
	@media (hover) {
		.button-card:not(.disabled):not([disabled]):not(.esgotado):hover {
			border-color: var(--color-gray);
		}
	}

	/* Active */
	.button-card.active {
		box-shadow: 0px 0px 0px 2px var(--color-theme);
	}

	/* Disable */
	.button-card.disabled, .button-card[disabled] {
		color: var(--color-gray);
		border-color: var(--color-lines);
		background-color: var(--color-background);
	}

	/* Esgotado */
	.button-card.esgotado {
		border: none;
	}

	.button-card.esgotado .button-card-title {
		color: var(--color-black);
	}

	.button-card.esgotado .button-card-desc {
		color: var(--color-gray);
	}

	/* Title */
	.button-card-title {}

	/* Description */ 
	.button-card-desc {
		color: var(--color-gray);
	}

/* Buttons Cart */
	/* Normal */
	.btn-cart, .btn-cart-esgotado {
		font-weight: 600;
		font-size: 14px;
		line-height: 11px;
		color: var(--color-white);
		padding: 0 30px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 220px;
		min-height: 42px;
		border: 1px solid var(--color-buttoncart);
		background-color: var(--color-buttoncart);
		white-space: nowrap;
		border-radius: var(--button-border-radius);
		text-transform: uppercase;
	}

	.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
 *
*/
body .accordion > li {
	border-color: var(--color-lightgray);
}

body .accordion > li.active {
	border-color: var(--color-theme);
}

body .accordion > li.active + li {
	border-top-color: var(--color-theme);
}

.accordion-head {
	user-select: none;
}

.accordion .accordion-head {
	padding-left: 15px;
	padding-right: 4em;
}
.accordion .accordion-content{
	padding-left: 15px;
	padding-right: 15px;
}
.accordion .accordion-icon .rdc-icon-svg { width: 16px;height: 16px; }






/*
 *
 * Tabs
 *
*/
.tabs-container .tabs:not(.rdc-fixed-styles) li {
	margin: 0 7px;
}

.tabs-container .tabs:not(.rdc-fixed-styles) .tabs-item {
	font-weight: 500;
	font-size: 15px;
	line-height: normal;
	text-decoration: none;
	cursor: pointer;
	display: block;
	padding: 0 20px;
	color: var(--color-darkgray);
	border: 1px solid var(--color-lightgray);
	background-color: var(--color-white);
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	user-select: none;
}

@media (hover) {
	.tabs-container .tabs:not(.rdc-fixed-styles) li:not(.sel) .tabs-item:hover {
		color: var(--color-theme);
		border-color: var(--color-theme);
		opacity: 1;
	}
}

.tabs-container .tabs:not(.rdc-fixed-styles) li.sel .tabs-item {
	color: var(--color-theme);
	border-color: var(--color-theme);
	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 {padding-bottom: 0px;}
.label-title {font-weight: 600;}

textarea,  input[type=text], input[type=number], input[type=email], input[type=password], input[type=tel], input[type=search], input[type=file], select {
	padding: 10px 15px;
	border: 1px solid var(--color-lines);
	min-height: 42px;
	background-color: white;
	color: currentColor; /* Required */
	border-radius: var(--input-border-radius);
}

/* CHECKBOX || RADIO */
.magic-checkbox+label:before, .magic-radio+label:before{border-color: var(--color-lines);}
.magic-checkbox:checked+label:before, .magic-checkbox:checked+label:after, .magic-radio:checked+label:before{border-color: var(--color-black);opacity: 1;}
.magic-checkbox:checked+label:hover:before, .magic-checkbox:checked+label:hover:after, .magic-radio:checked+label:hover:before{border-color: var(--color-black);opacity: 1;}
.magic-radio:checked+label:after{background-color: var(--color-black);opacity: 1;top: 11px;}


.magic-checkbox:checked+label:after {
	width: 18px;
	height: 18px;
	border: 0;
	transform: translateY(-50%);
	top: 11px;
	left: 2px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.42216 9.33446C4.71557 10.3378 5.96856 11.2994 7.22156 12.3028C9.52545 9.12542 11.8293 5.94806 14.1332 2.8125C14.6587 3.23057 15.1841 3.60684 15.75 4.02492C13.0419 7.74578 10.3338 11.4666 7.62575 15.1875C5.84731 13.766 4.02844 12.3864 2.25 10.9649C2.65419 10.4215 3.01796 9.87796 3.42216 9.33446Z' fill='%23222222'/%3e%3c/svg%3e ");
}

/* DISABLED */
.magic-checkbox[disabled]+label:before, .magic-radio[disabled]+label:before{border-color: var(--color-black);}
.magic-checkbox:checked[disabled]+label:before, .magic-checkbox:checked[disabled]+label:after, .magic-radio:checked[disabled]+label:before{border-color: var(--color-black); opacity: 0.4;}
.magic-radio:checked[disabled]+label:after{background-color: var(--color-black); opacity: 0.4;}
.magic-checkbox[disabled]+label:before, .magic-checkbox:checked[disabled]+label:before{background-color: var(--color-background);}

input[type=file] {
	padding: 8px 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-darkgray);
	-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: 10px 40px 10px 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: 19px; /* Mozilla */
	border-radius: var(--input-border-radius);
}

body div.select::after {
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	right: 15px;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.5 5L2.5 5L8 11L13.5 5Z' fill='%23222222'/%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-black);}
::-moz-placeholder {color: var(--color-black);}
:-ms-input-placeholder {color: var(--color-black);}
:-moz-placeholder {color: var(--color-black);}

.checkbox-switch label {background-color: #d9d9d6;}
.checkbox-switch label:after {background-color: var(--color-black);}






/*
 *
 * Messages Bar
 *
*/
.form-message .help,
.form-message .success,
.form-message .info,
.form-message .warning,
.form-message .error {
	background-repeat: no-repeat;
	background-position: left 8px center;
	background-size: 18px;
	line-height: 140%;
	padding: 6px 8px 6px 36px;
	border-radius: 2px;
	border: 1px solid;
}

.form-message .help {
	background-color: var(--color-helplight);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.75 9C15.75 5.27062 12.7294 2.25 9 2.25C5.27062 2.25 2.25 5.27062 2.25 9C2.25 12.7294 5.27062 15.75 9 15.75C12.7294 15.75 15.75 12.7294 15.75 9ZM3.19922 9C3.19922 5.79486 5.79486 3.19922 9 3.19922C12.2051 3.19922 14.8008 5.79486 14.8008 9C14.8008 12.2051 12.2051 14.8008 9 14.8008C5.79486 14.8008 3.19922 12.2051 3.19922 9Z' fill='%238B8D8F'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.4813 12.7526C9.32452 12.8921 9.14283 12.9623 8.937 12.9623C8.72404 12.9623 8.53829 12.8934 8.37973 12.7554C8.22092 12.6177 8.14136 12.4248 8.14136 12.1771C8.14136 11.9573 8.21836 11.7723 8.37185 11.6223C8.52535 11.4724 8.71363 11.3975 8.937 11.3975C9.1568 11.3975 9.34181 11.4724 9.49199 11.6223C9.64192 11.7723 9.71714 11.9572 9.71714 12.1771C9.71686 12.4213 9.63833 12.6131 9.4813 12.7526Z' fill='%238B8D8F'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.4362 7.90595C11.3157 8.12931 11.1727 8.32191 11.0067 8.4843C10.8413 8.64667 10.5438 8.91958 10.1143 9.30327C9.99586 9.41152 9.90057 9.50655 9.82917 9.58836C9.75777 9.67045 9.70441 9.74538 9.66958 9.8135C9.6345 9.88159 9.60759 9.9497 9.58852 10.0178C9.56945 10.0856 9.54075 10.2053 9.50186 10.3763C9.43581 10.7392 9.2282 10.9206 8.87928 10.9206C8.69784 10.9206 8.54538 10.8614 8.42111 10.7427C8.29735 10.6241 8.23561 10.448 8.23561 10.2142C8.23561 9.92122 8.28109 9.66736 8.37181 9.45266C8.46203 9.23793 8.58274 9.04965 8.73267 8.88728C8.88285 8.72492 9.08511 8.53229 9.33999 8.30893C9.56335 8.11352 9.72473 7.96616 9.82408 7.86679C9.92368 7.76719 10.0073 7.6564 10.0751 7.53442C10.1435 7.41219 10.1771 7.27981 10.1771 7.13676C10.1771 6.85751 10.0736 6.62221 9.86578 6.43037C9.65817 6.23852 9.39032 6.14246 9.06226 6.14246C8.6783 6.14246 8.39573 6.23927 8.21428 6.4329C8.03284 6.62653 7.87963 6.91162 7.75383 7.28847C7.63491 7.68285 7.40976 7.88001 7.07864 7.88001C6.88322 7.88001 6.71832 7.81114 6.58389 7.67341C6.44972 7.53567 6.38263 7.38653 6.38263 7.22594C6.38263 6.89458 6.48911 6.55866 6.70181 6.21842C6.91477 5.87818 7.22529 5.59637 7.63363 5.37326C8.04172 5.1499 8.51821 5.03809 9.06226 5.03809C9.5682 5.03809 10.0147 5.13159 10.4019 5.31837C10.7892 5.50487 11.0885 5.75873 11.2997 6.0799C11.5106 6.40082 11.6163 6.74972 11.6163 7.12657C11.6168 7.42264 11.5566 7.6826 11.4362 7.90595Z' fill='%238B8D8F'/%3e%3c/svg%3e ");
	border-color: var(--color-help);
}

.form-message .success {
	background-color: var(--color-successlight);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 2.25C12.7294 2.25 15.75 5.27062 15.75 9C15.75 12.7294 12.7294 15.75 9 15.75C5.27062 15.75 2.25 12.7294 2.25 9C2.25 5.27062 5.27062 2.25 9 2.25ZM9 3.19922C5.79486 3.19922 3.19922 5.79486 3.19922 9C3.19922 12.2051 5.79486 14.8008 9 14.8008C12.2051 14.8008 14.8008 12.2051 14.8008 9C14.8008 5.79486 12.2051 3.19922 9 3.19922ZM7.28955 11.2798C7.62481 11.6176 8.17111 11.6176 8.50636 11.2798L12.4716 7.28406C12.6852 7.06882 12.6859 6.72177 12.473 6.50578C12.2568 6.28634 11.903 6.28572 11.686 6.50439L7.89796 10.3215L6.31151 8.72733C6.09557 8.51033 5.74427 8.51058 5.52863 8.72787C5.3151 8.94304 5.3151 9.29016 5.52863 9.50533L7.28955 11.2798Z' fill='%233F9C35'/%3e%3c/svg%3e ");
	border-color: var(--color-success);
}

.form-message .info {
	background-color: var(--color-infolight);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.75 9C15.75 5.27062 12.7294 2.25 9 2.25C5.27062 2.25 2.25 5.27062 2.25 9C2.25 12.7294 5.27062 15.75 9 15.75C12.7294 15.75 15.75 12.7294 15.75 9ZM3.19922 9C3.19922 5.79486 5.79486 3.19922 9 3.19922C12.2051 3.19922 14.8008 5.79486 14.8008 9C14.8008 12.2051 12.2051 14.8008 9 14.8008C5.79486 14.8008 3.19922 12.2051 3.19922 9Z' fill='%231890FF'/%3e%3crect width='1.35001' height='1.35001' rx='0.675005' transform='matrix(1 0 0 -1 8.4375 6.97461)' fill='%231890FF'/%3e%3crect width='1.35001' height='4.05001' rx='0.675005' transform='matrix(1 0 0 -1 8.4375 12.375)' fill='%231890FF'/%3e%3c/svg%3e ");
	border-color: var(--color-info);
}

.form-message .warning {
	background-color: var(--color-warninglight);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.56001 14.2191C2.91579 14.8109 3.54408 15.1875 4.22536 15.1875H13.7709C14.4597 15.1875 15.0805 14.8109 15.4362 14.2191C15.8374 13.5582 15.8526 12.6974 15.4892 12.0134L11.0987 4.15745C10.5991 3.41196 9.94813 2.8125 9.0019 2.8125C8.05568 2.8125 7.40468 3.41196 6.90507 4.15745L2.49188 12.0518C2.15881 12.7512 2.15881 13.5505 2.56001 14.2191ZM9.7212 12.0979C9.7212 11.6906 9.40327 11.3601 9.00207 11.3601C8.60087 11.3601 8.27537 11.6906 8.27537 12.0979C8.27537 12.5053 8.60087 12.8281 9.00207 12.8281C9.40327 12.8281 9.7212 12.5053 9.7212 12.0979ZM9.00205 10.63C8.73711 10.63 8.54787 10.4072 8.51759 10.1382L8.27535 7.93245C8.2375 7.55587 8.63113 7.20234 9.00205 7.20234C9.37297 7.20234 9.7666 7.55587 9.72118 7.93245L9.47895 10.1382C9.45624 10.3995 9.27457 10.63 9.00205 10.63ZM13.7707 14.2115H4.22516C3.86938 14.2115 3.56659 14.0116 3.38492 13.7042C3.15782 13.3353 3.16539 12.8973 3.34707 12.5053L7.6997 4.70313C8.01006 4.242 8.40369 3.78856 9.0017 3.78856C9.59972 3.78856 9.98578 4.242 10.2961 4.70313L14.6563 12.5053C14.8304 12.8896 14.838 13.3353 14.6185 13.7042C14.4292 14.0116 14.1265 14.2115 13.7707 14.2115Z' fill='%23FAAD14'/%3e%3c/svg%3e ");
	border-color: var(--color-warning);
}

.form-message .error {
	background-color: var(--color-errorlight);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.75 9C15.75 5.2721 12.7279 2.25 9 2.25C5.2721 2.25 2.25 5.2721 2.25 9C2.25 12.7279 5.2721 15.75 9 15.75C12.7279 15.75 15.75 12.7279 15.75 9ZM3.20616 8.99999C3.20616 5.80021 5.80013 3.20624 8.99991 3.20624C12.1997 3.20624 14.7937 5.8002 14.7937 8.99999C14.7937 12.1998 12.1997 14.7937 8.99991 14.7937C5.80013 14.7937 3.20616 12.1998 3.20616 8.99999Z' fill='%23F14244'/%3e%3cpath d='M11.3615 7.5951C11.6266 7.33102 11.6269 6.90198 11.3624 6.63744C11.0978 6.3729 10.6688 6.37329 10.4048 6.6383L8.99989 8.0482L7.59502 6.6383C7.33095 6.37329 6.90193 6.37291 6.63739 6.63745C6.37285 6.90199 6.37323 7.33101 6.63824 7.59508L8.04813 8.99995L6.63824 10.4048C6.37323 10.6689 6.37284 11.0979 6.63738 11.3625C6.90192 11.627 7.33096 11.6266 7.59504 11.3616L8.99989 9.9517L10.4047 11.3616C10.6688 11.6266 11.0979 11.627 11.3624 11.3625C11.6269 11.0979 11.6266 10.6689 11.3615 10.4048L9.95164 8.99995L11.3615 7.5951Z' fill='%23F14244'/%3e%3c/svg%3e ");
	border-color: var(--color-error);
}

.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) */
@-moz-document url-prefix() {
	body:not(.MacOS) .slim-scrollbar {
		scrollbar-color: #AAA lightgray;
	}
}
.slim-scrollbar::-webkit-scrollbar,
.overlay-size-guide .tabs-container .tabs-content::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}
.slim-scrollbar::-webkit-scrollbar-track,
.overlay-size-guide .tabs-container .tabs-content::-webkit-scrollbar-track {
	background: lightgray;
}
.slim-scrollbar::-webkit-scrollbar-thumb,
.overlay-size-guide .tabs-container .tabs-content::-webkit-scrollbar-track {
	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;}
#containerSite-mask {background-color: transparent;}
.border-color {border-color: lightgray;}

/* CONTAINER => max-width: (1902px | 1600px | 1440px) + (--container-padding * 2) */
.container {max-width: calc(1600px + var(--container-padding) * 2);padding-left: var(--container-padding);padding-right: var(--container-padding);}
header .container {max-width: 2560px;}
/* Se o max-width do container for (1902px), colocar o CSS abaixo */
/*.rdc-container-fullscreen {max-width: 2560px;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;}
}*/



/*
 *
 * Sliders
 *
*/
.slick-dots li button {
	padding: 0;
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    background: var(--color-dark);
}

.slick-dots li.slick-active button {
    border-color: rgba(255, 255, 255, 0.5) !important;
    background-color: var(--color-theme);
    width: 40px;
}

.slider .slick-arrow, .rdc-slider-arrow {
	background-color: transparent !important;
	background-position: center !important;
	background-size: 28px;
}

.slider .slick-arrow.slick-disabled{visibility: hidden;}

@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;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.0001 5.5549L11.9826 16L22.0001 26.4451L20.5089 28L9.00014 16L20.5089 4L22.0001 5.5549Z' fill='%23999999'/%3e%3c/svg%3e ");
}

.slider .slick-arrow.slick-next, .rdc-slider-next {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 26.4451L20.0175 16L10 5.55489L11.4912 4L23 16L11.4912 28L10 26.4451Z' fill='%23999999'/%3e%3c/svg%3e ");
}

#main.product #rdc-productdetail-area-a .slider .slick-arrow.slick-prev, #main.product #rdc-productdetail-area-a .rdc-slider-prev,
#main.product #rdc-productdetail-area-a .slider .slick-arrow.slick-next, #main.product #rdc-productdetail-area-a .rdc-slider-next{display: none !important;}

@media screen and (max-width: 767px) {
	article.product-item .slick-dots li { margin: 0 2px; }
	article.product-item .slick-dots li button {
		width: 5px;
		height: 5px;
	}
	
	article.product-item .slick-dots li.slick-active button {
		width: 25px;
	}
}





/*
 *
 * 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;
	}
}

/* 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: 20px;}
}

body .rdc-icon-svg.rdc-icon-menu {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 7H28V9H4V7Z' fill='%23222222'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 15H28V17H4V15Z' fill='%23222222'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 23H28V25H4V23Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-menu-close{background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M17.3725 16L26 24.6275L24.6275 26L16 17.3725L7.37255 26L6 24.6275L14.6275 16L6 7.37255L7.37255 6L16 14.6275L24.6275 6L26 7.37255L17.3725 16Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-share {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.8552 21.7769C20.686 20.2721 22.2878 19.25 24.125 19.25C26.8132 19.25 29 21.4368 29 24.125C29 26.8132 26.8132 29 24.125 29C21.4368 29 19.25 26.8132 19.25 24.125C19.25 23.8589 19.2772 23.5996 19.3184 23.345L11.7583 18.935C10.8675 20.1108 9.46062 20.875 7.875 20.875C5.18677 20.875 3 18.6882 3 16C3 13.3118 5.18677 11.125 7.875 11.125C9.46058 11.125 10.8674 11.8892 11.7582 13.0649L19.3183 8.65462C19.2772 8.40012 19.25 8.14096 19.25 7.875C19.25 5.18677 21.4368 3 24.125 3C26.8132 3 29 5.18677 29 7.875C29 10.5632 26.8132 12.75 24.125 12.75C22.2877 12.75 20.6859 11.7277 19.8551 10.2228L12.5135 14.5056C12.6657 14.977 12.75 15.4785 12.75 16C12.75 16.5214 12.6657 17.0229 12.5135 17.4943L19.8552 21.7769ZM27.375 7.875C27.375 6.08298 25.9174 4.625 24.125 4.625C22.3326 4.625 20.875 6.08298 20.875 7.875C20.875 9.66702 22.3326 11.125 24.125 11.125C25.9174 11.125 27.375 9.66702 27.375 7.875ZM7.875 19.25C6.08258 19.25 4.625 17.792 4.625 16C4.625 14.208 6.08258 12.75 7.875 12.75C9.66742 12.75 11.125 14.208 11.125 16C11.125 17.792 9.66742 19.25 7.875 19.25ZM20.875 24.125C20.875 25.917 22.3326 27.375 24.125 27.375C25.9174 27.375 27.375 25.917 27.375 24.125C27.375 22.333 25.9174 20.875 24.125 20.875C22.3326 20.875 20.875 22.333 20.875 24.125Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-fb {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M24 23.2C24 23.6843 23.7556 24 23.2622 24H19.1111V17.9459H21.2222L21.5422 15.3514H19.1111V14.0022C19.1111 13.3103 19.3022 12.7568 20.3244 12.7568H21.7778V10.6941C21.3333 10.6638 20.6444 10.5989 19.7422 10.5989C17.8667 10.5989 16.4444 11.7146 16.4444 13.7643V15.3514H14.2222V17.9459H16.4444V24H8.74667C8.24889 24 8 23.6843 8 23.2V9.07676C8 8.59243 8.24889 8 8.74667 8H23.2622C23.7556 8 24 8.59243 24 9.07676V23.2Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-in {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.5756 24H11.4244C9.53616 24 8 22.4637 8 20.5755V11.4245C8 9.53616 9.53616 8 11.4244 8H20.5756C22.4638 8 24 9.53616 24 11.4245V20.5755C24 22.4637 22.4638 24 20.5756 24ZM11.4244 9.86779C10.566 9.86779 9.86779 10.5662 9.86779 11.4245V20.5755C9.86779 21.4339 10.566 22.1321 11.4244 22.1321H20.5756C21.4339 22.1321 22.1322 21.4339 22.1322 20.5755V11.4245C22.1322 10.5662 21.4339 9.86779 20.5756 9.86779H11.4244ZM13.4479 16.0001C13.4479 14.5929 14.5927 13.4481 15.9999 13.4481C17.4073 13.4481 18.5521 14.5929 18.5521 16.0001C18.5521 17.4073 17.4073 18.552 15.9999 18.552C14.5927 18.552 13.4479 17.4073 13.4479 16.0001ZM15.9999 20.4199C13.5628 20.4199 11.5801 18.4371 11.5801 16.0001C11.5801 13.5631 13.5628 11.5802 15.9999 11.5802C18.4371 11.5802 20.42 13.5631 20.42 16.0001C20.42 18.4371 18.4371 20.4199 15.9999 20.4199ZM20.5237 12.5141C20.9631 12.5141 21.3195 12.1578 21.3195 11.7184C21.3195 11.279 20.9631 10.9228 20.5237 10.9228C20.0843 10.9228 19.728 11.279 19.728 11.7184C19.728 12.1578 20.0843 12.5141 20.5237 12.5141Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-lk {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5562 12.0348C9.6111 12.0348 9 11.3557 9 10.5158C9 9.65879 9.62958 9 10.5947 9C11.5599 9 12.151 9.65879 12.1694 10.5158C12.1694 11.3557 11.5599 12.0348 10.5562 12.0348ZM12.0709 23H9.07849V13.2337H12.0709V23ZM20.0076 23H23V17.2255C23 14.3499 21.5238 13.012 19.555 13.012C17.9403 13.012 16.9752 13.9518 16.5811 14.5888H16.5211L16.3841 13.2322H13.7842C13.8242 14.1095 13.8627 15.1289 13.8627 16.3481V22.9984H16.8566V17.3675C16.8566 17.0881 16.8766 16.8071 16.9567 16.6088C17.1737 16.0515 17.6648 15.4723 18.4914 15.4723C19.5735 15.4723 20.0076 16.3278 20.0076 17.5876V23Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-pi {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M17.0027 19.6017C16.0624 19.5272 15.6686 19.0443 14.9329 18.582C14.5284 20.7844 14.0338 22.8965 12.5685 24C12.1152 20.6688 13.231 18.1704 13.7499 15.5152C12.8662 13.9715 13.8553 10.8667 15.7205 11.6299C18.0147 12.5735 13.7331 17.3692 16.6073 17.9693C19.6082 18.5931 20.8339 12.5672 18.9732 10.6102C16.2837 7.78091 11.1474 10.5453 11.7794 14.5953C11.932 15.5849 12.9196 15.8857 12.1732 17.2521C10.4529 16.8563 9.93854 15.4487 10.0057 13.5725C10.111 10.501 12.6662 8.3493 15.2275 8.05323C18.468 7.67958 21.5086 9.2866 21.9298 12.45C22.4015 16.0187 20.466 19.8803 17.0027 19.6017Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-tm {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M19.9986 22.235C19.4431 22.5181 18.9413 22.7139 18.4919 22.8298C18.0424 22.9413 17.5562 23 17.0346 23C16.441 23 15.9166 22.9172 15.4601 22.7561C15.0035 22.5949 14.6148 22.3645 14.2926 22.0649C13.9703 21.7682 13.747 21.4475 13.6226 21.1116C13.4982 20.7728 13.436 20.2849 13.436 19.6464V14.7343H12V12.7556C12.5074 12.5764 12.947 12.3204 13.3102 11.9846C13.6735 11.6518 13.9661 11.2528 14.1852 10.7844C14.4057 10.3176 14.5569 9.7198 14.6403 9H16.4876V12.5388H19.5689V14.7343H16.4876V18.3258C16.4876 19.1375 16.5272 19.6585 16.6078 19.8874C16.6869 20.1193 16.8353 20.3015 17.053 20.44C17.3413 20.6253 17.6707 20.7186 18.0382 20.7186C18.6968 20.7186 19.3498 20.4867 20 20.0244V22.235H19.9986Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-tw {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M21.1761 8H23.9362L17.9061 14.7774L25 24H19.4456L15.0951 18.4066L10.1172 24H7.35544L13.8052 16.7508L7 8H12.6955L16.6279 13.1126L21.1761 8ZM20.2073 22.3754H21.7368L11.8644 9.53928H10.2232L20.2073 22.3754Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-vm {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M22.9303 12.8802C22.1483 17.2089 17.7763 20.877 16.4632 21.7142C15.1485 22.5485 13.9477 21.3772 13.5136 20.491C13.0148 19.4786 11.5231 13.9995 11.1321 13.5438C10.7411 13.0895 9.56805 13.9995 9.56805 13.9995L9 13.2662C9 13.2662 11.3815 10.471 13.1934 10.1236C15.1146 9.75249 15.1115 13.0198 15.5734 14.8353C16.0213 16.5914 16.3215 17.5949 16.711 17.5949C17.102 17.5949 17.8486 16.6181 18.6645 15.1158C19.4835 13.6136 18.6307 12.2864 17.0312 13.2306C17.6701 9.46005 23.7123 8.55157 22.9303 12.8802Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-yt {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 16C8 21.3185 8.1376 22 16 22C23.8624 22 24 21.3185 24 16C24 10.6815 23.8624 10 16 10C8.1376 10 8 10.6815 8 16ZM14.9712 14.1308L18.5648 15.7431C18.8784 15.8846 18.8784 16.1154 18.5632 16.2569L14.9712 17.8692C14.6576 18.0092 14.4 17.8523 14.4 17.5185V14.4815C14.4 14.1477 14.6576 13.9908 14.9712 14.1308Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-wa {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M25 15.7682C25 20.6108 21.0442 24.5364 16.1636 24.5364C14.6142 24.5364 13.1586 24.1404 11.8922 23.4454L7 25L8.595 20.2956C7.7904 18.9744 7.327 17.4248 7.327 15.7682C7.327 10.9256 11.2832 7 16.1636 7C21.0446 7 25 10.9256 25 15.7682ZM16.1643 8.39643C12.0675 8.39643 8.73506 11.7034 8.73506 15.7682C8.73506 17.3812 9.26086 18.875 10.1503 20.0902L9.22206 22.828L12.0771 21.9206C13.2501 22.6908 14.6553 23.14 16.1645 23.14C20.2607 23.14 23.5937 19.8334 23.5937 15.7686C23.5937 11.7038 20.2609 8.39643 16.1643 8.39643ZM20.3281 17.5938C20.4796 17.6665 20.582 17.7156 20.626 17.7877C20.6798 17.8773 20.6798 18.3075 20.4998 18.8099C20.3186 19.3115 19.4342 19.7955 19.0374 19.8313C18.9694 19.8374 18.913 19.851 18.8552 19.8648C18.5756 19.9319 18.263 20.007 16.438 19.2941C14.4031 18.4988 13.0618 16.5247 12.7846 16.1168C12.7618 16.0833 12.7462 16.0603 12.738 16.0495L12.7377 16.049C12.6277 15.904 11.8536 14.8833 11.8536 13.8269C11.8536 12.8375 12.3434 12.3186 12.5689 12.0796C12.5844 12.0632 12.5987 12.0481 12.6114 12.0343C12.81 11.8193 13.0448 11.7655 13.1892 11.7655C13.2639 11.7655 13.3385 11.7703 13.4107 11.7749C13.4782 11.7793 13.5435 11.7835 13.6044 11.7835C13.6196 11.7835 13.6355 11.7825 13.6521 11.7814C13.7741 11.7735 13.9328 11.7633 14.0916 12.1419C14.1495 12.2798 14.2333 12.4822 14.3223 12.6971C14.511 13.1526 14.7229 13.6643 14.7596 13.7373C14.814 13.8451 14.8502 13.9705 14.7776 14.1139C14.7673 14.1345 14.7577 14.154 14.7486 14.1727C14.694 14.2839 14.6542 14.3649 14.5612 14.4725C14.5254 14.514 14.4883 14.5588 14.4512 14.6036C14.3764 14.6939 14.3015 14.7844 14.2362 14.8489C14.128 14.9559 14.015 15.0721 14.1412 15.2871C14.2676 15.5025 14.7024 16.2057 15.3462 16.7753C16.0388 17.388 16.6405 17.647 16.9452 17.7782C17.0045 17.8037 17.0526 17.8244 17.0878 17.8419C17.3046 17.9495 17.4308 17.9315 17.5572 17.7877C17.6838 17.6443 18.099 17.1605 18.2432 16.9453C18.3874 16.7303 18.5322 16.7663 18.7308 16.8379C18.9288 16.9093 19.994 17.4295 20.2108 17.5369C20.2527 17.5576 20.2918 17.5764 20.3281 17.5938Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-ms {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 7.00175L15.6075 7.00258C10.9213 7.11507 7.10806 10.8941 7 15.6259C7.01269 18.1015 8.10897 20.4474 9.99999 22.0453V24.625L10.0134 24.7247C10.057 24.8834 10.2024 25 10.375 25C10.4453 25 10.5141 24.9802 10.5737 24.943L12.664 23.6374L13.1243 23.7997C14.0522 24.0997 15.0227 24.252 16 24.2501C20.864 24.346 24.8889 20.4892 25 15.6259C24.8889 10.7627 20.864 6.90585 16 7.00175ZM17.5455 15.1722L21.4455 13.0462C21.6093 12.9569 21.8139 13.0016 21.9255 13.1512C22.0377 13.2999 22.0236 13.5085 21.8925 13.6409L17.3925 18.1404C17.2539 18.279 17.032 18.2875 16.8833 18.1599L14.4548 16.0789L10.5548 18.2049C10.4092 18.2839 10.2291 18.258 10.1116 18.1413C9.96471 17.9953 9.96401 17.7579 10.11 17.611L14.61 13.1114C14.7486 12.9729 14.9705 12.9644 15.1193 13.0919L17.5455 15.1722Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-em {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.8217 9.273L15.9994 15.8639L8.17775 9.273C8.49745 9.10378 8.85903 9 9.24944 9H22.7493C23.1392 9 23.5007 9.10378 23.8217 9.273ZM24.7107 20.8754C24.8885 20.5655 24.9995 20.2132 24.9995 19.8332V11.1667C24.9995 10.7425 24.8678 10.35 24.6491 10.0158L19.0275 14.7521L24.7107 20.8754ZM18.1807 15.4652L16.3701 16.9918C16.2642 17.0807 16.1323 17.125 15.9999 17.125C15.8675 17.125 15.7356 17.0807 15.6297 16.9918L13.8186 15.4652L8.06349 21.6667C8.40845 21.8752 8.81273 22 9.24995 22H22.7498C23.187 22 23.5915 21.8752 23.9363 21.6667L18.1807 15.4652ZM7 11.1667C7 10.7425 7.13184 10.3499 7.35049 10.0157L12.9715 14.751L7.28895 20.8754C7.11047 20.5655 7 20.2132 7 19.8333V11.1667Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-phone {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M24.936 20.5765C24.8243 20.3898 24.5295 20.277 24.0871 20.0527C23.6438 19.8284 21.4659 18.7421 21.0611 18.5929C20.655 18.4434 20.359 18.3682 20.0641 18.8172C19.7693 19.2666 18.9204 20.277 18.6615 20.5765C18.4031 20.8768 18.1451 20.9144 17.7018 20.6896C17.2594 20.4654 15.8326 19.9909 14.1409 18.4622C12.8246 17.2727 11.9356 15.8042 11.6772 15.3543C11.4192 14.9053 11.6502 14.6627 11.8714 14.4392C12.071 14.2379 12.3147 13.915 12.5359 13.6532C12.758 13.3909 12.8316 13.2042 12.9784 12.9043C13.1268 12.6048 13.0528 12.3429 12.9416 12.1178C12.8312 11.8935 11.9446 9.68488 11.5758 8.78605C11.207 7.88806 10.8385 8.03759 10.5797 8.03759C10.3216 8.03759 10.026 8 9.73076 8C9.43552 8 8.95545 8.11235 8.54939 8.56135C8.14374 9.01076 7 10.0967 7 12.3049C7 14.5136 8.58619 16.6474 8.80824 16.9465C9.02946 17.2455 11.871 21.9251 16.3732 23.7223C20.8758 25.5187 20.8758 24.9194 21.6879 24.8442C22.4992 24.7694 24.3075 23.7587 24.678 22.7112C25.046 21.662 25.046 20.7636 24.936 20.5765Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-notification {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M25.1733 14.667V22.427L28 25.2537V26.667H4V25.2537L6.82667 22.427V14.667C6.82667 10.3337 9.82667 6.70699 13.88 5.74699V4.78699C13.88 3.61366 14.8267 2.66699 16 2.66699C17.1733 2.66699 18.12 3.61366 18.12 4.78699V5.74699C22.1733 6.70699 25.1733 10.3337 25.1733 14.667ZM16 30.667C14.5333 30.667 13.3467 29.4803 13.3467 28.0137H18.6533C18.6533 29.4803 17.4667 30.667 16 30.667Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-help {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M28 16C28 9.37 22.63 4 16 4C9.37 4 4 9.37 4 16C4 22.63 9.37 28 16 28C22.63 28 28 22.63 28 16ZM5.6875 16C5.6875 10.302 10.302 5.6875 16 5.6875C21.698 5.6875 26.3125 10.302 26.3125 16C26.3125 21.698 21.698 26.3125 16 26.3125C10.302 26.3125 5.6875 21.698 5.6875 16Z' fill='%238B8D8F'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.8557 22.6709C16.5769 22.9189 16.2539 23.0436 15.888 23.0436C15.5094 23.0436 15.1792 22.9212 14.8973 22.6759C14.615 22.431 14.4735 22.0882 14.4735 21.6477C14.4735 21.2569 14.6104 20.9281 14.8833 20.6615C15.1562 20.395 15.4909 20.2617 15.888 20.2617C16.2788 20.2617 16.6077 20.395 16.8747 20.6615C17.1412 20.9281 17.2749 21.2569 17.2749 21.6477C17.2744 22.0818 17.1348 22.4229 16.8557 22.6709Z' fill='%238B8D8F'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.331 14.0555C20.1169 14.4525 19.8626 14.7949 19.5676 15.0836C19.2735 15.3723 18.7445 15.8575 17.981 16.5396C17.7704 16.732 17.601 16.901 17.4741 17.0464C17.3472 17.1924 17.2523 17.3256 17.1904 17.4467C17.128 17.5677 17.0802 17.6888 17.0463 17.8098C17.0124 17.9304 16.9614 18.1432 16.8922 18.4472C16.7748 19.0923 16.4057 19.4148 15.7854 19.4148C15.4629 19.4148 15.1918 19.3096 14.9709 19.0986C14.7509 18.8876 14.6411 18.5746 14.6411 18.159C14.6411 17.6382 14.722 17.1868 14.8832 16.8052C15.0436 16.4234 15.2582 16.0887 15.5248 15.8001C15.7918 15.5114 16.1513 15.1689 16.6045 14.7719C17.0015 14.4245 17.2884 14.1625 17.4651 13.9858C17.6421 13.8088 17.7908 13.6118 17.9114 13.395C18.0329 13.1777 18.0926 12.9423 18.0926 12.688C18.0926 12.1916 17.9087 11.7733 17.5392 11.4322C17.1701 11.0911 16.6939 10.9204 16.1107 10.9204C15.4281 10.9204 14.9258 11.0925 14.6032 11.4367C14.2806 11.7809 14.0083 12.2878 13.7846 12.9577C13.5732 13.6588 13.1729 14.0093 12.5843 14.0093C12.2369 14.0093 11.9437 13.8869 11.7047 13.642C11.4662 13.3972 11.3469 13.132 11.3469 12.8466C11.3469 12.2575 11.5362 11.6603 11.9144 11.0554C12.2929 10.4505 12.845 9.94953 13.5709 9.5529C14.2964 9.15582 15.1435 8.95703 16.1107 8.95703C17.0102 8.95703 17.8039 9.12325 18.4924 9.45531C19.1809 9.78687 19.713 10.2382 20.0884 10.8092C20.4634 11.3797 20.6513 11.9999 20.6513 12.6699C20.6522 13.1962 20.5452 13.6584 20.331 14.0555Z' fill='%238B8D8F'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-info {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M28 16C28 9.37 22.63 4 16 4C9.37 4 4 9.37 4 16C4 22.63 9.37 28 16 28C22.63 28 28 22.63 28 16ZM5.6875 16C5.6875 10.302 10.302 5.6875 16 5.6875C21.698 5.6875 26.3125 10.302 26.3125 16C26.3125 21.698 21.698 26.3125 16 26.3125C10.302 26.3125 5.6875 21.698 5.6875 16Z' fill='%231890FF'/%3e%3crect width='2.40002' height='2.40002' rx='1.09091' transform='matrix(1 0 0 -1 15 12.4004)' fill='%231890FF'/%3e%3crect width='2.40002' height='7.20001' rx='1.09091' transform='matrix(1 0 0 -1 15 22)' fill='%231890FF'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-success {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 4C22.63 4 28 9.37 28 16C28 22.63 22.63 28 16 28C9.37 28 4 22.63 4 16C4 9.37 9.37 4 16 4ZM16 5.6875C10.302 5.6875 5.6875 10.302 5.6875 16C5.6875 21.698 10.302 26.3125 16 26.3125C21.698 26.3125 26.3125 21.698 26.3125 16C26.3125 10.302 21.698 5.6875 16 5.6875ZM9.82867 16.8984L13.4324 20.5298C13.7677 20.8676 14.314 20.8676 14.6492 20.5298L22.1718 12.9494C22.5515 12.5668 22.5526 11.9498 22.1743 11.5658C21.7898 11.1757 21.1609 11.1746 20.7751 11.5634L14.0408 18.3493L11.2205 15.5152C10.8366 15.1295 10.212 15.1299 9.82867 15.5162C9.44906 15.8987 9.44906 16.5158 9.82867 16.8984Z' fill='%233F9C35'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-error {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M28 16C28 9.37261 22.6274 4 16 4C9.37261 4 4 9.37261 4 16C4 22.6274 9.37261 28 16 28C22.6274 28 28 22.6274 28 16ZM5.7 16C5.7 10.3115 10.3115 5.7 16 5.7C21.6885 5.7 26.3 10.3115 26.3 16C26.3 21.6885 21.6885 26.3 16 26.3C10.3115 26.3 5.7 21.6885 5.7 16Z' fill='%23F14244'/%3e%3cpath d='M20.2779 13.4236C20.7052 12.9978 20.7058 12.306 20.2792 11.8795L20.1208 11.721C19.6942 11.2944 19.0024 11.2951 18.5766 11.7224L16 14.3082L13.4234 11.7224C12.9976 11.2951 12.3058 11.2944 11.8792 11.721L11.7208 11.8795C11.2942 12.306 11.2948 12.9978 11.7222 13.4236L14.308 16.0002L11.7221 18.5769C11.2948 19.0027 11.2942 19.6944 11.7208 20.121L11.8792 20.2795C12.3058 20.7061 12.9976 20.7054 13.4234 20.2781L16 17.6922L18.5766 20.2781C19.0024 20.7054 19.6942 20.7061 20.1208 20.2795L20.2793 20.121C20.7058 19.6944 20.7052 19.0027 20.2779 18.5769L17.692 16.0002L20.2779 13.4236Z' fill='%23F14244'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-warning {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.55113 25.2785C5.18363 26.3305 6.30059 27 7.51176 27H24.4816C25.7062 27 26.8097 26.3305 27.4422 25.2785C28.1554 24.1034 28.1823 22.5732 27.5364 21.3572L19.7311 7.39102C18.8429 6.06571 17.6856 5 16.0034 5C14.3212 5 13.1639 6.06571 12.2757 7.39102L4.43001 21.4255C3.83788 22.6688 3.83788 24.0898 4.55113 25.2785ZM17.2818 21.5075C17.2818 20.7833 16.7166 20.1958 16.0034 20.1958C15.2901 20.1958 14.7115 20.7833 14.7115 21.5075C14.7115 22.2316 15.2901 22.8055 16.0034 22.8055C16.7166 22.8055 17.2818 22.2316 17.2818 21.5075ZM16.0034 18.8979C15.5324 18.8979 15.1959 18.5016 15.1421 18.0234L14.7115 14.1021C14.6442 13.4327 15.344 12.8042 16.0034 12.8042C16.6628 12.8042 17.3626 13.4327 17.2818 14.1021L16.8512 18.0234C16.8108 18.488 16.4879 18.8979 16.0034 18.8979ZM24.4816 25.2648H7.51176C6.87926 25.2648 6.34096 24.9096 6.01798 24.363C5.61426 23.7072 5.62772 22.9284 5.9507 22.2316L13.6887 8.36109C14.2405 7.54131 14.9403 6.7352 16.0034 6.7352C17.0665 6.7352 17.7528 7.54131 18.3046 8.36109L26.0561 22.2316C26.3656 22.9148 26.3791 23.7072 25.9888 24.363C25.6524 24.9096 25.1141 25.2648 24.4816 25.2648Z' fill='%23FAAD14'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-close {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M17.3725 16L26 24.6275L24.6275 26L16 17.3725L7.37255 26L6 24.6275L14.6275 16L6 7.37255L7.37255 6L16 14.6275L24.6275 6L26 7.37255L17.3725 16Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-delete {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.422 8.47368H9.57803C9.25945 8.47368 9.0012 8.21448 9.0012 7.89473C9.0012 7.57499 9.25945 7.31579 9.57803 7.31579H13.039V6.73684C13.039 5.77761 13.8138 5 14.7695 5H18.2305C19.1862 5 19.961 5.77761 19.961 6.73684V7.31579H23.422C23.7405 7.31579 23.9988 7.57499 23.9988 7.89473C23.9988 8.21448 23.7405 8.47368 23.422 8.47368ZM14.7695 6.15789C14.4509 6.15789 14.1927 6.4171 14.1927 6.73684V7.31579H18.8073V6.73684C18.8073 6.4171 18.5491 6.15789 18.2305 6.15789H14.7695ZM9.57803 9.63157H23.422C23.5819 9.63209 23.7343 9.69918 23.8431 9.81684C23.9527 9.93365 24.0091 10.0909 23.9988 10.251L23.0067 24.3137C22.8976 25.8305 21.6377 27.0039 20.1225 27H12.889C11.3739 27.0039 10.114 25.8305 10.0049 24.3137L9.0012 10.251C8.99091 10.0909 9.04731 9.93365 9.15694 9.81684C9.26566 9.69918 9.41815 9.63209 9.57803 9.63157ZM20.1167 25.8421C21.0271 25.8443 21.7835 25.1383 21.8472 24.2268L22.8048 10.7895H10.1952L11.147 24.2268C11.2107 25.1383 11.9672 25.8443 12.8775 25.8421H20.1167ZM14.1927 23.5263C14.1927 23.846 13.9344 24.1052 13.6158 24.1052C13.2973 24.1052 13.039 23.846 13.039 23.5263V14.2632C13.039 13.9434 13.2973 13.6842 13.6158 13.6842C13.9344 13.6842 14.1927 13.9434 14.1927 14.2632V23.5263ZM15.9232 14.2632V23.5263C15.9232 23.846 16.1814 24.1052 16.5 24.1052C16.8186 24.1052 17.0768 23.846 17.0768 23.5263V14.2632C17.0768 13.9434 16.8186 13.6842 16.5 13.6842C16.1814 13.6842 15.9232 13.9434 15.9232 14.2632ZM19.3842 24.1052C19.7027 24.1052 19.961 23.846 19.961 23.5263V14.2632C19.961 13.9434 19.7027 13.6842 19.3842 13.6842C19.0656 13.6842 18.8073 13.9434 18.8073 14.2632V23.5263C18.8073 23.846 19.0656 24.1052 19.3842 24.1052Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-edit {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M25.9447 6.05579C25.61 5.72106 25.2126 5.45554 24.7753 5.27439C24.338 5.09324 23.8693 5 23.396 5C22.9226 5 22.4539 5.09324 22.0166 5.27439C21.5793 5.45554 21.182 5.72106 20.8473 6.05579L7.29305 19.61C6.88973 20.0133 6.59641 20.5138 6.44333 21.0638L5.0253 26.1282C4.99254 26.2456 4.99158 26.3696 5.02251 26.4875C5.05345 26.6054 5.11517 26.7129 5.20136 26.7991C5.28754 26.8853 5.39509 26.947 5.51298 26.9779C5.63087 27.0089 5.75487 27.0079 5.87227 26.9752L10.9357 25.5571C11.4857 25.4033 11.9867 25.1103 12.3904 24.7065L25.9447 11.1523C26.6204 10.4764 27 9.55976 27 8.60402C27 7.64829 26.6204 6.73168 25.9447 6.05579ZM21.8198 7.02742C22.238 6.6094 22.805 6.3746 23.3963 6.37469C23.9876 6.37478 24.5546 6.60973 24.9726 7.02788C25.3906 7.44602 25.6254 8.01309 25.6253 8.60435C25.6252 9.1956 25.3903 9.76261 24.9721 10.1806L23.5605 11.5913L20.4082 8.43811L21.8198 7.02742ZM19.4366 9.41066L22.5898 12.5639L11.4179 23.7349C11.1813 23.9715 10.8877 24.1432 10.5654 24.2335L6.67799 25.3216L7.76603 21.435C7.85645 21.1128 8.02815 20.8193 8.26468 20.5826L19.4366 9.41066Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-search {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.8578 19.9535L26.8125 25.9081C27.0625 26.1579 27.0625 26.563 26.8125 26.8127C26.6879 26.9376 26.5241 27 26.3606 27C26.1968 27 26.0331 26.9376 25.9082 26.8127L19.953 20.8578C18.3665 22.236 16.2979 23.073 14.0364 23.073C9.05349 23.073 5 19.0193 5 14.0367C5 9.0542 9.05349 5 14.0364 5C19.0192 5 23.073 9.05394 23.073 14.0365C23.073 16.2982 22.236 18.3668 20.8578 19.9535ZM14.0364 6.27941C9.75923 6.27941 6.27943 9.75916 6.27943 14.0365C6.27943 18.3136 9.75923 21.7933 14.0364 21.7933C18.3138 21.7933 21.7936 18.3136 21.7936 14.0365C21.7936 9.75941 18.3138 6.27941 14.0364 6.27941Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-wishlist {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7 27V7.29226C7 6.63935 7.21864 6.09432 7.65592 5.65716C8.09319 5.22 8.63719 5.00095 9.28792 5H21.7121C22.3637 5 22.9078 5.21905 23.3441 5.65716C23.7804 6.09527 23.9991 6.6403 24 7.29226V27L15.5 23.3423L7 27ZM8.41667 24.8L15.5 21.7484L22.5833 24.8V7.29226C22.5833 7.07462 22.4927 6.87449 22.3113 6.69187C22.13 6.50925 21.9302 6.41841 21.7121 6.41935H9.28792C9.07069 6.41935 8.87094 6.51019 8.68867 6.69187C8.50639 6.87355 8.41572 7.07368 8.41667 7.29226V24.8Z' fill='%23222222'/%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;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7 27V7.29226C7 6.63935 7.21864 6.09432 7.65592 5.65716C8.09319 5.22 8.63719 5.00095 9.28792 5H21.7121C22.3637 5 22.9078 5.21905 23.3441 5.65716C23.7804 6.09527 23.9991 6.6403 24 7.29226V27L15.5 23.3423L7 27Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-cart:not(.active){background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.8097 25.6969L20.9217 25.3542H12.7532L12.8653 25.6969C12.9601 25.9869 13.0058 26.2629 13.0058 26.526C13.0058 26.8724 12.9423 27.1933 12.8169 27.4916C12.6896 27.7945 12.5167 28.0562 12.2983 28.2787C12.08 28.5013 11.8234 28.6776 11.5262 28.8074C11.2336 28.9353 10.9188 29 10.5791 29C10.2394 29 9.92458 28.9353 9.63202 28.8074C9.33485 28.6776 9.07822 28.5013 8.85988 28.2787C8.64154 28.0562 8.46865 27.7945 8.34129 27.4916C8.2159 27.1933 8.1524 26.8724 8.1524 26.526C8.1524 26.0524 8.27416 25.6155 8.51946 25.2102C8.76295 24.8079 9.09731 24.5047 9.5284 24.2979L9.73359 24.1994L3.56905 5.30208H1V4H4.48566L5.67307 7.64583H29L25.007 19.8854H9.68033L11.0374 24.0521H23.0958C23.4355 24.0521 23.7503 24.1168 24.0429 24.2446C24.3401 24.3745 24.5967 24.5507 24.815 24.7733C25.0334 24.9959 25.2063 25.2576 25.3336 25.5605C25.459 25.8588 25.5225 26.1797 25.5225 26.526C25.5225 26.8724 25.459 27.1933 25.3336 27.4916C25.2063 27.7945 25.0334 28.0562 24.815 28.2787C24.5967 28.5013 24.3401 28.6776 24.0429 28.8074C23.7503 28.9353 23.4355 29 23.0958 29C22.7561 29 22.4413 28.9353 22.1487 28.8074C21.8515 28.6776 21.5949 28.5013 21.3766 28.2787C21.1582 28.0562 20.9853 27.7945 20.858 27.4916C20.7326 27.1933 20.6691 26.8724 20.6691 26.526C20.6691 26.2629 20.7148 25.9869 20.8097 25.6969ZM27.2218 8.94792H6.10386L9.2494 18.5833H24.0763L27.2218 8.94792ZM11.7286 26.526C11.7286 26.2076 11.6114 25.9284 11.3884 25.701C11.1653 25.4736 10.8915 25.3542 10.5791 25.3542C10.2667 25.3542 9.99291 25.4736 9.76985 25.701C9.54679 25.9284 9.42961 26.2076 9.42961 26.526C9.42961 26.8445 9.54679 27.1236 9.76985 27.3511C9.99291 27.5785 10.2667 27.6979 10.5791 27.6979C10.8915 27.6979 11.1653 27.5785 11.3884 27.3511C11.6114 27.1236 11.7286 26.8445 11.7286 26.526ZM23.0958 27.6979C23.4082 27.6979 23.682 27.5785 23.9051 27.3511C24.1281 27.1236 24.2453 26.8445 24.2453 26.526C24.2453 26.2076 24.1281 25.9284 23.9051 25.701C23.682 25.4736 23.4082 25.3542 23.0958 25.3542C22.7834 25.3542 22.5096 25.4736 22.2866 25.701C22.0635 25.9284 21.9463 26.2076 21.9463 26.526C21.9463 26.8445 22.0635 27.1236 22.2866 27.3511C22.5096 27.5785 22.7834 27.6979 23.0958 27.6979Z' fill='%23222222'/%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;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.8097 25.6969L20.9217 25.3542H12.7532L12.8653 25.6969C12.9601 25.9869 13.0058 26.2629 13.0058 26.526C13.0058 26.8724 12.9423 27.1933 12.8169 27.4916C12.6896 27.7945 12.5167 28.0562 12.2983 28.2787C12.08 28.5013 11.8234 28.6776 11.5262 28.8074C11.2336 28.9353 10.9188 29 10.5791 29C10.2394 29 9.92458 28.9353 9.63202 28.8074C9.33485 28.6776 9.07822 28.5013 8.85988 28.2787C8.64154 28.0562 8.46865 27.7945 8.34129 27.4916C8.2159 27.1933 8.1524 26.8724 8.1524 26.526C8.1524 26.0524 8.27416 25.6155 8.51946 25.2102C8.76295 24.8079 9.09731 24.5047 9.5284 24.2979L9.73359 24.1994L3.56905 5.30208H1V4H4.48566L5.67307 7.64583H29L25.007 19.8854H9.68033L11.0374 24.0521H23.0958C23.4355 24.0521 23.7503 24.1168 24.0429 24.2446C24.3401 24.3745 24.5967 24.5507 24.815 24.7733C25.0334 24.9959 25.2063 25.2576 25.3336 25.5605C25.459 25.8588 25.5225 26.1797 25.5225 26.526C25.5225 26.8724 25.459 27.1933 25.3336 27.4916C25.2063 27.7945 25.0334 28.0562 24.815 28.2787C24.5967 28.5013 24.3401 28.6776 24.0429 28.8074C23.7503 28.9353 23.4355 29 23.0958 29C22.7561 29 22.4413 28.9353 22.1487 28.8074C21.8515 28.6776 21.5949 28.5013 21.3766 28.2787C21.1582 28.0562 20.9853 27.7945 20.858 27.4916C20.7326 27.1933 20.6691 26.8724 20.6691 26.526C20.6691 26.2629 20.7148 25.9869 20.8097 25.6969ZM11.3884 25.701C11.6114 25.9284 11.7286 26.2076 11.7286 26.526C11.7286 26.8445 11.6114 27.1236 11.3884 27.3511C11.1653 27.5785 10.8915 27.6979 10.5791 27.6979C10.2667 27.6979 9.99291 27.5785 9.76985 27.3511C9.54679 27.1236 9.42961 26.8445 9.42961 26.526C9.42961 26.2076 9.54679 25.9284 9.76985 25.701C9.99291 25.4736 10.2667 25.3542 10.5791 25.3542C10.8915 25.3542 11.1653 25.4736 11.3884 25.701ZM23.0958 27.6979C23.4082 27.6979 23.682 27.5785 23.9051 27.3511C24.1281 27.1236 24.2453 26.8445 24.2453 26.526C24.2453 26.2076 24.1281 25.9284 23.9051 25.701C23.682 25.4736 23.4082 25.3542 23.0958 25.3542C22.7834 25.3542 22.5096 25.4736 22.2866 25.701C22.0635 25.9284 21.9463 26.2076 21.9463 26.526C21.9463 26.8445 22.0635 27.1236 22.2866 27.3511C22.5096 27.5785 22.7834 27.6979 23.0958 27.6979Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-cart-add {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.9217 25.3542L20.8097 25.6969C20.7148 25.9869 20.6691 26.2629 20.6691 26.526C20.6691 26.8724 20.7326 27.1933 20.858 27.4916C20.9853 27.7945 21.1582 28.0562 21.3766 28.2787C21.5949 28.5013 21.8515 28.6776 22.1487 28.8074C22.4413 28.9353 22.7561 29 23.0958 29C23.4355 29 23.7503 28.9353 24.0429 28.8074C24.3401 28.6776 24.5967 28.5013 24.815 28.2787C25.0334 28.0562 25.2063 27.7945 25.3336 27.4916C25.459 27.1933 25.5225 26.8724 25.5225 26.526C25.5225 26.1797 25.459 25.8588 25.3336 25.5605C25.2063 25.2576 25.0334 24.9959 24.815 24.7733C24.5967 24.5507 24.3401 24.3745 24.0429 24.2446C23.7503 24.1168 23.4355 24.0521 23.0958 24.0521H11.0374L9.68033 19.8854H25.007L29 7.64583H5.67307L4.48566 4H1V5.30208H3.56905L9.73359 24.1994L9.5284 24.2979C9.09731 24.5047 8.76295 24.8079 8.51946 25.2102C8.27416 25.6155 8.1524 26.0524 8.1524 26.526C8.1524 26.8724 8.2159 27.1933 8.34129 27.4916C8.46865 27.7945 8.64154 28.0562 8.85988 28.2787C9.07822 28.5013 9.33485 28.6776 9.63202 28.8074C9.92458 28.9353 10.2394 29 10.5791 29C10.9188 29 11.2336 28.9353 11.5262 28.8074C11.8234 28.6776 12.08 28.5013 12.2983 28.2787C12.5167 28.0562 12.6896 27.7945 12.8169 27.4916C12.9423 27.1933 13.0058 26.8724 13.0058 26.526C13.0058 26.2629 12.9601 25.9869 12.8653 25.6969L12.7532 25.3542H20.9217ZM11.7286 26.526C11.7286 26.2076 11.6114 25.9284 11.3884 25.701C11.1653 25.4736 10.8915 25.3542 10.5791 25.3542C10.2667 25.3542 9.99291 25.4736 9.76985 25.701C9.54679 25.9284 9.42961 26.2076 9.42961 26.526C9.42961 26.8445 9.54679 27.1236 9.76985 27.3511C9.99291 27.5785 10.2667 27.6979 10.5791 27.6979C10.8915 27.6979 11.1653 27.5785 11.3884 27.3511C11.6114 27.1236 11.7286 26.8445 11.7286 26.526ZM23.9051 27.3511C23.682 27.5785 23.4082 27.6979 23.0958 27.6979C22.7834 27.6979 22.5096 27.5785 22.2866 27.3511C22.0635 27.1236 21.9463 26.8445 21.9463 26.526C21.9463 26.2076 22.0635 25.9284 22.2866 25.701C22.5096 25.4736 22.7834 25.3542 23.0958 25.3542C23.4082 25.3542 23.682 25.4736 23.9051 25.701C24.1281 25.9284 24.2453 26.2076 24.2453 26.526C24.2453 26.8445 24.1281 27.1236 23.9051 27.3511ZM13.4475 12.8759C13.3125 12.6959 13.1768 12.5151 13.0404 12.3328C12.8626 12.4755 12.6914 12.62 12.5202 12.7646C12.349 12.9092 12.1778 13.0538 12 13.1964C12.4631 13.8337 12.9346 14.466 13.4061 15.0982C13.8776 15.7305 14.3491 16.3627 14.8123 17L22 11.1058C21.9324 11.0196 21.8658 10.9352 21.8 10.8519C21.5734 10.5651 21.3569 10.2909 21.1446 10C19.1113 11.6516 17.0711 13.3309 15.0308 15.0103L15.0307 15.0104C14.5095 14.2919 13.9839 13.5911 13.4475 12.8759Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-comparator:not(.active) {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.5095 15.1742C12.281 14.9419 11.9105 14.9419 11.682 15.1742C11.4535 15.4064 11.4535 15.7828 11.682 16.015L16.0023 20.4054H3.58511C3.26196 20.4054 3 20.6716 3 21C3 21.3284 3.26196 21.5946 3.58511 21.5946H16.0023L11.682 25.985C11.4535 26.2172 11.4535 26.5936 11.682 26.8258C11.9105 27.0581 12.281 27.0581 12.5095 26.8258L17.8286 21.4204C18.0571 21.1882 18.0571 20.8118 17.8286 20.5796L12.5095 15.1742Z' fill='%23222222'/%3e%3cpath d='M19.4905 16.8258C19.719 17.0581 20.0895 17.0581 20.318 16.8258C20.5465 16.5936 20.5465 16.2172 20.318 15.985L15.9977 11.5946H28.4149C28.738 11.5946 29 11.3284 29 11C29 10.6716 28.738 10.4054 28.4149 10.4054H15.9977L20.318 6.01503C20.5465 5.78283 20.5465 5.40636 20.318 5.17415C20.0895 4.94195 19.719 4.94195 19.4905 5.17415L14.1714 10.5796C13.9429 10.8118 13.9429 11.1882 14.1714 11.4204L19.4905 16.8258Z' fill='%23222222'/%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;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.5095 15.1742C12.3421 15.0041 12.0905 14.9532 11.8718 15.0453C11.6532 15.1373 11.5106 15.3541 11.5106 15.5946V20.4054H3.58511C3.26196 20.4054 3 20.6716 3 21C3 21.3284 3.26196 21.5946 3.58511 21.5946H11.5106V26.4054C11.5106 26.6459 11.6532 26.8627 11.8718 26.9547C12.0905 27.0468 12.3421 26.9959 12.5095 26.8258L17.8286 21.4204C18.0571 21.1882 18.0571 20.8118 17.8286 20.5796L12.5095 15.1742Z' fill='%23222222'/%3e%3cpath d='M19.4904 16.8258C19.6577 16.9959 19.9094 17.0468 20.128 16.9547C20.3466 16.8627 20.4892 16.6459 20.4892 16.4054V11.5945H28.4149C28.738 11.5945 29 11.3283 29 10.9999C29 10.6715 28.738 10.4053 28.4149 10.4053H20.4892V5.59461C20.4892 5.35412 20.3466 5.13731 20.128 5.04528C19.9094 4.95325 19.6577 5.00412 19.4904 5.17417L14.1714 10.5796C13.9429 10.8118 13.9429 11.1882 14.1714 11.4204L19.4904 16.8258Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-location {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 27.5166C13.0775 24.8357 10.8934 22.3751 9.41837 20.1359C7.81916 17.7083 7.1 15.6124 7.1 13.8214C7.1 11.5148 8.03277 9.2986 9.69971 7.66142C11.3673 6.02359 13.6332 5.1 16 5.1C18.3668 5.1 20.6327 6.02359 22.3003 7.66142C23.9672 9.2986 24.9 11.5148 24.9 13.8214C24.9 15.6124 24.1808 17.7083 22.5816 20.1359C21.1066 22.3751 18.9225 24.8357 16 27.5166ZM6 13.8214C6 17.9875 9.33273 23.0482 16 29C22.6673 23.0482 26 17.9875 26 13.8214C26 11.2166 24.9464 8.7185 23.0711 6.87663C21.1957 5.03475 18.6522 4 16 4C13.3478 4 10.8043 5.03475 8.92893 6.87663C7.05357 8.7185 6 11.2166 6 13.8214Z' fill='%23222222'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.9 13.907C18.9 12.3246 17.6178 11.1 16 11.1C14.3822 11.1 13.1 12.3246 13.1 13.907C13.1 15.709 14.4166 16.9 16 16.9C17.5834 16.9 18.9 15.709 18.9 13.907ZM20 13.907C20 11.6744 18.1818 10 16 10C13.8182 10 12 11.6744 12 13.907C12 16.3256 13.8182 18 16 18C18.1818 18 20 16.3256 20 13.907Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-tracking {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 27.5166C13.0775 24.8357 10.8934 22.3751 9.41837 20.1359C7.81916 17.7083 7.1 15.6124 7.1 13.8214C7.1 11.5148 8.03277 9.2986 9.69971 7.66142C11.3673 6.02359 13.6332 5.1 16 5.1C18.3668 5.1 20.6327 6.02359 22.3003 7.66142C23.9672 9.2986 24.9 11.5148 24.9 13.8214C24.9 15.6124 24.1808 17.7083 22.5816 20.1359C21.1066 22.3751 18.9225 24.8357 16 27.5166ZM6 13.8214C6 17.9875 9.33273 23.0482 16 29C22.6673 23.0482 26 17.9875 26 13.8214C26 11.2166 24.9464 8.7185 23.0711 6.87663C21.1957 5.03475 18.6522 4 16 4C13.3478 4 10.8043 5.03475 8.92893 6.87663C7.05357 8.7185 6 11.2166 6 13.8214Z' fill='%23222222'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 9C20.5523 9 21 9.44772 21 10V18C21 18.5523 20.5523 19 20 19H12C11.4477 19 11 18.5523 11 18V10C11 9.44772 11.4477 9 12 9H20ZM12.1 17.9V10.1H14V13C14 13.5523 14.4477 14 15 14H17C17.5523 14 18 13.5523 18 13V10.1H19.9V17.9H12.1ZM16.9 10.1H15.1V12.9H16.9V10.1Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-user:not(.active){background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.6875 9.1C10.6875 6.29045 13.0734 4 16 4C18.9266 4 21.3125 6.29045 21.3125 9.1C21.3125 11.9095 18.9266 14.2 16 14.2C13.0734 14.2 10.6875 11.9095 10.6875 9.1ZM20.0625 9.1C20.0625 6.93898 18.2511 5.2 16 5.2C13.7489 5.2 11.9375 6.93898 11.9375 9.1C11.9375 11.261 13.7489 13 16 13C18.2511 13 20.0625 11.261 20.0625 9.1ZM16 15.4C13.2882 15.4 10.8329 16.1033 9.01758 17.275C7.20223 18.4467 6 20.1279 6 22V27.4C6.00003 27.7142 6.29776 28 6.625 28H25.375C25.7022 28 26 27.7142 26 27.4V22C26 20.1279 24.7978 18.4467 22.9824 17.275C21.1671 16.1033 18.7118 15.4 16 15.4ZM22.2891 18.2781C20.7153 17.2624 18.482 16.6 16 16.6C13.518 16.6 11.2847 17.2624 9.71094 18.2781C8.13722 19.2939 7.25 20.6219 7.25 22V26.8H24.75V22C24.75 20.6219 23.8628 19.2939 22.2891 18.2781Z' fill='%23222222'/%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;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.6875 9.1C10.6875 6.29045 13.0734 4 16 4C18.9266 4 21.3125 6.29045 21.3125 9.1C21.3125 11.9095 18.9266 14.2 16 14.2C13.0734 14.2 10.6875 11.9095 10.6875 9.1ZM9.01758 17.275C10.8329 16.1033 13.2882 15.4 16 15.4C18.7118 15.4 21.1671 16.1033 22.9824 17.275C24.7978 18.4467 26 20.1279 26 22V27.4C26 27.7142 25.7022 28 25.375 28H6.625C6.29776 28 6.00003 27.7142 6 27.4V22C6 20.1279 7.20223 18.4467 9.01758 17.275Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-logout {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.0548 23.3333C18.0548 22.9651 18.3408 22.6667 18.6936 22.6667C19.0465 22.6667 19.3325 22.9651 19.3325 23.3333V27.3333C19.3325 27.7015 19.0465 28 18.6936 28H4.63885C4.28602 28 4 27.7015 4 27.3333V4.66667C4 4.29848 4.28602 4 4.63885 4H18.6936C19.0465 4 19.3325 4.29848 19.3325 4.66667V8.66667C19.3325 9.03486 19.0465 9.33333 18.6936 9.33333C18.3408 9.33333 18.0548 9.03486 18.0548 8.66667V5.33333H5.27771V26.6667H18.0548V23.3333ZM23.9356 12.1533L27.7688 15.4867C27.9152 15.6133 28 15.8015 28 16C28 16.1985 27.9152 16.3867 27.7688 16.5133L23.9356 19.8467C23.8207 19.9461 23.676 20.0003 23.5268 20C23.3368 20.0003 23.1565 19.9124 23.0349 19.76C22.9262 19.6239 22.8739 19.4484 22.8895 19.272C22.9051 19.0957 22.9873 18.933 23.1179 18.82L25.5967 16.6667H14.5828C14.23 16.6667 13.944 16.3682 13.944 16C13.944 15.6318 14.23 15.3333 14.5828 15.3333H25.5967L23.1179 13.18C22.9422 13.0276 22.8577 12.7889 22.8963 12.5538C22.935 12.3188 23.0908 12.1231 23.3052 12.0405C23.5196 11.9579 23.7599 12.0009 23.9356 12.1533Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowup {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M25.5747 22L16 12.7531L6.42532 22L5 20.6235L16 10L27 20.6235L25.5747 22Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowdown {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.42532 10L16 19.2469L25.5747 10L27 11.3765L16 22L5 11.3765L6.42532 10Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowleft {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M22 6.42532L12.7531 16L22 25.5747L20.6235 27L10 16L20.6235 5L22 6.42532Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowright {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 25.5747L19.2469 16L10 6.42532L11.3765 5L22 16L11.3765 27L10 25.5747Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-up {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 22H27L16 10L5 22Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-down {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M27 10L5 10L16 22L27 10Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-left {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M22 27V5L10 16L22 27Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-right {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 5L10 27L22 16L10 5Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-scroll-up {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect opacity='0.75' width='32' height='32' rx='16' fill='white'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 11.4317L21.3511 17L23 15.2842L16 8L9 15.2842L10.6489 17L16 11.4317ZM16 18.4317L21.3511 24L23 22.2842L16 15L9 22.2842L10.6489 24L16 18.4317Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-scroll-down {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect opacity='0.75' width='32' height='32' rx='16' fill='white'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 20.5683L21.3511 15L23 16.7158L16 24L9 16.7158L10.6489 15L16 20.5683ZM16 13.5683L21.3511 8L23 9.71583L16 17L9 9.71583L10.6489 8L16 13.5683Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-equal {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 8H28V12H4V8ZM28 24H4V20H28V24Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-plus {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.2632 5V14.2632H5V17.7368H14.2632V27H17.7368V17.7368H27V14.2632H17.7368V5L14.2632 5Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-minus {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5 14.2637V17.7374H27V14.2637L5 14.2637Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-chat {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M28.7407 13.4339C28.055 10.0297 26.0859 7.09676 23.1949 5.17533C20.433 3.33952 17.1131 2.63225 13.8409 3.18134L13.3376 3.27492C6.51861 4.69936 1.993 11.3086 3.19461 18.2211C3.29211 18.7865 3.42964 19.3508 3.59971 19.8923L3.73101 20.3595C4.28829 22.5487 4.07009 24.8566 3.10361 26.9107C2.92272 27.292 2.98229 27.7447 3.25418 28.0685C3.52607 28.3924 3.95712 28.5256 4.36872 28.4162L9.22338 27.0905L9.74274 27.3925C11.6664 28.453 13.7979 29 15.9703 29C16.8314 29 17.699 28.9144 18.5634 28.7401C21.9677 28.0545 24.9009 26.0854 26.8224 23.1946C28.7439 20.3039 29.4252 16.838 28.7407 13.4339ZM10.5809 24.873L9.62249 24.2863L6.3949 25.1677L6.49917 24.5674C6.73739 22.9614 6.65691 21.3164 6.25176 19.7224L5.95402 18.6773C5.87402 18.3772 5.80816 18.0772 5.75679 17.7793C4.79987 12.2744 8.38393 7.00856 13.7939 5.83605L14.2712 5.74549C16.8928 5.30558 19.5441 5.87068 21.7557 7.34066C24.072 8.88016 25.6423 11.2187 26.1918 13.9472C26.7403 16.6747 26.1971 19.4385 24.6571 21.7553C23.1175 24.0715 20.7788 25.6417 18.0501 26.1912C17.3593 26.3306 16.6641 26.4 15.9703 26.4C14.0721 26.4 12.2217 25.8775 10.5809 24.873Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-helpdesk {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M25.4545 12.872C24.7703 8.35193 20.7445 5 16 5C11.2555 5 7.22971 8.35193 6.54545 12.872H8.3C8.93384 9.24882 12.1924 6.59584 16.0087 6.59584C19.825 6.59584 23.0835 9.24882 23.7174 12.872H25.4545ZM8.18277 13.832C8.66549 13.832 9.05682 14.2093 9.05682 14.6747V21.416C9.05682 21.8814 8.66549 22.2587 8.18277 22.2587H7.74574V24.3653C7.74574 25.9942 9.11538 27.3147 10.8049 27.3147H12.6317C12.8164 26.8109 13.3098 26.4735 13.8641 26.472H18.2344C18.9585 26.472 19.5455 27.0379 19.5455 27.736C19.5455 28.4341 18.9585 29 18.2344 29H13.8641C13.3098 28.9985 12.8164 28.6611 12.6317 28.1573H10.8049C8.63266 28.1573 6.87169 26.4596 6.87169 24.3653V22.2587H6.43466C5.95193 22.2587 5.56061 21.8814 5.56061 21.416V14.6747C5.56061 14.2093 5.95193 13.832 6.43466 13.832H8.18277ZM24.6667 13.832C25.6457 13.832 26.4394 14.6135 26.4394 15.5775V20.5345C26.4394 21.4985 25.6457 22.28 24.6667 22.28C23.6876 22.28 22.8939 21.4985 22.8939 20.5345V15.5775C22.8939 14.6135 23.6876 13.832 24.6667 13.832ZM4.77273 20.936V14.984H4.32955C3.59526 14.984 3 15.555 3 16.2594V19.6606C3 20.365 3.59526 20.936 4.32955 20.936H4.77273ZM27.6705 14.984C28.4047 14.984 29 15.555 29 16.2594V19.6606C29 20.365 28.4047 20.936 27.6705 20.936H27.2273V14.984H27.6705Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-sendmessage {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4.00463 6L4 9.44226C3.99613 12.3264 6.25018 14.7612 9.25589 15.1196L16.6396 16L9.25589 16.8804C6.25018 17.2388 3.99613 19.6736 4 22.5577L4.00463 26L28 16L4.00463 6Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-play {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath opacity='0.75' d='M16 0C7.16 0 0 7.16 0 16C0 24.84 7.16 32 16 32C24.84 32 32 24.84 32 16C32 7.16 24.84 0 16 0Z' fill='white'/%3e%3cpath d='M12.3199 23.5198L22.3999 15.6798L12.3199 7.83984V23.5198Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-pause {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath opacity='0.75' d='M16 0C7.16 0 0 7.16 0 16C0 24.84 7.16 32 16 32C24.84 32 32 24.84 32 16C32 7.16 24.84 0 16 0Z' fill='white'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.44 23.5198V7.83984H10.08V23.5198H13.44ZM21.28 23.5198V7.83984H17.92V23.5198H21.28Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-calendar {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M26.12 6.98H21.5V5.22C21.5 5.099 21.401 5 21.28 5H19.74C19.619 5 19.52 5.099 19.52 5.22V6.98H12.48V5.22C12.48 5.099 12.381 5 12.26 5H10.72C10.599 5 10.5 5.099 10.5 5.22V6.98H5.88C5.39325 6.98 5 7.37325 5 7.86V26.12C5 26.6068 5.39325 27 5.88 27H26.12C26.6068 27 27 26.6068 27 26.12V7.86C27 7.37325 26.6068 6.98 26.12 6.98ZM25.02 25.02H6.98V14.57H25.02V25.02ZM6.98 12.7V8.96H10.5V10.28C10.5 10.401 10.599 10.5 10.72 10.5H12.26C12.381 10.5 12.48 10.401 12.48 10.28V8.96H19.52V10.28C19.52 10.401 19.619 10.5 19.74 10.5H21.28C21.401 10.5 21.5 10.401 21.5 10.28V8.96H25.02V12.7H6.98Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-checked {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.08383 16.5946C8.38323 18.3784 10.6108 20.0878 12.8383 21.8716C16.9341 16.223 21.0299 10.5743 25.1257 5C26.0599 5.74324 26.994 6.41216 28 7.15541C23.1856 13.7703 18.3713 20.3851 13.5569 27C10.3952 24.473 7.16168 22.0203 4 19.4932C4.71856 18.527 5.36527 17.5608 6.08383 16.5946Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-clear {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='32' height='32' rx='16' fill='%23CCCCCC'/%3e%3cpath d='M16.8235 16L22 21.1765L21.1765 22L16 16.8235L10.8235 22L10 21.1765L15.1765 16L10 10.8235L10.8235 10L16 15.1765L21.1765 10L22 10.8235L16.8235 16Z' fill='white'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-download {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.3294 24.0625C15.4984 24.2259 15.7664 24.324 15.9983 24.3333C16.2572 24.3339 16.4785 24.245 16.6672 24.0625L22.1809 18.7292C22.5097 18.3826 22.6259 17.6647 22.262 17.2708C21.8981 16.8769 21.1757 16.9399 20.8431 17.2812L16.9713 21.0312V4C16.9713 3.44773 16.5357 3 15.9983 3C15.4609 3 15.0253 3.44773 15.0253 4V21.0312L11.1535 17.2812C10.7923 16.8848 10.0944 16.873 9.73456 17.2708C9.36922 17.6748 9.49966 18.3678 9.81564 18.7292L15.3294 24.0625ZM4.0003 20.6785C3.98964 20.1527 4.46019 19.672 4.97305 19.6667C5.49266 19.6611 5.957 20.1458 5.9462 20.6785V27.0048H26.0539V20.6785C26.0466 20.1514 26.5128 19.6667 27.0268 19.6667C27.5409 19.6667 28.007 20.1514 27.9998 20.6785V28.0024C27.9997 28.5247 27.5363 28.9999 27.0268 29H4.97325C4.46383 28.9999 4.00035 28.5247 4.0003 28.0024V20.6785Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-star-empty {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 1L20.6971 11.2108L32 12.459L23.6 20.0178L25.8885 31L16 25.4608L6.11146 31L8.4 20.0178L0 12.459L11.3029 11.2108L16 1Z' fill='%23CCCCCC'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-star-half {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 1L20.6971 11.2108L32 12.459L23.6 20.0178L25.8885 31L16 25.4608L6.11146 31L8.4 20.0178L0 12.459L11.3029 11.2108L16 1Z' fill='url(%23paint0_linear_16_3874)'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_16_3874' x1='16' y1='16.0242' x2='16.0516' y2='16.0242' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%23F4CC49'/%3e%3cstop offset='1' stop-color='%23CCCCCC'/%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;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 1L20.6971 11.2108L32 12.459L23.6 20.0178L25.8885 31L16 25.4608L6.11146 31L8.4 20.0178L0 12.459L11.3029 11.2108L16 1Z' fill='%23F4CC49'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-marker {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 32L15.4107 31.2558C15.0179 30.7146 5 18.6047 5 11.3658C5 5.074 9.97619 0 16 0C22.0238 0 27 5.14165 27 11.3658C27 18.6047 16.9821 30.7822 16.5893 31.2558L16 32Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-marker-success {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 0C9.91857 0 5 5.008 5 11.2C5 19.6 16 32 16 32C16 32 27 19.6 27 11.2C27 5.008 22.0814 0 16 0Z' fill='%233F9C35'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-marker-error {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 0C9.91857 0 5 5.008 5 11.2C5 19.6 16 32 16 32C16 32 27 19.6 27 11.2C27 5.008 22.0814 0 16 0Z' fill='%23F14244'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-clustering {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='16' cy='16' r='16' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-microphone {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.0323 5C13.317 5 11.1155 7.16447 11.0044 9.87227L11 10.0871V14.8468C11 17.7103 13.2359 20 16.0323 20C18.7033 20 20.8855 17.8169 20.9956 15.0651L21 14.8468V10.0871C21 7.28967 18.7641 5 16.0323 5ZM16.0323 6.25C18.0136 6.25 19.6726 7.88556 19.7744 9.89187L19.7793 10.0871V14.8468C19.7793 16.9963 18.088 18.75 16.0323 18.75C13.9885 18.75 12.3274 17.1144 12.2256 15.048L12.2207 14.8468V10.0871C12.2207 7.98201 13.9332 6.25 16.0323 6.25Z' fill='%23222222'/%3e%3cpath d='M24 16H22.8576L22.8454 16.2668C22.6104 19.735 19.7471 22.5334 16.2605 22.651L16.0322 22.6549C12.4011 22.6549 9.45303 19.8279 9.21842 16.2643L9.20551 16H8L8.01301 16.309C8.25333 20.0981 11.1859 23.2432 14.9752 23.7712L15.2237 23.8019L15.3972 23.8206V25.8541H14.246C13.9067 25.8541 13.6747 26.0868 13.6747 26.427C13.6747 26.7673 13.9067 27 14.246 27H17.7546C18.1115 27 18.3897 26.7504 18.3897 26.427C18.3897 26.1037 18.1115 25.8541 17.7546 25.8541H16.6034V23.8203L16.7772 23.8018C20.725 23.3819 23.7479 20.2005 23.9881 16.3064L24 16Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-nomicrophone {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M30 25.9711L2.79876 5L2 6.02892L29.2012 27L30 25.9711Z' fill='%23222222'/%3e%3cpath d='M16.0323 5C18.6922 5 20.882 7.17075 20.9954 9.86737L21 10.0871V14.8468L20.9956 15.0651C20.9683 15.7493 20.8128 16.3983 20.5536 16.9873L19.5421 16.2096C19.6739 15.8446 19.7544 15.4539 19.7744 15.0471L19.7793 14.8468V10.0871L19.7744 9.89187C19.6726 7.88556 18.0136 6.25 16.0323 6.25C13.9988 6.25 12.3281 7.87545 12.2256 9.89092L12.2207 10.0871L12.22 10.586L11.017 9.661C11.2349 7.04906 13.3904 5 16.0323 5Z' fill='%23222222'/%3e%3cpath d='M11 14.692L12.3117 15.7012C12.6908 17.4488 14.2093 18.75 16.0323 18.75C16.1124 18.75 16.192 18.7473 16.2709 18.7421L17.5776 19.7462C17.0911 19.911 16.5717 20 16.0323 20C13.3076 20 11.115 17.8262 11.0044 15.0659L11 14.8468V14.692Z' fill='%23222222'/%3e%3cpath d='M9.20551 16L9.21842 16.2643C9.45303 19.8279 12.4011 22.6549 16.0322 22.6549L16.2605 22.651C17.5767 22.6066 18.804 22.1802 19.8347 21.48L20.8 22.2206C19.664 23.0757 18.2884 23.6411 16.7772 23.8018L16.6034 23.8203V25.8541H17.7546C18.1115 25.8541 18.3897 26.1037 18.3897 26.427C18.3897 26.7504 18.1115 27 17.7546 27H14.246C13.9067 27 13.6747 26.7673 13.6747 26.427C13.6747 26.0868 13.9067 25.8541 14.246 25.8541H15.3972V23.8206L14.9752 23.7712C11.1859 23.2432 8.25333 20.0981 8.01301 16.309L8 16H9.20551Z' fill='%23222222'/%3e%3cpath d='M23.9881 16.3064L24 16H22.8576L22.8454 16.2668C22.7954 17.0057 22.626 17.7142 22.3567 18.3729L23.2994 19.0967C23.6876 18.2346 23.9272 17.2934 23.9881 16.3064Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-sound {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath opacity='0.75' d='M16 0C7.16 0 0 7.16 0 16C0 24.84 7.16 32 16 32C24.84 32 32 24.84 32 16C32 7.16 24.84 0 16 0Z' fill='white'/%3e%3cpath d='M18.6948 26V24.6047C20.4913 23.9623 21.9416 22.8549 23.0455 21.2824C24.1493 19.7099 24.7013 17.9491 24.7013 16C24.7013 14.0509 24.1493 12.2901 23.0455 10.7176C21.9416 9.14507 20.4913 8.03765 18.6948 7.39535V6C20.8377 6.70875 22.5909 7.97652 23.9545 9.80332C25.3182 11.631 26 13.6966 26 16C26 18.3034 25.3182 20.3685 23.9545 22.1953C22.5909 24.023 20.8377 25.2913 18.6948 26ZM6 18.691V13.3754H10.4481L15.0909 8.62459V23.4419L10.4481 18.691H6ZM18.6948 20.4186V11.5814C19.4091 12.0465 19.961 12.6777 20.3506 13.4751C20.7403 14.2724 20.9351 15.1251 20.9351 16.0332C20.9351 16.9413 20.7403 17.7829 20.3506 18.5581C19.961 19.3333 19.4091 19.9535 18.6948 20.4186ZM13.7922 11.8472L11 14.7043H7.2987V17.3621H11L13.7922 20.2193V11.8472Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-nosound {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath opacity='0.75' d='M16 0C7.16 0 0 7.16 0 16C0 24.84 7.16 32 16 32C24.84 32 32 24.84 32 16C32 7.16 24.84 0 16 0Z' fill='white'/%3e%3cpath d='M27.4752 24.0246L5.32071 6.94434C5.03994 7.27517 4.77428 7.61922 4.52478 7.97544L26.6793 25.0557C26.96 24.7248 27.2257 24.3808 27.4752 24.0246Z' fill='%23222222'/%3e%3cpath d='M26 16C26 17.5725 25.6822 19.0339 25.0467 20.3842L23.9964 19.5745C24.4663 18.4631 24.7013 17.2716 24.7013 16C24.7013 14.0509 24.1493 12.2901 23.0454 10.7176C21.9415 9.14507 20.4913 8.03765 18.6948 7.39535V6C20.8376 6.70875 22.5909 7.97652 23.9545 9.80332C25.3182 11.631 26 13.6966 26 16Z' fill='%23222222'/%3e%3cpath d='M18.6948 15.4871L20.8332 17.1357C20.9011 16.7798 20.935 16.4123 20.935 16.0332C20.935 15.1251 20.7402 14.2724 20.3506 13.4751C19.961 12.6777 19.4091 12.0465 18.6948 11.5814V15.4871Z' fill='%23222222'/%3e%3cpath d='M15.0909 12.7086L12.8147 10.9538L15.0909 8.62459V12.7086Z' fill='%23222222'/%3e%3cpath d='M5.99998 13.3754H9.23653L10.9602 14.7043H7.29868V17.3621H11L13.7922 20.2193V16.8876L15.0909 17.8889V23.4419L10.448 18.691H5.99998V13.3754Z' fill='%23222222'/%3e%3cpath d='M21.5995 22.9068L22.6186 23.6925C21.5012 24.7352 20.1932 25.5044 18.6948 26V24.6047C19.7923 24.2123 20.7605 23.6463 21.5995 22.9068Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-payment {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.0625 9H24.9375C26.0719 9 27 9.85909 27 10.9091V21.0909C27 22.1409 26.0719 23 24.9375 23H7.0625C5.92813 23 5 22.1409 5 21.0909V10.9091C5 9.85909 5.92813 9 7.0625 9ZM24.9375 10.2727H7.0625C6.68438 10.2727 6.375 10.5591 6.375 10.9091V12.8182H25.625V10.9091C25.625 10.5591 25.3156 10.2727 24.9375 10.2727ZM25.625 14.7273H6.375V13.4545H25.625V14.7273ZM7.0625 21.7273H24.9375C25.3156 21.7273 25.625 21.4409 25.625 21.0909V15.3636H6.375V21.0909C6.375 21.4409 6.68438 21.7273 7.0625 21.7273ZM11.5312 17.2727H8.09375C7.8875 17.2727 7.75 17.4 7.75 17.5909V19.5C7.75 19.6909 7.8875 19.8182 8.09375 19.8182H11.5312C11.7375 19.8182 11.875 19.6909 11.875 19.5V17.5909C11.875 17.4 11.7375 17.2727 11.5312 17.2727ZM8.4375 19.1818H11.1875V17.9091H8.4375V19.1818Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-secure {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.963 5.00144C15.8682 5.00526 15.7751 5.02864 15.6891 5.0702L7.39967 9.19597C7.15596 9.31839 7.00094 9.57325 7 9.85303V13.1613C7 19.3174 10.5699 24.5956 15.7113 26.9368C15.8951 27.0211 16.1049 27.0211 16.2887 26.9368C21.4305 24.5958 25 19.3176 25 13.1613V9.85303C24.9991 9.57325 24.844 9.31839 24.6003 9.19597L16.3109 5.0702C16.2024 5.01734 16.0827 4.99369 15.963 5.00144ZM16 6.54478L23.5789 10.3191V13.1613C23.5789 18.6122 20.4817 23.2602 16 25.4393C11.5186 23.26 8.42105 18.6119 8.42105 13.1613V10.3191L16 6.54478ZM19.7747 12.5348C19.8888 12.4189 20.0374 12.3463 20.1965 12.3285C20.5008 12.2962 20.7909 12.4685 20.9168 12.7562C21.0427 13.0439 20.9762 13.3825 20.7516 13.5968L15.3043 18.9756C15.0243 19.2489 14.5844 19.2421 14.3125 18.9603L11.7072 16.2709C11.5091 16.0896 11.425 15.8097 11.489 15.5446C11.553 15.2794 11.7545 15.073 12.0118 15.0089C12.2692 14.9447 12.5397 15.0336 12.7138 15.2394L14.8232 17.4169L19.7747 12.5348Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-shipping {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.5851 21.3177H9.639C9.37759 21.3177 9.14523 21.0896 9.14523 20.833V9.48473C9.14523 9.22811 9.37759 9 9.639 9H22.7095C22.971 9 23.2033 9.22811 23.2033 9.48473V11.0815H26.1079C27.1826 11.0815 28.1701 11.4807 28.8672 12.222C29.6224 13.0204 30 14.1324 30 15.501V20.833C30 21.0896 29.7676 21.3177 29.5062 21.3177H27.9087C27.7635 22.2587 26.9212 23 25.9046 23C24.888 23 24.0456 22.2587 23.9004 21.3177H22.7095H15.8838H15.7676C15.6224 22.2587 14.7801 23 13.7635 23C12.7469 23 11.9046 22.2587 11.7593 21.2892C11.7012 21.3177 11.6432 21.3177 11.5851 21.3177ZM24.8589 20.9756C24.8589 21.5458 25.3237 22.002 25.9046 22.002C26.4855 22.002 26.9502 21.5458 26.9502 20.9756C26.9502 20.4053 26.4855 19.9491 25.9046 19.9491C25.3237 19.9491 24.8589 20.4053 24.8589 20.9756ZM23.2324 12.0509H26.1079C27.9087 12.0509 29.0124 13.3625 29.0124 15.4725V20.3198H27.8216C27.5311 19.5499 26.7759 18.9796 25.9046 18.9796C25.0042 18.9796 24.249 19.5499 23.9876 20.3198H23.2324V12.0509ZM12.7469 20.9756C12.7469 21.5458 13.2116 22.002 13.7925 22.002C14.3444 22.002 14.8091 21.5458 14.8382 20.9756C14.8382 20.4053 14.3734 19.9491 13.7925 19.9491C13.2116 19.9491 12.7469 20.4053 12.7469 20.9756ZM10.1328 9.96945H22.1867V11.5662V20.3198H15.8838C15.8257 20.3198 15.7676 20.3198 15.7095 20.3483C15.4481 19.5499 14.6639 18.9796 13.7635 18.9796C12.8631 18.9796 12.0788 19.5784 11.8174 20.3768C11.7593 20.3483 11.6722 20.3198 11.5851 20.3198H10.1328V9.96945ZM2.49378 11.8798C2.23237 11.8798 2 12.1079 2 12.3646C2 12.6212 2.23237 12.8493 2.49378 12.8493H7.25726C7.51867 12.8493 7.75104 12.6212 7.75104 12.3646C7.75104 12.1079 7.51867 11.8798 7.25726 11.8798H2.49378ZM7.25726 15.6436H3.24896C2.98755 15.6436 2.75519 15.4155 2.75519 15.1589C2.75519 14.9022 2.98755 14.6741 3.24896 14.6741H7.25726C7.51867 14.6741 7.75104 14.9022 7.75104 15.1589C7.75104 15.4155 7.51867 15.6436 7.25726 15.6436ZM3.91701 17.4399C3.6556 17.4399 3.42324 17.668 3.42324 17.9246C3.42324 18.2098 3.6556 18.4379 3.91701 18.4094H7.22822C7.48963 18.4094 7.72199 18.1813 7.72199 17.9246C7.72199 17.668 7.48963 17.4399 7.22822 17.4399H3.91701Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-find-shipping {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 27.5166C13.0775 24.8357 10.8934 22.3751 9.41837 20.1359C7.81916 17.7083 7.1 15.6124 7.1 13.8214C7.1 11.5148 8.03277 9.2986 9.69971 7.66142C11.3673 6.02359 13.6332 5.1 16 5.1C18.3668 5.1 20.6327 6.02359 22.3003 7.66142C23.9672 9.2986 24.9 11.5148 24.9 13.8214C24.9 15.6124 24.1808 17.7083 22.5816 20.1359C21.1066 22.3751 18.9225 24.8357 16 27.5166ZM6 13.8214C6 17.9875 9.33273 23.0482 16 29C22.6673 23.0482 26 17.9875 26 13.8214C26 11.2166 24.9464 8.7185 23.0711 6.87663C21.1957 5.03475 18.6522 4 16 4C13.3478 4 10.8043 5.03475 8.92893 6.87663C7.05357 8.7185 6 11.2166 6 13.8214Z' fill='%23222222'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20 9C20.5523 9 21 9.44772 21 10V18C21 18.5523 20.5523 19 20 19H12C11.4477 19 11 18.5523 11 18V10C11 9.44772 11.4477 9 12 9H20ZM12.1 17.9V10.1H14V13C14 13.5523 14.4477 14 15 14H17C17.5523 14 18 13.5523 18 13V10.1H19.9V17.9H12.1ZM16.9 10.1H15.1V12.9H16.9V10.1Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-click-collect {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.1262 12.1157C17.5515 10.6972 19.4845 9.90032 21.5 9.90032C23.5155 9.90032 25.4486 10.6972 26.8739 12.1157C28.2992 13.5342 29.1 15.4583 29.1 17.4646C29.1 19.0739 28.465 20.846 27.209 22.778C25.9527 24.7105 24.071 26.8095 21.5671 29.0745L21.5 29.1352L21.4329 29.0745C18.929 26.8095 17.0473 24.7105 15.791 22.778C14.535 20.846 13.9 19.0739 13.9 17.4646C13.9 15.4583 14.7009 13.5342 16.1262 12.1157ZM21.5 10.9363C19.7513 10.9363 18.0773 11.6278 16.8453 12.8539C15.614 14.0794 14.925 15.7383 14.925 17.4646C14.925 18.7996 15.4543 20.3735 16.6476 22.2091C17.7365 23.8841 19.346 25.7268 21.5 27.7363C23.6541 25.7268 25.2635 23.8841 26.3524 22.2091C27.5457 20.3735 28.075 18.7996 28.075 17.4646C28.075 15.7383 27.3861 14.0794 26.1547 12.8539C24.9228 11.6278 23.2487 10.9363 21.5 10.9363ZM18.4 17.5296C18.4 15.775 19.8111 14.4603 21.5 14.4603C23.1889 14.4603 24.6 15.775 24.6 17.5296C24.6 19.4226 23.192 20.7403 21.5 20.7403C19.808 20.7403 18.4 19.4226 18.4 17.5296ZM21.5 15.4963C20.3397 15.4963 19.425 16.3844 19.425 17.5296C19.425 18.8445 20.3682 19.7043 21.5 19.7043C22.6318 19.7043 23.575 18.8445 23.575 17.5296C23.575 16.3844 22.6604 15.4963 21.5 15.4963Z' fill='%23222222'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.3913 2.86328L18.5008 8.58825L18.346 8.64317C18.0054 8.76403 17.672 8.90439 17.3475 9.06355L17.2855 9.09397L12.3913 4.5078L4.10002 12.2773V20.1612H9.08619L9.16659 13.9003H12.8063L12.7523 14.037C12.6247 14.3602 12.5152 14.6905 12.4242 15.0265L12.4042 15.1003H10.3513L10.2709 21.3612H2.90002V11.7572L12.3913 2.86328Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-exchange {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.0261 16.051C14.2207 16.2496 14.4151 16.4482 14.6094 16.6467C14.8663 16.9096 14.8489 17.3205 14.6094 17.5834C14.3721 17.8463 13.928 17.8286 13.6863 17.5834C13.5796 17.474 13.4729 17.3652 13.3662 17.2564C13.2596 17.1476 13.1529 17.0388 13.0462 16.9295C12.5847 16.459 12.1238 15.9879 11.6628 15.5169C11.2018 15.0458 10.7407 14.5746 10.2792 14.1041C9.89205 13.7068 9.50394 13.3106 9.11616 12.9146C8.9217 12.7161 8.72731 12.5176 8.53317 12.3191C8.28499 12.0651 8.28281 11.6343 8.53317 11.3825C8.74435 11.1704 8.9577 10.9561 9.16888 10.7419C10.0898 9.81183 11.0129 8.88181 11.9359 7.95178C12.5172 7.36417 13.1007 6.77655 13.6841 6.18893C13.9432 5.92826 14.346 5.94594 14.6072 6.18893C14.8663 6.42972 14.851 6.88038 14.6072 7.12559C14.396 7.33766 14.1827 7.55194 13.9715 7.76622C13.0506 8.69624 12.1275 9.62627 11.2044 10.5563C10.9954 10.7676 10.7861 10.9789 10.5766 11.1902C10.6114 11.1902 10.6461 11.1903 10.6809 11.1903C11.1832 11.1909 11.6856 11.1914 12.1885 11.1925C13.5317 11.1925 14.8772 11.1947 16.2204 11.1969C16.3721 11.1969 16.5241 11.1959 16.676 11.1948C17.4617 11.1894 18.2492 11.184 19.0245 11.3228C21.0426 11.6829 22.8496 12.9774 23.9229 14.7381C25.0223 16.5385 25.3032 18.8205 24.6587 20.8374C24.0317 22.8012 22.5883 24.4868 20.7226 25.3306C19.769 25.7614 18.7523 25.9978 17.7074 26H17.1195H13.7081H9.62824H7.65363C7.28789 26 7.01575 25.6974 7.00051 25.3373C6.98527 24.9794 7.31183 24.6745 7.65363 24.6745H7.67323C7.96342 24.6687 8.25459 24.6706 8.54607 24.6726C8.69194 24.6736 8.83788 24.6745 8.98383 24.6745H11.6551H14.6682H17.0063C17.069 24.6745 17.1318 24.6747 17.1945 24.6749C17.6371 24.676 18.0807 24.6771 18.5214 24.6233C19.0265 24.5452 19.5193 24.4091 19.9924 24.2168C20.3163 24.0744 20.6285 23.9067 20.9272 23.7136C21.0615 23.6277 21.1918 23.5358 21.32 23.4399C21.3085 23.4489 21.3056 23.4512 21.3075 23.4498C21.3092 23.4485 21.3147 23.4442 21.3212 23.439C21.3278 23.4341 21.3343 23.4291 21.3409 23.4242C21.3491 23.4175 21.3671 23.4032 21.3809 23.3922C21.4034 23.3742 21.4147 23.3652 21.3539 23.4132C21.3442 23.4208 21.3363 23.4271 21.3299 23.4321C21.3354 23.4277 21.341 23.4232 21.3452 23.4198C21.3605 23.4076 21.3752 23.3955 21.3899 23.3833C21.4046 23.3712 21.4193 23.359 21.4345 23.3469C21.4955 23.2961 21.5586 23.2431 21.6196 23.1878C21.8677 22.9669 22.0985 22.7283 22.3119 22.4721C22.3536 22.4233 22.3929 22.3733 22.4325 22.3229C22.4345 22.3204 22.4365 22.3179 22.4385 22.3153C22.4413 22.3116 22.4441 22.3079 22.4468 22.3042C22.4539 22.2948 22.461 22.2854 22.4686 22.2755C22.4795 22.26 22.4909 22.244 22.5024 22.228C22.5138 22.212 22.5252 22.196 22.5361 22.1805C22.6297 22.0457 22.7211 21.9088 22.8061 21.7674C22.97 21.4943 23.1151 21.2117 23.2396 20.9195C23.4299 20.4382 23.5644 19.9355 23.6416 19.4233C23.7069 18.8746 23.7068 18.3206 23.6414 17.7719C23.5643 17.2599 23.4304 16.7605 23.241 16.2809C23.1007 15.9523 22.9354 15.6355 22.7451 15.3323C22.6604 15.1961 22.5699 15.0639 22.4753 14.9338C22.4841 14.9453 22.4865 14.9483 22.4851 14.9465C22.4839 14.9449 22.4796 14.9393 22.4744 14.9325C22.4696 14.9259 22.4648 14.9192 22.4599 14.9126C22.4533 14.9042 22.4391 14.8859 22.4283 14.8719C22.4106 14.8491 22.4018 14.8377 22.449 14.8994C22.4566 14.9092 22.4627 14.9173 22.4677 14.9238C22.4633 14.9181 22.4589 14.9125 22.4555 14.9082C22.4436 14.8927 22.4316 14.8778 22.4196 14.8629C22.4076 14.848 22.3957 14.8331 22.3837 14.8176C22.3336 14.7558 22.2814 14.6917 22.227 14.6298C22.0092 14.378 21.7741 14.1438 21.5216 13.9274C21.4735 13.885 21.4242 13.8451 21.3745 13.8049C21.3721 13.8029 21.3696 13.8009 21.3671 13.7989C21.3634 13.796 21.3598 13.7932 21.3561 13.7904C21.3469 13.7832 21.3376 13.776 21.3278 13.7683C21.3126 13.7573 21.2968 13.7457 21.281 13.7341C21.2652 13.7225 21.2495 13.7109 21.2342 13.6998C21.1014 13.6048 20.9664 13.512 20.8271 13.4259C20.558 13.2596 20.2794 13.1123 19.9915 12.986C19.5168 12.7927 19.0209 12.6562 18.5158 12.5779C18.3878 12.5621 18.2598 12.5498 18.1319 12.5423C17.8273 12.5218 17.52 12.5237 17.2143 12.5257C17.1245 12.5262 17.0348 12.5268 16.9454 12.5268C16.5916 12.5268 16.2378 12.5262 15.8841 12.5257C15.5303 12.5251 15.1765 12.5246 14.8227 12.5246C14.383 12.5235 13.9432 12.5229 13.5034 12.5224C13.0637 12.5218 12.6239 12.5213 12.1841 12.5202C11.8118 12.5202 11.4401 12.5196 11.0684 12.5191C10.9018 12.5188 10.7353 12.5186 10.5688 12.5184C10.8726 12.8285 11.1762 13.1388 11.4799 13.4491C11.9409 13.9202 12.4018 14.3913 12.8634 14.8618C13.2504 15.2589 13.6384 15.6551 14.0261 16.051ZM18.4084 12.5621C18.4261 12.5646 18.4438 12.5671 18.4616 12.5697C18.444 12.5673 18.4263 12.5648 18.4084 12.5621ZM21.3213 13.7617C21.3283 13.7674 21.3354 13.7732 21.3424 13.7789C21.3156 13.7579 21.2943 13.7411 21.3213 13.7617ZM22.4677 14.9238C22.4706 14.9276 22.4732 14.931 22.4753 14.9338C22.475 14.9334 22.4747 14.933 22.4744 14.9325C22.4723 14.9298 22.47 14.9268 22.4677 14.9238ZM23.6573 17.8838C23.6545 17.8647 23.6519 17.8458 23.6494 17.8269C23.6521 17.8459 23.6547 17.8648 23.6573 17.8838ZM23.6573 19.3131C23.6549 19.3311 23.6524 19.3492 23.6498 19.3672C23.6522 19.3493 23.6546 19.3313 23.6573 19.3131ZM22.4751 22.2689C22.4695 22.276 22.4638 22.2832 22.4582 22.2903C22.4789 22.2631 22.4954 22.2414 22.4751 22.2689ZM21.3299 23.4321C21.3261 23.4351 21.3228 23.4377 21.32 23.4399C21.3204 23.4396 21.3208 23.4393 21.3212 23.439C21.324 23.4368 21.3269 23.4345 21.3299 23.4321ZM18.4127 24.6392C18.4316 24.6364 18.4502 24.6338 18.4687 24.6312C18.4501 24.634 18.4314 24.6366 18.4127 24.6392Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-copy {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.9761 27H8.00957C6.90431 27 6 26.1 6 25V11H8.00957V25H20.9761V27ZM23.9904 23H12.0287C10.9234 23 10.0191 22.1 10.0191 21V7C10.0191 5.9 10.9234 5 12.0287 5H23.9904C25.0957 5 26 5.9 26 7V21C26 22.1 25.0957 23 23.9904 23ZM12.0287 7H23.9904V21H12.0287V7Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-points{background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 7.31583C13.812 7.31583 11.7136 8.23083 10.1664 9.85942C8.61917 11.4881 7.75003 13.6969 7.75003 16.0002C7.75003 18.3035 8.61925 20.5123 10.1664 22.1409C11.7136 23.7696 13.8119 24.6845 16 24.6845C18.1881 24.6845 20.2864 23.7695 21.8336 22.1409C23.3809 20.5123 24.25 18.3035 24.25 16.0002C24.2477 13.6976 23.3774 11.4903 21.8309 9.86231C20.2844 8.23434 18.1874 7.31836 16 7.31583ZM21.0236 15.05L19.0556 17.0688L19.5206 19.9195C19.5688 20.2159 19.4533 20.5151 19.2223 20.6917C18.9913 20.8686 18.6849 20.8919 18.4325 20.752L16 19.4059L13.5678 20.7516V20.7519C13.3154 20.8919 13.009 20.8686 12.778 20.6917C12.547 20.5151 12.4315 20.2159 12.4797 19.9195L12.9447 17.0688L10.9767 15.05C10.7717 14.8403 10.6981 14.5263 10.7861 14.2404C10.8745 13.9542 11.1092 13.7459 11.3918 13.7029L14.1113 13.287L15.3271 10.6934H15.3274C15.468 10.4428 15.7238 10.2891 16 10.2891C16.2763 10.2891 16.5321 10.4428 16.6727 10.6934L17.8885 13.287L20.6079 13.7029H20.6083C20.8909 13.7459 21.1256 13.9542 21.214 14.2401C21.302 14.5263 21.2284 14.8399 21.0238 15.0496L21.0236 15.05ZM17.2824 14.7902L18.8882 15.0359L17.7263 16.2279C17.5499 16.4094 17.4692 16.6706 17.5107 16.9268L17.7849 18.6104L16.3488 17.8157V17.8153C16.1305 17.6944 15.8694 17.6944 15.6511 17.8153L14.215 18.6101L14.4892 16.9265C14.5308 16.6706 14.4501 16.4094 14.2736 16.2275L13.1118 15.0356L14.7175 14.7899H14.7172C14.9616 14.7525 15.1729 14.5908 15.282 14.3578L15.9999 12.8267L16.7178 14.3578V14.3581C16.8269 14.5911 17.0382 14.7525 17.2823 14.7902H17.2824ZM29.5733 12.8352C29.2237 12.5314 28.9632 12.1296 28.8216 11.6763C28.6797 11.2231 28.6629 10.7371 28.7724 10.2743C29.0557 9.10063 28.8276 7.85541 28.1506 6.87672C27.4572 5.87222 26.3744 5.24487 25.1972 5.16592C24.7395 5.13385 24.2992 4.9682 23.9259 4.68765C23.5526 4.4071 23.2609 4.02258 23.0835 3.5774C22.6435 2.44957 21.7539 1.5832 20.6517 1.20894C19.534 0.823367 18.3119 0.976329 17.3115 1.6273C16.9164 1.88106 16.4627 2.01535 16 2.01535C15.5372 2.01535 15.0832 1.88106 14.6884 1.6273C13.688 0.976681 12.4662 0.823719 11.3489 1.20894C10.2464 1.58289 9.35675 2.44957 8.91678 3.5774C8.739 4.02325 8.44636 4.40847 8.07203 4.689C7.69736 4.9699 7.25607 5.1352 6.79737 5.16622C5.6218 5.24693 4.54137 5.87394 3.84897 6.87738C3.1713 7.85859 2.94426 9.10661 3.22955 10.2816C3.3377 10.7455 3.31929 11.2315 3.17598 11.6848C3.03267 12.1377 2.77084 12.5387 2.42029 12.8415C1.51995 13.6183 0.998631 14.7795 1 16.005C1.00134 17.2301 1.525 18.3904 2.42672 19.165C2.77627 19.4688 3.03676 19.8706 3.17839 20.3239C3.32035 20.7772 3.3371 21.2632 3.22761 21.7259C2.94435 22.8996 3.17236 24.1448 3.84937 25.1235C4.54278 26.128 5.62562 26.7554 6.80282 26.8343C7.26052 26.8664 7.70085 27.032 8.07414 27.3126C8.44742 27.5932 8.73909 27.9777 8.91655 28.4228C9.3565 29.5507 10.2461 30.417 11.3483 30.7913C12.466 31.1765 13.6881 31.0236 14.6885 30.3729C15.0833 30.1192 15.5373 29.9849 16.0001 29.9849C16.4624 29.9849 16.9164 30.1192 17.3112 30.3729L17.7053 29.7015L17.3116 30.3733C18.312 31.0232 19.5338 31.1762 20.6511 30.7917C21.7536 30.4177 22.6432 29.551 23.0832 28.4232C23.261 27.977 23.5536 27.5921 23.928 27.3112C24.3023 27.0303 24.7439 26.865 25.2026 26.834C26.3782 26.7533 27.4586 26.1263 28.151 25.1229C28.8287 24.1416 29.0557 22.8936 28.7705 21.7186C28.6623 21.2548 28.6807 20.7688 28.824 20.3155C28.9673 19.8626 29.2292 19.4615 29.5797 19.1588C30.4801 18.382 31.0014 17.2207 31 15.9952C30.9987 14.7701 30.475 13.6098 29.5733 12.8352ZM16.0001 26.2632C13.4143 26.2632 10.9342 25.1819 9.10577 23.2572C7.27731 21.3324 6.25011 18.7218 6.25011 15.9998C6.25011 13.2779 7.27731 10.6672 9.10577 8.74251C10.9342 6.81779 13.4143 5.73651 16.0001 5.73651C18.5859 5.73651 21.066 6.81779 22.8944 8.74251C24.7229 10.6672 25.7501 13.2779 25.7501 15.9998C25.7471 18.7207 24.7192 21.3295 22.8914 23.2539C21.0632 25.1779 18.5849 26.2599 16.0001 26.2632Z' fill='%2325A9E1'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-gift{background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.6837 9.76158C21.0093 9.64654 21.3329 9.52466 21.6458 9.39668C22.2197 9.16189 22.771 8.90104 23.2358 8.61696C23.6898 8.33952 24.1134 8.00904 24.3755 7.61594C24.6598 7.18943 24.7643 6.6608 24.4881 6.12805C24.2446 5.65852 23.7506 5.28261 23.1058 4.9602C21.7571 4.28585 20.5624 4.25907 19.5445 4.67549C18.5539 5.08074 17.8119 5.87268 17.2708 6.68426C16.8812 7.26868 16.5787 7.88896 16.3512 8.44082C16.1237 7.88896 15.8211 7.26868 15.4315 6.68426C14.8905 5.87268 14.1484 5.08074 13.1578 4.67549C12.1399 4.25907 10.9452 4.28585 9.59654 4.9602C8.95172 5.28261 8.45767 5.65852 8.21421 6.12805C7.93797 6.6608 8.04247 7.18943 8.32682 7.61594C8.58888 8.00904 9.01249 8.33952 9.46648 8.61696C9.93133 8.90104 10.4826 9.16189 11.0566 9.39668C11.3694 9.52466 11.6931 9.64654 12.0186 9.76158H5.00015C4.66878 9.76158 4.40015 10.0302 4.40015 10.3616V14.4155C4.40015 14.7469 4.66878 15.0155 5.00015 15.0155H6.02172V27.3881C6.02172 27.7195 6.29035 27.9881 6.62172 27.9881H26.0806C26.412 27.9881 26.6806 27.7195 26.6806 27.3881V15.0155H27.7022C28.0335 15.0155 28.3022 14.7469 28.3022 14.4155V10.3616C28.3022 10.0302 28.0335 9.76158 27.7022 9.76158H20.6837ZM15.7512 10.9616V13.8155H5.60015V10.9616H15.7512ZM16.9512 13.8155V10.9616H27.1022V13.8155H16.9512ZM15.7512 15.0155H7.22172V26.7881H15.7512V15.0155ZM16.9512 26.7881V15.0155H25.4806V26.7881H16.9512ZM15.4841 9.53971C15.475 9.51322 15.4656 9.48634 15.456 9.4591C15.2371 8.83908 14.9021 8.05348 14.4331 7.3499C13.9606 6.64126 13.3851 6.065 12.7035 5.78614C12.0491 5.51846 11.2168 5.49168 10.1332 6.03351C9.56183 6.31919 9.34644 6.55137 9.27952 6.68043C9.24538 6.74627 9.22956 6.80673 9.32528 6.9503C9.44327 7.12729 9.69109 7.34789 10.0922 7.59302C10.4825 7.83152 10.97 8.06474 11.5109 8.28602C12.5921 8.7283 13.8314 9.1008 14.8096 9.36414C15.054 9.42995 15.2811 9.48867 15.4841 9.53971ZM17.2182 9.53971C17.4212 9.48867 17.6483 9.42995 17.8928 9.36414C18.8709 9.1008 20.1103 8.7283 21.1914 8.28602C21.7323 8.06474 22.2198 7.83152 22.6101 7.59302C23.0112 7.34789 23.2591 7.12729 23.377 6.9503C23.4728 6.80673 23.4569 6.74627 23.4228 6.68043C23.3559 6.55137 23.1405 6.31919 22.5691 6.03351C21.4855 5.49168 20.6532 5.51846 19.9988 5.78614C19.3172 6.065 18.7417 6.64126 18.2693 7.3499C17.8002 8.05348 17.4652 8.83908 17.2463 9.4591C17.2367 9.48634 17.2273 9.51322 17.2182 9.53971Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-home{background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M30 14.8777L16 2L2 14.8777L3.63403 16.6087L16 5.23408L28.366 16.6087L30 14.8777Z' fill='%23222222'/%3e%3cpath d='M26.9565 18.9626L16 8.69565L5.04348 18.9626V30H13.411L13.5048 22.6957H18.4952L18.589 30H26.9565V18.9626Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view1:not(.active) {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M26 6H6V26H26V6ZM4 4V28H28V4H4Z' fill='%23999999'/%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;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect x='4' y='4' width='24' height='24' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view2:not(.active) {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 4H15V15H4V4ZM6 13H13V6H6V13ZM4 28V17H15V28H4ZM13 26V19H6V26H13ZM17 28V17H28V28H17ZM26 26V19H19V26H26ZM28 4V15H17V4H28ZM19 6V13H26V6H19Z' fill='%23999999'/%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;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M4 4H15V15H4V4Z' fill='%23222222'/%3e%3cpath d='M4 17V28H15V17H4Z' fill='%23222222'/%3e%3cpath d='M17 17V28H28V17H17Z' fill='%23222222'/%3e%3cpath d='M28 15V4H17V15H28Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-size-guide{background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.0125 12.0717L27.7636 18.9289C28.8777 19.5976 29.1833 21.0375 28.9014 22.0519C28.6292 23.022 27.695 24 26.2181 24H5.91474C3.82476 24 3.2508 22.5301 3.12457 22.0795C2.98673 21.5851 2.66031 19.8955 4.23773 18.9048L14.8804 12.0732V10.9263C14.8804 10.2355 15.1304 9.77699 15.7179 9.39387L16.6391 8.75517C16.9268 8.55325 16.9922 8.26276 17.0047 8.10761C17.024 7.87468 16.9549 7.64913 16.8239 7.51913C16.5352 7.23106 16.0424 7.10106 15.5859 7.19459C14.8519 7.34574 14.6585 7.77666 14.629 8.5089C14.6276 8.54392 14.6261 8.72906 14.6256 8.91322C14.6246 9.13628 14.1909 9.31651 13.657 9.31651H13.4636C12.9297 9.31651 12.4974 9.13525 12.4994 8.91219L12.4996 8.89261C12.5015 8.73747 12.5034 8.58213 12.5066 8.50842C12.5482 7.44673 12.746 6.79276 13.4506 6.00781C14.2233 5.14404 15.41 4.81957 16.7185 5.0963C17.9612 5.35729 19.2461 6.57558 19.2461 8.16323C19.2461 9.69131 18.1597 10.3694 17.6372 10.6955L17.6368 10.6958L17.6269 10.702C17.5776 10.7325 17.5332 10.7601 17.4951 10.786C17.1658 11.0071 17.0125 11.2523 17.0125 11.5566V12.0717ZM26.1872 21.6916C26.4552 21.6916 26.6201 21.4961 26.6708 21.3149C26.6975 21.2194 26.7318 20.9796 26.4731 20.8146L16.0122 14.1554L5.60876 20.7865C5.41727 20.9249 5.3341 21.1357 5.39841 21.342C5.44868 21.5025 5.60728 21.6906 5.88872 21.6916H26.1868H26.1872Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-timer{background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.4678 9.99976H16.8678V15.503L20.1162 18.7514L18.4194 20.4482L14.4678 16.4966V9.99976Z' fill='%23222222'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.66699 16C3.66699 9.3832 9.05019 4 15.667 4C22.2838 4 27.667 9.3832 27.667 16C27.667 22.6168 22.2838 28 15.667 28C9.05019 28 3.66699 22.6168 3.66699 16ZM6.06699 16C6.06699 21.2932 10.3738 25.6 15.667 25.6C20.9602 25.6 25.267 21.2932 25.267 16C25.267 10.7068 20.9602 6.4 15.667 6.4C10.3738 6.4 6.06699 10.7068 6.06699 16Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-address{background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M27.3364 9.62303L20.1364 6.12332C19.9697 6.04222 19.7858 6 19.5994 6C19.413 6 19.2291 6.04222 19.0624 6.12332L12.4 9.36288L5.7364 6.12332C5.5534 6.03443 5.35007 5.99249 5.14571 6.00149C4.94135 6.01048 4.74274 6.07012 4.56876 6.17473C4.39478 6.27935 4.2512 6.42546 4.15165 6.5992C4.05211 6.77294 3.9999 6.96853 4 7.1674V22.3328C4 22.7749 4.2568 23.1785 4.6636 23.3769L11.8636 26.8766C12.0303 26.9577 12.2142 26.9999 12.4006 26.9999C12.587 26.9999 12.7709 26.9577 12.9376 26.8766L19.6 23.637L26.2636 26.8754C26.4461 26.9651 26.6493 27.0077 26.8536 26.9989C27.0579 26.9901 27.2564 26.9303 27.43 26.8252C27.784 26.6117 28 26.2373 28 25.8325V10.6671C28 10.225 27.7432 9.82134 27.3364 9.62303ZM13.6 11.388L18.4 9.05491V21.6118L13.6 23.945V11.388ZM6.4 9.05491L11.2 11.388V23.945L6.4 21.6118V9.05491ZM25.6 23.945L20.8 21.6118V9.05491L25.6 11.388V23.945Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-filter{background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.1111 24C13.1111 24.5523 13.5588 25 14.1111 25H17.8889C18.4412 25 18.8889 24.5523 18.8889 24V23.1429C18.8889 22.5906 18.4412 22.1429 17.8889 22.1429H14.1111C13.5588 22.1429 13.1111 22.5906 13.1111 23.1429V24ZM7.33333 16.4286C7.33333 16.9809 7.78105 17.4286 8.33333 17.4286H23.6667C24.219 17.4286 24.6667 16.9809 24.6667 16.4286V15.5714C24.6667 15.0191 24.219 14.5714 23.6667 14.5714H8.33333C7.78105 14.5714 7.33333 15.0191 7.33333 15.5714V16.4286ZM4 7C3.44772 7 3 7.44772 3 8V8.85714C3 9.40943 3.44772 9.85714 4 9.85714H28C28.5523 9.85714 29 9.40943 29 8.85714V8C29 7.44772 28.5523 7 28 7H4Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-info-size {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16.0006 13.4285C15.7733 13.4285 15.5553 13.5188 15.3945 13.6796C15.2338 13.8403 15.1435 14.0583 15.1435 14.2857V21.1428C15.1435 21.3701 15.2338 21.5882 15.3945 21.7489C15.5553 21.9097 15.7733 22 16.0006 22C16.2279 22 16.446 21.9097 16.6067 21.7489C16.7674 21.5882 16.8578 21.3701 16.8578 21.1428V14.2857C16.8578 14.0583 16.7674 13.8403 16.6067 13.6796C16.446 13.5188 16.2279 13.4285 16.0006 13.4285Z' fill='%23222222'/%3e%3cpath d='M16.8578 10.8571C16.8578 11.3305 16.474 11.7143 16.0006 11.7143C15.5272 11.7143 15.1435 11.3305 15.1435 10.8571C15.1435 10.3838 15.5272 10 16.0006 10C16.474 10 16.8578 10.3838 16.8578 10.8571Z' fill='%23222222'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 4C13.6266 4 11.3066 4.70379 9.33316 6.02236C7.35977 7.34094 5.8217 9.21508 4.91345 11.4078C4.0052 13.6005 3.76756 16.0133 4.23058 18.3411C4.6936 20.6689 5.83649 22.807 7.51472 24.4853C9.19295 26.1635 11.3311 27.3064 13.6589 27.7694C15.9867 28.2324 18.3995 27.9948 20.5922 27.0866C22.7849 26.1783 24.6591 24.6402 25.9776 22.6668C27.2962 20.6935 28 18.3734 28 16C28 12.8174 26.7357 9.76515 24.4853 7.51472C22.2348 5.26428 19.1826 4 16 4ZM16 26.2857C13.9657 26.2857 11.977 25.6825 10.2856 24.5523C8.59409 23.422 7.27575 21.8156 6.49724 19.9362C5.71874 18.0567 5.51505 15.9886 5.91193 13.9934C6.3088 11.9981 7.28842 10.1654 8.72691 8.7269C10.1654 7.28842 11.9981 6.3088 13.9934 5.91192C15.9886 5.51505 18.0567 5.71874 19.9362 6.49724C21.8156 7.27574 23.4221 8.59409 24.5523 10.2856C25.6825 11.977 26.2857 13.9657 26.2857 16C26.2857 18.7279 25.202 21.3442 23.2731 23.2731C21.3442 25.202 18.7279 26.2857 16 26.2857Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-360 {}
body .rdc-icon-svg.rdc-icon-upload {}

/* 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;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.0659 21.7506L31.7273 30.4119C32.0909 30.7751 32.0909 31.3643 31.7273 31.7276C31.546 31.9092 31.3078 32 31.07 32C30.8318 32 30.5936 31.9092 30.4119 31.7276L21.7498 23.0659C19.4421 25.0705 16.4333 26.288 13.1438 26.288C5.89599 26.288 0 20.3917 0 13.1444C0 5.89702 5.89599 0 13.1438 0C20.3916 0 26.288 5.89665 26.288 13.144C26.288 16.4338 25.0705 19.4426 23.0659 21.7506ZM13.1438 1.86096C6.92251 1.86096 1.86099 6.92241 1.86099 13.144C1.86099 19.3652 6.92251 24.4266 13.1438 24.4266C19.3655 24.4266 24.427 19.3652 24.427 13.144C24.427 6.92278 19.3655 1.86096 13.1438 1.86096Z' fill='%23666666'/%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;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.9417 6.60723L3.07518 17.4848C2.38658 18.1676 2.00604 19.0801 2 20.0591C2 21.0321 2.3745 21.9446 3.0631 22.6335L9.36314 28.9364C10.0517 29.6193 10.9638 30 11.9363 30C12.9088 30 13.8209 29.6253 14.5095 28.9364L25.382 18.0589C26.0042 17.4364 26.3304 16.5783 26.27 15.7021L26.0404 12.2031C26.7834 11.8768 27.4841 11.3994 28.0881 10.7951C29.1633 9.71942 29.8337 8.35972 29.9727 6.96377C30.1176 5.50739 29.6827 4.19604 28.7405 3.25332C26.8438 1.35579 23.4612 1.64586 21.1901 3.89993C20.9062 4.18395 20.9062 4.64323 21.1901 4.92725C21.474 5.21128 21.933 5.21128 22.2169 4.92725C23.9142 3.23519 26.3727 2.93908 27.7076 4.2746C28.3358 4.90308 28.6257 5.8035 28.523 6.81269C28.4143 7.87628 27.8948 8.92173 27.0552 9.76172C26.7109 10.1062 26.3304 10.3962 25.9317 10.6259L25.7445 7.83397C25.6901 6.9819 25.0015 6.29299 24.1498 6.2386L16.2914 5.71889C16.2249 5.71285 16.1585 5.71285 16.092 5.71285C15.2826 5.71285 14.5155 6.03313 13.9417 6.60723ZM10.4028 27.9092L4.09676 21.6002C3.68601 21.1893 3.45648 20.6394 3.45648 20.0532C3.45648 19.467 3.68601 18.9171 4.09676 18.5062L14.9633 7.63465C15.2592 7.33854 15.67 7.16934 16.0928 7.16934C16.1109 7.16934 16.1291 7.17085 16.1472 7.17236C16.1653 7.17387 16.1834 7.17538 16.2015 7.17538L24.06 7.69508C24.1929 7.70717 24.3016 7.8099 24.3076 7.94285L24.5251 11.1819L24.5251 11.1819C24.3922 11.2061 24.2593 11.2303 24.1204 11.2424C23.1116 11.3451 22.2116 11.055 21.5835 10.4266C21.2996 10.1425 20.8405 10.1425 20.5566 10.4266C20.2727 10.7106 20.2727 11.1699 20.5566 11.4539C21.3781 12.2757 22.4835 12.7108 23.7217 12.7108C23.8969 12.7108 24.0781 12.6988 24.2593 12.6806C24.3801 12.6685 24.5009 12.6504 24.6217 12.6323L24.8331 15.7989C24.8633 16.2581 24.6942 16.7053 24.368 17.0316L13.4955 27.9092C13.0847 28.3201 12.5351 28.5498 11.9492 28.5498C11.3632 28.5498 10.8136 28.3201 10.4028 27.9092Z' fill='%23222222'/%3e%3c/svg%3e ");}
body .rdc-icon-shipping-express {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M22 14.05H15.89L20.05 3H12.9L9 16.65H14.59L11.6 29L22 14.05Z' fill='%2325A9E1'/%3e%3c/svg%3e ");}


/* 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) {}

/*
*
* Header
*
*/

header a, header p, header .p, header .paragraph, header .list-nav-subtitle {
    color: var(--color-white);
}
header .shop-tooltip-body .paragraph { color: var(--color-black); }

/*
*
* Filters
*
*/
body #rdc-productlist-area-a .container .row .title { font-size: 34px;font-weight: 600; }
body .box-filter .clear-filters .link { font-size: 15px;font-weight: 300;padding: 0; }
body .magic-checkbox[disabled]+label:before,
body .magic-radio[disabled]+label:before,
body .magic-checkbox[disabled]+label:hover:before,
body .magic-radio[disabled]+label:hover:before { border-color: var(--color-lines);background-color: var(--color-background); }

body #filters-popup .rdc-wrapper-popup-body .total-filter-active { font-size: 17px;font-weight: 300; }
@media screen and (max-width: 767px) {
	body #filters-popup .rdc-wrapper-popup-header p.list-nav-title { font-size: 20px; }
	body #filters-popup .wrapper-pseudo-filters .box-filter span.list-nav-subtitle.item-name { font-size: 17px;font-weight: 300; }
	body #rdc-productlist-area-a .container .row .title { font-size: 26px; }
}

/*
*
* Product Item
*
*/
article.product-item .rdc-product-item-brand { color: var(--color-theme);font-size: 13px;font-weight: 400;line-height: 126%;text-transform: uppercase; }
body article.product-item .rdc-product-item-name {
	font-size: 15px;
	font-weight: 400;
	line-height: 140%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* number of lines to show */
			line-clamp: 2; 
	-webkit-box-orient: vertical;
	text-overflow: unset;
	white-space: unset;
}
@media screen and (max-width: 1199px) {
	body #main.wishlist article.product-item .price .date, body #main.wishlist article.product-item .rdc-promo-date { font-size: 10px; }
}
@media screen and (max-width: 767px) {
	article.product-item .rdc-product-item-brand { font-size: 12px; }
	body article.product-item .rdc-product-item-name { font-size: 13px; }
}

/*
 *
 * Product item Blocos
 *
*/
.container-blocks-section .content_products:not(.productItemAvailable) .productItemBlocos {
	border: 2px solid var(--color-background);
	border-radius: 8px;
}
.container-blocks-section .content_products:not(.productItemAvailable) .productItemBlocos .box-images figure.loader,
.container-blocks-section .content_products:not(.productItemAvailable) .productItemBlocos .box-images figure.loader	.primary_image {
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
} 

/*
 *
 * Detail
 *
*/
#rdc-productdetail-area-b .rdc-product-ref p.small { color: var(--color-black); }

body #rdc-productdetail-area-b .rdc-product-box-info.rdc-product-price-conditions p { font-family: var(--base-fontfamily);line-height: 160%; }
body #rdc-productdetail-area-b .rdc-product-afterprice .rdc-product-promo-date p { font-family: var(--base-fontfamily); }
body #rdc-productdetail-area-b .rdc-product-afterprice .rdc-product-promo-date p.rdc-promo-30days { color: var(--color-darkgray); }

body #main.product #rdc-productdetail-area-b .rdc-product-accordion > .accordion > li > .accordion-head p { font-size: 16px;font-weight: 600; }

body #main.product #rdc-productdetail-area-c-ac .rdc-product-group-title p.list-nav-title { font-size: 24px;font-weight: 600;line-height: 140%; }
body #rdc-productdetail-area-c-ac #rdc-product-group-composition .rdc-product-group-content .product-composition .col-sm-12.column-composition .col-sm-6.column-title p.list-nav-subtitle{ font-size: 16px;font-weight: 600;line-height: 140%; }

body article.product-item .btn2.addCart { font-weight: 600;text-transform: uppercase; }

@media screen and (min-width: 768px) {
    body #rdc-productdetail-area-b .rdc-product-name .title { font-size: 24px;font-weight: 400 !important; }
	body #rdc-productdetail-area-b .price p:not(.packageType) { font-size: 18px; }
	body #rdc-productdetail-area-b .price p.desde { font-size: 12px; }
	body #rdc-productdetail-area-b .price p.current { font-size: 24px; }
	body #rdc-productdetail-area-b .price p.unit-value-price { font-size: 14px;}
}
@media screen and (max-width: 767px) {
	body #rdc-productdetail-area-b .price .current { font-size: 20px;font-weight: 600; }
	body #rdc-productdetail-area-b .price p { font-size: 16px; }
	body #rdc-productdetail-area-b .rdc-product-afterprice .rdc-product-promo-date p { font-size: 12px; }
	body #rdc-productdetail-area-b .stock-alert .stock-alert-item { font-size: 14px; }
}

/*
 *
 * Footer
 *
*/
body #footer .footer-menu-column.footer-menu-information .footer-menu-list > div#rdc-footer-menu-list_time p { font-size: 12px !important;color: var(--color-gray) !important; }

body #footer .bottom-footer-row,
body #footer .newsletter-footer-row,
body #footer .footer-menu-row { margin-right: var(--row-padding-n);margin-left: var(--row-padding-n); }
body #footer .bottom-footer-column,
body #footer .newsletter-footer-column,
body #footer .footer-menu-column { padding-right: var(--row-padding);padding-left: var(--row-padding); }

/*
 *
 * Visual Merchandising
 *
*/ 
#rdc-productlist-section-products .rdc-product-item-with_text_wrap.column .rdc-product-item-with_text_content { border-radius: 4px; }
@media screen and (min-width: 1660px) {

	.section-products .columnWidth2.rdc-product-item-enhance-full-height img {height: 418px !important;}
	.section-products .columnWidth2 .image figure{padding-bottom: calc(50% - 105px) !important;}

	.section-products .columnWidth3.rdc-product-item-enhance-full-height img {height: 418px !important;}
	.section-products .columnWidth3 .image figure{padding-bottom: calc(32.777% - 100px) !important;}

	/*.section-products .columnWidth4:not(.rdc-product-item-enhance-full-height) img {height: 418px !important;}*/
	.section-products .columnWidth4 .image figure{padding-bottom: calc(19% - 13px) !important;}
}
@media screen and (min-width: 1200px) and (max-width: 1659px) {

	.section-products .columnWidth2.rdc-product-item-enhance-full-height img {height: 418px !important;}
	.section-products .columnWidth2 .image figure{padding-bottom: calc(50% - 81px) !important;}

	.section-products .columnWidth3.rdc-product-item-enhance-full-height img {height: 418px !important;}
	.section-products .columnWidth3 .image figure{padding-bottom: calc(32.777% - 79px) !important;}

	/*.section-products .columnWidth4:not(.rdc-product-item-enhance-full-height) img {height: 418px !important;}*/
	.section-products .columnWidth4 .image figure{padding-bottom: calc(19% - 12px) !important;}
}