/*
 *
 * CSS VARS
 *
*/

:root {
	--color-dark: #000000;
	--color-theme: #D1C1A8;
	--color-themelight: #E3DACA;
	--color-black: #333;
	--color-darkgray: #666;
	--color-gray: #999;
	--color-lightgray: #CCC;
	--color-white: #FFF;
	--color-overlay: rgba(51, 51, 51, 0.75);
	--color-background: #F5F5F5;
	--color-lines: #CCC;
	--color-link: #333333;
	--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: #B2976C;
	--color-buttoncart-hover: #94794E;

	--base-fontfamily: 'Raleway', sans-serif;
	--container-padding: 24px;
	--container-padding-n: -24px;
	--row-padding: 12px;
	--row-padding-n: -12px;
	--color-featuredmenu: #94794E;
	--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: 4px;

	/* Spacing */
	--sp-ex-small: 20px;
	--sp-small: 30px;
	--sp-medium: 40px;
	--sp-large: 120px;

	--sat: env(safe-area-inset-top);
    --sar: env(safe-area-inset-right);
    --sab: env(safe-area-inset-bottom);
    --sal: env(safe-area-inset-left);
}

@media screen and (max-width: 767px) {
	:root {
		/* Spacing */
		--sp-ex-small: 15px;
		--sp-small: 20px;
		--sp-medium: 30px;
		--sp-large: 100px;
	}
}

@media screen and (max-width: 1200px) {
	: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: 400;
	font-size: 14px;
	color: var(--color-black);
	font-variant-numeric: lining-nums proportional-nums;
	font-feature-settings: 'clig' off, 'liga' off;
}

/* A */
a, .a {
	color: currentColor;
	text-decoration: underline;
}

/* PARAGRAPH */
.paragraph, .gm-style, .page-content {
	line-height: 160%;
	font-weight: 400;
}

/* 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: 400; /* Required font-weight  */
	font-size: 14px;
	color: var(--color-darkgray);
}

/* MEGA-TITLE */
.mega-title {
	font-weight: 700;
	font-size: 52px;
	line-height: 130%;
}

/* TITLE */
h1:not(.nostyle), .h1:not(.nostyle), .title {
	font-weight: 400;
	font-size: 46px;
	line-height: 130%;
}

/* SECONDARY-TITLE */
h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
	font-weight: 700;
	font-size: 37px;
	line-height: 130%;
}

/* SUBTITLE */
h3:not(.nostyle), .h3:not(.nostyle), .subtitle {
	font-weight: 600;
	font-size: 26px;
	line-height: 120%;
}

/* SECONDARY-SUBTITLE */
h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
	font-weight: 400;
	font-size: 21px;
	line-height: 120%;
}

/* LIST-NAV-TITLE */
.list-nav-title {
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
}

.list-nav-title.active {
	text-decoration: underline;
}

/* SIGNATURE */
.signature {
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	letter-spacing: 0.5px;
}

/* LIST-NAV-SUBTITLE */
.list-nav-subtitle {
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
}

.list-nav-subtitle.active {
	text-decoration: underline;
}

/* PRODUCT ITEM */
	/* Brand */
	.brand-list-product {
		font-weight: 600;
		font-size: 13px;
	} 

	/* Name */
	.product-item .desc .name {
		font-weight: 600;
		font-size: 14px;
		line-height: 140%;
	}

	/* Price */
	.price {
		display: inline-grid;
		align-items: center;
		grid-auto-flow: column;
		grid-gap: 8px;
	}

	.price, .price p {
		font-weight: 500;
		font-size: 14px;
	}

	/* Price Old */
	.price .old {
		color: var(--color-gray);
		text-decoration: line-through;
		margin-right: 0 !important;
		font-weight: 400;
	}

	/* Price Discount */
	.price .discount {
		background: #AB2838; /* Required */
		color: var(--color-white); /* Required */
		padding: 0px 4px;
		border-radius: 2px;
		font-size: 12px;
		font-weight: 700;
		line-height: 9px;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 19px;
	}

	/* Price Current */
	.price .current {}

	/* Price Desde, Type, packageType e Date */
	.price .desde, .price .type, .price .date, .price .packageType {
		font-weight: 400;
		font-size: 10px;
		line-height: 117%;
	}

	/* Price Desde, Type, packageType e Date */
	.price .desde, .price .type, .price .packageType {
		color: var(--color-gray);
	}

	/* Promo Date */
	.rdc-promo-date {
		color: var(--color-darkgray);
	}

	/* Promoção ultimos 30 dias */
	.rdc-promo-30days {
		color: var(--color-darkgray);	
	}

	/* Price Horizontal */
	.priceh {
		display: inline-flex;
		align-items: baseline;
		grid-auto-flow: column;
		grid-gap: 0 8px;
		flex-wrap: wrap;
	}

	.priceh, .priceh p {
		font-weight: 500;
		font-size: 14px;
	}

	/* Price Horizontal Old */
	.priceh .old {
		color: var(--color-gray);
		text-decoration: line-through;
		font-weight: 400;
	}

	/* Price Horizontal Discount */
	.priceh .discount {
		background: #AB2838;
		color: var(--color-white);
		padding: 0px 4px;
		border-radius: 2px;
		font-size: 12px;
		font-weight: 700;
		line-height: 9px;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 17px;
	}

	/* Price Horizontal Current */
	.priceh .current {}

	/* Price Horizontal Desde, Type, packageType e Date */
	.priceh .desde, .priceh .type, .priceh .date, .priceh .packageType {
		font-weight: 400;
		font-size: 10px;
		line-height: 117%;
	}

	/* Price Horizontal Desde, Type, packageType e Date */
	.priceh .desde, .priceh .type, .priceh .packageType {
		color: var(--color-gray);
	}

@media screen and (max-width: 1199px) {
	/* MEGA-TITLE */
	.mega-title {
		font-size: 40px;
	}

	/* TITLE */
	h1:not(.nostyle), .h1:not(.nostyle), .title {
		font-size: 34px;
	}

	/* SECONDARY-TITLE */
	h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
		font-size: 28px;
		line-height: 140%;
	}

	/* SUBTITLE */
	h3:not(.nostyle), .h3:not(.nostyle), .subtitle {
		font-size: 21px;
	}

	/* SECONDARY-SUBTITLE */
	h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
		font-size: 18px;
		line-height: 140%;
	}

	/* LIST-NAV-TITLE */
	.list-nav-title {
		font-size: 15px;
	}

	/* LIST-NAV-SUBTITLE - Required for accordion contains secondary-subtitle */
	.list-nav-subtitle {
		font-size: 14px;
	}

	/* SIGNATURE */
	.signature {
		font-size: 14px;
	}

	/* PRODUCT ITEM */
	.brand-list-product {
		font-size: 12px;
	}

	.product-item .desc .name,
	.product-item .price p {
		font-size: 13px;
	}

	/* PRODUCT ITEM - Promo date */
	.product-item .price .type,
	.product-item .ref,
	.product-item .price .date {
		font-size: 9px;
		line-height: 100%;
	}

	.priceh { grid-gap: 0 6px; }
	.priceh, .priceh p {font-size: 12px;}
	.priceh .old {}
	.priceh .discount {font-size: 10px;min-height: 17px;}
	.priceh .current {}

	/* PRODUCT ITEM */
	/* Brand */
	.brand-list-product {
		font-weight: 600;
		font-size: 13px;
	} 

	/* Name */
	.product-item .desc .name {
		font-weight: 600;
		font-size: 14px;
		line-height: 140%;
	}
}

@media screen and (min-width: 1200px) {
	/* Colocar igual aos estilos anteriores de mobile */
	/* PRODUCT ITEM (SMALL) == MOBILE */
	.rdc-product-item-size-small .desc .name ,
	.rdc-product-item-size-small .price p {
		font-size: 14px;
	}

	/* PRODUCT ITEM - Promo date */
	.product-item .price .type,
	.product-item .ref,
	.product-item .price .date {
		font-size: 9px;
		line-height: 117%;
	}
}


/*
 *
 * Elements & Components
 *
*/

/* Primary Button */
	/* Normal */
	.button, button, input[type=submit], input[type=button] {
		font-weight: 700;
		font-size: 13px;
		line-height: 10px;
		color: var(--color-white);
		text-transform: uppercase;
		padding: 0 30px;
		border: 1px solid var(--color-black);
		background-color: var(--color-black);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 100px;
		min-height: 40px;
		border-radius: var(--button-border-radius);
		user-select: none;
	}

	.button:not(.btn-cart).loader, button:not(.btn-cart).loader, input[type=submit]:not(.btn-cart).loader, input[type=button]:not(.btn-cart).loader {
		color: var(--color-black) !important;
		background: var(--color-black) !important;
		border-color: var(--color-black) !important;
	}

	/* Normal Hover */
	@media (hover) {
		.button:not([disabled]):hover, button:not([disabled]):hover, input[type=submit]:not([disabled]):hover, input[type=button]:not([disabled]):hover {
			color: var(--color-black);
			border-color: var(--color-dark);
			background-color: transparent;
		}
	}

	/* Normal Disabled */
	.button[disabled], button[disabled], input[type=submit][disabled], input[type=button][disabled] {
		cursor: default !important;
		color: var(--color-lightgray);
		background-color: var(--color-background);
		border-color: var(--color-background);
	}

	/* 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-lightgray);
		background-color: var(--color-background);
		border-color: var(--color-background);
	}

/* 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-lightgray);
		background-color: var(--color-background);
		border-color: var(--color-background);
	}

	/* 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-lightgray);
		background-color: var(--color-background);
		border-color: var(--color-background);
	}

/* Button Link */
	/* Normal */
	.button.link, .link {
		display: inline; /* Required */
		font-weight: 700;
		font-size: 13px;
		line-height: 117%;
		text-decoration: none !important;
		padding: 0 0 2px;
		text-transform: uppercase;
		border: 0;
		background: transparent;
		color: var(--color-black);
	}

	.button.link:not(.cursor-default), .link:not(.cursor-default) {
		border-bottom: 1px solid currentColor;
	}

	/* Normal Hover */
	@media (hover) {
		.button.link:not([disabled]):hover, .link:not([disabled]):hover {
			border-color: transparent;
			color: currentColor;
		}
	}

	/* Normal Disable */
	.button.link[disabled], .link[disabled] {
		cursor: default !important;
		color: var(--color-lightgray);
	}

	/* White */
	.button.link.white, .link.white {
		color: var(--color-white);
	}

	/* White Hover */
	@media (hover) {
		.button.link.white:not([disabled]):hover, .link.white:not([disabled]):hover {

		}
	}

	/* White Disable */
	.button.link.white[disabled], .link.white[disabled] {
		cursor: default !important;
		color: var(--color-lightgray);
	}

/* Button Card */
	/* Normal */
	.button-card {
		transition: border-color 0.15s,
		box-shadow 0.15s;
		border-radius: var(--button-border-radius);
	}

	/* Normal hover e active */
	@media (hover) {
		.button-card:not(.disabled):not(.esgotado):not(.active):hover {
			border-color: var(--color-gray);
		}
	}

	/* Active */
	.button-card.active {
		box-shadow: 0px 0px 0px 2px var(--color-theme);
		border-color: var(--color-black);
	}

	/* Disable */
	.button-card.disabled {}

	/* Esgotado */
	.button-card.esgotado {}

	/* Title */
	.button-card-title {}

	/* Description */ 
	.button-card-desc {
		color: var(--color-gray);
	}

/* Buttons Cart */
	/* Normal */
	.btn-cart, .btn-cart-esgotado {
		font-weight: 700;
		font-size: 13px;
		line-height: 10px;
		color: var(--color-white);
		text-transform: uppercase;
		padding: 0 20px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 210px;
		min-height: 40px;
		border: 1px solid var(--color-buttoncart);
		background-color: var(--color-buttoncart);
		white-space: nowrap;
		border-radius: var(--button-border-radius);
		-webkit-border-radius: var(--button-border-radius);
		-moz-border-radius: var(--button-border-radius);
		-ms-border-radius: var(--button-border-radius);
		-o-border-radius: var(--button-border-radius);
}

	.btn-cart.loader {
		color: var(--color-buttoncart) !important;
		border-color: var(--color-buttoncart) !important;
		background-color: var(--color-buttoncart) !important;
	}

	/* Normal hover */
	@media (hover) {
		.btn-cart:not([disabled]):not(.loader):not(.btn-cart-esgotado):hover{
			color: var(--color-white);
			border-color: var(--color-buttoncart-hover);
			background-color: var(--color-buttoncart-hover);
		}
	}

	/* Normal Disable */ 
	.btn-cart[disabled] {
		cursor: default !important;
		opacity: 0.5;
	}

/* Button Esgotado */
body .btn-cart-esgotado{
	color: var(--color-lightgray) !important;
	border-color: var(--color-background) !important;
	background-color: var(--color-background) !important;
	cursor: default !important;
	opacity: 1 !important;
}

/* Button Cart Secundario */
.btn-cart-sec{
	color: var(--color-buttoncart);
	border-color: var(--color-buttoncart);
	background-color: transparent;
}

/* Button Cart Secundario hover */
@media (hover: hover) {
	.btn-cart-sec:not([disabled]):not(.loader):not(.btn-cart-esgotado):hover{
		color: var(--color-white);
		border-color: var(--color-buttoncart);
		background-color: var(--color-buttoncart);
	}
}

/* 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: -12px 0 0 -12px;
	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;
}

/* Button Cart Secundario Loading */
.btn-cart-sec.loader {
	color: transparent;
}

.btn-cart-sec.loader::before {
	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='%230F355C'%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;
}

/* Button Icon */
.btn-icon {min-width: 50px;padding: 0;}
.btn-icon .rdc-icon-svg {width: 24px;height: 24px;flex-shrink: 0;}
button:not([disabled]):not(.disabled).btn-icon:not(.btn2), .button:not([disabled]):not(.disabled).btn-icon:not(.btn2) {background-color: var(--color-black);border-color: var(--color-black);}
button:not([disabled]):not(.disabled).btn-icon:not(.btn2) .rdc-icon-svg, .button:not([disabled]):not(.disabled).btn-icon:not(.btn2) .rdc-icon-svg {background-color: var(--color-white);border-color: var(--color-lines);}
.button.btn-icon.disabled, .button.btn-icon[disabled] {pointer-events: none;opacity: 1;} 

/* Button Icon Sec */
button.btn2:not([disabled]):not(.disabled).btn-icon, .button.btn2:not([disabled]):not(.disabled).btn-icon {background-color: var(--color-white);border-color: var(--color-lines);}





/*
 *
 * Accordions
 *
*/
body .accordion > li {
	border-color: var(--color-lines);
}

body .accordion > li.active {
	border-color: var(--color-dark);
}

body .accordion > li.active + li {
	border-top-color: var(--color-dark);
}

body .accordion .accordion-icon .rdc-icon-svg { height: 16px;width: 16px; }

.accordion-head {
	user-select: none;
}

.accordion .accordion-head { padding-top: 12px;padding-bottom: 9px; }
.accordion .accordion-content { padding-top: 0;padding-bottom: 10px; }
.accordion .accordion-head, .accordion .accordion-content {
	padding-left: 15px;
	padding-right: 4em;
}
/*DUVIDA*/



/*
 *
 * Tabs
 *
*/
.tabs-container .tabs:not(.rdc-fixed-styles) li {
	margin: 0 7px;
}

.tabs-container .tabs:not(.rdc-fixed-styles) .tabs-item {
	font-weight: 400;
	font-size: 14px;
	line-height: normal;
	text-decoration: none;
	cursor: pointer;
	display: block;
	padding: 0px 20px;
	border: 1px solid var(--color-lightgray);
	background-color: var(--color-white);
	border-radius: var(--button-border-radius);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	user-select: none;
}

@media (hover) {
	.tabs-container .tabs:not(.rdc-fixed-styles) li:not(.sel) .tabs-item:hover {
		opacity: 0.5;
		background-color: var(--color-background);
		border-color: var(--color-lines);
	}
}

.tabs-container .tabs:not(.rdc-fixed-styles) li.sel .tabs-item {
	color: var(--color-black);
	border-color: var(--color-black);
	opacity: 1;
}

.tabs-container.vertical .tabs:not(.rdc-fixed-styles) .tabs-item {
	display: inline-block;
	padding-bottom: 0;
	border-bottom-width: 1px;
}

@media screen and (max-width: 1199px) {
	.tabs-container .tabs:not(.rdc-fixed-styles) {
		margin: 0 var(--container-padding-n);
	}

	.tabs-container .tabs:not(.rdc-fixed-styles) li:first-child {
		margin-left: var(--container-padding);
	}

	.tabs-container .tabs:not(.rdc-fixed-styles) li:last-child {
		margin-right: var(--container-padding);
		padding-right: 0;
	}
}



/*
 *
 * Form
 *
*/
/* Label (forms, filters, etc) */
.label-title, .label-subtitle, .label-desc {user-select: none;padding-bottom: 6px;font-size: 13px;font-weight: 500;}

/* label por cima da input */
/*.header-shop-tooltip .form-field .label-title:not(.required-policy, .list-nav-subtitle){position: relative;top: auto;left: auto;}*/
.form-field .label-title:not(.required-policy, .list-nav-subtitle),
.wrapper-card-preview .form-field .label-title,
.wrapper-cards .form-field .label-title{
	z-index: 20;
    text-align: left;
    width: auto !important;
    max-width: none;
    position: absolute;
    background-color: transparent;
    padding: 0 4px;
    top: -11px;
    left: 7px;
}

div.wrapper-form .col-sm-1 .label-title, div.wrapper-form .col-sm-2 .label-title, 
div.wrapper-form .col-sm-3 .label-title, div.wrapper-form .col-sm-4 .label-title, 
div.wrapper-form .col-sm-5 .label-title, div.wrapper-form .col-sm-6 .label-title, 
div.wrapper-form .col-sm-7 .label-title, div.wrapper-form .col-sm-8 .label-title, 
div.wrapper-form .col-sm-9 .label-title, div.wrapper-form .col-sm-10 .label-title, 
div.wrapper-form .col-sm-11 .label-title, div.wrapper-form .col-sm-12 .label-title{left: 14px;}
.form-field .label-title:not(.required-policy, .list-nav-subtitle)::after,
.wrapper-card-preview .form-field .label-title::after,
.wrapper-cards .form-field .label-title::after{
	content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    height: 1px;
    z-index: -1;
}
.form-field .rdc-label-help-text,
.form-field .clipboard{
	z-index: 20;
    text-align: left;
    width: auto !important;
    max-width: none;
    position: absolute;
    background-color: transparent;
    padding: 0 4px;
    top: -11px;
    right: 7px;
	color: var(--color-gray);
}
body .form-field p .rdc-label-help-text span:not([class]){color: var(--color-gray);}
.form-field .rdc-label-help-text::after,
.form-field .clipboard::after{
	content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    height: 1px;
    z-index: -1;
}
.form-field .clipboard{right: 14px;}
div.wrapper-form .column .form-field,
div.wrapper-form .form-field{margin-bottom: 30px;}
#main .cms_frm .form-field:not(.col-sm-12){min-height: 1px;}
/* label por cima da input */

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);
	font-size: 13px;
}

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, body .magic-checkbox:checked+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 */
}

body div.select::after {
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	right: 15px;
	width: 16px;
	height: 16px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32px' height='32px' viewBox='0 0 32 32'%3E%3Cpath d='m22.5 6.055-10.018 10.445 10.018 10.445-1.491 1.555-11.509-12 11.509-12z' transform='matrix(0 -1 -1 0 32.5 32.5)'%3E%3C/path%3E%3C/svg%3E") left top/100% no-repeat;
}

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;
}


div.select:not(.select-unseen):has(select:focus:not(:active)) {
    border-color: var(--color-black);
}


::-webkit-input-placeholder {color: var(--color-gray);}
::-moz-placeholder {color: var(--color-gray);}
:-ms-input-placeholder {color: var(--color-gray);}
:-moz-placeholder {color: var(--color-gray);}


.magic-checkbox+label:before, 
.magic-checkbox+span, 
.magic-radio:checked+label:before {  }

body .magic-checkbox:checked+label:before,
body .magic-radio:checked+label:before{
	border-color: var(--color-black);
}

.magic-radio[disabled]+label:before,
.magic-checkbox[disabled]+label:before,
.magic-radio[disabled]+label:before{ background-color: var(--color-background);border-color: var(--color-lines); }

.magic-checkbox+label:after{
	top: 2px;
	left: 2px;
	width: 18px;
	height: 18px;
	border: 0;
	transform: unset;
	mask-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 d='M14.8137 5.34946L7.4555 12.5574C7.39083 12.6207 7.30317 12.6562 7.21176 12.6562C7.12036 12.6562 7.0327 12.6207 6.96802 12.5574L3.74882 9.40395C3.6879 9.3399 3.65473 9.25518 3.6563 9.16765C3.65788 9.08012 3.69408 8.9966 3.75727 8.9347C3.82047 8.87279 3.90572 8.83733 3.99508 8.83579C4.08444 8.83425 4.17092 8.86674 4.2363 8.92642L7.21176 11.8406L14.3262 4.87193C14.3916 4.81225 14.4781 4.77976 14.5674 4.7813C14.6568 4.78285 14.742 4.81831 14.8052 4.88021C14.8684 4.94212 14.9046 5.02563 14.9062 5.11316C14.9078 5.2007 14.8746 5.28541 14.8137 5.34946Z' fill='%23333333'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.014 5.5469L7.65232 12.7584C7.53449 12.8736 7.37585 12.9375 7.21176 12.9375C7.04768 12.9375 6.88917 12.8738 6.77134 12.7585L3.54846 9.60139L3.54504 9.59779C3.43373 9.48077 3.37218 9.32482 3.3751 9.16259C3.37802 9.00036 3.44514 8.84676 3.56046 8.73378C3.67561 8.62099 3.82979 8.55735 3.99022 8.55458C4.15064 8.55181 4.30691 8.61007 4.42591 8.71869L4.42956 8.72203L7.21175 11.4469L14.1329 4.66755L14.1366 4.66421C14.2556 4.55558 14.4119 4.49732 14.5723 4.50009C14.7327 4.50287 14.8869 4.5665 15.002 4.6793C15.1174 4.79227 15.1845 4.94587 15.1874 5.1081C15.1903 5.27033 15.1288 5.42628 15.0175 5.5433L15.014 5.5469ZM7.21176 11.8406L4.2363 8.92642C4.17092 8.86674 4.08444 8.83425 3.99508 8.83579C3.90572 8.83733 3.82047 8.87279 3.75727 8.9347C3.69408 8.9966 3.65788 9.08012 3.6563 9.16765C3.65473 9.25518 3.6879 9.3399 3.74882 9.40395L6.96802 12.5574C7.0327 12.6207 7.12036 12.6562 7.21176 12.6562C7.30317 12.6562 7.39083 12.6207 7.4555 12.5574L14.8137 5.34946C14.8746 5.28541 14.9078 5.2007 14.9062 5.11316C14.9046 5.02563 14.8684 4.94212 14.8052 4.88021C14.742 4.81831 14.6568 4.78285 14.5674 4.7813C14.4781 4.77976 14.3916 4.81225 14.3262 4.87193L7.21176 11.8406Z' fill='%23333333'/%3e%3c/svg%3e ");
	background-size: 100%;
    background-color: #000;
    mask-size: 100%;
}





/*
 *
 * Messages Bar
 *
*/
.form-message .help,
.form-message .success,
.form-message .info,
.form-message .warning,
.form-message .error {
	background-repeat: no-repeat;
	background-position: left 10px center;
	background-size: 20px;
	line-height: 160%;
	padding: 6px 10px 4px 38px;
	border-radius: var(--input-border-radius);
	border: 1px solid;
}

.form-message .help {
	background-color: var(--color-helplight);
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10.674 13.5049C10.674 13.6382 10.6345 13.7685 10.5604 13.8794C10.4864 13.9902 10.3811 14.0766 10.2579 14.1276C10.1348 14.1786 9.99925 14.192 9.86851 14.166C9.73776 14.14 9.61766 14.0758 9.5234 13.9815C9.42913 13.8872 9.36494 13.7671 9.33893 13.6364C9.31293 13.5056 9.32627 13.3701 9.37729 13.247C9.4283 13.1238 9.51469 13.0185 9.62554 12.9445C9.73638 12.8704 9.86669 12.8309 10 12.8309C10.1788 12.8309 10.3502 12.9019 10.4766 13.0283C10.603 13.1547 10.674 13.3261 10.674 13.5049ZM10 6.36029C8.58456 6.36029 7.43873 7.38817 7.43873 8.65196V8.92157C7.43873 9.02882 7.48133 9.13169 7.55718 9.20753C7.63302 9.28337 7.73588 9.32598 7.84314 9.32598C7.9504 9.32598 8.05326 9.28337 8.1291 9.20753C8.20494 9.13169 8.24755 9.02882 8.24755 8.92157V8.65196C8.24755 7.83437 9.03346 7.16912 10 7.16912C10.9665 7.16912 11.7525 7.83437 11.7525 8.65196C11.7525 9.46954 10.9665 10.1348 10 10.1348C9.89274 10.1348 9.78988 10.1774 9.71404 10.2533C9.6382 10.3291 9.59559 10.432 9.59559 10.5392V11.0784C9.59559 11.1857 9.6382 11.2885 9.71404 11.3644C9.78988 11.4402 9.89274 11.4828 10 11.4828C10.1073 11.4828 10.2101 11.4402 10.286 11.3644C10.3618 11.2885 10.4044 11.1857 10.4044 11.0784V10.9153C11.6251 10.7414 12.5613 9.7924 12.5613 8.65196C12.5613 7.38817 11.4154 6.36029 10 6.36029ZM16.875 10C16.875 11.3597 16.4718 12.689 15.7164 13.8195C14.9609 14.9501 13.8872 15.8313 12.6309 16.3517C11.3747 16.872 9.99237 17.0082 8.65876 16.7429C7.32514 16.4776 6.10013 15.8228 5.13864 14.8614C4.17716 13.8999 3.52238 12.6749 3.2571 11.3412C2.99183 10.0076 3.12798 8.62529 3.64833 7.36905C4.16868 6.11281 5.04987 5.03908 6.18046 4.28365C7.31104 3.52821 8.64025 3.125 10 3.125C11.8227 3.12714 13.5701 3.85216 14.859 5.141C16.1478 6.42985 16.8729 8.17729 16.875 10ZM16.0662 10C16.0662 8.80022 15.7104 7.62739 15.0438 6.62981C14.3773 5.63223 13.4299 4.85472 12.3214 4.39558C11.213 3.93645 9.99327 3.81632 8.81655 4.05038C7.63983 4.28445 6.55894 4.86219 5.71057 5.71056C4.8622 6.55893 4.28445 7.63982 4.05039 8.81655C3.81632 9.99327 3.93645 11.213 4.39559 12.3214C4.85472 13.4299 5.63224 14.3773 6.62981 15.0438C7.62739 15.7104 8.80022 16.0662 10 16.0662C11.6083 16.0644 13.1502 15.4247 14.2875 14.2875C15.4247 13.1502 16.0644 11.6083 16.0662 10Z' 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='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.9819 8.09657C13.0576 8.17239 13.1001 8.27518 13.1001 8.38235C13.1001 8.48952 13.0576 8.59231 12.9819 8.66814L9.20735 12.4426C9.13153 12.5184 9.02874 12.5609 8.92157 12.5609C8.8144 12.5609 8.71161 12.5184 8.63579 12.4426L7.01814 10.825C6.9467 10.7483 6.90781 10.6469 6.90966 10.5422C6.91151 10.4374 6.95395 10.3374 7.02805 10.2633C7.10214 10.1892 7.20211 10.1468 7.30688 10.145C7.41165 10.1431 7.51304 10.182 7.58971 10.2534L8.92157 11.5846L12.4103 8.09657C12.4861 8.02083 12.5889 7.9783 12.6961 7.9783C12.8032 7.9783 12.906 8.02083 12.9819 8.09657ZM16.875 10C16.875 11.3597 16.4718 12.689 15.7164 13.8195C14.9609 14.9501 13.8872 15.8313 12.6309 16.3517C11.3747 16.872 9.99237 17.0082 8.65876 16.7429C7.32514 16.4776 6.10013 15.8228 5.13864 14.8614C4.17716 13.8999 3.52238 12.6749 3.2571 11.3412C2.99183 10.0076 3.12798 8.62529 3.64833 7.36905C4.16868 6.11281 5.04987 5.03908 6.18046 4.28365C7.31104 3.52821 8.64025 3.125 10 3.125C11.8227 3.12714 13.5701 3.85216 14.859 5.141C16.1478 6.42985 16.8729 8.17729 16.875 10ZM16.0662 10C16.0662 8.80022 15.7104 7.62739 15.0438 6.62981C14.3773 5.63223 13.4299 4.85472 12.3214 4.39558C11.213 3.93645 9.99327 3.81632 8.81655 4.05038C7.63983 4.28445 6.55894 4.86219 5.71057 5.71056C4.8622 6.55893 4.28445 7.63982 4.05039 8.81655C3.81632 9.99327 3.93645 11.213 4.39559 12.3214C4.85472 13.4299 5.63224 14.3773 6.62981 15.0438C7.62739 15.7104 8.80022 16.0662 10 16.0662C11.6083 16.0644 13.1502 15.4247 14.2875 14.2875C15.4247 13.1502 16.0644 11.6083 16.0662 10Z' 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='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10.9436 13.2353C10.9436 13.3425 10.901 13.4454 10.8252 13.5213C10.7493 13.5971 10.6465 13.6397 10.5392 13.6397C10.289 13.6397 10.0489 13.5403 9.87197 13.3633C9.69501 13.1864 9.59559 12.9463 9.59559 12.6961V10C9.59559 9.96425 9.58139 9.92996 9.55611 9.90468C9.53083 9.8794 9.49654 9.86519 9.46079 9.86519C9.35353 9.86519 9.25067 9.82259 9.17482 9.74674C9.09898 9.6709 9.05637 9.56804 9.05637 9.46078C9.05637 9.35353 9.09898 9.25066 9.17482 9.17482C9.25067 9.09898 9.35353 9.05637 9.46079 9.05637C9.71105 9.05637 9.95107 9.15579 10.128 9.33275C10.305 9.50972 10.4044 9.74973 10.4044 10V12.6961C10.4044 12.7318 10.4186 12.7661 10.4439 12.7914C10.4692 12.8167 10.5035 12.8309 10.5392 12.8309C10.6465 12.8309 10.7493 12.8735 10.8252 12.9493C10.901 13.0252 10.9436 13.128 10.9436 13.2353ZM9.73039 7.70833C9.8637 7.70833 9.99402 7.6688 10.1049 7.59474C10.2157 7.52068 10.3021 7.41541 10.3531 7.29225C10.4041 7.16909 10.4175 7.03356 10.3915 6.90282C10.3655 6.77207 10.3013 6.65197 10.207 6.55771C10.1127 6.46345 9.99263 6.39925 9.86189 6.37324C9.73114 6.34724 9.59562 6.36058 9.47246 6.4116C9.3493 6.46261 9.24403 6.54901 9.16997 6.65985C9.0959 6.77069 9.05637 6.901 9.05637 7.03431C9.05637 7.21307 9.12739 7.38451 9.25379 7.51092C9.38019 7.63732 9.55163 7.70833 9.73039 7.70833ZM16.875 10C16.875 11.3597 16.4718 12.689 15.7164 13.8195C14.9609 14.9501 13.8872 15.8313 12.6309 16.3517C11.3747 16.872 9.99237 17.0082 8.65876 16.7429C7.32514 16.4776 6.10013 15.8228 5.13864 14.8614C4.17716 13.8999 3.52238 12.6749 3.2571 11.3412C2.99183 10.0076 3.12798 8.62529 3.64833 7.36905C4.16868 6.11281 5.04987 5.03908 6.18046 4.28365C7.31104 3.52821 8.64025 3.125 10 3.125C11.8227 3.12714 13.5701 3.85216 14.859 5.141C16.1478 6.42985 16.8729 8.17729 16.875 10ZM16.0662 10C16.0662 8.80022 15.7104 7.62739 15.0438 6.62981C14.3773 5.63223 13.4299 4.85472 12.3214 4.39558C11.213 3.93645 9.99327 3.81632 8.81655 4.05038C7.63983 4.28445 6.55894 4.86219 5.71057 5.71056C4.8622 6.55893 4.28445 7.63982 4.05039 8.81655C3.81632 9.99327 3.93645 11.213 4.39559 12.3214C4.85472 13.4299 5.63224 14.3773 6.62981 15.0438C7.62739 15.7104 8.80022 16.0662 10 16.0662C11.6083 16.0644 13.1502 15.4247 14.2875 14.2875C15.4247 13.1502 16.0644 11.6083 16.0662 10Z' 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='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M17.3086 14.6711L11.5941 4.50114C11.4629 4.27242 11.2756 4.0828 11.0509 3.95105C10.8261 3.8193 10.5717 3.75 10.3128 3.75C10.0539 3.75 9.79952 3.8193 9.57478 3.95105C9.35005 4.0828 9.16279 4.27242 9.03154 4.50114L3.31707 14.6711C3.19129 14.8918 3.125 15.1428 3.125 15.3983C3.125 15.6539 3.19129 15.9049 3.31707 16.1256C3.44657 16.3559 3.63358 16.5467 3.85888 16.6784C4.08419 16.8101 4.33965 16.8779 4.59901 16.8749H16.0266C16.2858 16.8777 16.541 16.8098 16.766 16.6781C16.9911 16.5464 17.1779 16.3557 17.3073 16.1256C17.4333 15.905 17.4998 15.6541 17.5 15.3985C17.5002 15.1429 17.4342 14.8919 17.3086 14.6711ZM16.6284 15.7231C16.5673 15.8307 16.4794 15.9197 16.3736 15.9809C16.2679 16.0421 16.1481 16.0733 16.0266 16.0713H4.59901C4.47756 16.0733 4.35779 16.0421 4.25202 15.9809C4.14625 15.9197 4.05831 15.8307 3.99724 15.7231C3.93999 15.6247 3.90976 15.5122 3.90976 15.3977C3.90976 15.2831 3.93999 15.1706 3.99724 15.0722L9.71106 4.90226C9.77353 4.79591 9.86176 4.70792 9.96721 4.64684C10.0726 4.58576 10.1917 4.55366 10.3128 4.55366C10.4339 4.55366 10.553 4.58576 10.6584 4.64684C10.7639 4.70792 10.8521 4.79591 10.9146 4.90226L16.6291 15.0722C16.6862 15.1707 16.7163 15.2832 16.7162 15.3977C16.7161 15.5123 16.6858 15.6248 16.6284 15.7231Z' fill='%23FAAD14'/%3e%3cpath d='M9.95953 11.5189V8.17801C9.95953 8.08307 9.99671 7.99202 10.0629 7.9249C10.129 7.85777 10.2188 7.82005 10.3124 7.82005C10.406 7.82005 10.4957 7.85777 10.5619 7.9249C10.628 7.99202 10.6652 8.08307 10.6652 8.17801V11.5189C10.6652 11.6139 10.628 11.7049 10.5619 11.772C10.4957 11.8392 10.406 11.8769 10.3124 11.8769C10.2188 11.8769 10.129 11.8392 10.0629 11.772C9.99671 11.7049 9.95953 11.6139 9.95953 11.5189ZM10.9004 13.6666C10.9004 13.7846 10.866 13.9 10.8013 13.9981C10.7367 14.0962 10.6449 14.1727 10.5374 14.2178C10.43 14.263 10.3117 14.2748 10.1976 14.2518C10.0836 14.2288 9.97879 14.1719 9.89654 14.0885C9.8143 14.0051 9.75829 13.8988 9.7356 13.783C9.71291 13.6673 9.72456 13.5474 9.76907 13.4383C9.81358 13.3293 9.88895 13.2362 9.98566 13.1706C10.0824 13.105 10.1961 13.0701 10.3124 13.0701C10.4683 13.0701 10.6179 13.1329 10.7282 13.2448C10.8385 13.3567 10.9004 13.5084 10.9004 13.6666Z' 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='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.4426 8.12892L10.5716 10L12.4426 11.8711C12.4824 11.9081 12.5142 11.9527 12.5364 12.0024C12.5585 12.052 12.5703 12.1055 12.5713 12.1598C12.5723 12.2141 12.5623 12.2681 12.5419 12.3184C12.5216 12.3688 12.4913 12.4145 12.4529 12.4529C12.4145 12.4913 12.3688 12.5216 12.3184 12.5419C12.2681 12.5623 12.2141 12.5723 12.1598 12.5713C12.1055 12.5703 12.052 12.5585 12.0024 12.5363C11.9527 12.5142 11.9081 12.4824 11.8711 12.4426L10 10.5716L8.12892 12.4426C8.05226 12.5141 7.95086 12.553 7.84609 12.5511C7.74132 12.5493 7.64136 12.5068 7.56726 12.4327C7.49317 12.3586 7.45073 12.2587 7.44888 12.1539C7.44703 12.0491 7.48592 11.9477 7.55735 11.8711L9.42843 10L7.55735 8.12892C7.48592 8.05226 7.44703 7.95086 7.44888 7.84609C7.45073 7.74132 7.49317 7.64136 7.56726 7.56726C7.64136 7.49317 7.74132 7.45072 7.84609 7.44887C7.95086 7.44703 8.05226 7.48592 8.12892 7.55735L10 9.42843L11.8711 7.55735C11.9477 7.48592 12.0491 7.44703 12.1539 7.44887C12.2587 7.45072 12.3586 7.49317 12.4327 7.56726C12.5068 7.64136 12.5493 7.74132 12.5511 7.84609C12.553 7.95086 12.5141 8.05226 12.4426 8.12892ZM16.875 10C16.875 11.3597 16.4718 12.689 15.7164 13.8195C14.9609 14.9501 13.8872 15.8313 12.6309 16.3517C11.3747 16.872 9.99237 17.0082 8.65876 16.7429C7.32514 16.4776 6.10013 15.8228 5.13864 14.8614C4.17716 13.8999 3.52238 12.6749 3.2571 11.3412C2.99183 10.0076 3.12798 8.62529 3.64833 7.36905C4.16868 6.11281 5.04987 5.03908 6.18046 4.28365C7.31104 3.52821 8.64025 3.125 10 3.125C11.8227 3.12714 13.5701 3.85216 14.859 5.141C16.1478 6.42985 16.8729 8.17729 16.875 10ZM16.0662 10C16.0662 8.80022 15.7104 7.62739 15.0438 6.62981C14.3773 5.63223 13.4299 4.85472 12.3214 4.39558C11.213 3.93645 9.99327 3.81632 8.81655 4.05038C7.63983 4.28445 6.55894 4.86219 5.71057 5.71056C4.8622 6.55893 4.28445 7.63982 4.05039 8.81655C3.81632 9.99327 3.93645 11.213 4.39559 12.3214C4.85472 13.4299 5.63224 14.3773 6.62981 15.0438C7.62739 15.7104 8.80022 16.0662 10 16.0662C11.6083 16.0644 13.1502 15.4247 14.2875 14.2875C15.4247 13.1502 16.0644 11.6083 16.0662 10Z' 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) */
/*
	body:not(.MacOS) .slim-scrollbar {
		scrollbar-width: thin;
		scrollbar-color: #AAA lightgray;
	}
	.slim-scrollbar::-webkit-scrollbar {
		width: 5px;
		height: 5px;
	}
	.slim-scrollbar::-webkit-scrollbar-track {
		background: lightgray;
	}
	.slim-scrollbar::-webkit-scrollbar-thumb {
		background-color: #AAA;
		border-radius: 8px;
	}
*/






/*
 *
 * Geral
 *
*/
.overlay::before {background-color: var(--color-overlay);content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 90;}
#containerSite-mask {background-color: transparent;}
.border-color {border-color: lightgray;}

/* CONTAINER => max-width: (1902px | 1600px | 1440px) + (--container-padding * 2) */
.container {max-width: calc(1902px + var(--container-padding) * 2);padding-left: var(--container-padding);padding-right: var(--container-padding);}
header .container { max-width: 2560px; }
@media screen and (width: 1920px) {
	body.windows .container {max-width: 1904px;width: calc(1920px + var(--container-padding, 40px) * 2) !important}
}
/* Se o max-width do container for (1902px), colocar o CSS abaixo */
/*.rdc-container-fullscreen {max-width: 1920px;padding-left: 0;padding-right: 0;}*/
@media screen and (max-width: 1440px) {
	.container {max-width: 1404px}
}
@media screen and (max-width: 1366px) {
	.container {max-width: 1332px}
}
@media screen and (max-width: 1280px) {
	.container {max-width: 1242px}
}



/*
 *
 * Sliders
 *
*/
.slider .slick-arrow, .rdc-slider-arrow {
	background-color: #33333380 !important;
	border-radius: 48px;
	box-shadow: 0px 0px 4px 0px rgba(51, 51, 51, 0.25);
	background-position: center !important;
	background-size: 20px;
}

.slider .slick-arrow.slick-disabled{visibility: hidden;}

@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='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.1133 13.0001L16.6599 18.5861C16.8171 18.7443 16.9061 18.9599 16.9061 19.1855C16.9061 19.4112 16.8171 19.6267 16.6599 19.785C16.5029 19.9431 16.2909 20.0312 16.0705 20.0312C15.8502 20.0312 15.6381 19.9431 15.4812 19.785L9.34014 13.5996C9.2623 13.5213 9.20033 13.4281 9.15797 13.3252C9.11561 13.2222 9.09375 13.1117 9.09375 13.0001C9.09375 12.8884 9.11561 12.7779 9.15797 12.675C9.20033 12.5721 9.2623 12.4788 9.34014 12.4005L15.4811 6.21522C15.5588 6.13682 15.6509 6.07485 15.752 6.03263C15.8531 5.99042 15.9613 5.96875 16.0705 5.96875C16.1798 5.96875 16.288 5.99042 16.3891 6.03263C16.4902 6.07485 16.5823 6.13682 16.66 6.21522' fill='white'/%3e%3cpath d='M16.6599 18.5861L11.1133 13.0001L16.842 7.13968C16.842 7.13968 16.9062 6.92627 16.9062 6.8146C16.9062 6.70292 16.8844 6.59245 16.842 6.48951C16.7997 6.38667 16.7378 6.2935 16.66 6.21522C16.5823 6.13682 16.4902 6.07485 16.3891 6.03263C16.288 5.99042 16.1798 5.96875 16.0705 5.96875C15.9613 5.96875 15.8531 5.99042 15.752 6.03263C15.6509 6.07485 15.5588 6.13682 15.4811 6.21522L9.34014 12.4005C9.2623 12.4788 9.20033 12.5721 9.15797 12.675C9.11561 12.7779 9.09375 12.8884 9.09375 13.0001C9.09375 13.1117 9.11561 13.2222 9.15797 13.3252C9.20033 13.4281 9.2623 13.5213 9.34014 13.5996L15.4812 19.785C15.6381 19.9431 15.8502 20.0312 16.0705 20.0312C16.2909 20.0312 16.5029 19.9431 16.6599 19.785C16.8171 19.6267 16.9061 19.4112 16.9061 19.1855C16.9061 18.9599 16.8171 18.7443 16.6599 18.5861Z' fill='white'/%3e%3c/svg%3e ");}

.slider .slick-arrow.slick-next, .rdc-slider-next {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.8867 13.0001L9.34007 18.5861C9.18293 18.7443 9.09389 18.9599 9.09389 19.1855C9.09389 19.4112 9.18292 19.6267 9.34006 19.785C9.49705 19.9431 9.70914 20.0312 9.92945 20.0312C10.1498 20.0312 10.3619 19.9431 10.5188 19.785L16.6599 13.5996C16.7377 13.5213 16.7997 13.4281 16.842 13.3252C16.8844 13.2222 16.9063 13.1117 16.9063 13.0001C16.9063 12.8884 16.8844 12.7779 16.842 12.675C16.7997 12.5721 16.7377 12.4788 16.6599 12.4005L10.5189 6.21522C10.4412 6.13683 10.3491 6.07485 10.248 6.03263C10.1469 5.99042 10.0387 5.96875 9.92945 5.96875C9.82025 5.96875 9.71202 5.99042 9.61093 6.03263C9.50983 6.07485 9.41772 6.13683 9.33997 6.21522' fill='white'/%3e%3cpath d='M9.34007 18.5861L14.8867 13.0001L9.15797 7.13968C9.15797 7.13968 9.09375 6.92627 9.09375 6.8146C9.09375 6.70292 9.11561 6.59245 9.15797 6.48951C9.2003 6.38667 9.26221 6.2935 9.33997 6.21522C9.41772 6.13683 9.50983 6.07485 9.61093 6.03263C9.71202 5.99042 9.82025 5.96875 9.92945 5.96875C10.0387 5.96875 10.1469 5.99042 10.248 6.03263C10.3491 6.07485 10.4412 6.13683 10.5189 6.21522L16.6599 12.4005C16.7377 12.4788 16.7997 12.5721 16.842 12.675C16.8844 12.7779 16.9063 12.8884 16.9063 13.0001C16.9063 13.1117 16.8844 13.2222 16.842 13.3252C16.7997 13.4281 16.7377 13.5213 16.6599 13.5996L10.5188 19.785C10.3619 19.9431 10.1498 20.0312 9.92945 20.0312C9.70914 20.0312 9.49705 19.9431 9.34006 19.785C9.18292 19.6267 9.09389 19.4112 9.09389 19.1855C9.09389 18.9599 9.18293 18.7443 9.34007 18.5861Z' fill='white'/%3e%3c/svg%3e ");
}

body .slick-dots li button{
	width: 32px;
	height: 5px;
	border: 1px solid var(--color-white);
	background-color: var(--color-theme);
	border-radius: 25px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px;
	position: relative;
}

body .slick-dots li.slick-active button{
	background-color: #9E855F;
	border-color: var(--color-white);
}

body .slick-dots li{margin: 2px 2px;}



/*
 *
 * 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 d='M26 22.3913C26 22.5527 25.9328 22.7076 25.813 22.8217C25.6933 22.9359 25.531 23 25.3617 23H6.6383C6.46901 23 6.30666 22.9359 6.18695 22.8217C6.06725 22.7076 6 22.5527 6 22.3913C6 22.2299 6.06725 22.075 6.18695 21.9609C6.30666 21.8467 6.46901 21.7826 6.6383 21.7826H25.3617C25.531 21.7826 25.6933 21.8467 25.813 21.9609C25.9328 22.075 26 22.2299 26 22.3913ZM6.6383 16.5073H25.3617C25.531 16.5073 25.6933 16.4431 25.813 16.329C25.9328 16.2148 26 16.06 26 15.8986C26 15.7371 25.9328 15.5823 25.813 15.4682C25.6933 15.354 25.531 15.2899 25.3617 15.2899H6.6383C6.46901 15.2899 6.30666 15.354 6.18695 15.4682C6.06725 15.5823 6 15.7371 6 15.8986C6 16.06 6.06725 16.2148 6.18695 16.329C6.30666 16.4431 6.46901 16.5073 6.6383 16.5073Z' fill='%23333333'/%3e%3cpath d='M25.3617 10.2174H6.6383C6.46901 10.2174 6.30666 10.1533 6.18695 10.0391C6.06725 9.92498 6 9.77016 6 9.60872C6 9.44728 6.06725 9.29246 6.18695 9.17831C6.30666 9.06416 6.46901 9.00002 6.6383 9.00002H25.3617C25.531 9.00002 25.6933 9.06416 25.813 9.17831C25.9328 9.29246 26 9.44728 26 9.60872C26 9.77016 25.9328 9.92498 25.813 10.0391C25.6933 10.1533 25.531 10.2174 25.3617 10.2174Z' fill='%23333333'/%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='M23.8041 22.9344C23.8646 22.9907 23.9131 23.0587 23.9467 23.1342C23.9804 23.2096 23.9984 23.2911 23.9999 23.3738C24.0014 23.4564 23.9862 23.5385 23.9552 23.6151C23.9243 23.6917 23.8782 23.7613 23.8198 23.8198C23.7613 23.8782 23.6917 23.9243 23.6151 23.9552C23.5385 23.9862 23.4564 24.0014 23.3738 23.9999C23.2911 23.9984 23.2096 23.9804 23.1342 23.9467C23.0587 23.9131 22.9907 23.8646 22.9344 23.8041L15.9846 16.8554L9.03491 23.8041C8.91825 23.9128 8.76396 23.972 8.60453 23.9692C8.4451 23.9664 8.29299 23.9018 8.18024 23.7891C8.06749 23.6763 8.00291 23.5242 8.0001 23.3648C7.99728 23.2053 8.05646 23.0511 8.16516 22.9344L15.1139 15.9846L8.16516 9.03491C8.05646 8.91825 7.99728 8.76396 8.0001 8.60453C8.00291 8.4451 8.06749 8.29299 8.18024 8.18024C8.29299 8.06749 8.4451 8.00291 8.60453 8.0001C8.76396 7.99728 8.91825 8.05646 9.03491 8.16516L15.9846 15.1139L22.9344 8.16516C23.0511 8.05646 23.2053 7.99728 23.3648 8.0001C23.5242 8.00291 23.6763 8.06749 23.7891 8.18024C23.9018 8.29299 23.9664 8.4451 23.9692 8.60453C23.972 8.76396 23.9128 8.91825 23.8041 9.03491L16.8554 15.9846L23.8041 22.9344Z' fill='%23333333'/%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 d='M21.9572 20.0558C21.3888 20.0556 20.8268 20.1735 20.3081 20.4018C19.7893 20.63 19.3255 20.9634 18.9471 21.3802L13.746 18.0949C13.9705 17.5928 14.0864 17.0503 14.0864 16.5019C14.0864 15.9534 13.9705 15.411 13.746 14.9089L18.9471 11.6235C19.6257 12.3674 20.5645 12.8326 21.5765 12.9266C22.5885 13.0205 23.5994 12.7362 24.4077 12.1304C25.2159 11.5245 25.7622 10.6416 25.9377 9.65764C26.1131 8.67364 25.9048 7.66079 25.3543 6.82098C24.8038 5.98116 23.9515 5.37604 22.9673 5.12621C21.9831 4.87639 20.9392 5.00021 20.0437 5.473C19.1483 5.94579 18.4669 6.73283 18.1356 7.67725C17.8042 8.62167 17.8471 9.65413 18.2558 10.5689L13.0546 13.8542C12.509 13.2545 11.7909 12.8318 10.9954 12.6419C10.1999 12.4521 9.36453 12.5042 8.5998 12.7912C7.83507 13.0782 7.17704 13.5867 6.7128 14.2493C6.24857 14.9119 6 15.6974 6 16.5019C6 17.3064 6.24857 18.0919 6.7128 18.7545C7.17704 19.4171 7.83507 19.9256 8.5998 20.2126C9.36453 20.4996 10.1999 20.5516 10.9954 20.3618C11.7909 20.172 12.509 19.7493 13.0546 19.1496L18.2558 22.4349C17.9066 23.2187 17.8243 24.0923 18.0211 24.9257C18.2178 25.7592 18.6832 26.5079 19.3479 27.0605C20.0125 27.613 20.841 27.9399 21.71 27.9925C22.5789 28.0451 23.4419 27.8205 24.1705 27.3522C24.8991 26.8839 25.4544 26.1969 25.7537 25.3934C26.053 24.59 26.0803 23.713 25.8315 22.8931C25.5828 22.0732 25.0713 21.3541 24.3733 20.8429C23.6752 20.3317 22.8278 20.0556 21.9572 20.0558ZM21.9572 6.2581C22.5041 6.2581 23.0388 6.4175 23.4935 6.71612C23.9483 7.01475 24.3028 7.43921 24.5121 7.93581C24.7214 8.43241 24.7761 8.97885 24.6694 9.50604C24.5627 10.0332 24.2994 10.5175 23.9126 10.8976C23.5259 11.2777 23.0331 11.5365 22.4967 11.6414C21.9602 11.7462 21.4042 11.6924 20.8989 11.4867C20.3936 11.281 19.9617 10.9327 19.6578 10.4857C19.3539 10.0388 19.1917 9.51336 19.1917 8.97584C19.1917 8.25505 19.4831 7.56378 20.0017 7.05411C20.5203 6.54444 21.2237 6.2581 21.9572 6.2581ZM10.0446 19.2196C9.49764 19.2196 8.96297 19.0602 8.5082 18.7616C8.05343 18.463 7.69898 18.0385 7.48967 17.5419C7.28036 17.0453 7.2256 16.4989 7.3323 15.9717C7.43901 15.4445 7.70239 14.9602 8.08914 14.5801C8.47589 14.2001 8.96864 13.9412 9.50508 13.8364C10.0415 13.7315 10.5976 13.7853 11.1029 13.991C11.6082 14.1967 12.0401 14.5451 12.3439 14.992C12.6478 15.4389 12.81 15.9644 12.81 16.5019C12.81 17.2227 12.5186 17.9139 12 18.4236C11.4814 18.9333 10.778 19.2196 10.0446 19.2196ZM21.9572 26.7457C21.4102 26.7457 20.8755 26.5863 20.4208 26.2876C19.966 25.989 19.6116 25.5646 19.4022 25.068C19.1929 24.5714 19.1382 24.0249 19.2449 23.4977C19.3516 22.9705 19.615 22.4863 20.0017 22.1062C20.3885 21.7261 20.8812 21.4673 21.4177 21.3624C21.9541 21.2575 22.5101 21.3114 23.0154 21.5171C23.5208 21.7228 23.9527 22.0711 24.2565 22.518C24.5604 22.965 24.7226 23.4904 24.7226 24.0279C24.7226 24.3848 24.651 24.7382 24.5121 25.068C24.3731 25.3977 24.1694 25.6973 23.9126 25.9496C23.6558 26.202 23.351 26.4022 23.0154 26.5388C22.6799 26.6754 22.3203 26.7457 21.9572 26.7457Z' fill='%23333333'/%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='%23333333'/%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='%23333333'/%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='%23333333'/%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='%23333333'/%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='%23333333'/%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='%23333333'/%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='%23333333'/%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='%23333333'/%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='%23333333'/%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='%23333333'/%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 d='M24.4706 9H7.52941C7.389 9 7.25435 9.05673 7.15506 9.15771C7.05578 9.25869 7 9.39565 7 9.53846V21.7436C7 22.0768 7.13015 22.3964 7.36181 22.632C7.59347 22.8676 7.90767 23 8.23529 23H23.7647C24.0923 23 24.4065 22.8676 24.6382 22.632C24.8699 22.3964 25 22.0768 25 21.7436V9.53846C25 9.39565 24.9442 9.25869 24.8449 9.15771C24.7457 9.05673 24.611 9 24.4706 9ZM16 16.7054L8.89 10.0769H23.11L16 16.7054ZM13.6768 16L8.05882 21.2374V10.7626L13.6768 16ZM14.4603 16.7305L15.6471 17.8326C15.7447 17.9234 15.8721 17.9737 16.0044 17.9737C16.1367 17.9737 16.2642 17.9234 16.3618 17.8326L17.5441 16.7305L23.11 21.9231H8.89088L14.4603 16.7305ZM18.3232 16L23.9412 10.7626V21.2374L18.3232 16Z' fill='%23333333'/%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='M25.1425 19.7038L20.322 17.5436C20.1035 17.45 19.8652 17.4123 19.6286 17.4341C19.392 17.4558 19.1645 17.5362 18.9668 17.6681C18.9467 17.6809 18.9276 17.6953 18.9097 17.7109L16.3902 19.8538C16.364 19.8681 16.3349 19.8761 16.3052 19.8771C16.2754 19.8782 16.2458 19.8723 16.2188 19.86C14.5993 19.0783 12.9217 17.4109 12.137 15.8139C12.1239 15.7872 12.1171 15.7579 12.1171 15.7282C12.1171 15.6985 12.1239 15.6692 12.137 15.6425L14.287 13.0914C14.3025 13.0725 14.3168 13.0527 14.3299 13.0322C14.4599 12.8337 14.5384 12.606 14.5584 12.3696C14.5783 12.1332 14.5391 11.8955 14.4442 11.678L12.2992 6.86562C12.1774 6.58154 11.9667 6.34462 11.6989 6.19044C11.431 6.03625 11.1203 5.97311 10.8135 6.01049C9.47996 6.1858 8.25592 6.84066 7.37008 7.8527C6.48424 8.86474 5.99722 10.1647 6.00001 11.5097C6.00001 19.4998 12.5002 26 20.4903 26C21.8352 26.0026 23.1351 25.5155 24.1471 24.6297C25.1591 23.7439 25.814 22.52 25.9895 21.1865C26.0268 20.8812 25.9645 20.5719 25.8119 20.3047C25.6593 20.0376 25.4246 19.8268 25.1425 19.7038ZM20.4903 24.7755C13.1758 24.7755 7.22455 18.8242 7.22455 11.5097C7.22114 10.4626 7.59905 9.45014 8.28769 8.66141C8.97633 7.87268 9.92858 7.36165 10.9665 7.2238H10.99C11.0311 7.22456 11.071 7.23774 11.1045 7.26159C11.1381 7.28545 11.1636 7.31887 11.1778 7.35747L13.3309 12.1648C13.3432 12.1915 13.3495 12.2206 13.3495 12.25C13.3495 12.2794 13.3432 12.3085 13.3309 12.3352L11.1767 14.8924C11.1607 14.9107 11.146 14.9301 11.1329 14.9506C10.9981 15.1564 10.9187 15.3935 10.9024 15.6389C10.8861 15.8844 10.9335 16.1299 11.04 16.3517C11.9451 18.2048 13.8125 20.0579 15.6861 20.9631C15.9091 21.0689 16.1558 21.1152 16.4021 21.0973C16.6484 21.0794 16.8858 20.998 17.0912 20.861C17.1106 20.8478 17.13 20.8335 17.1484 20.8182L19.6668 18.6752C19.6917 18.6619 19.7192 18.654 19.7474 18.6523C19.7755 18.6505 19.8038 18.6549 19.8301 18.665L24.6517 20.8253C24.6911 20.8421 24.7242 20.8708 24.7464 20.9074C24.7685 20.9441 24.7786 20.9867 24.7752 21.0294C24.6381 22.0678 24.1275 23.0208 23.3389 23.7102C22.5504 24.3996 21.5378 24.7783 20.4903 24.7755Z' fill='%23333333'/%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 d='M24.818 20.8085C24.276 19.8529 23.4706 17.1579 23.4706 13.6525C23.4706 11.6229 22.6836 9.67647 21.2828 8.24135C19.882 6.80624 17.982 6 16.001 6C14.0199 6 12.12 6.80624 10.7191 8.24135C9.3183 9.67647 8.53132 11.6229 8.53132 13.6525C8.53132 17.1589 7.72498 19.8529 7.18296 20.8085C7.06403 21.0171 7.00093 21.2542 7.00001 21.4958C6.99909 21.7374 7.0604 21.975 7.17774 22.1845C7.29507 22.3941 7.4643 22.5683 7.66832 22.6894C7.87235 22.8106 8.10396 22.8745 8.33979 22.8747H12.4079C12.5474 23.7473 12.9852 24.5407 13.643 25.1132C14.3009 25.6857 15.1359 26 15.999 26C16.8622 26 17.6972 25.6857 18.355 25.1132C19.0129 24.5407 19.4507 23.7473 19.5902 22.8747H23.6621C23.8978 22.8742 24.1292 22.81 24.3329 22.6887C24.5367 22.5674 24.7056 22.3932 24.8227 22.1837C24.9398 21.9742 25.001 21.7368 25 21.4953C24.999 21.2539 24.9359 21.017 24.817 20.8085H24.818ZM16.001 24.8368C15.4406 24.8367 14.8968 24.6429 14.4573 24.2868C14.0178 23.9307 13.7084 23.4332 13.5791 22.8747H18.4228C18.2935 23.4332 17.9841 23.9307 17.5446 24.2868C17.1051 24.6429 16.5613 24.8367 16.001 24.8368ZM23.8259 21.5993C23.8101 21.6293 23.7866 21.6543 23.7579 21.6716C23.7292 21.6889 23.6964 21.6978 23.6631 21.6974H8.33979C8.30649 21.6978 8.2737 21.6889 8.24499 21.6716C8.21629 21.6543 8.19277 21.6293 8.17699 21.5993C8.16018 21.5694 8.15133 21.5356 8.15133 21.5011C8.15133 21.4667 8.16018 21.4329 8.17699 21.403C8.90193 20.1276 9.6805 17.154 9.6805 13.6525C9.6805 11.9351 10.3464 10.2882 11.5317 9.07383C12.717 7.8595 14.3247 7.1773 16.001 7.1773C17.6772 7.1773 19.2849 7.8595 20.4702 9.07383C21.6555 10.2882 22.3214 11.9351 22.3214 13.6525C22.3214 17.153 23.1009 20.1227 23.8259 21.403C23.8427 21.4329 23.8515 21.4667 23.8515 21.5011C23.8515 21.5356 23.8427 21.5694 23.8259 21.5993Z' fill='%23333333'/%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 d='M17.0784 21.6078C17.0784 21.8211 17.0152 22.0296 16.8967 22.207C16.7782 22.3843 16.6098 22.5226 16.4127 22.6042C16.2156 22.6858 15.9988 22.7072 15.7896 22.6655C15.5804 22.6239 15.3883 22.5212 15.2374 22.3704C15.0866 22.2196 14.9839 22.0274 14.9423 21.8182C14.9007 21.609 14.922 21.3922 15.0037 21.1951C15.0853 20.9981 15.2235 20.8297 15.4009 20.7112C15.5782 20.5927 15.7867 20.5294 16 20.5294C16.286 20.5294 16.5603 20.643 16.7626 20.8453C16.9648 21.0475 17.0784 21.3218 17.0784 21.6078ZM16 10.1765C13.7353 10.1765 11.902 11.8211 11.902 13.8431V14.2745C11.902 14.4461 11.9701 14.6107 12.0915 14.732C12.2128 14.8534 12.3774 14.9216 12.549 14.9216C12.7206 14.9216 12.8852 14.8534 13.0066 14.732C13.1279 14.6107 13.1961 14.4461 13.1961 14.2745V13.8431C13.1961 12.535 14.4535 11.4706 16 11.4706C17.5465 11.4706 18.8039 12.535 18.8039 13.8431C18.8039 15.1513 17.5465 16.2157 16 16.2157C15.8284 16.2157 15.6638 16.2839 15.5425 16.4052C15.4211 16.5265 15.3529 16.6911 15.3529 16.8627V17.7255C15.3529 17.8971 15.4211 18.0617 15.5425 18.183C15.6638 18.3044 15.8284 18.3725 16 18.3725C16.1716 18.3725 16.3362 18.3044 16.4575 18.183C16.5789 18.0617 16.6471 17.8971 16.6471 17.7255V17.4645C18.6001 17.1863 20.098 15.6678 20.098 13.8431C20.098 11.8211 18.2647 10.1765 16 10.1765ZM27 16C27 18.1756 26.3549 20.3023 25.1462 22.1113C23.9375 23.9202 22.2195 25.3301 20.2095 26.1627C18.1995 26.9952 15.9878 27.2131 13.854 26.7886C11.7202 26.3642 9.76021 25.3165 8.22183 23.7782C6.68345 22.2398 5.6358 20.2798 5.21137 18.146C4.78693 16.0122 5.00477 13.8005 5.83733 11.7905C6.66989 9.78049 8.07979 8.06253 9.88873 6.85383C11.6977 5.64514 13.8244 5 16 5C18.9163 5.00342 21.7122 6.16345 23.7744 8.22561C25.8365 10.2878 26.9966 13.0837 27 16ZM25.7059 16C25.7059 14.0804 25.1366 12.2038 24.0701 10.6077C23.0037 9.01158 21.4878 7.76755 19.7143 7.03293C17.9408 6.29832 15.9892 6.10611 14.1065 6.48061C12.2237 6.85512 10.4943 7.77951 9.13691 9.1369C7.77952 10.4943 6.85512 12.2237 6.48062 14.1065C6.10611 15.9892 6.29832 17.9408 7.03294 19.7143C7.76755 21.4878 9.01158 23.0036 10.6077 24.0701C12.2038 25.1366 14.0804 25.7059 16 25.7059C18.5733 25.703 21.0404 24.6795 22.8599 22.8599C24.6795 21.0404 25.703 18.5733 25.7059 16Z' 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 d='M17.5098 21.1765C17.5098 21.3481 17.4416 21.5127 17.3203 21.634C17.1989 21.7554 17.0344 21.8235 16.8627 21.8235C16.4623 21.8235 16.0783 21.6645 15.7952 21.3813C15.512 21.0982 15.3529 20.7141 15.3529 20.3137V16C15.3529 15.9428 15.3302 15.8879 15.2898 15.8475C15.2493 15.807 15.1945 15.7843 15.1373 15.7843C14.9656 15.7843 14.8011 15.7161 14.6797 15.5948C14.5584 15.4734 14.4902 15.3089 14.4902 15.1373C14.4902 14.9656 14.5584 14.8011 14.6797 14.6797C14.8011 14.5584 14.9656 14.4902 15.1373 14.4902C15.5377 14.4902 15.9217 14.6493 16.2048 14.9324C16.488 15.2155 16.6471 15.5996 16.6471 16V20.3137C16.6471 20.3709 16.6698 20.4258 16.7102 20.4662C16.7507 20.5067 16.8055 20.5294 16.8627 20.5294C17.0344 20.5294 17.1989 20.5976 17.3203 20.7189C17.4416 20.8403 17.5098 21.0049 17.5098 21.1765ZM15.5686 12.3333C15.7819 12.3333 15.9904 12.2701 16.1678 12.1516C16.3451 12.0331 16.4833 11.8647 16.565 11.6676C16.6466 11.4705 16.668 11.2537 16.6263 11.0445C16.5847 10.8353 16.482 10.6432 16.3312 10.4923C16.1804 10.3415 15.9882 10.2388 15.779 10.1972C15.5698 10.1556 15.353 10.1769 15.1559 10.2586C14.9589 10.3402 14.7904 10.4784 14.6719 10.6558C14.5534 10.8331 14.4902 11.0416 14.4902 11.2549C14.4902 11.5409 14.6038 11.8152 14.8061 12.0175C15.0083 12.2197 15.2826 12.3333 15.5686 12.3333ZM27 16C27 18.1756 26.3549 20.3023 25.1462 22.1113C23.9375 23.9202 22.2195 25.3301 20.2095 26.1627C18.1995 26.9952 15.9878 27.2131 13.854 26.7886C11.7202 26.3642 9.76021 25.3165 8.22183 23.7782C6.68345 22.2398 5.6358 20.2798 5.21137 18.146C4.78693 16.0122 5.00477 13.8005 5.83733 11.7905C6.66989 9.78049 8.07979 8.06253 9.88873 6.85383C11.6977 5.64514 13.8244 5 16 5C18.9163 5.00342 21.7122 6.16345 23.7744 8.22561C25.8365 10.2878 26.9966 13.0837 27 16ZM25.7059 16C25.7059 14.0804 25.1366 12.2038 24.0701 10.6077C23.0037 9.01158 21.4878 7.76755 19.7143 7.03293C17.9408 6.29832 15.9892 6.10611 14.1065 6.48061C12.2237 6.85512 10.4943 7.77951 9.13691 9.1369C7.77952 10.4943 6.85512 12.2237 6.48062 14.1065C6.10611 15.9892 6.29832 17.9408 7.03294 19.7143C7.76755 21.4878 9.01158 23.0036 10.6077 24.0701C12.2038 25.1366 14.0804 25.7059 16 25.7059C18.5733 25.703 21.0404 24.6795 22.8599 22.8599C24.6795 21.0404 25.703 18.5733 25.7059 16Z' 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 d='M20.771 12.9545C20.8922 13.0758 20.9602 13.2403 20.9602 13.4118C20.9602 13.5832 20.8922 13.7477 20.771 13.869L14.7318 19.9082C14.6104 20.0294 14.446 20.0975 14.2745 20.0975C14.103 20.0975 13.9386 20.0294 13.8173 19.9082L11.229 17.32C11.1147 17.1973 11.0525 17.0351 11.0555 16.8675C11.0584 16.6998 11.1263 16.5399 11.2449 16.4213C11.3634 16.3028 11.5234 16.2349 11.691 16.2319C11.8586 16.229 12.0209 16.2912 12.1435 16.4055L14.2745 18.5354L19.8565 12.9545C19.9778 12.8333 20.1423 12.7653 20.3137 12.7653C20.4852 12.7653 20.6497 12.8333 20.771 12.9545ZM27 16C27 18.1756 26.3549 20.3023 25.1462 22.1113C23.9375 23.9202 22.2195 25.3301 20.2095 26.1627C18.1995 26.9952 15.9878 27.2131 13.854 26.7886C11.7202 26.3642 9.76021 25.3165 8.22183 23.7782C6.68345 22.2398 5.6358 20.2798 5.21137 18.146C4.78693 16.0122 5.00477 13.8005 5.83733 11.7905C6.66989 9.78049 8.07979 8.06253 9.88873 6.85383C11.6977 5.64514 13.8244 5 16 5C18.9163 5.00342 21.7122 6.16345 23.7744 8.22561C25.8365 10.2878 26.9966 13.0837 27 16ZM25.7059 16C25.7059 14.0804 25.1366 12.2038 24.0701 10.6077C23.0037 9.01158 21.4878 7.76755 19.7143 7.03293C17.9408 6.29832 15.9892 6.10611 14.1065 6.48061C12.2237 6.85512 10.4943 7.77951 9.13691 9.1369C7.77952 10.4943 6.85512 12.2237 6.48062 14.1065C6.10611 15.9892 6.29832 17.9408 7.03294 19.7143C7.76755 21.4878 9.01158 23.0036 10.6077 24.0701C12.2038 25.1366 14.0804 25.7059 16 25.7059C18.5733 25.703 21.0404 24.6795 22.8599 22.8599C24.6795 21.0404 25.703 18.5733 25.7059 16Z' 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 d='M19.9082 13.0063L16.9145 16L19.9082 18.9937C19.9718 19.053 20.0228 19.1244 20.0582 19.2038C20.0935 19.2831 20.1125 19.3688 20.1141 19.4557C20.1156 19.5426 20.0996 19.6289 20.0671 19.7095C20.0345 19.79 19.9861 19.8632 19.9247 19.9247C19.8632 19.9861 19.79 20.0345 19.7095 20.0671C19.6289 20.0996 19.5426 20.1156 19.4557 20.1141C19.3688 20.1125 19.2831 20.0935 19.2038 20.0582C19.1244 20.0228 19.053 19.9718 18.9937 19.9082L16 16.9145L13.0063 19.9082C12.8836 20.0225 12.7214 20.0848 12.5537 20.0818C12.3861 20.0788 12.2262 20.0109 12.1076 19.8924C11.9891 19.7738 11.9212 19.6139 11.9182 19.4463C11.9152 19.2786 11.9775 19.1164 12.0918 18.9937L15.0855 16L12.0918 13.0063C11.9775 12.8836 11.9152 12.7214 11.9182 12.5537C11.9212 12.3861 11.9891 12.2262 12.1076 12.1076C12.2262 11.9891 12.3861 11.9212 12.5537 11.9182C12.7214 11.9152 12.8836 11.9775 13.0063 12.0918L16 15.0855L18.9937 12.0918C19.1164 11.9775 19.2786 11.9152 19.4463 11.9182C19.6139 11.9212 19.7738 11.9891 19.8924 12.1076C20.0109 12.2262 20.0788 12.3861 20.0818 12.5537C20.0848 12.7214 20.0225 12.8836 19.9082 13.0063ZM27 16C27 18.1756 26.3549 20.3023 25.1462 22.1113C23.9375 23.9202 22.2195 25.3301 20.2095 26.1627C18.1995 26.9952 15.9878 27.2131 13.854 26.7886C11.7202 26.3642 9.76021 25.3165 8.22183 23.7782C6.68345 22.2398 5.6358 20.2798 5.21137 18.146C4.78693 16.0122 5.00477 13.8005 5.83733 11.7905C6.66989 9.78049 8.07979 8.06253 9.88873 6.85383C11.6977 5.64514 13.8244 5 16 5C18.9163 5.00342 21.7122 6.16345 23.7744 8.22561C25.8365 10.2878 26.9966 13.0837 27 16ZM25.7059 16C25.7059 14.0804 25.1366 12.2038 24.0701 10.6077C23.0037 9.01158 21.4878 7.76755 19.7143 7.03293C17.9408 6.29832 15.9892 6.10611 14.1065 6.48061C12.2237 6.85512 10.4943 7.77951 9.13691 9.1369C7.77952 10.4943 6.85512 12.2237 6.48062 14.1065C6.10611 15.9892 6.29832 17.9408 7.03294 19.7143C7.76755 21.4878 9.01158 23.0036 10.6077 24.0701C12.2038 25.1366 14.0804 25.7059 16 25.7059C18.5733 25.703 21.0404 24.6795 22.8599 22.8599C24.6795 21.0404 25.703 18.5733 25.7059 16Z' 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 d='M27.6937 23.4737L18.5506 7.20183C18.3406 6.83588 18.041 6.53248 17.6814 6.32168C17.3218 6.11089 16.9148 6 16.5005 6C16.0863 6 15.6792 6.11089 15.3197 6.32168C14.9601 6.53248 14.6605 6.83588 14.4505 7.20183L5.30731 23.4737C5.10606 23.8268 5 24.2284 5 24.6373C5 25.0462 5.10606 25.4478 5.30731 25.8009C5.51451 26.1694 5.81373 26.4747 6.17421 26.6855C6.5347 26.8962 6.94344 27.0047 7.35841 26.9998H25.6426C26.0573 27.0043 26.4656 26.8956 26.8256 26.6849C27.1857 26.4742 27.4846 26.1691 27.6916 25.8009C27.8932 25.448 27.9996 25.0465 28 24.6376C28.0004 24.2287 27.8947 23.827 27.6937 23.4737ZM26.6055 25.157C26.5078 25.3292 26.367 25.4715 26.1978 25.5695C26.0286 25.6674 25.837 25.7173 25.6426 25.7141H7.35841C7.16409 25.7173 6.97246 25.6674 6.80323 25.5695C6.634 25.4715 6.49329 25.3292 6.39559 25.157C6.30398 24.9995 6.25562 24.8196 6.25562 24.6363C6.25562 24.4529 6.30398 24.273 6.39559 24.1155L15.5377 7.84362C15.6376 7.67346 15.7788 7.53268 15.9475 7.43494C16.1162 7.33721 16.3067 7.28585 16.5005 7.28585C16.6943 7.28585 16.8848 7.33721 17.0535 7.43494C17.2222 7.53268 17.3634 7.67346 17.4633 7.84362L26.6065 24.1155C26.698 24.2731 26.7461 24.4531 26.746 24.6364C26.7458 24.8197 26.6972 24.9996 26.6055 25.157Z' fill='%23FAAD14'/%3e%3cpath d='M15.9353 18.4303V13.0848C15.9353 12.9329 15.9947 12.7872 16.1006 12.6798C16.2065 12.5724 16.3501 12.5121 16.4998 12.5121C16.6495 12.5121 16.7931 12.5724 16.899 12.6798C17.0049 12.7872 17.0643 12.9329 17.0643 13.0848V18.4303C17.0643 18.5822 17.0049 18.7278 16.899 18.8352C16.7931 18.9427 16.6495 19.003 16.4998 19.003C16.3501 19.003 16.2065 18.9427 16.1006 18.8352C15.9947 18.7278 15.9353 18.5822 15.9353 18.4303ZM17.4407 21.8666C17.4407 22.0554 17.3855 22.24 17.2821 22.3969C17.1787 22.5539 17.0318 22.6763 16.8599 22.7485C16.6879 22.8208 16.4988 22.8397 16.3162 22.8028C16.1337 22.766 15.9661 22.6751 15.8345 22.5416C15.7029 22.4081 15.6133 22.238 15.577 22.0529C15.5407 21.8677 15.5593 21.6758 15.6305 21.5013C15.7017 21.3269 15.8223 21.1778 15.9771 21.073C16.1318 20.9681 16.3137 20.9121 16.4998 20.9121C16.7493 20.9121 16.9887 21.0127 17.1651 21.1917C17.3416 21.3707 17.4407 21.6135 17.4407 21.8666Z' 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 fill-rule='evenodd' clip-rule='evenodd' d='M7.05014 26.5615C7.32714 26.5663 7.59523 26.4635 7.79792 26.2747L16.2806 17.7935L24.7522 26.2639C24.8493 26.367 24.966 26.4498 25.0954 26.5074C25.2265 26.5659 25.3681 26.5973 25.5117 26.5998C25.6552 26.6024 25.7979 26.576 25.931 26.5222C26.0641 26.4684 26.1851 26.3884 26.2866 26.2868C26.3881 26.1853 26.4682 26.0644 26.522 25.9312C26.5757 25.7981 26.6021 25.6555 26.5996 25.5119C26.5971 25.3683 26.5657 25.2268 26.5072 25.0956C26.4495 24.9662 26.3667 24.8495 26.2636 24.7524L17.7933 16.2808L26.2672 7.80588L26.2744 7.79815C26.4633 7.59546 26.5661 7.32737 26.5612 7.05037C26.5563 6.77337 26.4441 6.50907 26.2482 6.31317C26.0523 6.11727 25.788 6.00505 25.511 6.00017C25.234 5.99528 24.9658 6.09796 24.7631 6.28683L16.2806 14.7681L7.80565 6.29417L7.79792 6.28697C7.59523 6.0981 7.32714 5.99528 7.05014 6.00017C6.77314 6.00505 6.50885 6.11727 6.31294 6.31317C6.11704 6.50907 6.00483 6.77337 5.99994 7.05037C5.99505 7.32737 6.09774 7.59559 6.2866 7.79828L14.7679 16.2808L6.29395 24.7557L6.28674 24.7635C6.09787 24.9662 5.99505 25.2343 5.99994 25.5113C6.00483 25.7883 6.11704 26.0526 6.31294 26.2485C6.50885 26.4444 6.77314 26.5566 7.05014 26.5615Z' fill='%23333333'/%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 d='M24.4255 9.13725H20.4043V8.15686C20.4043 7.58483 20.1823 7.03622 19.7873 6.63173C19.3923 6.22724 18.8565 6 18.2979 6H13.7021C13.1435 6 12.6077 6.22724 12.2127 6.63173C11.8177 7.03622 11.5957 7.58483 11.5957 8.15686V9.13725H7.57447C7.42211 9.13725 7.27599 9.19923 7.16826 9.30955C7.06052 9.41986 7 9.56948 7 9.72549C7 9.8815 7.06052 10.0311 7.16826 10.1414C7.27599 10.2518 7.42211 10.3137 7.57447 10.3137H8.53191V24.6275C8.53191 24.9915 8.67314 25.3406 8.92452 25.598C9.1759 25.8554 9.51684 26 9.87234 26H22.1277C22.4832 26 22.8241 25.8554 23.0755 25.598C23.3269 25.3406 23.4681 24.9915 23.4681 24.6275V10.3137H24.4255C24.5779 10.3137 24.724 10.2518 24.8317 10.1414C24.9395 10.0311 25 9.8815 25 9.72549C25 9.56948 24.9395 9.41986 24.8317 9.30955C24.724 9.19923 24.5779 9.13725 24.4255 9.13725ZM12.7447 8.15686C12.7447 7.89685 12.8456 7.64748 13.0251 7.46362C13.2047 7.27976 13.4482 7.17647 13.7021 7.17647H18.2979C18.5518 7.17647 18.7953 7.27976 18.9749 7.46362C19.1544 7.64748 19.2553 7.89685 19.2553 8.15686V9.13725H12.7447V8.15686ZM22.3191 24.6275C22.3191 24.6795 22.299 24.7293 22.2631 24.7661C22.2272 24.8029 22.1784 24.8235 22.1277 24.8235H9.87234C9.82155 24.8235 9.77285 24.8029 9.73694 24.7661C9.70103 24.7293 9.68085 24.6795 9.68085 24.6275V10.3137H22.3191V24.6275ZM14.2766 14.4314V20.7059C14.2766 20.8619 14.2161 21.0115 14.1083 21.1218C14.0006 21.2321 13.8545 21.2941 13.7021 21.2941C13.5498 21.2941 13.4037 21.2321 13.2959 21.1218C13.1882 21.0115 13.1277 20.8619 13.1277 20.7059V14.4314C13.1277 14.2754 13.1882 14.1257 13.2959 14.0154C13.4037 13.9051 13.5498 13.8431 13.7021 13.8431C13.8545 13.8431 14.0006 13.9051 14.1083 14.0154C14.2161 14.1257 14.2766 14.2754 14.2766 14.4314ZM18.8723 14.4314V20.7059C18.8723 20.8619 18.8118 21.0115 18.7041 21.1218C18.5963 21.2321 18.4502 21.2941 18.2979 21.2941C18.1455 21.2941 17.9994 21.2321 17.8917 21.1218C17.7839 21.0115 17.7234 20.8619 17.7234 20.7059V14.4314C17.7234 14.2754 17.7839 14.1257 17.8917 14.0154C17.9994 13.9051 18.1455 13.8431 18.2979 13.8431C18.4502 13.8431 18.5963 13.9051 18.7041 14.0154C18.8118 14.1257 18.8723 14.2754 18.8723 14.4314Z' fill='%23333333'/%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='M24.6234 11.4808L20.5194 7.37662C20.4001 7.25722 20.2583 7.1625 20.1023 7.09788C19.9463 7.03326 19.7792 7 19.6103 7C19.4415 7 19.2743 7.03326 19.1183 7.09788C18.9623 7.1625 18.8206 7.25722 18.7012 7.37662L7.37651 18.701C7.25689 18.8202 7.16203 18.9619 7.09741 19.1179C7.0328 19.274 6.99969 19.4412 7 19.6101V23.7143C7 24.0553 7.13545 24.3823 7.37656 24.6234C7.61766 24.8645 7.94467 25 8.28564 25H23.7133C23.8595 25 23.9996 24.9419 24.103 24.8386C24.2063 24.7353 24.2643 24.5951 24.2643 24.449C24.2643 24.3028 24.2063 24.1627 24.103 24.0594C23.9996 23.956 23.8595 23.898 23.7133 23.898H14.0242L24.6234 13.2991C24.7428 13.1798 24.8375 13.038 24.9021 12.882C24.9667 12.726 25 12.5588 25 12.39C25 12.2211 24.9667 12.0539 24.9021 11.8979C24.8375 11.7419 24.7428 11.6002 24.6234 11.4808ZM12.4658 23.898H8.28564C8.23693 23.898 8.19022 23.8786 8.15577 23.8442C8.12133 23.8097 8.10198 23.763 8.10198 23.7143V19.6101C8.10219 19.5615 8.12167 19.5149 8.15616 19.4806L16.3668 11.2696L20.7307 15.6327L12.4658 23.898ZM23.8437 12.5195L21.5094 14.8539L17.1465 10.4899L19.4799 8.15631C19.497 8.13923 19.5172 8.12569 19.5395 8.11644C19.5618 8.1072 19.5857 8.10244 19.6099 8.10244C19.634 8.10244 19.6579 8.1072 19.6802 8.11644C19.7025 8.12569 19.7227 8.13923 19.7398 8.15631L23.8437 12.2596C23.8608 12.2766 23.8744 12.2969 23.8836 12.3192C23.8929 12.3415 23.8976 12.3654 23.8976 12.3895C23.8976 12.4136 23.8929 12.4375 23.8836 12.4598C23.8744 12.4821 23.8608 12.5024 23.8437 12.5195Z' fill='%23333333'/%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 d='M25.8422 25.0115L20.8087 19.9779C22.2441 18.3272 22.9825 16.1837 22.8682 13.9991C22.754 11.8146 21.7961 9.75979 20.1963 8.26779C18.5966 6.77579 16.4801 5.96319 14.2929 6.00128C12.1057 6.03937 10.0188 6.92518 8.47198 8.47198C6.92518 10.0188 6.03937 12.1057 6.00128 14.2929C5.96319 16.4801 6.77579 18.5966 8.26779 20.1963C9.75979 21.7961 11.8146 22.754 13.9991 22.8682C16.1837 22.9825 18.3272 22.2441 19.9779 20.8087L25.0115 25.8422C25.1229 25.9461 25.2703 26.0026 25.4226 25.9999C25.5748 25.9972 25.7201 25.9355 25.8278 25.8278C25.9355 25.7201 25.9972 25.5748 25.9999 25.4226C26.0026 25.2703 25.9461 25.1229 25.8422 25.0115ZM7.20495 14.4545C7.20495 13.0207 7.63013 11.6191 8.42672 10.4269C9.22332 9.23469 10.3555 8.3055 11.6802 7.75679C13.0049 7.20809 14.4626 7.06452 15.8688 7.34425C17.2751 7.62398 18.5669 8.31443 19.5808 9.3283C20.5946 10.3422 21.2851 11.6339 21.5648 13.0402C21.8445 14.4465 21.701 15.9041 21.1523 17.2288C20.6036 18.5535 19.6744 19.6857 18.4822 20.4823C17.29 21.2789 15.8884 21.7041 14.4545 21.7041C12.5325 21.7018 10.6899 20.9372 9.33088 19.5782C7.97183 18.2191 7.20728 16.3765 7.20495 14.4545Z' fill='%23333333'/%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='M20.7273 6C18.5318 6 16.6228 7.00731 15.5 8.69539C14.3772 7.00731 12.4682 6 10.2727 6C8.60969 6.00197 7.01532 6.67501 5.83938 7.87146C4.66343 9.06792 4.00194 10.6901 4 12.3821C4 15.4881 5.90273 18.7207 9.65591 21.9883C11.3757 23.4794 13.2335 24.7974 15.2031 25.924C15.2944 25.9739 15.3964 26 15.5 26C15.6036 26 15.7056 25.9739 15.7969 25.924C17.7665 24.7974 19.6243 23.4794 21.3441 21.9883C25.0973 18.7207 27 15.4881 27 12.3821C26.9981 10.6901 26.3366 9.06792 25.1606 7.87146C23.9847 6.67501 22.3903 6.00197 20.7273 6ZM15.5 24.6263C13.7844 23.619 5.25455 18.309 5.25455 12.3821C5.25593 11.0285 5.78507 9.73061 6.72587 8.77341C7.66666 7.81621 8.94225 7.27784 10.2727 7.27643C12.3929 7.27643 14.1733 8.4284 14.9198 10.2835C14.967 10.4005 15.0474 10.5007 15.1507 10.5711C15.2541 10.6416 15.3756 10.6792 15.5 10.6792C15.6244 10.6792 15.7459 10.6416 15.8493 10.5711C15.9526 10.5007 16.033 10.4005 16.0802 10.2835C16.8267 8.4284 18.6071 7.27643 20.7273 7.27643C22.0578 7.27784 23.3333 7.81621 24.2741 8.77341C25.2149 9.73061 25.7441 11.0285 25.7455 12.3821C25.7455 18.309 17.2156 23.619 15.5 24.6263Z' fill='%23333333'/%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='M20.7273 6C18.5318 6 16.6228 7.00731 15.5 8.69539C14.3772 7.00731 12.4682 6 10.2727 6C8.60969 6.00197 7.01532 6.67501 5.83938 7.87146C4.66343 9.06792 4.00194 10.6901 4 12.3821C4 15.4881 5.90273 18.7207 9.65591 21.9883C11.3757 23.4794 13.2335 24.7974 15.2031 25.924C15.2944 25.9739 15.3964 26 15.5 26C15.6036 26 15.7056 25.9739 15.7969 25.924C17.7665 24.7974 19.6243 23.4794 21.3441 21.9883C25.0973 18.7207 27 15.4881 27 12.3821C26.9981 10.6901 26.3366 9.06792 25.1606 7.87146C23.9847 6.67501 22.3903 6.00197 20.7273 6ZM15.5 24.6263C13.7844 23.619 5.25455 18.309 5.25455 12.3821C5.25593 11.0285 5.78507 9.73061 6.72587 8.77341C7.66666 7.81621 8.94225 7.27784 10.2727 7.27643C12.3929 7.27643 14.1733 8.4284 14.9198 10.2835C14.967 10.4005 15.0474 10.5007 15.1507 10.5711C15.2541 10.6416 15.3756 10.6792 15.5 10.6792C15.6244 10.6792 15.7459 10.6416 15.8493 10.5711C15.9526 10.5007 16.033 10.4005 16.0802 10.2835C16.8267 8.4284 18.6071 7.27643 20.7273 7.27643C22.0578 7.27784 23.3333 7.81621 24.2741 8.77341C25.2149 9.73061 25.7441 11.0285 25.7455 12.3821C25.7455 18.309 17.2156 23.619 15.5 24.6263Z' fill='%23333333'/%3e%3cpath d='M15.5 24.6263C13.7844 23.619 5.25455 18.309 5.25455 12.3821C5.25593 11.0285 5.78507 9.73061 6.72587 8.77341C7.66666 7.81621 8.94225 7.27784 10.2727 7.27643C12.3929 7.27643 14.1733 8.4284 14.9198 10.2835C14.967 10.4005 15.0474 10.5007 15.1507 10.5711C15.2541 10.6416 15.3756 10.6792 15.5 10.6792C15.6244 10.6792 15.7459 10.6416 15.8493 10.5711C15.9526 10.5007 16.033 10.4005 16.0802 10.2835C16.8267 8.4284 18.6071 7.27643 20.7273 7.27643C22.0578 7.27784 23.3333 7.81621 24.2741 8.77341C25.2149 9.73061 25.7441 11.0285 25.7455 12.3821C25.7455 18.309 17.2156 23.619 15.5 24.6263Z' fill='%23333333'/%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 d='M25.9884 24.4041L24.5636 12.1592C24.522 11.8105 24.3565 11.4896 24.0985 11.2571C23.8405 11.0247 23.5079 10.8969 23.1638 10.898H20.5993V10.6939C20.5993 9.44898 20.1147 8.25507 19.2522 7.3748C18.3897 6.49453 17.2198 6 16 6C14.7802 6 13.6103 6.49453 12.7478 7.3748C11.8853 8.25507 11.4007 9.44898 11.4007 10.6939V10.898H8.83422C8.49007 10.8969 8.1575 11.0247 7.89951 11.2571C7.64152 11.4896 7.47604 11.8105 7.43443 12.1592L6.00964 24.4041C5.98639 24.6052 6.00531 24.8091 6.06517 25.0023C6.12503 25.1954 6.22444 25.3733 6.35682 25.5242C6.4892 25.6752 6.65151 25.7956 6.83299 25.8776C7.01446 25.9597 7.21096 26.0014 7.40943 26H24.5906C24.789 26.0014 24.9855 25.9597 25.167 25.8776C25.3485 25.7956 25.5108 25.6752 25.6432 25.5242C25.7756 25.3733 25.875 25.1954 25.9348 25.0023C25.9947 24.8091 26.0136 24.6052 25.9904 24.4041H25.9884ZM12.6005 10.6939C12.6005 9.77373 12.9587 8.89128 13.5962 8.24065C14.2337 7.59001 15.0984 7.22449 16 7.22449C16.9016 7.22449 17.7663 7.59001 18.4038 8.24065C19.0413 8.89128 19.3995 9.77373 19.3995 10.6939V10.898H12.6005V10.6939ZM24.7485 24.7041C24.7288 24.7269 24.7045 24.7451 24.6772 24.7574C24.6499 24.7697 24.6204 24.7759 24.5906 24.7755H7.40943C7.37961 24.7759 7.35006 24.7697 7.32279 24.7574C7.29552 24.7451 7.27119 24.7269 7.25146 24.7041C7.23273 24.6832 7.21865 24.6584 7.21019 24.6315C7.20173 24.6045 7.1991 24.576 7.20246 24.5479L8.62825 12.3031C8.63401 12.252 8.65841 12.2051 8.69659 12.1716C8.73477 12.1381 8.78392 12.1206 8.83422 12.1224H23.1658C23.2161 12.1206 23.2652 12.1381 23.3034 12.1716C23.3416 12.2051 23.366 12.252 23.3717 12.3031L24.7975 24.5479C24.8009 24.576 24.7983 24.6045 24.7898 24.6315C24.7814 24.6584 24.7673 24.6832 24.7485 24.7041Z' fill='%23333333'/%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 d='M25.9884 24.4041L24.5636 12.1592C24.522 11.8105 24.3565 11.4896 24.0985 11.2571C23.8405 11.0247 23.5079 10.8969 23.1638 10.898H20.5993V10.6939C20.5993 9.44898 20.1147 8.25507 19.2522 7.3748C18.3897 6.49453 17.2198 6 16 6C14.7802 6 13.6103 6.49453 12.7478 7.3748C11.8853 8.25507 11.4007 9.44898 11.4007 10.6939V10.898H8.83422C8.49007 10.8969 8.1575 11.0247 7.89951 11.2571C7.64152 11.4896 7.47604 11.8105 7.43443 12.1592L6.00964 24.4041C5.98639 24.6052 6.00531 24.8091 6.06517 25.0023C6.12503 25.1954 6.22444 25.3733 6.35682 25.5242C6.4892 25.6752 6.65151 25.7956 6.83299 25.8776C7.01446 25.9597 7.21096 26.0014 7.40943 26H24.5906C24.789 26.0014 24.9855 25.9597 25.167 25.8776C25.3485 25.7956 25.5108 25.6752 25.6432 25.5242C25.7756 25.3733 25.875 25.1954 25.9348 25.0023C25.9947 24.8091 26.0136 24.6052 25.9904 24.4041H25.9884ZM12.6005 10.6939C12.6005 9.77373 12.9587 8.89128 13.5962 8.24065C14.2337 7.59001 15.0984 7.22449 16 7.22449C16.9016 7.22449 17.7663 7.59001 18.4038 8.24065C19.0413 8.89128 19.3995 9.77373 19.3995 10.6939V10.898H12.6005V10.6939ZM24.7485 24.7041C24.7288 24.7269 24.7045 24.7451 24.6772 24.7574C24.6499 24.7697 24.6204 24.7759 24.5906 24.7755H7.40943C7.37961 24.7759 7.35006 24.7697 7.32279 24.7574C7.29552 24.7451 7.27119 24.7269 7.25146 24.7041C7.23273 24.6832 7.21865 24.6584 7.21019 24.6315C7.20173 24.6045 7.1991 24.576 7.20246 24.5479L8.62825 12.3031C8.63401 12.252 8.65841 12.2051 8.69659 12.1716C8.73477 12.1381 8.78392 12.1206 8.83422 12.1224H23.1658C23.2161 12.1206 23.2652 12.1381 23.3034 12.1716C23.3416 12.2051 23.366 12.252 23.3717 12.3031L24.7975 24.5479C24.8009 24.576 24.7983 24.6045 24.7898 24.6315C24.7814 24.6584 24.7673 24.6832 24.7485 24.7041Z' fill='%23333333'/%3e%3cpath d='M24.7485 24.7041C24.7288 24.7269 24.7045 24.7451 24.6772 24.7574C24.6499 24.7697 24.6204 24.7759 24.5906 24.7755H7.40943C7.37961 24.7759 7.35006 24.7697 7.32279 24.7574C7.29552 24.7451 7.27119 24.7269 7.25146 24.7041C7.23273 24.6832 7.21865 24.6584 7.21019 24.6315C7.20173 24.6045 7.1991 24.576 7.20246 24.5479L8.62825 12.3031C8.63401 12.252 8.65841 12.2051 8.69659 12.1716C8.73477 12.1381 8.78392 12.1206 8.83422 12.1224H23.1658C23.2161 12.1206 23.2652 12.1381 23.3034 12.1716C23.3416 12.2051 23.366 12.252 23.3717 12.3031L24.7975 24.5479C24.8009 24.576 24.7983 24.6045 24.7898 24.6315C24.7814 24.6584 24.7673 24.6832 24.7485 24.7041Z' fill='%23333333'/%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='M24.5636 10.1592L25.9884 22.4041H25.9904C26.0136 22.6052 25.9947 22.8091 25.9348 23.0023C25.875 23.1954 25.7756 23.3733 25.6432 23.5242C25.5108 23.6752 25.3485 23.7956 25.167 23.8776C24.9855 23.9597 24.789 24.0014 24.5906 24H7.40943C7.21096 24.0014 7.01446 23.9597 6.83299 23.8776C6.65151 23.7956 6.4892 23.6752 6.35682 23.5242C6.22444 23.3733 6.12503 23.1954 6.06517 23.0023C6.00531 22.8091 5.98639 22.6052 6.00964 22.4041L7.43443 10.1592C7.47604 9.81053 7.64152 9.48957 7.89951 9.25712C8.1575 9.02467 8.49007 8.89687 8.83422 8.89795H11.4007V8.69387C11.4007 7.44898 11.8853 6.25507 12.7478 5.3748C13.6103 4.49453 14.7802 4 16 4C17.2198 4 18.3897 4.49453 19.2522 5.3748C20.1147 6.25507 20.5993 7.44898 20.5993 8.69387V8.89795H23.1638C23.5079 8.89687 23.8405 9.02467 24.0985 9.25712C24.3565 9.48957 24.522 9.81053 24.5636 10.1592ZM13.5962 6.24065C12.9587 6.89128 12.6005 7.77373 12.6005 8.69387V8.89795H19.3995V8.69387C19.3995 7.77373 19.0413 6.89128 18.4038 6.24065C17.7663 5.59001 16.9016 5.22449 16 5.22449C15.0984 5.22449 14.2337 5.59001 13.5962 6.24065ZM20.3051 14.5533C20.3051 14.4073 20.2481 14.2672 20.1465 14.1639V14.1612C20.0447 14.058 19.9068 14 19.7631 14C19.6193 14 19.4814 14.058 19.3797 14.1612L14.6992 18.9142L12.9124 17.103C12.8096 17.0057 12.6735 16.9527 12.533 16.9552C12.3924 16.9577 12.2583 17.0155 12.1589 17.1165C12.0595 17.2175 12.0026 17.3537 12.0001 17.4964C11.9976 17.6392 12.0498 17.7774 12.1456 17.8818L14.3158 20.0862C14.4176 20.1894 14.5555 20.2473 14.6992 20.2473C14.843 20.2473 14.9809 20.1894 15.0826 20.0862L20.1465 14.9428C20.2481 14.8394 20.3051 14.6994 20.3051 14.5533Z' fill='%23333333'/%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='M26 7.48936V18.5532C26 18.9482 25.8431 19.327 25.5638 19.6063C25.2845 19.8856 24.9056 20.0426 24.5106 20.0426H12.4351L13.8979 21.5064C13.9606 21.5648 14.0109 21.6353 14.0458 21.7136C14.0807 21.7919 14.0994 21.8764 14.1009 21.9621C14.1024 22.0478 14.0867 22.1329 14.0546 22.2124C14.0225 22.2919 13.9747 22.3641 13.9141 22.4247C13.8535 22.4853 13.7813 22.5331 13.7018 22.5652C13.6223 22.5973 13.5372 22.6131 13.4515 22.6116C13.3658 22.6101 13.2812 22.5913 13.2029 22.5564C13.1246 22.5215 13.0542 22.4712 12.9957 22.4085L10.4426 19.8553C10.323 19.7356 10.2559 19.5734 10.2559 19.4043C10.2559 19.2351 10.323 19.0729 10.4426 18.9532L12.9957 16.4C13.1167 16.2873 13.2768 16.2259 13.4421 16.2288C13.6075 16.2317 13.7653 16.2987 13.8822 16.4156C13.9992 16.5326 14.0662 16.6904 14.0691 16.8557C14.072 17.0211 14.0106 17.1811 13.8979 17.3021L12.4351 18.766H24.5106C24.5671 18.766 24.6212 18.7435 24.6611 18.7036C24.701 18.6637 24.7234 18.6096 24.7234 18.5532V7.48936C24.7234 7.43293 24.701 7.37881 24.6611 7.33891C24.6212 7.29901 24.5671 7.2766 24.5106 7.2766H12.5957C12.5393 7.2766 12.4852 7.29901 12.4453 7.33891C12.4054 7.37881 12.383 7.43293 12.383 7.48936V8.34043C12.383 8.50971 12.3157 8.67207 12.196 8.79177C12.0763 8.91147 11.914 8.97872 11.7447 8.97872C11.5754 8.97872 11.413 8.91147 11.2933 8.79177C11.1736 8.67207 11.1064 8.50971 11.1064 8.34043V7.48936C11.1064 7.09436 11.2633 6.71553 11.5426 6.43622C11.8219 6.15691 12.2007 6 12.5957 6H24.5106C24.9056 6 25.2845 6.15691 25.5638 6.43622C25.8431 6.71553 26 7.09436 26 7.48936ZM20.2553 23.0213C20.086 23.0213 19.9237 23.0885 19.804 23.2082C19.6843 23.3279 19.617 23.4903 19.617 23.6596V24.5106C19.617 24.5671 19.5946 24.6212 19.5547 24.6611C19.5148 24.701 19.4607 24.7234 19.4043 24.7234H7.48936C7.43293 24.7234 7.37881 24.701 7.33891 24.6611C7.29901 24.6212 7.2766 24.5671 7.2766 24.5106V13.4468C7.2766 13.3904 7.29901 13.3363 7.33891 13.2964C7.37881 13.2565 7.43293 13.234 7.48936 13.234H19.5649L18.1021 14.6979C18.0394 14.7563 17.9891 14.8268 17.9542 14.9051C17.9193 14.9834 17.9006 15.0679 17.8991 15.1536C17.8976 15.2393 17.9133 15.3244 17.9454 15.4039C17.9775 15.4834 18.0253 15.5556 18.0859 15.6162C18.1465 15.6768 18.2187 15.7246 18.2982 15.7567C18.3777 15.7888 18.4628 15.8046 18.5485 15.8031C18.6342 15.8015 18.7188 15.7828 18.7971 15.7479C18.8754 15.713 18.9458 15.6627 19.0043 15.6L21.5574 13.0468C21.677 12.9271 21.7441 12.7649 21.7441 12.5957C21.7441 12.4266 21.677 12.2644 21.5574 12.1447L19.0043 9.59149C18.8833 9.47874 18.7232 9.41736 18.5579 9.42028C18.3925 9.42319 18.2347 9.49018 18.1178 9.60713C18.0008 9.72408 17.9338 9.88185 17.9309 10.0472C17.928 10.2126 17.9894 10.3726 18.1021 10.4936L19.5649 11.9574H7.48936C7.09436 11.9574 6.71553 12.1144 6.43622 12.3937C6.15691 12.673 6 13.0518 6 13.4468V24.5106C6 24.9056 6.15691 25.2845 6.43622 25.5638C6.71553 25.8431 7.09436 26 7.48936 26H19.4043C19.7993 26 20.1781 25.8431 20.4574 25.5638C20.7367 25.2845 20.8936 24.9056 20.8936 24.5106V23.6596C20.8936 23.4903 20.8264 23.3279 20.7067 23.2082C20.587 23.0885 20.4246 23.0213 20.2553 23.0213Z' fill='%23333333'/%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='M26 7.48936V18.5532C26 18.9482 25.8431 19.327 25.5638 19.6063C25.2845 19.8856 24.9056 20.0426 24.5106 20.0426H14.1009C14.1009 20.7737 14.1009 21.283 14.1009 21.9621C14.1024 22.0478 14.0867 22.1329 14.0546 22.2124C14.0225 22.2919 13.9747 22.3641 13.9141 22.4247C13.8535 22.4853 13.7813 22.5331 13.7018 22.5652C13.6223 22.5973 13.5372 22.6131 13.4515 22.6116C13.3658 22.6101 13.2812 22.5913 13.2029 22.5564C13.1246 22.5215 13.0542 22.4712 12.9957 22.4085L10.4426 19.8553C10.323 19.7356 10.2559 19.5734 10.2559 19.4043C10.2559 19.2351 10.323 19.0729 10.4426 18.9532L12.9957 16.4C13.1167 16.2873 13.2768 16.2259 13.4421 16.2288C13.6075 16.2317 13.7653 16.2987 13.8822 16.4156C13.9992 16.5326 14.0662 16.6904 14.0691 16.8557C14.0802 17.4883 14.1009 18.0572 14.1009 18.766H24.5106C24.5671 18.766 24.6212 18.7435 24.6611 18.7036C24.701 18.6637 24.7234 18.6096 24.7234 18.5532V7.48936C24.7234 7.43293 24.701 7.37881 24.6611 7.33891C24.6212 7.29901 24.5671 7.2766 24.5106 7.2766H12.5957C12.5393 7.2766 12.4852 7.29901 12.4453 7.33891C12.4054 7.37881 12.383 7.43293 12.383 7.48936V8.34043C12.383 8.50971 12.3157 8.67207 12.196 8.79177C12.0763 8.91147 11.914 8.97872 11.7447 8.97872C11.5754 8.97872 11.413 8.91147 11.2933 8.79177C11.1736 8.67207 11.1064 8.50971 11.1064 8.34043V7.48936C11.1064 7.09436 11.2633 6.71553 11.5426 6.43622C11.8219 6.15691 12.2007 6 12.5957 6H24.5106C24.9056 6 25.2845 6.15691 25.5638 6.43622C25.8431 6.71553 26 7.09436 26 7.48936ZM20.2553 23.0213C20.086 23.0213 19.9237 23.0885 19.804 23.2082C19.6843 23.3279 19.617 23.4903 19.617 23.6596V24.5106C19.617 24.5671 19.5946 24.6212 19.5547 24.6611C19.5148 24.701 19.4607 24.7234 19.4043 24.7234H7.48936C7.43293 24.7234 7.37881 24.701 7.33891 24.6611C7.29901 24.6212 7.2766 24.5671 7.2766 24.5106V13.4468C7.2766 13.3904 7.29901 13.3363 7.33891 13.2964C7.37881 13.2565 7.43293 13.234 7.48936 13.234H17.8991C17.8991 13.9644 17.8991 15.1536 17.8991 15.1536C17.8991 15.1536 17.9133 15.3244 17.9454 15.4039C17.9775 15.4834 18.0253 15.5556 18.0859 15.6162C18.1465 15.6768 18.2187 15.7246 18.2982 15.7567C18.3777 15.7888 18.4628 15.8046 18.5485 15.8031C18.6342 15.8015 18.7188 15.7828 18.7971 15.7479C18.8754 15.713 18.9458 15.6627 19.0043 15.6L21.5574 13.0468C21.677 12.9271 21.7441 12.7649 21.7441 12.5957C21.7441 12.4266 21.677 12.2644 21.5574 12.1447L19.0043 9.59149C18.8833 9.47874 18.7232 9.41736 18.5579 9.42028C18.3925 9.42319 18.2347 9.49018 18.1178 9.60713C18.0008 9.72408 17.9338 9.88185 17.9309 10.0472C17.9198 10.6798 17.8991 11.4621 17.8991 11.9574H7.48936C7.09436 11.9574 6.71553 12.1144 6.43622 12.3937C6.15691 12.673 6 13.0518 6 13.4468V24.5106C6 24.9056 6.15691 25.2845 6.43622 25.5638C6.71553 25.8431 7.09436 26 7.48936 26H19.4043C19.7993 26 20.1781 25.8431 20.4574 25.5638C20.7367 25.2845 20.8936 24.9056 20.8936 24.5106V23.6596C20.8936 23.4903 20.8264 23.3279 20.7067 23.2082C20.587 23.0885 20.4246 23.0213 20.2553 23.0213Z' fill='%23333333'/%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 d='M16 6C14.0222 6 12.0888 6.58649 10.4443 7.6853C8.79981 8.78412 7.51809 10.3459 6.76121 12.1732C6.00433 14.0004 5.8063 16.0111 6.19215 17.9509C6.578 19.8907 7.53041 21.6725 8.92894 23.0711C10.3275 24.4696 12.1093 25.422 14.0491 25.8078C15.9889 26.1937 17.9996 25.9957 19.8268 25.2388C21.6541 24.4819 23.2159 23.2002 24.3147 21.5557C25.4135 19.9112 26 17.9778 26 16C25.9969 13.3488 24.9423 10.8071 23.0676 8.93237C21.1929 7.05768 18.6512 6.00311 16 6ZM24.8235 16C24.8246 17.2098 24.5756 18.4067 24.0922 19.5157L19.5147 16.701C19.352 16.5987 19.1696 16.5319 18.9794 16.5049L16.7422 16.2039C16.4534 16.1665 16.1603 16.2215 15.9047 16.361C15.6492 16.5005 15.4443 16.7173 15.3196 16.9804H14.3471C14.3102 16.9804 14.2741 16.97 14.2429 16.9504C14.2117 16.9308 14.1866 16.9028 14.1706 16.8696L13.798 16.099C13.7075 15.9109 13.5751 15.746 13.4109 15.617C13.2467 15.488 13.0552 15.3984 12.851 15.3549L11.801 15.1294L12.7059 13.549C12.7232 13.5191 12.748 13.4943 12.778 13.4771C12.8079 13.4598 12.8419 13.4508 12.8765 13.451H14.5147C14.7466 13.4511 14.9747 13.3921 15.1775 13.2794L16.3784 12.6176C16.4705 12.5658 16.5567 12.504 16.6353 12.4333L19.2735 10.048C19.5049 9.84039 19.6585 9.55999 19.709 9.25321C19.7594 8.94642 19.7037 8.6316 19.551 8.36078L19.2353 7.78922C20.8821 8.44054 22.2953 9.57151 23.2917 11.0355C24.2881 12.4995 24.8218 14.2291 24.8235 16ZM17.6275 7.32745L18.5245 8.93431C18.5461 8.97312 18.5539 9.01812 18.5466 9.06193C18.5393 9.10575 18.5173 9.14579 18.4843 9.17549L15.8461 11.5608C15.8351 11.5711 15.823 11.58 15.8098 11.5873L14.6088 12.25C14.5788 12.2666 14.545 12.275 14.5108 12.2745H12.8765C12.6353 12.2742 12.3983 12.3375 12.1893 12.458C11.9804 12.5785 11.8069 12.7519 11.6863 12.9608L10.6255 14.8147C10.6182 14.8039 10.6119 14.7924 10.6069 14.7804L9.4804 11.7735C9.46184 11.7269 9.46184 11.675 9.4804 11.6284L10.5765 9.0451C11.5625 8.27468 12.7012 7.72305 13.917 7.42689C15.1327 7.13072 16.3976 7.09683 17.6275 7.32745ZM7.17647 16C7.17497 14.4977 7.55913 13.0202 8.29216 11.7088C8.29234 11.8719 8.32189 12.0337 8.37942 12.1863L9.50589 15.1931C9.58601 15.4089 9.71932 15.6009 9.89345 15.7514C10.0676 15.9018 10.2769 16.0059 10.502 16.0539L12.6039 16.5049C12.6331 16.5112 12.6605 16.5241 12.6839 16.5427C12.7074 16.5612 12.7263 16.5848 12.7392 16.6118L13.1118 17.3824C13.2248 17.6139 13.4004 17.8093 13.6187 17.9462C13.8371 18.083 14.0894 18.156 14.3471 18.1569H14.7941L13.9618 20.0196C13.8526 20.2648 13.8177 20.5367 13.8614 20.8016C13.9051 21.0665 14.0256 21.3127 14.2078 21.5098L14.2176 21.5206L16.1471 23.5069C16.1668 23.5294 16.1811 23.5561 16.1889 23.585C16.1968 23.6138 16.1979 23.6441 16.1922 23.6735L15.9706 24.8235C13.6363 24.8132 11.4011 23.8793 9.75327 22.226C8.10545 20.5726 7.17904 18.3343 7.17647 16ZM17.1843 24.7441L17.348 23.901C17.3883 23.6895 17.3785 23.4715 17.3194 23.2645C17.2603 23.0575 17.1536 22.8672 17.0078 22.7088L16.998 22.698L15.0686 20.7118C15.0437 20.6836 15.0273 20.6488 15.0216 20.6116C15.0159 20.5744 15.021 20.5363 15.0363 20.502L16.3794 17.4892C16.3965 17.4495 16.4262 17.4165 16.464 17.3953C16.5017 17.3742 16.5454 17.3662 16.5882 17.3725L18.8255 17.6745C18.8525 17.6779 18.8786 17.6869 18.902 17.701L23.549 20.5637C22.8666 21.6907 21.941 22.651 20.8398 23.3743C19.7386 24.0975 18.4897 24.5656 17.1843 24.7441Z' fill='%23333333'/%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 d='M22.6977 24.9091H17.6019C18.5082 24.15 19.3572 23.3278 20.1423 22.4491C22.666 19.6127 24 16.6309 24 13.8182C24 11.7447 23.1571 9.75609 21.6569 8.28989C20.1566 6.8237 18.1217 6 16 6C13.8783 6 11.8434 6.8237 10.3431 8.28989C8.84286 9.75609 8 11.7447 8 13.8182C8 16.6282 9.33395 19.6127 11.8577 22.4491C12.6428 23.3278 13.4918 24.15 14.3981 24.9091H9.30233C9.1543 24.9091 9.01233 24.9666 8.90766 25.0689C8.80299 25.1711 8.74419 25.3099 8.74419 25.4545C8.74419 25.5992 8.80299 25.7379 8.90766 25.8402C9.01233 25.9425 9.1543 26 9.30233 26H22.6977C22.8457 26 22.9877 25.9425 23.0923 25.8402C23.197 25.7379 23.2558 25.5992 23.2558 25.4545C23.2558 25.3099 23.197 25.1711 23.0923 25.0689C22.9877 24.9666 22.8457 24.9091 22.6977 24.9091ZM9.11628 13.8182C9.11628 12.034 9.84153 10.3229 11.1325 9.06128C12.4234 7.79967 14.1743 7.09091 16 7.09091C17.8257 7.09091 19.5766 7.79967 20.8675 9.06128C22.1585 10.3229 22.8837 12.034 22.8837 13.8182C22.8837 19.2382 17.3953 23.7209 16 24.7736C14.6047 23.7209 9.11628 19.2382 9.11628 13.8182ZM19.5349 13.8182C19.5349 13.1349 19.3276 12.467 18.9391 11.8989C18.5507 11.3308 17.9987 10.8881 17.3527 10.6266C16.7068 10.3651 15.9961 10.2967 15.3104 10.43C14.6247 10.5633 13.9948 10.8923 13.5005 11.3754C13.0061 11.8586 12.6694 12.4741 12.533 13.1442C12.3966 13.8144 12.4666 14.5089 12.7342 15.1402C13.0017 15.7714 13.4548 16.3109 14.0361 16.6905C14.6174 17.0701 15.3009 17.2727 16 17.2727C16.9375 17.2727 17.8366 16.9088 18.4995 16.2609C19.1625 15.6131 19.5349 14.7344 19.5349 13.8182ZM13.5814 13.8182C13.5814 13.3507 13.7232 12.8937 13.989 12.505C14.2548 12.1163 14.6325 11.8134 15.0744 11.6345C15.5164 11.4556 16.0027 11.4088 16.4718 11.5C16.941 11.5912 17.372 11.8163 17.7102 12.1468C18.0485 12.4774 18.2788 12.8986 18.3721 13.3571C18.4655 13.8156 18.4176 14.2908 18.2345 14.7227C18.0514 15.1546 17.7414 15.5238 17.3437 15.7835C16.946 16.0432 16.4784 16.1818 16 16.1818C15.3585 16.1818 14.7434 15.9328 14.2898 15.4895C13.8362 15.0463 13.5814 14.4451 13.5814 13.8182Z' fill='%23333333'/%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 d='M26.9037 25.0604C25.2782 22.2761 22.7264 20.3224 19.7612 19.4938C21.2028 18.7674 22.3556 17.5809 23.0337 16.1255C23.7118 14.6702 23.8757 13.0309 23.4989 11.472C23.1221 9.91308 22.2267 8.52536 20.9569 7.53263C19.6872 6.5399 18.1172 6 16.5 6C14.8828 6 13.3128 6.5399 12.0431 7.53263C10.7733 8.52536 9.87787 9.91308 9.5011 11.472C9.12433 13.0309 9.2882 14.6702 9.96628 16.1255C10.6444 17.5809 11.7972 18.7674 13.2387 19.4938C10.2736 20.3213 7.72177 22.2751 6.09629 25.0604C6.05165 25.13 6.02168 25.2079 6.00818 25.2893C5.99468 25.3706 5.99792 25.4539 6.01771 25.534C6.03751 25.6141 6.07344 25.6894 6.12336 25.7554C6.17327 25.8214 6.23614 25.8766 6.30817 25.9179C6.3802 25.9592 6.45991 25.9856 6.5425 25.9955C6.62509 26.0055 6.70885 25.9988 6.78876 25.9758C6.86866 25.9528 6.94305 25.914 7.00745 25.8618C7.07185 25.8096 7.12493 25.745 7.16349 25.6719C9.13854 22.2893 12.628 20.2704 16.5 20.2704C20.372 20.2704 23.8615 22.2893 25.8365 25.6719C25.8751 25.745 25.9282 25.8096 25.9925 25.8618C26.0569 25.914 26.1313 25.9528 26.2112 25.9758C26.2911 25.9988 26.3749 26.0055 26.4575 25.9955C26.5401 25.9856 26.6198 25.9592 26.6918 25.9179C26.7639 25.8766 26.8267 25.8214 26.8766 25.7554C26.9266 25.6894 26.9625 25.6141 26.9823 25.534C27.0021 25.4539 27.0053 25.3706 26.9918 25.2893C26.9783 25.2079 26.9483 25.13 26.9037 25.0604ZM10.5368 13.1362C10.5368 11.9671 10.8865 10.8243 11.5418 9.85219C12.197 8.88011 13.1284 8.12246 14.218 7.67506C15.3076 7.22766 16.5066 7.1106 17.6634 7.33868C18.8201 7.56676 19.8826 8.12975 20.7166 8.95643C21.5506 9.78312 22.1185 10.8364 22.3486 11.983C22.5787 13.1297 22.4606 14.3182 22.0093 15.3983C21.5579 16.4785 20.7936 17.4017 19.813 18.0512C18.8323 18.7007 17.6794 19.0474 16.5 19.0474C14.919 19.0455 13.4034 18.4221 12.2855 17.314C11.1676 16.2058 10.5387 14.7034 10.5368 13.1362Z' fill='%23333333'/%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 d='M26.9037 24.6115C25.2782 21.8927 22.7264 19.985 19.7612 19.1759C21.2028 18.4666 22.3556 17.3081 23.0337 15.887C23.7118 14.466 23.8757 12.8653 23.4989 11.3431C23.1221 9.8209 22.2267 8.46588 20.9569 7.49653C19.6872 6.52718 18.1172 6 16.5 6C14.8828 6 13.3128 6.52718 12.0431 7.49653C10.7733 8.46588 9.87787 9.8209 9.5011 11.3431C9.12433 12.8653 9.2882 14.466 9.96628 15.887C10.6444 17.3081 11.7972 18.4666 13.2387 19.1759C10.2736 19.984 7.72177 21.8917 6.09629 24.6115C6.05165 24.6794 6.02168 24.7554 6.00818 24.8349C5.99468 24.9144 5.99792 24.9956 6.01771 25.0739C6.03751 25.1521 6.07344 25.2256 6.12336 25.29C6.17327 25.3545 6.23614 25.4084 6.30817 25.4487C6.3802 25.489 6.45991 25.5148 6.5425 25.5245C11.8527 26.1489 20.9844 26.168 26.4575 25.5245C26.5401 25.5148 26.6198 25.489 26.6918 25.4487C26.7639 25.4084 26.8267 25.3545 26.8766 25.29C26.9266 25.2256 26.9625 25.1521 26.9823 25.0739C27.0021 24.9956 27.0053 24.9144 26.9918 24.8349C26.9783 24.7554 26.9483 24.6794 26.9037 24.6115Z' fill='%23333333'/%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 d='M14.0851 25.3617C14.0851 25.531 14.0179 25.6933 13.8982 25.813C13.7784 25.9328 13.6161 26 13.4468 26H7.48936C7.09436 26 6.71553 25.8431 6.43622 25.5638C6.15691 25.2845 6 24.9056 6 24.5106V7.48936C6 7.09436 6.15691 6.71553 6.43622 6.43622C6.71553 6.15691 7.09436 6 7.48936 6H13.4468C13.6161 6 13.7784 6.06725 13.8982 6.18695C14.0179 6.30666 14.0851 6.46901 14.0851 6.6383C14.0851 6.80759 14.0179 6.96994 13.8982 7.08964C13.7784 7.20935 13.6161 7.2766 13.4468 7.2766H7.48936C7.43293 7.2766 7.37881 7.29901 7.33891 7.33891C7.29901 7.37881 7.2766 7.43293 7.2766 7.48936V24.5106C7.2766 24.5671 7.29901 24.6212 7.33891 24.6611C7.37881 24.701 7.43293 24.7234 7.48936 24.7234H13.4468C13.6161 24.7234 13.7784 24.7907 13.8982 24.9104C14.0179 25.0301 14.0851 25.1924 14.0851 25.3617ZM25.8128 15.5489L21.5574 11.2936C21.4364 11.1809 21.2764 11.1195 21.111 11.1224C20.9457 11.1253 20.7879 11.1923 20.671 11.3093C20.554 11.4262 20.487 11.584 20.4841 11.7493C20.4812 11.9147 20.5426 12.0747 20.6553 12.1957L23.8202 15.3617H13.4468C13.2775 15.3617 13.1152 15.429 12.9955 15.5487C12.8758 15.6684 12.8085 15.8307 12.8085 16C12.8085 16.1693 12.8758 16.3316 12.9955 16.4513C13.1152 16.571 13.2775 16.6383 13.4468 16.6383H23.8202L20.6553 19.8043C20.5926 19.8627 20.5423 19.9332 20.5074 20.0115C20.4725 20.0898 20.4538 20.1743 20.4523 20.26C20.4507 20.3457 20.4665 20.4308 20.4986 20.5103C20.5307 20.5898 20.5785 20.662 20.6391 20.7226C20.6997 20.7832 20.7719 20.831 20.8514 20.8631C20.9309 20.8952 21.016 20.911 21.1017 20.9094C21.1874 20.9079 21.2719 20.8892 21.3502 20.8543C21.4285 20.8194 21.499 20.7691 21.5574 20.7064L25.8128 16.4511C25.9323 16.3314 25.9994 16.1691 25.9994 16C25.9994 15.8309 25.9323 15.6686 25.8128 15.5489Z' fill='%23333333'/%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='M15.9999 13.585L8.84983 20.6847C8.64725 20.8858 8.37133 20.9998 8.0825 20.9998C7.79368 20.9998 7.51777 20.8859 7.31519 20.6847C7.11278 20.4838 7 20.2123 7 19.9303C7 19.6483 7.11278 19.3768 7.31519 19.1759L15.2325 11.3154C15.3327 11.2157 15.4521 11.1364 15.5838 11.0822C15.7156 11.028 15.857 11 15.9999 11C16.1429 11 16.2843 11.028 16.416 11.0822C16.5478 11.1364 16.6671 11.2157 16.7673 11.3154L24.6845 19.1758C24.7849 19.2753 24.8642 19.3932 24.9182 19.5226C24.9723 19.652 25 19.7905 25 19.9303C25 20.0701 24.9723 20.2086 24.9182 20.338C24.8642 20.4674 24.7849 20.5853 24.6845 20.6848' fill='%23333333'/%3e%3cpath d='M8.84983 20.6847L15.9999 13.585L23.5012 20.9178C23.5012 20.9178 23.7744 21 23.9173 21C24.0603 21 24.2017 20.972 24.3334 20.9178C24.4651 20.8636 24.5843 20.7844 24.6845 20.6848C24.7849 20.5853 24.8642 20.4674 24.9182 20.338C24.9723 20.2086 25 20.0701 25 19.9303C25 19.7905 24.9723 19.652 24.9182 19.5226C24.8642 19.3932 24.7849 19.2753 24.6845 19.1758L16.7673 11.3154C16.6671 11.2157 16.5478 11.1364 16.416 11.0822C16.2843 11.028 16.1429 11 15.9999 11C15.857 11 15.7156 11.028 15.5838 11.0822C15.4521 11.1364 15.3327 11.2157 15.2325 11.3154L7.31519 19.1759C7.11278 19.3768 7 19.6483 7 19.9303C7 20.2123 7.11278 20.4838 7.31519 20.6847C7.51777 20.8859 7.79368 20.9998 8.0825 20.9998C8.37133 20.9998 8.64725 20.8858 8.84983 20.6847Z' fill='%23333333'/%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='M16.0001 18.415L23.1502 11.3153C23.3528 11.1142 23.6287 11.0002 23.9175 11.0002C24.2063 11.0002 24.4822 11.1141 24.6848 11.3153C24.8872 11.5162 25 11.7877 25 12.0697C25 12.3517 24.8872 12.6232 24.6848 12.8241L16.7675 20.6846C16.6673 20.7843 16.5479 20.8636 16.4162 20.9178C16.2844 20.972 16.143 21 16.0001 21C15.8571 21 15.7157 20.972 15.584 20.9178C15.4522 20.8636 15.3329 20.7843 15.2327 20.6846L7.31548 12.8242C7.21513 12.7247 7.1358 12.6068 7.08177 12.4774C7.02774 12.348 7 12.2095 7 12.0697C7 11.9299 7.02774 11.7914 7.08177 11.662C7.1358 11.5326 7.21513 11.4147 7.31548 11.3152' fill='%23333333'/%3e%3cpath d='M23.1502 11.3153L16.0001 18.415L8.4988 11.0822C8.4988 11.0822 8.22563 11 8.08268 11C7.93974 11 7.79833 11.028 7.66658 11.0822C7.53494 11.1364 7.41568 11.2156 7.31548 11.3152C7.21513 11.4147 7.1358 11.5326 7.08177 11.662C7.02774 11.7914 7 11.9299 7 12.0697C7 12.2095 7.02774 12.348 7.08177 12.4774C7.1358 12.6068 7.21513 12.7247 7.31548 12.8242L15.2327 20.6846C15.3329 20.7843 15.4522 20.8636 15.584 20.9178C15.7157 20.972 15.8571 21 16.0001 21C16.143 21 16.2844 20.972 16.4162 20.9178C16.5479 20.8636 16.6673 20.7843 16.7675 20.6846L24.6848 12.8241C24.8872 12.6232 25 12.3517 25 12.0697C25 11.7877 24.8872 11.5162 24.6848 11.3153C24.4822 11.1141 24.2063 11.0002 23.9175 11.0002C23.6287 11.0002 23.3528 11.1142 23.1502 11.3153Z' fill='%23333333'/%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='M13.585 16.0001L20.6847 23.1502C20.8858 23.3528 20.9998 23.6287 20.9998 23.9175C20.9998 24.2063 20.8859 24.4822 20.6847 24.6848C20.4838 24.8872 20.2123 25 19.9303 25C19.6483 25 19.3768 24.8872 19.1759 24.6848L11.3154 16.7675C11.2157 16.6673 11.1364 16.5479 11.0822 16.4162C11.028 16.2844 11 16.143 11 16.0001C11 15.8571 11.028 15.7157 11.0822 15.584C11.1364 15.4522 11.2157 15.3329 11.3154 15.2327L19.1758 7.31548C19.2753 7.21514 19.3932 7.1358 19.5226 7.08177C19.652 7.02774 19.7905 7 19.9303 7C20.0701 7 20.2086 7.02774 20.338 7.08177C20.4674 7.1358 20.5853 7.21514 20.6848 7.31548' fill='%23333333'/%3e%3cpath d='M20.6847 23.1502L13.585 16.0001L20.9178 8.4988C20.9178 8.4988 21 8.22563 21 8.08269C21 7.93974 20.972 7.79833 20.9178 7.66658C20.8636 7.53494 20.7844 7.41568 20.6848 7.31548C20.5853 7.21514 20.4674 7.1358 20.338 7.08177C20.2086 7.02774 20.0701 7 19.9303 7C19.7905 7 19.652 7.02774 19.5226 7.08177C19.3932 7.1358 19.2753 7.21514 19.1758 7.31548L11.3154 15.2327C11.2157 15.3329 11.1364 15.4522 11.0822 15.584C11.028 15.7157 11 15.8571 11 16.0001C11 16.143 11.028 16.2844 11.0822 16.4162C11.1364 16.5479 11.2157 16.6673 11.3154 16.7675L19.1759 24.6848C19.3768 24.8872 19.6483 25 19.9303 25C20.2123 25 20.4838 24.8872 20.6847 24.6848C20.8859 24.4822 20.9998 24.2063 20.9998 23.9175C20.9998 23.6287 20.8858 23.3528 20.6847 23.1502Z' fill='%23333333'/%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='M18.415 16.0001L11.3153 23.1502C11.1142 23.3528 11.0002 23.6287 11.0002 23.9175C11.0002 24.2063 11.1141 24.4822 11.3153 24.6848C11.5162 24.8872 11.7877 25 12.0697 25C12.3517 25 12.6232 24.8872 12.8241 24.6848L20.6846 16.7675C20.7843 16.6673 20.8636 16.5479 20.9178 16.4162C20.972 16.2844 21 16.143 21 16.0001C21 15.8571 20.972 15.7157 20.9178 15.584C20.8636 15.4522 20.7843 15.3329 20.6846 15.2327L12.8242 7.31548C12.7247 7.21514 12.6068 7.1358 12.4774 7.08177C12.348 7.02774 12.2095 7 12.0697 7C11.9299 7 11.7914 7.02774 11.662 7.08177C11.5326 7.1358 11.4147 7.21514 11.3152 7.31548' fill='%23333333'/%3e%3cpath d='M11.3153 23.1502L18.415 16.0001L11.0822 8.4988C11.0822 8.4988 11 8.22563 11 8.08269C11 7.93974 11.028 7.79833 11.0822 7.66658C11.1364 7.53494 11.2156 7.41568 11.3152 7.31548C11.4147 7.21514 11.5326 7.1358 11.662 7.08177C11.7914 7.02774 11.9299 7 12.0697 7C12.2095 7 12.348 7.02774 12.4774 7.08177C12.6068 7.1358 12.7247 7.21514 12.8242 7.31548L20.6846 15.2327C20.7843 15.3329 20.8636 15.4522 20.9178 15.584C20.972 15.7157 21 15.8571 21 16.0001C21 16.143 20.972 16.2844 20.9178 16.4162C20.8636 16.5479 20.7843 16.6673 20.6846 16.7675L12.8241 24.6848C12.6232 24.8872 12.3517 25 12.0697 25C11.7877 25 11.5162 24.8872 11.3153 24.6848C11.1141 24.4822 11.0002 24.2063 11.0002 23.9175C11.0002 23.6287 11.1142 23.3528 11.3153 23.1502Z' fill='%23333333'/%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='M15.9999 13.585L8.84983 20.6847C8.64725 20.8858 8.37133 20.9998 8.0825 20.9998C7.79368 20.9998 7.51777 20.8859 7.31519 20.6847C7.11278 20.4838 7 20.2123 7 19.9303C7 19.6483 7.11278 19.3768 7.31519 19.1759L15.2325 11.3154C15.3327 11.2157 15.4521 11.1364 15.5838 11.0822C15.7156 11.028 15.857 11 15.9999 11C16.1429 11 16.2843 11.028 16.416 11.0822C16.5478 11.1364 16.6671 11.2157 16.7673 11.3154L24.6845 19.1758C24.7849 19.2753 24.8642 19.3932 24.9182 19.5226C24.9723 19.652 25 19.7905 25 19.9303C25 20.0701 24.9723 20.2086 24.9182 20.338C24.8642 20.4674 24.7849 20.5853 24.6845 20.6848' fill='%23333333'/%3e%3cpath d='M8.84983 20.6847L15.9999 13.585L23.5012 20.9178C23.5012 20.9178 23.7744 21 23.9173 21C24.0603 21 24.2017 20.972 24.3334 20.9178C24.4651 20.8636 24.5843 20.7844 24.6845 20.6848C24.7849 20.5853 24.8642 20.4674 24.9182 20.338C24.9723 20.2086 25 20.0701 25 19.9303C25 19.7905 24.9723 19.652 24.9182 19.5226C24.8642 19.3932 24.7849 19.2753 24.6845 19.1758L16.7673 11.3154C16.6671 11.2157 16.5478 11.1364 16.416 11.0822C16.2843 11.028 16.1429 11 15.9999 11C15.857 11 15.7156 11.028 15.5838 11.0822C15.4521 11.1364 15.3327 11.2157 15.2325 11.3154L7.31519 19.1759C7.11278 19.3768 7 19.6483 7 19.9303C7 20.2123 7.11278 20.4838 7.31519 20.6847C7.51777 20.8859 7.79368 20.9998 8.0825 20.9998C8.37133 20.9998 8.64725 20.8858 8.84983 20.6847Z' fill='%23333333'/%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='M16.0001 18.415L23.1502 11.3153C23.3528 11.1142 23.6287 11.0002 23.9175 11.0002C24.2063 11.0002 24.4822 11.1141 24.6848 11.3153C24.8872 11.5162 25 11.7877 25 12.0697C25 12.3517 24.8872 12.6232 24.6848 12.8241L16.7675 20.6846C16.6673 20.7843 16.5479 20.8636 16.4162 20.9178C16.2844 20.972 16.143 21 16.0001 21C15.8571 21 15.7157 20.972 15.584 20.9178C15.4522 20.8636 15.3329 20.7843 15.2327 20.6846L7.31548 12.8242C7.21513 12.7247 7.1358 12.6068 7.08177 12.4774C7.02774 12.348 7 12.2095 7 12.0697C7 11.9299 7.02774 11.7914 7.08177 11.662C7.1358 11.5326 7.21513 11.4147 7.31548 11.3152' fill='%23333333'/%3e%3cpath d='M23.1502 11.3153L16.0001 18.415L8.4988 11.0822C8.4988 11.0822 8.22563 11 8.08268 11C7.93974 11 7.79833 11.028 7.66658 11.0822C7.53494 11.1364 7.41568 11.2156 7.31548 11.3152C7.21513 11.4147 7.1358 11.5326 7.08177 11.662C7.02774 11.7914 7 11.9299 7 12.0697C7 12.2095 7.02774 12.348 7.08177 12.4774C7.1358 12.6068 7.21513 12.7247 7.31548 12.8242L15.2327 20.6846C15.3329 20.7843 15.4522 20.8636 15.584 20.9178C15.7157 20.972 15.8571 21 16.0001 21C16.143 21 16.2844 20.972 16.4162 20.9178C16.5479 20.8636 16.6673 20.7843 16.7675 20.6846L24.6848 12.8241C24.8872 12.6232 25 12.3517 25 12.0697C25 11.7877 24.8872 11.5162 24.6848 11.3153C24.4822 11.1141 24.2063 11.0002 23.9175 11.0002C23.6287 11.0002 23.3528 11.1142 23.1502 11.3153Z' fill='%23333333'/%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='M13.585 16.0001L20.6847 23.1502C20.8858 23.3528 20.9998 23.6287 20.9998 23.9175C20.9998 24.2063 20.8859 24.4822 20.6847 24.6848C20.4838 24.8872 20.2123 25 19.9303 25C19.6483 25 19.3768 24.8872 19.1759 24.6848L11.3154 16.7675C11.2157 16.6673 11.1364 16.5479 11.0822 16.4162C11.028 16.2844 11 16.143 11 16.0001C11 15.8571 11.028 15.7157 11.0822 15.584C11.1364 15.4522 11.2157 15.3329 11.3154 15.2327L19.1758 7.31548C19.2753 7.21514 19.3932 7.1358 19.5226 7.08177C19.652 7.02774 19.7905 7 19.9303 7C20.0701 7 20.2086 7.02774 20.338 7.08177C20.4674 7.1358 20.5853 7.21514 20.6848 7.31548' fill='%23333333'/%3e%3cpath d='M20.6847 23.1502L13.585 16.0001L20.9178 8.4988C20.9178 8.4988 21 8.22563 21 8.08269C21 7.93974 20.972 7.79833 20.9178 7.66658C20.8636 7.53494 20.7844 7.41568 20.6848 7.31548C20.5853 7.21514 20.4674 7.1358 20.338 7.08177C20.2086 7.02774 20.0701 7 19.9303 7C19.7905 7 19.652 7.02774 19.5226 7.08177C19.3932 7.1358 19.2753 7.21514 19.1758 7.31548L11.3154 15.2327C11.2157 15.3329 11.1364 15.4522 11.0822 15.584C11.028 15.7157 11 15.8571 11 16.0001C11 16.143 11.028 16.2844 11.0822 16.4162C11.1364 16.5479 11.2157 16.6673 11.3154 16.7675L19.1759 24.6848C19.3768 24.8872 19.6483 25 19.9303 25C20.2123 25 20.4838 24.8872 20.6847 24.6848C20.8859 24.4822 20.9998 24.2063 20.9998 23.9175C20.9998 23.6287 20.8858 23.3528 20.6847 23.1502Z' fill='%23333333'/%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='M18.415 16.0001L11.3153 23.1502C11.1142 23.3528 11.0002 23.6287 11.0002 23.9175C11.0002 24.2063 11.1141 24.4822 11.3153 24.6848C11.5162 24.8872 11.7877 25 12.0697 25C12.3517 25 12.6232 24.8872 12.8241 24.6848L20.6846 16.7675C20.7843 16.6673 20.8636 16.5479 20.9178 16.4162C20.972 16.2844 21 16.143 21 16.0001C21 15.8571 20.972 15.7157 20.9178 15.584C20.8636 15.4522 20.7843 15.3329 20.6846 15.2327L12.8242 7.31548C12.7247 7.21514 12.6068 7.1358 12.4774 7.08177C12.348 7.02774 12.2095 7 12.0697 7C11.9299 7 11.7914 7.02774 11.662 7.08177C11.5326 7.1358 11.4147 7.21514 11.3152 7.31548' fill='%23333333'/%3e%3cpath d='M11.3153 23.1502L18.415 16.0001L11.0822 8.4988C11.0822 8.4988 11 8.22563 11 8.08269C11 7.93974 11.028 7.79833 11.0822 7.66658C11.1364 7.53494 11.2156 7.41568 11.3152 7.31548C11.4147 7.21514 11.5326 7.1358 11.662 7.08177C11.7914 7.02774 11.9299 7 12.0697 7C12.2095 7 12.348 7.02774 12.4774 7.08177C12.6068 7.1358 12.7247 7.21514 12.8242 7.31548L20.6846 15.2327C20.7843 15.3329 20.8636 15.4522 20.9178 15.584C20.972 15.7157 21 15.8571 21 16.0001C21 16.143 20.972 16.2844 20.9178 16.4162C20.8636 16.5479 20.7843 16.6673 20.6846 16.7675L12.8241 24.6848C12.6232 24.8872 12.3517 25 12.0697 25C11.7877 25 11.5162 24.8872 11.3153 24.6848C11.1141 24.4822 11.0002 24.2063 11.0002 23.9175C11.0002 23.6287 11.1142 23.3528 11.3153 23.1502Z' fill='%23333333'/%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='%23F5F5F5'/%3e%3cpath d='M16 6C14.0222 6 12.0888 6.58649 10.4443 7.6853C8.79981 8.78412 7.51809 10.3459 6.76121 12.1732C6.00433 14.0004 5.8063 16.0111 6.19215 17.9509C6.578 19.8907 7.53041 21.6725 8.92894 23.0711C10.3275 24.4696 12.1093 25.422 14.0491 25.8078C15.9889 26.1937 17.9996 25.9957 19.8268 25.2388C21.6541 24.4819 23.2159 23.2002 24.3147 21.5557C25.4135 19.9112 26 17.9778 26 16C25.9969 13.3488 24.9423 10.8071 23.0676 8.93237C21.1929 7.05768 18.6512 6.00311 16 6ZM16 24.8235C14.2549 24.8235 12.5489 24.306 11.0979 23.3365C9.64689 22.367 8.51596 20.9889 7.84813 19.3766C7.18029 17.7643 7.00556 15.9902 7.34602 14.2786C7.68647 12.567 8.52683 10.9948 9.76083 9.76082C10.9948 8.52683 12.567 7.68647 14.2786 7.34601C15.9902 7.00555 17.7643 7.18029 19.3766 7.84812C20.9889 8.51595 22.367 9.64689 23.3365 11.0979C24.306 12.5489 24.8235 14.2549 24.8235 16C24.8209 18.3393 23.8905 20.5821 22.2363 22.2363C20.5821 23.8905 18.3394 24.8209 16 24.8235ZM19.5529 14.8C19.6107 14.8539 19.6571 14.9188 19.6892 14.9909C19.7214 15.0631 19.7387 15.141 19.7401 15.22C19.7415 15.299 19.7269 15.3774 19.6974 15.4507C19.6678 15.5239 19.6237 15.5904 19.5679 15.6463C19.512 15.7022 19.4455 15.7462 19.3722 15.7758C19.299 15.8054 19.2205 15.8199 19.1416 15.8185C19.0626 15.8171 18.9847 15.7998 18.9125 15.7677C18.8404 15.7355 18.7754 15.6892 18.7216 15.6314L16.5882 13.499V19.9216C16.5882 20.0776 16.5263 20.2272 16.4159 20.3375C16.3056 20.4478 16.156 20.5098 16 20.5098C15.844 20.5098 15.6944 20.4478 15.5841 20.3375C15.4737 20.2272 15.4118 20.0776 15.4118 19.9216V13.499L13.2784 15.6314C13.1669 15.7353 13.0194 15.7918 12.867 15.7892C12.7147 15.7865 12.5693 15.7247 12.4615 15.617C12.3537 15.5092 12.292 15.3638 12.2893 15.2114C12.2866 15.059 12.3432 14.9115 12.4471 14.8L15.5843 11.6627C15.6946 11.5526 15.8441 11.4907 16 11.4907C16.1559 11.4907 16.3054 11.5526 16.4157 11.6627L19.5529 14.8Z' fill='%23333333'/%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='%23F5F5F5'/%3e%3cpath d='M16 26C17.9778 26 19.9112 25.4135 21.5557 24.3147C23.2002 23.2159 24.4819 21.6541 25.2388 19.8268C25.9957 17.9996 26.1937 15.9889 25.8078 14.0491C25.422 12.1093 24.4696 10.3275 23.0711 8.92894C21.6725 7.53041 19.8907 6.578 17.9509 6.19215C16.0111 5.8063 14.0004 6.00433 12.1732 6.76121C10.3459 7.51808 8.78412 8.79981 7.6853 10.4443C6.58649 12.0888 6 14.0222 6 16C6.00311 18.6512 7.05768 21.1929 8.93237 23.0676C10.8071 24.9423 13.3488 25.9969 16 26ZM16 7.17647C17.7451 7.17647 19.4511 7.69397 20.9021 8.66351C22.3531 9.63305 23.484 11.0111 24.1519 12.6234C24.8197 14.2357 24.9944 16.0098 24.654 17.7214C24.3135 19.433 23.4732 21.0052 22.2392 22.2392C21.0052 23.4732 19.433 24.3135 17.7214 24.654C16.0098 24.9944 14.2357 24.8197 12.6234 24.1519C11.0111 23.484 9.63305 22.3531 8.6635 20.9021C7.69396 19.4511 7.17647 17.7451 7.17647 16C7.17907 13.6607 8.10952 11.4179 9.76369 9.76369C11.4179 8.10952 13.6607 7.17907 16 7.17647ZM12.4471 17.2C12.3893 17.1461 12.3429 17.0812 12.3108 17.0091C12.2786 16.9369 12.2613 16.859 12.2599 16.78C12.2585 16.701 12.2731 16.6226 12.3026 16.5493C12.3322 16.4761 12.3763 16.4096 12.4321 16.3537C12.488 16.2978 12.5545 16.2538 12.6278 16.2242C12.701 16.1946 12.7795 16.1801 12.8584 16.1815C12.9374 16.1829 13.0153 16.2002 13.0875 16.2323C13.1596 16.2645 13.2246 16.3108 13.2784 16.3686L15.4118 18.501L15.4118 12.0784C15.4118 11.9224 15.4737 11.7728 15.5841 11.6625C15.6944 11.5522 15.844 11.4902 16 11.4902C16.156 11.4902 16.3056 11.5522 16.4159 11.6625C16.5263 11.7728 16.5882 11.9224 16.5882 12.0784L16.5882 18.501L18.7216 16.3686C18.8331 16.2647 18.9806 16.2082 19.133 16.2108C19.2853 16.2135 19.4307 16.2753 19.5385 16.383C19.6463 16.4908 19.708 16.6362 19.7107 16.7886C19.7134 16.941 19.6568 17.0885 19.5529 17.2L16.4157 20.3373C16.3054 20.4474 16.1559 20.5093 16 20.5093C15.8441 20.5093 15.6946 20.4474 15.5843 20.3373L12.4471 17.2Z' fill='%23333333'/%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 d='M26 12.911C26 13.1526 25.904 13.3843 25.7332 13.5551C25.5623 13.726 25.3306 13.8219 25.089 13.8219H6.91097C6.66937 13.8219 6.43766 13.726 6.26682 13.5551C6.09598 13.3843 6 13.1526 6 12.911C6 12.6694 6.09598 12.4377 6.26682 12.2668C6.43766 12.096 6.66936 12 6.91097 12H25.089C25.3306 12 25.5623 12.096 25.7332 12.2668C25.904 12.4377 26 12.6694 26 12.911Z' fill='%23333333'/%3e%3cpath d='M26 18.911C26 19.1526 25.904 19.3843 25.7332 19.5551C25.5623 19.726 25.3306 19.8219 25.089 19.8219H6.91097C6.66937 19.8219 6.43766 19.726 6.26682 19.5551C6.09598 19.3843 6 19.1526 6 18.911C6 18.6694 6.09598 18.4377 6.26682 18.2668C6.43766 18.096 6.66936 18 6.91097 18H25.089C25.3306 18 25.5623 18.096 25.7332 18.2668C25.904 18.4377 26 18.6694 26 18.911Z' fill='%23333333'/%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 fill-rule='evenodd' clip-rule='evenodd' d='M25.7332 16.6442C25.904 16.4733 26 16.2416 26 16C26 15.7584 25.904 15.5267 25.7332 15.3558C25.5623 15.185 25.3306 15.089 25.089 15.089H16.911V6.91097C16.911 6.66937 16.815 6.43766 16.6442 6.26682C16.4733 6.09598 16.2416 6 16 6C15.7584 6 15.5267 6.09598 15.3558 6.26682C15.185 6.43766 15.089 6.66936 15.089 6.91097V15.089H6.91097C6.66936 15.089 6.43766 15.185 6.26682 15.3558C6.09598 15.5267 6 15.7584 6 16C6 16.2416 6.09598 16.4733 6.26682 16.6442C6.43766 16.815 6.66937 16.911 6.91097 16.911H15.089V25.089C15.089 25.3306 15.185 25.5623 15.3558 25.7332C15.5267 25.904 15.7584 26 16 26C16.2416 26 16.4733 25.904 16.6442 25.7332C16.815 25.5623 16.911 25.3306 16.911 25.089V16.911H25.089C25.3306 16.911 25.5623 16.815 25.7332 16.6442Z' fill='%23333333'/%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 fill-rule='evenodd' clip-rule='evenodd' d='M25.7332 16.5551C25.904 16.3843 26 16.1526 26 15.911C26 15.6694 25.904 15.4377 25.7332 15.2668C25.5623 15.096 25.3306 15 25.089 15C13.4077 15 18.003 15 6.91097 15C6.66936 15 6.43766 15.096 6.26682 15.2668C6.09598 15.4377 6 15.6694 6 15.911C6 16.1526 6.09598 16.3843 6.26682 16.5551C6.43766 16.726 6.66937 16.8219 6.91097 16.8219C18.0973 16.8219 13.2986 16.8219 25.089 16.8219C25.3306 16.8219 25.5623 16.726 25.7332 16.5551Z' fill='%23333333'/%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 d='M19.7255 14.4283C19.7255 14.5843 19.6635 14.7339 19.5532 14.8442C19.4429 14.9546 19.2933 15.0165 19.1373 15.0165H12.8627C12.7067 15.0165 12.5571 14.9546 12.4468 14.8442C12.3365 14.7339 12.2745 14.5843 12.2745 14.4283C12.2745 14.2722 12.3365 14.1226 12.4468 14.0123C12.5571 13.9019 12.7067 13.84 12.8627 13.84H19.1373C19.2933 13.84 19.4429 13.9019 19.5532 14.0123C19.6635 14.1226 19.7255 14.2722 19.7255 14.4283ZM19.1373 16.9775H12.8627C12.7067 16.9775 12.5571 17.0395 12.4468 17.1498C12.3365 17.2601 12.2745 17.4098 12.2745 17.5658C12.2745 17.7218 12.3365 17.8714 12.4468 17.9818C12.5571 18.0921 12.7067 18.1541 12.8627 18.1541H19.1373C19.2933 18.1541 19.4429 18.0921 19.5532 17.9818C19.6635 17.8714 19.7255 17.7218 19.7255 17.5658C19.7255 17.4098 19.6635 17.2601 19.5532 17.1498C19.4429 17.0395 19.2933 16.9775 19.1373 16.9775ZM26 15.997C26.0004 17.7307 25.5501 19.4347 24.6933 20.9419C23.8365 22.449 22.6027 23.7075 21.1129 24.594C19.6231 25.4804 17.9284 25.9643 16.1952 25.9981C14.462 26.0319 12.7498 25.6146 11.2265 24.787L7.80784 25.9263C7.56601 26.007 7.30648 26.0187 7.05837 25.9601C6.81025 25.9016 6.58335 25.7751 6.40308 25.5948C6.22282 25.4145 6.09632 25.1876 6.03777 24.9394C5.97921 24.6913 5.99092 24.4318 6.07157 24.1899L7.21078 20.771C6.48457 19.4326 6.07352 17.9461 6.00899 16.4248C5.94445 14.9035 6.22813 13.3875 6.83839 11.9924C7.44865 10.5974 8.36939 9.36012 9.53038 8.37499C10.6914 7.38986 12.062 6.68287 13.5377 6.30792C15.0133 5.93298 16.5552 5.89999 18.0455 6.21146C19.5359 6.52294 20.9355 7.17065 22.1376 8.10522C23.3396 9.03979 24.3124 10.2365 24.9818 11.6042C25.6512 12.9718 25.9994 14.4743 26 15.997ZM24.8235 15.997C24.8232 14.6434 24.5115 13.308 23.9125 12.0941C23.3136 10.8802 22.4434 9.82041 21.3693 8.9967C20.2952 8.17298 19.0461 7.60743 17.7185 7.34379C16.3909 7.08015 15.0204 7.1255 13.7132 7.47633C12.4059 7.82715 11.1969 8.47405 10.1796 9.36697C9.16233 10.2599 8.3641 11.3749 7.84667 12.6257C7.32924 13.8765 7.10648 15.2296 7.19563 16.5803C7.28478 17.931 7.68345 19.2431 8.36078 20.4151C8.40262 20.4872 8.42863 20.5675 8.43708 20.6505C8.44553 20.7335 8.43623 20.8173 8.4098 20.8965L7.18824 24.5615C7.17671 24.5961 7.17504 24.6331 7.18341 24.6686C7.19177 24.704 7.20984 24.7364 7.23559 24.7622C7.26135 24.788 7.29376 24.806 7.32921 24.8144C7.36465 24.8228 7.40173 24.8211 7.43627 24.8096L11.098 23.5879C11.1582 23.5681 11.221 23.5579 11.2843 23.5575C11.3876 23.5581 11.4889 23.5854 11.5784 23.6369C12.9199 24.4138 14.4423 24.8235 15.9924 24.8248C17.5425 24.8261 19.0656 24.4191 20.4084 23.6445C21.7511 22.87 22.8662 21.7554 23.6413 20.4128C24.4164 19.0703 24.8241 17.5473 24.8235 15.997Z' fill='%23333333'/%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 d='M22.2496 8.73364C21.3756 7.87145 20.3358 7.18615 19.1898 6.71705C18.0439 6.24795 16.8143 6.00428 15.5717 6H15.5C12.9804 6 10.5641 6.97695 8.78248 8.71592C7.00089 10.4549 6 12.8134 6 15.2727V20.3636C6 20.8941 6.21588 21.4028 6.60014 21.7779C6.98441 22.1529 7.50558 22.3636 8.04901 22.3636H9.5392C10.0826 22.3636 10.6038 22.1529 10.9881 21.7779C11.3723 21.4028 11.5882 20.8941 11.5882 20.3636V16.7273C11.5882 16.1968 11.3723 15.6881 10.9881 15.3131C10.6038 14.938 10.0826 14.7273 9.5392 14.7273H7.13627C7.27803 12.6564 8.22083 10.7154 9.77374 9.29757C11.3266 7.87971 13.3736 7.0909 15.5 7.09091H15.5633C17.6808 7.10008 19.7157 7.89367 21.2567 9.31124C22.7977 10.7288 23.7298 12.6646 23.8646 14.7273H21.4607C20.9173 14.7273 20.3961 14.938 20.0119 15.3131C19.6276 15.6881 19.4117 16.1968 19.4117 16.7273V20.3636C19.4117 20.8941 19.6276 21.4028 20.0119 21.7779C20.3961 22.1529 20.9173 22.3636 21.4607 22.3636H23.8823V22.5455C23.8823 23.1723 23.6272 23.7735 23.173 24.2168C22.7189 24.6601 22.103 24.9091 21.4607 24.9091H16.2451C16.0969 24.9091 15.9547 24.9666 15.8499 25.0689C15.7451 25.1711 15.6862 25.3099 15.6862 25.4545C15.6862 25.5992 15.7451 25.7379 15.8499 25.8402C15.9547 25.9425 16.0969 26 16.2451 26H21.4607C22.3994 26 23.2996 25.636 23.9633 24.9882C24.6271 24.3403 24.9999 23.4617 24.9999 22.5455V15.2727C25.0046 14.0598 24.7641 12.8578 24.2921 11.7358C23.8202 10.6137 23.1261 9.59349 22.2496 8.73364ZM9.5392 15.8182C9.78622 15.8182 10.0231 15.914 10.1978 16.0844C10.3724 16.2549 10.4706 16.4862 10.4706 16.7273V20.3636C10.4706 20.6047 10.3724 20.836 10.1978 21.0065C10.0231 21.1769 9.78622 21.2727 9.5392 21.2727H8.04901C7.802 21.2727 7.5651 21.1769 7.39043 21.0065C7.21577 20.836 7.11764 20.6047 7.11764 20.3636V15.8182H9.5392ZM20.5294 20.3636V16.7273C20.5294 16.4862 20.6275 16.2549 20.8022 16.0844C20.9768 15.914 21.2137 15.8182 21.4607 15.8182H23.8823V21.2727H21.4607C21.2137 21.2727 20.9768 21.1769 20.8022 21.0065C20.6275 20.836 20.5294 20.6047 20.5294 20.3636Z' fill='%23333333'/%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='M25.0839 12.476L7.83279 6.07491H7.82004C7.57709 5.99118 7.31551 5.97733 7.06508 6.03494C6.81465 6.09255 6.58541 6.2193 6.40345 6.40078C6.22149 6.58225 6.09411 6.81116 6.0358 7.06147C5.9775 7.31177 5.99061 7.57342 6.07364 7.81664C6.07364 7.81664 6.07364 7.82547 6.07364 7.82939L12.4787 25.083C12.5701 25.3525 12.7442 25.5863 12.9763 25.751C13.2084 25.9157 13.4866 26.0028 13.7711 25.9999H13.7966C14.0869 25.998 14.3688 25.9028 14.6009 25.7283C14.8329 25.5538 15.0026 25.3094 15.0851 25.031L17.3953 17.5227C17.4047 17.4922 17.4214 17.4645 17.444 17.4419C17.4665 17.4194 17.4943 17.4027 17.5247 17.3932L25.032 15.0827C25.3079 14.9976 25.5499 14.8276 25.7236 14.597C25.8974 14.3664 25.994 14.0868 25.9997 13.7981C26.0055 13.5094 25.9201 13.2263 25.7557 12.9889C25.5913 12.7515 25.3562 12.5721 25.0839 12.476ZM24.6858 13.9578L17.1757 16.2684C16.9618 16.3343 16.7672 16.4514 16.6089 16.6097C16.4507 16.768 16.3335 16.9626 16.2676 17.1765L13.9574 24.6848C13.9473 24.7255 13.9234 24.7616 13.8899 24.7867C13.8563 24.8119 13.815 24.8248 13.7731 24.8231C13.7311 24.8268 13.6892 24.8155 13.6548 24.7913C13.6203 24.7671 13.5955 24.7314 13.5848 24.6907C13.5852 24.6868 13.5852 24.6828 13.5848 24.6789L7.18463 7.4273C7.1738 7.39306 7.17258 7.35651 7.1811 7.32162C7.18962 7.28673 7.20755 7.25486 7.23294 7.22946C7.25833 7.20407 7.2902 7.18613 7.32508 7.17761C7.35997 7.16909 7.39652 7.17031 7.43075 7.18114L24.68 13.5812H24.6917C24.7308 13.5947 24.7645 13.6202 24.7882 13.6541C24.8119 13.6879 24.8244 13.7284 24.8237 13.7697C24.8231 13.811 24.8094 13.8511 24.7846 13.8841C24.7599 13.9172 24.7253 13.9416 24.6858 13.9539V13.9578Z' fill='%23333333'/%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.7' 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='%23F5F5F5'/%3e%3cpath d='M16 6C14.0222 6 12.0888 6.58649 10.4443 7.6853C8.79981 8.78412 7.51809 10.3459 6.76121 12.1732C6.00433 14.0004 5.8063 16.0111 6.19215 17.9509C6.578 19.8907 7.53041 21.6725 8.92894 23.0711C10.3275 24.4696 12.1093 25.422 14.0491 25.8078C15.9889 26.1937 17.9996 25.9957 19.8268 25.2388C21.6541 24.4819 23.2159 23.2002 24.3147 21.5557C25.4135 19.9112 26 17.9778 26 16C25.9969 13.3488 24.9423 10.8071 23.0676 8.93237C21.1929 7.05768 18.6512 6.00311 16 6ZM16 24.8235C14.2549 24.8235 12.5489 24.306 11.0979 23.3365C9.64689 22.367 8.51596 20.9889 7.84813 19.3766C7.18029 17.7643 7.00556 15.9902 7.34602 14.2786C7.68647 12.567 8.52683 10.9948 9.76083 9.76082C10.9948 8.52683 12.567 7.68647 14.2786 7.34601C15.9902 7.00555 17.7643 7.18029 19.3766 7.84812C20.9889 8.51595 22.367 9.64689 23.3365 11.0979C24.306 12.5489 24.8235 14.2549 24.8235 16C24.8209 18.3393 23.8905 20.5821 22.2363 22.2363C20.5821 23.8905 18.3394 24.8209 16 24.8235ZM19.4637 15.5098L14.7578 12.3725C14.6692 12.3134 14.5662 12.2795 14.4597 12.2743C14.3533 12.2692 14.2474 12.2931 14.1535 12.3434C14.0596 12.3937 13.9811 12.4686 13.9264 12.5601C13.8718 12.6516 13.843 12.7562 13.8431 12.8627V19.1373C13.843 19.2438 13.8718 19.3484 13.9264 19.4399C13.9811 19.5314 14.0596 19.6063 14.1535 19.6566C14.2474 19.7069 14.3533 19.7308 14.4597 19.7257C14.5662 19.7205 14.6692 19.6866 14.7578 19.6274L19.4637 16.4902C19.5446 16.4365 19.611 16.3637 19.6569 16.2782C19.7028 16.1926 19.7268 16.0971 19.7268 16C19.7268 15.9029 19.7028 15.8074 19.6569 15.7218C19.611 15.6363 19.5446 15.5635 19.4637 15.5098ZM15.0196 18.0382V13.9618L18.0765 16L15.0196 18.0382Z' fill='%23333333'/%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.7' 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='%23F5F5F5'/%3e%3cpath d='M16 6C14.0222 6 12.0888 6.58649 10.4443 7.6853C8.79981 8.78412 7.51809 10.3459 6.76121 12.1732C6.00433 14.0004 5.8063 16.0111 6.19215 17.9509C6.578 19.8907 7.53041 21.6725 8.92894 23.0711C10.3275 24.4696 12.1093 25.422 14.0491 25.8078C15.9889 26.1937 17.9996 25.9957 19.8268 25.2388C21.6541 24.4819 23.2159 23.2002 24.3147 21.5557C25.4135 19.9112 26 17.9778 26 16C25.9969 13.3488 24.9423 10.8071 23.0676 8.93237C21.1929 7.05768 18.6512 6.00311 16 6ZM16 24.8235C14.2549 24.8235 12.5489 24.306 11.0979 23.3365C9.64689 22.367 8.51596 20.9889 7.84813 19.3766C7.18029 17.7643 7.00556 15.9902 7.34602 14.2786C7.68647 12.567 8.52683 10.9948 9.76083 9.76082C10.9948 8.52683 12.567 7.68647 14.2786 7.34601C15.9902 7.00555 17.7643 7.18029 19.3766 7.84812C20.9889 8.51595 22.367 9.64689 23.3365 11.0979C24.306 12.5489 24.8235 14.2549 24.8235 16C24.8209 18.3393 23.8905 20.5821 22.2363 22.2363C20.5821 23.8905 18.3394 24.8209 16 24.8235ZM14.2353 12.8627V19.1373C14.2353 19.2933 14.1733 19.4429 14.063 19.5532C13.9527 19.6635 13.8031 19.7255 13.6471 19.7255C13.4911 19.7255 13.3414 19.6635 13.2311 19.5532C13.1208 19.4429 13.0588 19.2933 13.0588 19.1373V12.8627C13.0588 12.7067 13.1208 12.5571 13.2311 12.4468C13.3414 12.3365 13.4911 12.2745 13.6471 12.2745C13.8031 12.2745 13.9527 12.3365 14.063 12.4468C14.1733 12.5571 14.2353 12.7067 14.2353 12.8627ZM18.9412 12.8627V19.1373C18.9412 19.2933 18.8792 19.4429 18.7689 19.5532C18.6586 19.6635 18.509 19.7255 18.3529 19.7255C18.1969 19.7255 18.0473 19.6635 17.937 19.5532C17.8267 19.4429 17.7647 19.2933 17.7647 19.1373V12.8627C17.7647 12.7067 17.8267 12.5571 17.937 12.4468C18.0473 12.3365 18.1969 12.2745 18.3529 12.2745C18.509 12.2745 18.6586 12.3365 18.7689 12.4468C18.8792 12.5571 18.9412 12.7067 18.9412 12.8627Z' fill='%23333333'/%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='M23.6596 7.56863H21.1702V6.58824C21.1702 6.43223 21.1097 6.28261 21.002 6.17229C20.8942 6.06197 20.7481 6 20.5957 6C20.4434 6 20.2973 6.06197 20.1895 6.17229C20.0818 6.28261 20.0213 6.43223 20.0213 6.58824V7.56863H11.9787V6.58824C11.9787 6.43223 11.9182 6.28261 11.8105 6.17229C11.7027 6.06197 11.5566 6 11.4043 6C11.2519 6 11.1058 6.06197 10.998 6.17229C10.8903 6.28261 10.8298 6.43223 10.8298 6.58824V7.56863H8.34043C7.98492 7.56863 7.64398 7.71324 7.3926 7.97064C7.14122 8.22804 7 8.57715 7 8.94118V24.6275C7 24.9915 7.14122 25.3406 7.3926 25.598C7.64398 25.8554 7.98492 26 8.34043 26H23.6596C24.0151 26 24.356 25.8554 24.6074 25.598C24.8588 25.3406 25 24.9915 25 24.6275V8.94118C25 8.57715 24.8588 8.22804 24.6074 7.97064C24.356 7.71324 24.0151 7.56863 23.6596 7.56863ZM8.34043 8.7451H10.8298V9.72549C10.8298 9.8815 10.8903 10.0311 10.998 10.1414C11.1058 10.2518 11.2519 10.3137 11.4043 10.3137C11.5566 10.3137 11.7027 10.2518 11.8105 10.1414C11.9182 10.0311 11.9787 9.8815 11.9787 9.72549V8.7451H20.0213V9.72549C20.0213 9.8815 20.0818 10.0311 20.1895 10.1414C20.2973 10.2518 20.4434 10.3137 20.5957 10.3137C20.7481 10.3137 20.8942 10.2518 21.002 10.1414C21.1097 10.0311 21.1702 9.8815 21.1702 9.72549V8.7451H23.6596C23.7104 8.7451 23.7591 8.76576 23.795 8.80253C23.8309 8.8393 23.8511 8.88917 23.8511 8.94118V12.2745H8.14894V8.94118C8.14894 8.88917 8.16911 8.8393 8.20502 8.80253C8.24093 8.76576 8.28964 8.7451 8.34043 8.7451ZM23.6596 24.8235H8.34043C8.28964 24.8235 8.24093 24.8029 8.20502 24.7661C8.16911 24.7293 8.14894 24.6795 8.14894 24.6275V13.451H23.8511V24.6275C23.8511 24.6795 23.8309 24.7293 23.795 24.7661C23.7591 24.8029 23.7104 24.8235 23.6596 24.8235Z' fill='%23333333'/%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 d='M26.3354 9.51015L13.2542 22.3243C13.1393 22.4368 12.9834 22.5 12.8209 22.5C12.6584 22.5 12.5026 22.4368 12.3876 22.3243L6.66457 16.7181C6.55626 16.6043 6.49729 16.4537 6.5001 16.298C6.5029 16.1424 6.56725 15.994 6.6796 15.8839C6.79194 15.7739 6.94351 15.7108 7.10236 15.7081C7.26122 15.7053 7.41496 15.7631 7.5312 15.8692L12.8209 21.0499L25.4688 8.66121C25.585 8.55511 25.7388 8.49735 25.8976 8.50009C26.0565 8.50284 26.2081 8.56588 26.3204 8.67593C26.4327 8.78598 26.4971 8.93446 26.4999 9.09007C26.5027 9.24568 26.4437 9.39629 26.3354 9.51015Z' fill='%23333333'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M26.6916 9.86116L13.6041 22.6815C13.3946 22.8865 13.1126 23 12.8209 23C12.5292 23 12.2474 22.8867 12.0379 22.6817L6.30838 17.0691L6.30229 17.0627C6.10441 16.8547 5.99498 16.5775 6.00018 16.289C6.00537 16.0006 6.12468 15.7276 6.32971 15.5267C6.53441 15.3262 6.80851 15.2131 7.09372 15.2081C7.37892 15.2032 7.65672 15.3068 7.86828 15.4999L7.87478 15.5058L12.8209 20.35L25.1252 8.29786L25.1317 8.29192C25.3433 8.09881 25.6211 7.99524 25.9063 8.00017C26.1915 8.0051 26.4656 8.11823 26.6703 8.31875C26.8753 8.51959 26.9946 8.79267 26.9998 9.08106C27.005 9.36948 26.8956 9.64673 26.6977 9.85476L26.6916 9.86116ZM12.8209 21.0499L7.5312 15.8692C7.41496 15.7631 7.26122 15.7053 7.10236 15.7081C6.94351 15.7108 6.79194 15.7739 6.6796 15.8839C6.56725 15.994 6.5029 16.1424 6.5001 16.298C6.49729 16.4537 6.55626 16.6043 6.66457 16.7181L12.3876 22.3243C12.5026 22.4368 12.6584 22.5 12.8209 22.5C12.9834 22.5 13.1393 22.4368 13.2542 22.3243L26.3354 9.51015C26.4437 9.39629 26.5027 9.24568 26.4999 9.09007C26.4971 8.93446 26.4327 8.78598 26.3204 8.67593C26.2081 8.56588 26.0565 8.50284 25.8976 8.50009C25.7388 8.49735 25.585 8.55511 25.4688 8.66121L12.8209 21.0499Z' fill='%23333333'/%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%3cpath d='M25.3685 11.5788L21.3121 7.61724C21.1118 7.42156 20.874 7.26633 20.6123 7.16042C20.3506 7.05451 20.0701 7 19.7868 7C19.5035 7 19.223 7.05451 18.9613 7.16042C18.6996 7.26633 18.4618 7.42156 18.2615 7.61724L6.63152 18.9753C6.22716 19.3703 6 19.906 6 20.4645C6 21.023 6.22716 21.5587 6.63152 21.9537L9.57921 24.8315C9.6894 24.9393 9.8389 24.9999 9.99484 25H24.6264C24.7824 25 24.932 24.9395 25.0423 24.8318C25.1526 24.724 25.2146 24.5779 25.2146 24.4256C25.2146 24.2732 25.1526 24.1271 25.0423 24.0194C24.932 23.9117 24.7824 23.8512 24.6264 23.8512H15.852L25.3685 14.5571C25.7728 14.1622 26 13.6265 26 13.068C26 12.5094 25.7728 11.9738 25.3685 11.5788ZM14.1875 23.8512H10.2379L7.46377 21.1418C7.37263 21.0529 7.30033 20.9473 7.251 20.8311C7.20166 20.7149 7.17627 20.5903 7.17627 20.4645C7.17627 20.3387 7.20166 20.2141 7.251 20.0979C7.30033 19.9817 7.37263 19.8761 7.46377 19.7872L12.8631 14.515L18.3056 19.8303L14.1875 23.8512ZM24.5362 13.7453L19.1369 19.0175L13.6944 13.7032L19.0937 8.43099C19.2776 8.25152 19.5269 8.15069 19.7868 8.15069C20.0467 8.15069 20.296 8.25152 20.4799 8.43099L24.5362 12.3916C24.72 12.5711 24.8232 12.8146 24.8232 13.0684C24.8232 13.3223 24.72 13.5658 24.5362 13.7453Z' fill='%23333333'/%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 d='M26 18.5532V24.5106C26 24.9056 25.8431 25.2845 25.5638 25.5638C25.2845 25.8431 24.9056 26 24.5106 26H7.48936C7.09436 26 6.71553 25.8431 6.43622 25.5638C6.15691 25.2845 6 24.9056 6 24.5106V18.5532C6 18.3839 6.06725 18.2216 6.18695 18.1018C6.30666 17.9821 6.46901 17.9149 6.6383 17.9149C6.80759 17.9149 6.96994 17.9821 7.08964 18.1018C7.20935 18.2216 7.2766 18.3839 7.2766 18.5532V24.5106C7.2766 24.5671 7.29901 24.6212 7.33891 24.6611C7.37881 24.701 7.43293 24.7234 7.48936 24.7234H24.5106C24.5671 24.7234 24.6212 24.701 24.6611 24.6611C24.701 24.6212 24.7234 24.5671 24.7234 24.5106V18.5532C24.7234 18.3839 24.7907 18.2216 24.9104 18.1018C25.0301 17.9821 25.1924 17.9149 25.3617 17.9149C25.531 17.9149 25.6933 17.9821 25.813 18.1018C25.9328 18.2216 26 18.3839 26 18.5532ZM15.5489 19.0043C15.6686 19.1238 15.8309 19.1909 16 19.1909C16.1691 19.1909 16.3314 19.1238 16.4511 19.0043L20.7064 14.7489C20.8191 14.6279 20.8805 14.4679 20.8776 14.3025C20.8747 14.1372 20.8077 13.9794 20.6907 13.8625C20.5738 13.7455 20.416 13.6785 20.2507 13.6756C20.0853 13.6727 19.9253 13.7341 19.8043 13.8468L16.6383 17.0117V6.6383C16.6383 6.46901 16.571 6.30666 16.4513 6.18695C16.3316 6.06725 16.1693 6 16 6C15.8307 6 15.6684 6.06725 15.5487 6.18695C15.429 6.30666 15.3617 6.46901 15.3617 6.6383V17.0117L12.1957 13.8468C12.0747 13.7341 11.9147 13.6727 11.7493 13.6756C11.584 13.6785 11.4262 13.7455 11.3093 13.8625C11.1923 13.9794 11.1253 14.1372 11.1224 14.3025C11.1195 14.4679 11.1809 14.6279 11.2936 14.7489L15.5489 19.0043Z' fill='%23333333'/%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='M31.8951 12.3005C31.775 11.9292 31.5435 11.6015 31.2305 11.3593C30.9174 11.1171 30.5371 10.9717 30.1384 10.9416L21.4911 10.214C21.4388 10.209 21.3889 10.1903 21.3467 10.1599C21.3044 10.1295 21.2714 10.0885 21.2512 10.0413L17.8729 2.20505C17.7164 1.84757 17.4554 1.54274 17.1224 1.32849C16.7893 1.11423 16.3989 1 15.9997 1C15.6005 1 15.2101 1.11423 14.8771 1.32849C14.544 1.54274 14.2831 1.84757 14.1266 2.20505L10.7483 10.0413C10.728 10.0885 10.695 10.1295 10.6528 10.1599C10.6105 10.1903 10.5606 10.209 10.5083 10.214L1.86109 10.9416C1.46239 10.9717 1.08204 11.1171 0.768969 11.3593C0.455896 11.6015 0.224417 11.9292 0.104307 12.3005C-0.0229003 12.6723 -0.0340121 13.0724 0.072377 13.4504C0.178766 13.8283 0.397879 14.167 0.702021 14.4238L7.26233 19.9938C7.3025 20.0286 7.33234 20.0732 7.34871 20.123C7.36509 20.1728 7.3674 20.226 7.35541 20.2769L5.38339 28.5591C5.29146 28.9404 5.31769 29.3397 5.45875 29.7065C5.59982 30.0734 5.8494 30.3913 6.17598 30.6201C6.49748 30.851 6.88272 30.9828 7.28195 30.9984C7.68117 31.0141 8.07605 30.9129 8.41559 30.7079L15.8485 26.3198C15.8922 26.2935 15.9425 26.2795 15.9939 26.2795C16.0453 26.2795 16.0956 26.2935 16.1393 26.3198L23.5722 30.7079C23.9153 30.9123 24.3129 31.0133 24.7148 30.998C25.1168 30.9827 25.5051 30.8518 25.8307 30.622C26.1563 30.3921 26.4047 30.0735 26.5445 29.7064C26.6842 29.3392 26.7092 28.94 26.6161 28.5591L24.6499 20.2741C24.6379 20.2231 24.6402 20.17 24.6565 20.1201C24.6729 20.0703 24.7028 20.0257 24.7429 19.991L31.3032 14.421C31.6058 14.1638 31.8235 13.8252 31.9288 13.4479C32.0341 13.0706 32.0224 12.6714 31.8951 12.3005ZM30.15 13.1385L23.5897 18.7085C23.3101 18.9453 23.1023 19.2518 22.9885 19.595C22.8747 19.9382 22.8593 20.3052 22.944 20.6563L24.9102 28.9413C24.9247 28.997 24.9215 29.0556 24.901 29.1095C24.8805 29.1633 24.8436 29.2098 24.7953 29.2428C24.7515 29.2769 24.6978 29.2965 24.6418 29.2988C24.5858 29.3011 24.5306 29.2859 24.4841 29.2556L17.0512 24.8675C16.7343 24.68 16.3706 24.5808 15.9997 24.5808C15.6289 24.5808 15.2652 24.68 14.9483 24.8675L7.51538 29.2556C7.46886 29.2859 7.4136 29.3011 7.35763 29.2988C7.30165 29.2965 7.24789 29.2769 7.20416 29.2428C7.15585 29.2098 7.11899 29.1633 7.09847 29.1095C7.07795 29.0556 7.07474 28.997 7.08927 28.9413L9.05548 20.6563C9.14013 20.3052 9.12473 19.9382 9.01094 19.595C8.89716 19.2518 8.6893 18.9453 8.40977 18.7085L1.84946 13.1385C1.80459 13.1014 1.77237 13.0518 1.75704 12.9965C1.74172 12.9411 1.74403 12.8825 1.76365 12.8285C1.77834 12.7747 1.81019 12.7268 1.85461 12.6917C1.89903 12.6566 1.95375 12.6361 2.01088 12.6332L10.6596 11.9056C11.0298 11.8749 11.3844 11.7461 11.6848 11.5333C11.9853 11.3204 12.2201 11.0316 12.364 10.6981L15.7423 2.86185C15.7658 2.81321 15.803 2.77209 15.8496 2.74328C15.8963 2.71448 15.9503 2.69918 16.0055 2.69918C16.0608 2.69918 16.1148 2.71448 16.1614 2.74328C16.208 2.77209 16.2453 2.81321 16.2688 2.86185L19.6355 10.6981C19.7788 11.0308 20.0128 11.3191 20.3122 11.5319C20.6115 11.7447 20.9648 11.8739 21.3341 11.9056L29.9827 12.6332C30.0399 12.6361 30.0946 12.6566 30.139 12.6917C30.1834 12.7268 30.2153 12.7747 30.23 12.8285C30.2503 12.882 30.2535 12.9402 30.2392 12.9955C30.225 13.0508 30.1938 13.1007 30.15 13.1385Z' 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 fill-rule='evenodd' clip-rule='evenodd' d='M31.2305 11.3593C31.5435 11.6015 31.775 11.9292 31.8951 12.3005C32.0224 12.6714 32.0341 13.0706 31.9288 13.4479C31.8235 13.8252 31.6058 14.1638 31.3032 14.421L24.7429 19.991C24.7028 20.0257 24.6729 20.0703 24.6565 20.1201C24.6402 20.17 24.6379 20.2231 24.6499 20.2741L26.6161 28.5591C26.7092 28.94 26.6842 29.3392 26.5445 29.7064C26.4047 30.0735 26.1563 30.3921 25.8307 30.622C25.5051 30.8518 25.1168 30.9827 24.7148 30.998C24.3129 31.0133 23.9153 30.9123 23.5722 30.7079L16.1393 26.3198C16.0956 26.2935 16.0453 26.2795 15.9939 26.2795C15.9425 26.2795 15.8922 26.2935 15.8485 26.3198L8.41559 30.7079C8.37314 30.7335 8.32984 30.7575 8.28577 30.7799C7.97726 30.9363 7.63127 31.0121 7.28195 30.9984C6.88272 30.9828 6.49748 30.851 6.17598 30.6201C5.8494 30.3913 5.59982 30.0734 5.45875 29.7065C5.31769 29.3397 5.29146 28.9404 5.38339 28.5591L7.35541 20.2769C7.3674 20.226 7.36509 20.1728 7.34871 20.123C7.33234 20.0732 7.30251 20.0286 7.26235 19.9938C7.26234 19.9938 7.26234 19.9938 7.26233 19.9938L0.702021 14.4238C0.397879 14.167 0.178766 13.8283 0.072377 13.4504C0.046477 13.3584 0.0275407 13.265 0.0155481 13.1711C0.00906748 13.1204 0.00461447 13.0695 0.00218586 13.0185C-0.00935229 12.7763 0.0248025 12.5329 0.104307 12.3005C0.224417 11.9292 0.455896 11.6015 0.768969 11.3593C1.08204 11.1171 1.46239 10.9717 1.86109 10.9416L10.5083 10.214C10.5606 10.209 10.6105 10.1903 10.6528 10.1599C10.695 10.1295 10.728 10.0885 10.7483 10.0413L14.1266 2.20505C14.2831 1.84757 14.544 1.54274 14.8771 1.32849C15.2101 1.11423 15.6005 1 15.9997 1C16.3989 1 16.7893 1.11423 17.1224 1.32849C17.4554 1.54274 17.7164 1.84757 17.8729 2.20505L21.2512 10.0413C21.2714 10.0885 21.3044 10.1295 21.3467 10.1599C21.3889 10.1903 21.4388 10.209 21.4911 10.214L30.1384 10.9416C30.5371 10.9717 30.9174 11.1171 31.2305 11.3593ZM15.9993 2.69924C16.0014 2.6992 16.0035 2.69918 16.0055 2.69918C16.0608 2.69918 16.1148 2.71448 16.1614 2.74328C16.2081 2.77209 16.2453 2.81321 16.2688 2.86185L19.6355 10.6981C19.7788 11.0308 20.0128 11.3191 20.3122 11.5319C20.6115 11.7447 20.9648 11.8739 21.3341 11.9056L29.9827 12.6332C30.0399 12.6361 30.0946 12.6566 30.139 12.6917C30.1834 12.7268 30.2153 12.7747 30.23 12.8285C30.2503 12.882 30.2535 12.9402 30.2392 12.9955C30.225 13.0508 30.1938 13.1007 30.15 13.1385L23.5897 18.7085C23.3101 18.9453 23.1023 19.2518 22.9885 19.595C22.8747 19.9382 22.8593 20.3052 22.944 20.6563L24.9102 28.9413C24.9247 28.997 24.9215 29.0556 24.901 29.1095C24.8805 29.1633 24.8436 29.2098 24.7953 29.2428C24.7516 29.2769 24.6978 29.2965 24.6418 29.2988C24.5858 29.3011 24.5306 29.2859 24.4841 29.2556L17.0512 24.8675C16.7343 24.68 16.3706 24.5808 15.9997 24.5808C15.9979 24.5808 15.9961 24.5808 15.9943 24.5808L15.9993 2.69924Z' 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='%23D1C1A8'/%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='M31.8951 12.3005C31.775 11.9292 31.5435 11.6015 31.2305 11.3593C30.9174 11.1171 30.5371 10.9717 30.1384 10.9416L21.4911 10.214C21.4388 10.209 21.3889 10.1903 21.3467 10.1599C21.3044 10.1295 21.2714 10.0885 21.2512 10.0413L17.8729 2.20505C17.7164 1.84757 17.4554 1.54274 17.1224 1.32849C16.7893 1.11423 16.3989 1 15.9997 1C15.6005 1 15.2101 1.11423 14.8771 1.32849C14.544 1.54274 14.2831 1.84757 14.1266 2.20505L10.7483 10.0413C10.728 10.0885 10.695 10.1295 10.6528 10.1599C10.6105 10.1903 10.5606 10.209 10.5083 10.214L1.86109 10.9416C1.46239 10.9717 1.08204 11.1171 0.768969 11.3593C0.455896 11.6015 0.224417 11.9292 0.104307 12.3005C-0.0229003 12.6723 -0.0340121 13.0724 0.072377 13.4504C0.178766 13.8283 0.397879 14.167 0.702021 14.4238L7.26233 19.9938C7.3025 20.0286 7.33234 20.0732 7.34871 20.123C7.36509 20.1728 7.3674 20.226 7.35541 20.2769L5.38339 28.5591C5.29146 28.9404 5.31769 29.3397 5.45875 29.7065C5.59982 30.0734 5.8494 30.3913 6.17598 30.6201C6.49748 30.851 6.88272 30.9828 7.28195 30.9984C7.68117 31.0141 8.07605 30.9129 8.41559 30.7079L15.8485 26.3198C15.8922 26.2935 15.9425 26.2795 15.9939 26.2795C16.0453 26.2795 16.0956 26.2935 16.1393 26.3198L23.5722 30.7079C23.9153 30.9123 24.3129 31.0133 24.7148 30.998C25.1168 30.9827 25.5051 30.8518 25.8307 30.622C26.1563 30.3921 26.4047 30.0735 26.5445 29.7064C26.6842 29.3392 26.7092 28.94 26.6161 28.5591L24.6499 20.2741C24.6379 20.2231 24.6402 20.17 24.6565 20.1201C24.6729 20.0703 24.7028 20.0257 24.7429 19.991L31.3032 14.421C31.6058 14.1638 31.8235 13.8252 31.9288 13.4479C32.0341 13.0706 32.0224 12.6714 31.8951 12.3005ZM30.15 13.1385L23.5897 18.7085C23.3101 18.9453 23.1023 19.2518 22.9885 19.595C22.8747 19.9382 22.8593 20.3052 22.944 20.6563L24.9102 28.9413C24.9247 28.997 24.9215 29.0556 24.901 29.1095C24.8805 29.1633 24.8436 29.2098 24.7953 29.2428C24.7515 29.2769 24.6978 29.2965 24.6418 29.2988C24.5858 29.3011 24.5306 29.2859 24.4841 29.2556L17.0512 24.8675C16.7343 24.68 16.3706 24.5808 15.9997 24.5808C15.6289 24.5808 15.2652 24.68 14.9483 24.8675L7.51538 29.2556C7.46886 29.2859 7.4136 29.3011 7.35763 29.2988C7.30165 29.2965 7.24789 29.2769 7.20416 29.2428C7.15585 29.2098 7.11899 29.1633 7.09847 29.1095C7.07795 29.0556 7.07474 28.997 7.08927 28.9413L9.05548 20.6563C9.14013 20.3052 9.12473 19.9382 9.01094 19.595C8.89716 19.2518 8.6893 18.9453 8.40977 18.7085L1.84946 13.1385C1.80459 13.1014 1.77237 13.0518 1.75704 12.9965C1.74172 12.9411 1.74403 12.8825 1.76365 12.8285C1.77834 12.7747 1.81019 12.7268 1.85461 12.6917C1.89903 12.6566 1.95375 12.6361 2.01088 12.6332L10.6596 11.9056C11.0298 11.8749 11.3844 11.7461 11.6848 11.5333C11.9853 11.3204 12.2201 11.0316 12.364 10.6981L15.7423 2.86185C15.7658 2.81321 15.803 2.77209 15.8496 2.74328C15.8963 2.71448 15.9503 2.69918 16.0055 2.69918C16.0608 2.69918 16.1148 2.71448 16.1614 2.74328C16.208 2.77209 16.2453 2.81321 16.2688 2.86185L19.6355 10.6981C19.7788 11.0308 20.0128 11.3191 20.3122 11.5319C20.6115 11.7447 20.9648 11.8739 21.3341 11.9056L29.9827 12.6332C30.0399 12.6361 30.0946 12.6566 30.139 12.6917C30.1834 12.7268 30.2153 12.7747 30.23 12.8285C30.2503 12.882 30.2535 12.9402 30.2392 12.9955C30.225 13.0508 30.1938 13.1007 30.15 13.1385Z' fill='%23D1C1A8'/%3e%3cpath d='M30.15 13.1385L23.5897 18.7085C23.3101 18.9453 23.1023 19.2518 22.9885 19.595C22.8747 19.9382 22.8593 20.3052 22.944 20.6563L24.9102 28.9413C24.9247 28.997 24.9215 29.0556 24.901 29.1095C24.8805 29.1633 24.8436 29.2098 24.7953 29.2428C24.7515 29.2769 24.6978 29.2965 24.6418 29.2988C24.5858 29.3011 24.5306 29.2859 24.4841 29.2556L17.0512 24.8675C16.7343 24.68 16.3706 24.5808 15.9997 24.5808C15.6289 24.5808 15.2652 24.68 14.9483 24.8675L7.51538 29.2556C7.46886 29.2859 7.4136 29.3011 7.35763 29.2988C7.30165 29.2965 7.24789 29.2769 7.20416 29.2428C7.15585 29.2098 7.11899 29.1633 7.09847 29.1095C7.07795 29.0556 7.07474 28.997 7.08927 28.9413L9.05548 20.6563C9.14013 20.3052 9.12473 19.9382 9.01094 19.595C8.89716 19.2518 8.6893 18.9453 8.40977 18.7085L1.84946 13.1385C1.80459 13.1014 1.77237 13.0518 1.75704 12.9965C1.74172 12.9411 1.74403 12.8825 1.76365 12.8285C1.77834 12.7747 1.81019 12.7268 1.85461 12.6917C1.89903 12.6566 1.95375 12.6361 2.01088 12.6332L10.6596 11.9056C11.0298 11.8749 11.3844 11.7461 11.6848 11.5333C11.9853 11.3204 12.2201 11.0316 12.364 10.6981L15.7423 2.86185C15.7658 2.81321 15.803 2.77209 15.8496 2.74328C15.8963 2.71448 15.9503 2.69918 16.0055 2.69918C16.0608 2.69918 16.1148 2.71448 16.1614 2.74328C16.208 2.77209 16.2453 2.81321 16.2688 2.86185L19.6355 10.6981C19.7788 11.0308 20.0128 11.3191 20.3122 11.5319C20.6115 11.7447 20.9648 11.8739 21.3341 11.9056L29.9827 12.6332C30.0399 12.6361 30.0946 12.6566 30.139 12.6917C30.1834 12.7268 30.2153 12.7747 30.23 12.8285C30.2503 12.882 30.2535 12.9402 30.2392 12.9955C30.225 13.0508 30.1938 13.1007 30.15 13.1385Z' fill='%23D1C1A8'/%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='M15.5 27L15.0982 26.4884C14.8304 26.1163 8 17.7907 8 12.814C8 8.48837 11.3929 5 15.5 5C19.6071 5 23 8.53488 23 12.814C23 17.7907 16.1696 26.1628 15.9018 26.4884L15.5 27Z' fill='%23333333'/%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='M15.5 5C11.3536 5 8 8.443 8 12.7C8 18.475 15.5 27 15.5 27C15.5 27 23 18.475 23 12.7C23 8.443 19.6464 5 15.5 5Z' 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='M15.5 5C11.3536 5 8 8.443 8 12.7C8 18.475 15.5 27 15.5 27C15.5 27 23 18.475 23 12.7C23 8.443 19.6464 5 15.5 5Z' 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='11' fill='%23333333'/%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 d='M16 20.1818C17.0944 20.1804 18.1436 19.7393 18.9175 18.9554C19.6914 18.1715 20.1268 17.1086 20.1282 16V10.1818C20.1282 9.07273 19.6933 8.00907 18.9191 7.22483C18.1449 6.44058 17.0949 6 16 6C14.9051 6 13.8551 6.44058 13.0809 7.22483C12.3067 8.00907 11.8718 9.07273 11.8718 10.1818V16C11.8732 17.1086 12.3086 18.1715 13.0825 18.9554C13.8564 19.7393 14.9056 20.1804 16 20.1818ZM12.9487 10.1818C12.9487 9.36206 13.2702 8.57587 13.8424 7.99622C14.4146 7.41656 15.1907 7.09091 16 7.09091C16.8093 7.09091 17.5854 7.41656 18.1576 7.99622C18.7298 8.57587 19.0513 9.36206 19.0513 10.1818V16C19.0513 16.8198 18.7298 17.6059 18.1576 18.1856C17.5854 18.7653 16.8093 19.0909 16 19.0909C15.1907 19.0909 14.4146 18.7653 13.8424 18.1856C13.2702 17.6059 12.9487 16.8198 12.9487 16V10.1818ZM16.5385 23.0682V25.4545C16.5385 25.5992 16.4817 25.7379 16.3808 25.8402C16.2798 25.9425 16.1428 26 16 26C15.8572 26 15.7202 25.9425 15.6193 25.8402C15.5183 25.7379 15.4615 25.5992 15.4615 25.4545V23.0682C13.7044 22.9289 12.0636 22.1242 10.8661 20.8142C9.66861 19.5043 9.00231 17.7854 9 16C9 15.8553 9.05673 15.7166 9.15771 15.6143C9.25869 15.512 9.39565 15.4545 9.53846 15.4545C9.68127 15.4545 9.81823 15.512 9.91921 15.6143C10.0202 15.7166 10.0769 15.8553 10.0769 16C10.0769 17.5913 10.701 19.1174 11.8118 20.2426C12.9225 21.3679 14.4291 22 16 22C17.5709 22 19.0775 21.3679 20.1882 20.2426C21.299 19.1174 21.9231 17.5913 21.9231 16C21.9231 15.8553 21.9798 15.7166 22.0808 15.6143C22.1818 15.512 22.3187 15.4545 22.4615 15.4545C22.6043 15.4545 22.7413 15.512 22.8423 15.6143C22.9433 15.7166 23 15.8553 23 16C22.9977 17.7854 22.3314 19.5043 21.1339 20.8142C19.9364 22.1242 18.2956 22.9289 16.5385 23.0682Z' fill='%23333333'/%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='M23.8543 23.6364L8.93978 7.63659C8.83739 7.5439 8.70315 7.49194 8.56345 7.49093C8.42376 7.48992 8.28873 7.53993 8.18494 7.63112C8.08115 7.72231 8.01611 7.84808 8.00262 7.98368C7.98912 8.11928 8.02815 8.2549 8.11203 8.36385L11.6952 12.2111V16.0001C11.6953 16.7638 11.9097 17.5128 12.3153 18.166C12.7209 18.8192 13.3022 19.3517 13.996 19.7056C14.6899 20.0595 15.4699 20.2213 16.2514 20.1735C17.0329 20.1258 17.786 19.8702 18.4292 19.4346L19.6904 20.7882C18.7772 21.4607 17.6899 21.8714 16.5505 21.9743C15.4112 22.0772 14.265 21.8682 13.2408 21.3708C12.2165 20.8734 11.3548 20.1073 10.7524 19.1585C10.1501 18.2098 9.83096 17.116 9.83093 16.0001C9.83093 15.8555 9.772 15.7167 9.66711 15.6144C9.56223 15.5121 9.41997 15.4547 9.27163 15.4547C9.1233 15.4547 8.98104 15.5121 8.87615 15.6144C8.77126 15.7167 8.71234 15.8555 8.71234 16.0001C8.71473 17.7855 9.40681 19.5044 10.6507 20.8143C11.8945 22.1242 13.5988 22.929 15.4239 23.0682V25.4546C15.4239 25.5992 15.4828 25.738 15.5877 25.8402C15.6926 25.9425 15.8348 26 15.9832 26C16.1315 26 16.2738 25.9425 16.3786 25.8402C16.4835 25.738 16.5425 25.5992 16.5425 25.4546V23.0682C17.9632 22.963 19.3205 22.4513 20.4445 21.5973L23.0266 24.3637C23.1264 24.4707 23.2658 24.5347 23.4141 24.5415C23.5623 24.5483 23.7073 24.4974 23.817 24.4C23.9268 24.3026 23.9924 24.1667 23.9994 24.0221C24.0064 23.8775 23.9542 23.7362 23.8543 23.6291V23.6364ZM15.9832 19.091C15.1426 19.091 14.3365 18.7653 13.7421 18.1857C13.1477 17.606 12.8138 16.8199 12.8138 16.0001V13.4111L17.6676 18.6183C17.163 18.9275 16.5791 19.0914 15.9832 19.091ZM12.3347 7.98476C12.8249 7.21048 13.5608 6.61328 14.4305 6.28377C15.3003 5.95427 16.2566 5.91045 17.1542 6.15896C18.0518 6.40747 18.8418 6.93476 19.4043 7.6608C19.9668 8.38684 20.2711 9.27202 20.2711 10.182V15.6756C20.2711 15.8202 20.2122 15.959 20.1073 16.0613C20.0024 16.1636 19.8601 16.221 19.7118 16.221C19.5635 16.221 19.4212 16.1636 19.3163 16.0613C19.2114 15.959 19.1525 15.8202 19.1525 15.6756V10.182C19.1528 9.50916 18.9279 8.85459 18.5121 8.3177C18.0962 7.78082 17.5121 7.39093 16.8483 7.20725C16.1846 7.02357 15.4776 7.05614 14.8345 7.29999C14.1915 7.54385 13.6476 7.98568 13.2855 8.55839C13.2481 8.62173 13.1981 8.67709 13.1383 8.72119C13.0785 8.76529 13.0103 8.79723 12.9377 8.81511C12.865 8.83299 12.7894 8.83645 12.7153 8.82528C12.6413 8.81412 12.5703 8.78855 12.5066 8.7501C12.4428 8.71166 12.3877 8.66111 12.3444 8.60147C12.3011 8.54183 12.2705 8.47431 12.2545 8.40292C12.2384 8.33154 12.2373 8.25773 12.2511 8.1859C12.2648 8.11407 12.2933 8.04567 12.3347 7.98476ZM21.7159 18.1819C21.9947 17.4867 22.1369 16.7466 22.1354 16.0001C22.1354 15.8555 22.1943 15.7167 22.2992 15.6144C22.4041 15.5121 22.5464 15.4547 22.6947 15.4547C22.843 15.4547 22.9853 15.5121 23.0902 15.6144C23.1951 15.7167 23.254 15.8555 23.254 16.0001C23.2554 16.8825 23.0872 17.7573 22.7581 18.5792C22.7172 18.6815 22.6456 18.7694 22.5526 18.8313C22.4596 18.8933 22.3496 18.9265 22.237 18.9264C22.1459 18.9265 22.0562 18.9049 21.9756 18.8634C21.895 18.8219 21.8261 18.7619 21.7747 18.6885C21.7233 18.6151 21.6911 18.5306 21.6809 18.4423C21.6707 18.354 21.6827 18.2646 21.7159 18.1819Z' fill='%23333333'/%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.7' 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='%23F5F5F5'/%3e%3cpath d='M18.1846 6.05996C18.0872 6.01153 17.9785 5.99182 17.8707 6.00309C17.7629 6.01435 17.6603 6.05614 17.5747 6.12369L10.7837 11.4903H6.35088C5.9926 11.4903 5.649 11.6349 5.39566 11.8923C5.14232 12.1497 5 12.4988 5 12.8628V19.1372C5 19.5013 5.14232 19.8504 5.39566 20.1078C5.649 20.3652 5.9926 20.5098 6.35088 20.5098H10.7837L17.5747 25.8764C17.6603 25.9439 17.7628 25.9857 17.8706 25.9969C17.9784 26.0082 18.0871 25.9885 18.1844 25.9401C18.2817 25.8917 18.3637 25.8165 18.4211 25.7231C18.4784 25.6296 18.5088 25.5218 18.5088 25.4117V6.58839C18.5088 6.47831 18.4784 6.37043 18.4211 6.27701C18.3638 6.1836 18.2819 6.1084 18.1846 6.05996ZM6.15789 19.1372V12.8628C6.15789 12.8108 6.17823 12.7609 6.21442 12.7242C6.25061 12.6874 6.2997 12.6667 6.35088 12.6667H10.4035V19.3333H6.35088C6.2997 19.3333 6.25061 19.3127 6.21442 19.2759C6.17823 19.2391 6.15789 19.1892 6.15789 19.1372ZM17.3509 24.2087L11.5614 19.6343V12.3658L17.3509 7.79131V24.2087ZM22.2266 13.5373C22.8165 14.2177 23.142 15.0933 23.142 16C23.142 16.9068 22.8165 17.7824 22.2266 18.4627C22.1763 18.5207 22.1152 18.568 22.0469 18.6019C21.9786 18.6359 21.9044 18.6559 21.8285 18.6607C21.7526 18.6655 21.6766 18.6551 21.6046 18.6301C21.5327 18.605 21.4663 18.5658 21.4093 18.5147C21.3523 18.4636 21.3057 18.4016 21.2723 18.3322C21.2389 18.2628 21.2192 18.1874 21.2145 18.1103C21.2097 18.0332 21.22 17.9559 21.2446 17.8828C21.2693 17.8097 21.3079 17.7423 21.3582 17.6843C21.7617 17.2188 21.9843 16.6198 21.9843 15.9995C21.9843 15.3792 21.7617 14.7802 21.3582 14.3148C21.2618 14.197 21.2143 14.0458 21.226 13.8931C21.2376 13.7404 21.3074 13.5984 21.4204 13.4972C21.5335 13.3959 21.681 13.3435 21.8315 13.351C21.9821 13.3585 22.1238 13.4253 22.2266 13.5373ZM27 16C27.0013 17.8812 26.3189 19.6967 25.0837 21.098C25.0336 21.1576 24.9722 21.2064 24.9033 21.2416C24.8344 21.2768 24.7592 21.2976 24.6822 21.3029C24.6052 21.3081 24.528 21.2977 24.455 21.2721C24.3821 21.2466 24.3149 21.2066 24.2574 21.1543C24.1999 21.102 24.1533 21.0386 24.1203 20.9678C24.0872 20.8969 24.0685 20.8201 24.0651 20.7418C24.0617 20.6635 24.0738 20.5852 24.1005 20.5117C24.1273 20.4382 24.1683 20.3709 24.2211 20.3137C25.2654 19.1274 25.8427 17.5916 25.8427 16C25.8427 14.4084 25.2654 12.8727 24.2211 11.6864C24.1683 11.6292 24.1273 11.5618 24.1005 11.4883C24.0738 11.4148 24.0617 11.3366 24.0651 11.2583C24.0685 11.18 24.0872 11.1031 24.1203 11.0323C24.1533 10.9615 24.1999 10.898 24.2574 10.8458C24.3149 10.7935 24.3821 10.7534 24.455 10.7279C24.528 10.7024 24.6052 10.692 24.6822 10.6972C24.7592 10.7024 24.8344 10.7233 24.9033 10.7585C24.9722 10.7936 25.0336 10.8425 25.0837 10.9021C26.3189 12.3034 27.0013 14.1188 27 16Z' fill='%23333333'/%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.7' 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='%23F5F5F5'/%3e%3cpath d='M8.32316 6.98049C8.21717 6.88053 8.0782 6.8245 7.9336 6.82341C7.789 6.82231 7.64923 6.87625 7.54179 6.97459C7.43435 7.07293 7.36703 7.20856 7.35306 7.3548C7.33909 7.50104 7.37949 7.64729 7.46632 7.76479L10.7895 11.4844L10.7818 11.4902H6.35088C5.9926 11.4902 5.649 11.6348 5.39566 11.8922C5.14232 12.1496 5 12.4988 5 12.8628V19.1372C5 19.5012 5.14232 19.8503 5.39566 20.1077C5.649 20.3651 5.9926 20.5098 6.35088 20.5098H10.7837L17.5747 25.8764C17.6603 25.9439 17.7628 25.9857 17.8706 25.9969C17.9784 26.0082 18.0871 25.9885 18.1844 25.9401C18.2817 25.8916 18.3637 25.8165 18.4211 25.723C18.4784 25.6296 18.5088 25.5218 18.5088 25.4117V20.1098L22.9049 25.0195C23.0083 25.135 23.1526 25.2039 23.306 25.2113C23.4595 25.2187 23.6095 25.1638 23.7232 25.0587C23.8368 24.9537 23.9047 24.8071 23.9119 24.6512C23.9192 24.4953 23.8651 24.3428 23.7618 24.2274L8.32316 6.98049ZM6.15789 19.1372V12.8628C6.15789 12.8108 6.17823 12.7609 6.21442 12.7241C6.25061 12.6874 6.2997 12.6667 6.35088 12.6667H10.4035V19.3333H6.35088C6.2997 19.3333 6.25061 19.3126 6.21442 19.2759C6.17823 19.2391 6.15789 19.1892 6.15789 19.1372ZM17.3509 24.2087L11.5614 19.6343V12.3657L11.572 12.3579L17.3509 18.8157V24.2087ZM21.3553 17.6863C21.7588 17.2208 21.9814 16.6218 21.9814 16.0015C21.9814 15.3812 21.7588 14.7822 21.3553 14.3167C21.3025 14.2592 21.2616 14.1915 21.235 14.1176C21.2084 14.0438 21.1966 13.9652 21.2004 13.8867C21.2042 13.8081 21.2234 13.7311 21.257 13.6603C21.2906 13.5894 21.3378 13.5261 21.3959 13.4741C21.454 13.4221 21.5217 13.3825 21.5952 13.3576C21.6686 13.3327 21.7462 13.3229 21.8233 13.329C21.9005 13.3351 21.9757 13.3568 22.0445 13.3929C22.1132 13.429 22.1742 13.4788 22.2237 13.5392C22.8136 14.2196 23.1391 15.0952 23.1391 16.002C23.1391 16.9087 22.8136 17.7843 22.2237 18.4647C22.1221 18.5817 21.9789 18.6529 21.8256 18.6626C21.6724 18.6724 21.5216 18.6199 21.4064 18.5166C21.2912 18.4134 21.2212 18.2679 21.2116 18.1122C21.202 17.9565 21.2537 17.8033 21.3553 17.6863ZM13.6273 9.9883C13.5806 9.92728 13.5463 9.85752 13.5262 9.783C13.5061 9.70849 13.5006 9.63069 13.5101 9.55403C13.5196 9.47737 13.5439 9.40337 13.5815 9.33624C13.6192 9.26912 13.6695 9.21019 13.7296 9.16282L17.5747 6.12363C17.6603 6.05611 17.7628 6.01435 17.8706 6.00309C17.9784 5.99183 18.0871 6.01152 18.1844 6.05994C18.2817 6.10835 18.3637 6.18354 18.4211 6.27695C18.4784 6.37036 18.5088 6.47824 18.5088 6.58833V13.9245C18.5088 14.0805 18.4478 14.2302 18.3392 14.3405C18.2306 14.4508 18.0834 14.5128 17.9298 14.5128C17.7763 14.5128 17.629 14.4508 17.5204 14.3405C17.4119 14.2302 17.3509 14.0805 17.3509 13.9245V7.79126L14.4397 10.0912C14.3186 10.1871 14.1649 10.23 14.0125 10.2107C13.8602 10.1914 13.7216 10.1114 13.6273 9.9883ZM27 16C27.0013 17.8812 26.3189 19.6966 25.0837 21.098C25.0336 21.1576 24.9722 21.2064 24.9033 21.2416C24.8344 21.2768 24.7592 21.2976 24.6822 21.3028C24.6052 21.3081 24.528 21.2976 24.455 21.2721C24.3821 21.2466 24.3149 21.2065 24.2574 21.1543C24.1999 21.102 24.1533 21.0386 24.1203 20.9677C24.0872 20.8969 24.0685 20.8201 24.0651 20.7418C24.0617 20.6634 24.0738 20.5852 24.1005 20.5117C24.1273 20.4382 24.1683 20.3709 24.2211 20.3137C25.2654 19.1274 25.8427 17.5916 25.8427 16C25.8427 14.4084 25.2654 12.8726 24.2211 11.6863C24.1683 11.6291 24.1273 11.5618 24.1005 11.4883C24.0738 11.4148 24.0617 11.3366 24.0651 11.2582C24.0685 11.1799 24.0872 11.1031 24.1203 11.0323C24.1533 10.9614 24.1999 10.898 24.2574 10.8457C24.3149 10.7935 24.3821 10.7534 24.455 10.7279C24.528 10.7024 24.6052 10.6919 24.6822 10.6972C24.7592 10.7024 24.8344 10.7232 24.9033 10.7584C24.9722 10.7936 25.0336 10.8424 25.0837 10.902C26.3189 12.3034 27.0013 14.1188 27 16Z' fill='%23333333'/%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 d='M24.7353 8H8.26471C7.66407 8 7.08803 8.23773 6.66332 8.66089C6.2386 9.08405 6 9.65797 6 10.2564V21.7436C6 22.342 6.2386 22.916 6.66332 23.3391C7.08803 23.7623 7.66407 24 8.26471 24H24.7353C25.3359 24 25.912 23.7623 26.3367 23.3391C26.7614 22.916 27 22.342 27 21.7436V10.2564C27 9.65797 26.7614 9.08405 26.3367 8.66089C25.912 8.23773 25.3359 8 24.7353 8ZM7.23529 12.5128H25.7647V14.5641H20.5343C20.2021 14.5643 19.8801 14.6789 19.623 14.8884C19.3658 15.0979 19.1891 15.3895 19.1229 15.7138C19.0021 16.3189 18.6744 16.8635 18.1958 17.2548C17.7171 17.6462 17.1171 17.8601 16.4979 17.8601C15.8788 17.8601 15.2787 17.6462 14.8001 17.2548C14.3214 16.8635 13.9938 16.3189 13.8729 15.7138C13.8069 15.3902 13.6309 15.0991 13.3745 14.8897C13.1182 14.6802 12.7972 14.5653 12.4657 14.5641H7.23529V12.5128ZM8.26471 9.23077H24.7353C25.0083 9.23077 25.2701 9.33883 25.4632 9.53117C25.6563 9.72352 25.7647 9.98439 25.7647 10.2564V11.2821H7.23529V10.2564C7.23529 9.98439 7.34375 9.72352 7.5368 9.53117C7.72985 9.33883 7.99169 9.23077 8.26471 9.23077ZM24.7353 22.7692H8.26471C7.99169 22.7692 7.72985 22.6612 7.5368 22.4688C7.34375 22.2765 7.23529 22.0156 7.23529 21.7436V15.7949H12.4657C12.5138 15.7939 12.5606 15.8096 12.5982 15.8394C12.6358 15.8692 12.6618 15.9111 12.6716 15.9579C12.8512 16.839 13.3309 17.6311 14.0296 18.2C14.7282 18.769 15.6028 19.0798 16.5051 19.0798C17.4075 19.0798 18.2821 18.769 18.9807 18.2C19.6794 17.6311 20.1591 16.839 20.3387 15.9579C20.3483 15.912 20.3735 15.8707 20.4101 15.841C20.4466 15.8113 20.4923 15.795 20.5394 15.7949H25.7647V21.7436C25.7647 22.0156 25.6563 22.2765 25.4632 22.4688C25.2701 22.6612 25.0083 22.7692 24.7353 22.7692Z' fill='%23333333'/%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 d='M22.734 7H8.26596C7.9302 7 7.6082 7.13547 7.37079 7.37662C7.13338 7.61776 7 7.94482 7 8.28585V13.6836C7 21.7881 13.753 24.4774 15.1066 24.9339C15.3617 25.022 15.6383 25.022 15.8934 24.9339C17.2497 24.4746 24 21.7881 24 13.6836V8.28585C24 7.94482 23.8666 7.61776 23.6292 7.37662C23.3918 7.13547 23.0698 7 22.734 7ZM22.9149 13.6855C22.9149 21.0332 16.7804 23.4754 15.5506 23.8896C15.5181 23.9024 15.4819 23.9024 15.4494 23.8896C14.2196 23.4754 8.08511 21.0332 8.08511 13.6855V8.28585C8.08511 8.23713 8.10416 8.1904 8.13808 8.15596C8.17199 8.12151 8.21799 8.10215 8.26596 8.10215H22.734C22.782 8.10215 22.828 8.12151 22.8619 8.15596C22.8958 8.1904 22.9149 8.23713 22.9149 8.28585V13.6855ZM19.5004 12.3078C19.602 12.4111 19.6591 12.5512 19.6591 12.6972C19.6591 12.8432 19.602 12.9833 19.5004 13.0866L14.4366 18.23C14.3349 18.3332 14.197 18.3912 14.0532 18.3912C13.9094 18.3912 13.7715 18.3332 13.6698 18.23L11.4996 16.0257C11.4037 15.9213 11.3516 15.7831 11.354 15.6403C11.3565 15.4975 11.4135 15.3613 11.5129 15.2604C11.6123 15.1594 11.7464 15.1016 11.8869 15.099C12.0275 15.0965 12.1635 15.1495 12.2664 15.2469L14.0532 17.0581L18.7336 12.305C18.8353 12.2018 18.9732 12.1439 19.117 12.1439C19.2608 12.1439 19.3987 12.2018 19.5004 12.305V12.3078Z' fill='%23333333'/%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 d='M26.9581 13.8311L25.5937 10.4171C25.4932 10.1632 25.3185 9.94541 25.0925 9.79229C24.8665 9.63917 24.5997 9.55778 24.3267 9.55874H20.7627V8.58526C20.7627 8.43004 20.7011 8.28118 20.5914 8.17142C20.4818 8.06166 20.333 8 20.178 8H5.36441C5.00254 8 4.6555 8.14388 4.39963 8.39998C4.14375 8.65608 4 9.00342 4 9.3656V20.2904C4 20.6526 4.14375 21 4.39963 21.2561C4.6555 21.5122 5.00254 21.656 5.36441 21.656H7.17712C7.31133 22.3175 7.6699 22.9123 8.19209 23.3395C8.71427 23.7666 9.36795 24 10.0424 24C10.7168 24 11.3705 23.7666 11.8927 23.3395C12.4148 22.9123 12.7734 22.3175 12.9076 21.656H18.0924C18.2266 22.3175 18.5852 22.9123 19.1073 23.3395C19.6295 23.7666 20.2832 24 20.9576 24C21.632 24 22.2857 23.7666 22.8079 23.3395C23.3301 22.9123 23.6887 22.3175 23.8229 21.656H25.6356C25.9975 21.656 26.3445 21.5122 26.6004 21.2561C26.8562 21 27 20.6526 27 20.2904V14.0477C26.9999 13.9735 26.9856 13.9 26.9581 13.8311ZM20.7627 10.7312H24.3277C24.3667 10.7312 24.4049 10.7429 24.4372 10.7648C24.4695 10.7867 24.4945 10.8178 24.509 10.8541L25.5518 13.4624H20.7627V10.7312ZM5.16949 9.3656C5.16949 9.31386 5.19003 9.26424 5.22658 9.22766C5.26313 9.19107 5.31271 9.17052 5.36441 9.17052H19.5932V15.8034H5.16949V9.3656ZM10.0424 22.8265C9.69542 22.8265 9.35625 22.7236 9.06777 22.5306C8.77929 22.3377 8.55444 22.0635 8.42167 21.7427C8.28889 21.4219 8.25415 21.0688 8.32184 20.7282C8.38953 20.3877 8.55661 20.0748 8.80194 19.8293C9.04727 19.5837 9.35985 19.4165 9.70014 19.3487C10.0404 19.281 10.3931 19.3158 10.7137 19.4486C11.0342 19.5815 11.3082 19.8066 11.501 20.0953C11.6937 20.3841 11.7966 20.7235 11.7966 21.0708C11.7966 21.5364 11.6118 21.983 11.2828 22.3123C10.9538 22.6416 10.5076 22.8265 10.0424 22.8265ZM18.0924 20.4855H12.9076C12.7734 19.824 12.4148 19.2293 11.8927 18.8021C11.3705 18.3749 10.7168 18.1415 10.0424 18.1415C9.36795 18.1415 8.71427 18.3749 8.19209 18.8021C7.6699 19.2293 7.31133 19.824 7.17712 20.4855H5.36441C5.31271 20.4855 5.26313 20.465 5.22658 20.4284C5.19003 20.3918 5.16949 20.3422 5.16949 20.2904V16.974H19.5932V18.4839C19.2112 18.6863 18.8785 18.9706 18.6191 19.3167C18.3596 19.6627 18.1798 20.0618 18.0924 20.4855ZM20.9576 22.8265C20.6107 22.8265 20.2715 22.7236 19.983 22.5306C19.6945 22.3377 19.4697 22.0635 19.3369 21.7427C19.2041 21.4219 19.1694 21.0688 19.2371 20.7282C19.3048 20.3877 19.4719 20.0748 19.7172 19.8293C19.9625 19.5837 20.2751 19.4165 20.6154 19.3487C20.9557 19.281 21.3084 19.3158 21.6289 19.4486C21.9495 19.5815 22.2235 19.8066 22.4162 20.0953C22.609 20.3841 22.7119 20.7235 22.7119 21.0708C22.7119 21.5364 22.527 21.983 22.1981 22.3123C21.8691 22.6416 21.4229 22.8265 20.9576 22.8265ZM25.8305 20.2904C25.8305 20.3422 25.81 20.3918 25.7734 20.4284C25.7369 20.465 25.6873 20.4855 25.6356 20.4855H23.8229C23.6872 19.825 23.3282 19.2314 22.8062 18.805C22.2843 18.3785 21.6314 18.1453 20.9576 18.1445C20.8923 18.1445 20.827 18.1445 20.7627 18.1513V14.6329H25.8305V20.2904Z' fill='%23333333'/%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 d='M22.6977 24.9091H17.6019C18.5082 24.15 19.3572 23.3278 20.1423 22.4491C22.666 19.6127 24 16.6309 24 13.8182C24 11.7447 23.1571 9.75609 21.6569 8.28989C20.1566 6.8237 18.1217 6 16 6C13.8783 6 11.8434 6.8237 10.3431 8.28989C8.84286 9.75609 8 11.7447 8 13.8182C8 16.6282 9.33395 19.6127 11.8577 22.4491C12.6428 23.3278 13.4918 24.15 14.3981 24.9091H9.30233C9.1543 24.9091 9.01233 24.9666 8.90766 25.0689C8.80299 25.1711 8.74419 25.3099 8.74419 25.4545C8.74419 25.5992 8.80299 25.7379 8.90766 25.8402C9.01233 25.9425 9.1543 26 9.30233 26H22.6977C22.8457 26 22.9877 25.9425 23.0923 25.8402C23.197 25.7379 23.2558 25.5992 23.2558 25.4545C23.2558 25.3099 23.197 25.1711 23.0923 25.0689C22.9877 24.9666 22.8457 24.9091 22.6977 24.9091ZM9.11628 13.8182C9.11628 12.034 9.84153 10.3229 11.1325 9.06128C12.4234 7.79967 14.1743 7.09091 16 7.09091C17.8257 7.09091 19.5766 7.79967 20.8675 9.06128C22.1585 10.3229 22.8837 12.034 22.8837 13.8182C22.8837 19.2382 17.3953 23.7209 16 24.7736C14.6047 23.7209 9.11628 19.2382 9.11628 13.8182ZM19.5349 13.8182C19.5349 13.1349 19.3276 12.467 18.9391 11.8989C18.5507 11.3308 17.9987 10.8881 17.3527 10.6266C16.7068 10.3651 15.9961 10.2967 15.3104 10.43C14.6247 10.5633 13.9948 10.8923 13.5005 11.3754C13.0061 11.8586 12.6694 12.4741 12.533 13.1442C12.3966 13.8144 12.4666 14.5089 12.7342 15.1402C13.0017 15.7714 13.4548 16.3109 14.0361 16.6905C14.6174 17.0701 15.3009 17.2727 16 17.2727C16.9375 17.2727 17.8366 16.9088 18.4995 16.2609C19.1625 15.6131 19.5349 14.7344 19.5349 13.8182ZM13.5814 13.8182C13.5814 13.3507 13.7232 12.8937 13.989 12.505C14.2548 12.1163 14.6325 11.8134 15.0744 11.6345C15.5164 11.4556 16.0027 11.4088 16.4718 11.5C16.941 11.5912 17.372 11.8163 17.7102 12.1468C18.0485 12.4774 18.2788 12.8986 18.3721 13.3571C18.4655 13.8156 18.4176 14.2908 18.2345 14.7227C18.0514 15.1546 17.7414 15.5238 17.3437 15.7835C16.946 16.0432 16.4784 16.1818 16 16.1818C15.3585 16.1818 14.7434 15.9328 14.2898 15.4895C13.8362 15.0463 13.5814 14.4451 13.5814 13.8182Z' fill='%23333333'/%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 d='M27 12.5957C27.0001 12.5364 26.9922 12.4774 26.9763 12.4202L25.4298 7.07979C25.3386 6.76966 25.1482 6.49694 24.887 6.30233C24.6257 6.10773 24.3077 6.00167 23.9804 6H8.01961C7.69245 6.0019 7.37468 6.10806 7.11368 6.30265C6.85268 6.49724 6.66242 6.76983 6.57127 7.07979L5.0248 12.4202C5.00856 12.4774 5.00021 12.5364 5 12.5957V14.2979C4.99972 14.9436 5.15623 15.5799 5.45644 16.1537C5.75664 16.7274 6.1918 17.2219 6.72549 17.5957V24.5106C6.72549 24.9056 6.88456 25.2845 7.1677 25.5638C7.45085 25.8431 7.83487 26 8.23529 26H23.7647C24.1651 26 24.5492 25.8431 24.8323 25.5638C25.1154 25.2845 25.2745 24.9056 25.2745 24.5106V17.5957C25.8082 17.2219 26.2434 16.7274 26.5436 16.1537C26.8438 15.5799 27.0003 14.9436 27 14.2979V12.5957ZM7.81578 7.43085C7.8285 7.38698 7.85518 7.3483 7.89188 7.32052C7.92858 7.29275 7.97336 7.27735 8.01961 7.2766H23.9804C24.0272 7.27666 24.0727 7.29175 24.1101 7.31957C24.1474 7.3474 24.1746 7.38646 24.1875 7.43085L25.4956 11.9574H6.5098L7.81578 7.43085ZM13.1961 13.234H18.8039V14.2979C18.8039 15.0315 18.5085 15.735 17.9827 16.2537C17.4568 16.7724 16.7436 17.0638 16 17.0638C15.2564 17.0638 14.5432 16.7724 14.0173 16.2537C13.4915 15.735 13.1961 15.0315 13.1961 14.2979V13.234ZM6.29412 13.234H11.902V14.2979C11.902 15.0315 11.6065 15.735 11.0807 16.2537C10.5549 16.7724 9.84169 17.0638 9.09804 17.0638C8.35439 17.0638 7.6412 16.7724 7.11537 16.2537C6.58953 15.735 6.29412 15.0315 6.29412 14.2979V13.234ZM23.9804 24.5106C23.9804 24.5671 23.9577 24.6212 23.9172 24.6611C23.8768 24.701 23.8219 24.7234 23.7647 24.7234H8.23529C8.17809 24.7234 8.12323 24.701 8.08278 24.6611C8.04233 24.6212 8.01961 24.5671 8.01961 24.5106V18.1979C8.86233 18.4241 9.75627 18.3787 10.5711 18.0685C11.3858 17.7583 12.0789 17.1994 12.549 16.4734C12.9188 17.0456 13.4289 17.5166 14.0321 17.843C14.6352 18.1693 15.3121 18.3403 16 18.3403C16.6879 18.3403 17.3647 18.1693 17.9679 17.843C18.5711 17.5166 19.0812 17.0456 19.451 16.4734C19.9211 17.1994 20.6142 17.7583 21.4289 18.0685C22.2437 18.3787 23.1377 18.4241 23.9804 18.1979V24.5106ZM22.902 17.0638C22.1583 17.0638 21.4451 16.7724 20.9193 16.2537C20.3934 15.735 20.098 15.0315 20.098 14.2979V13.234H25.7059V14.2979C25.7059 15.0315 25.4105 15.735 24.8846 16.2537C24.3588 16.7724 23.6456 17.0638 22.902 17.0638Z' fill='%23333333'/%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 d='M25 17.5883C24.9984 19.0231 24.4215 20.3986 23.3959 21.4132C22.3702 22.4277 20.9797 22.9984 19.5293 23H11.7644C11.624 23 11.4893 22.9448 11.39 22.8466C11.2907 22.7484 11.2349 22.6152 11.2349 22.4763C11.2349 22.3374 11.2907 22.2042 11.39 22.106C11.4893 22.0078 11.624 21.9526 11.7644 21.9526H19.5293C20.6994 21.9526 21.8216 21.4928 22.6489 20.6743C23.4763 19.8559 23.9411 18.7458 23.9411 17.5883C23.9411 16.4308 23.4763 15.3208 22.6489 14.5023C21.8216 13.6839 20.6994 13.2241 19.5293 13.2241H8.80752L12.1385 16.5199C12.1905 16.5679 12.2322 16.6257 12.2612 16.6899C12.2901 16.7542 12.3057 16.8235 12.3069 16.8939C12.3082 16.9642 12.2951 17.034 12.2685 17.0992C12.2418 17.1644 12.2022 17.2237 12.1519 17.2734C12.1017 17.3231 12.0418 17.3624 11.9758 17.3887C11.9099 17.415 11.8393 17.428 11.7682 17.4267C11.6971 17.4255 11.627 17.4101 11.5621 17.3815C11.4972 17.3528 11.4387 17.3116 11.3902 17.2601L7.15483 13.0704C7.05569 12.9722 7 12.8391 7 12.7003C7 12.5616 7.05569 12.4284 7.15483 12.3303L11.3902 8.14056C11.4906 8.04805 11.6233 7.99769 11.7605 8.00008C11.8977 8.00248 12.0285 8.05744 12.1255 8.15339C12.2225 8.24934 12.2781 8.3788 12.2805 8.51447C12.2829 8.65015 12.232 8.78146 12.1385 8.88074L8.80752 12.1766H19.5293C20.9797 12.1782 22.3702 12.7489 23.3959 13.7635C24.4215 14.778 24.9984 16.1535 25 17.5883Z' fill='%23333333'/%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 d='M21.9574 9.40426H6.6383C6.46901 9.40426 6.30666 9.4715 6.18695 9.59121C6.06725 9.71091 6 9.87327 6 10.0426V25.3617C6 25.531 6.06725 25.6933 6.18695 25.813C6.30666 25.9328 6.46901 26 6.6383 26H21.9574C22.1267 26 22.2891 25.9328 22.4088 25.813C22.5285 25.6933 22.5957 25.531 22.5957 25.3617V10.0426C22.5957 9.87327 22.5285 9.71091 22.4088 9.59121C22.2891 9.4715 22.1267 9.40426 21.9574 9.40426ZM21.3191 24.7234H7.2766V10.6809H21.3191V24.7234ZM26 6.6383V21.9574C26 22.1267 25.9328 22.2891 25.813 22.4088C25.6933 22.5285 25.531 22.5957 25.3617 22.5957C25.1924 22.5957 25.0301 22.5285 24.9104 22.4088C24.7907 22.2891 24.7234 22.1267 24.7234 21.9574V7.2766H10.0426C9.87327 7.2766 9.71091 7.20935 9.59121 7.08964C9.4715 6.96994 9.40426 6.80759 9.40426 6.6383C9.40426 6.46901 9.4715 6.30666 9.59121 6.18695C9.71091 6.06725 9.87327 6 10.0426 6H25.3617C25.531 6 25.6933 6.06725 25.813 6.18695C25.9328 6.30666 26 6.46901 26 6.6383Z' fill='%23333333'/%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='%23D1C1A8'/%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 d='M25.5588 11.7152H21.3115C21.5294 11.5796 21.736 11.4267 21.9291 11.2581C22.2204 11.0009 22.455 10.6869 22.6183 10.3358C22.7816 9.98469 22.8701 9.60397 22.8782 9.21742C22.8909 8.79219 22.8158 8.36889 22.6576 7.97343C22.4994 7.57798 22.2614 7.2187 21.9582 6.9176C21.655 6.61651 21.293 6.37993 20.8943 6.22237C20.4957 6.06481 20.0687 5.98959 19.6397 6.0013C19.2497 6.0094 18.8656 6.09712 18.5114 6.25898C18.1571 6.42085 17.8404 6.65338 17.5809 6.94205C17.104 7.49982 16.7374 8.14156 16.5 8.83377C16.2631 8.14208 15.8972 7.5007 15.4212 6.94307C15.1615 6.65397 14.8445 6.4211 14.4899 6.25905C14.1353 6.09699 13.7507 6.00925 13.3603 6.0013C12.931 5.98903 12.5037 6.06381 12.1046 6.22105C11.7056 6.37829 11.3431 6.61469 11.0395 6.91573C10.7358 7.21678 10.4975 7.57613 10.339 7.97174C10.1804 8.36736 10.1051 8.7909 10.1176 9.2164C10.1258 9.60294 10.2143 9.98367 10.3776 10.3348C10.5409 10.6859 10.7755 10.9999 11.0668 11.2571C11.2597 11.4259 11.4663 11.5788 11.6844 11.7142H7.44118C7.25183 11.7142 7.06434 11.7512 6.88942 11.823C6.71451 11.8949 6.55559 12.0002 6.42175 12.1329C6.28791 12.2657 6.18177 12.4233 6.10941 12.5967C6.03704 12.7702 5.99987 12.956 6 13.1437V16.4088C6 16.7876 6.15184 17.151 6.42211 17.4189C6.69238 17.6868 7.05895 17.8373 7.44118 17.8373H7.64706V24.5715C7.64706 24.9504 7.7989 25.3137 8.06917 25.5816C8.33944 25.8495 8.70601 26 9.08824 26H23.9118C24.294 26 24.6606 25.8495 24.9308 25.5816C25.2011 25.3137 25.3529 24.9504 25.3529 24.5715V17.8373H25.5588C25.941 17.8373 26.3076 17.6868 26.5779 17.4189C26.8482 17.151 27 16.7876 27 16.4088V13.1437C27 12.7648 26.8482 12.4015 26.5779 12.1336C26.3076 11.8657 25.941 11.7152 25.5588 11.7152ZM17.2999 10.5928C17.5315 9.35618 17.9474 8.37359 18.5032 7.75119C18.652 7.58846 18.8329 7.45783 19.0348 7.36743C19.2367 7.27702 19.4552 7.22878 19.6768 7.22571H19.7334C19.9895 7.22574 20.243 7.27669 20.4789 7.37556C20.7147 7.47442 20.9282 7.61918 21.1067 7.80128C21.2851 7.98337 21.4249 8.19909 21.5177 8.43568C21.6105 8.67227 21.6545 8.9249 21.6471 9.17864C21.6436 9.39844 21.5944 9.61516 21.5027 9.81529C21.4109 10.0154 21.2786 10.1947 21.1138 10.3418C20.0103 11.3071 18.1388 11.5958 17.1526 11.6795C17.1784 11.3846 17.2206 11.0091 17.2999 10.5928ZM11.914 7.7818C12.2733 7.42695 12.7594 7.2271 13.2666 7.22571H13.3232C13.545 7.22917 13.7636 7.27789 13.9655 7.36883C14.1674 7.45976 14.3483 7.59096 14.4968 7.75425C15.4706 8.84805 15.7619 10.703 15.8463 11.6805C15.5488 11.655 15.17 11.6111 14.7541 11.5346C13.5065 11.3071 12.5151 10.8928 11.8872 10.3408C11.7222 10.194 11.5896 10.015 11.4977 9.81501C11.4057 9.61503 11.3565 9.39838 11.3529 9.17864C11.3458 8.92025 11.3919 8.66313 11.4884 8.42297C11.5848 8.18281 11.7296 7.96465 11.914 7.7818ZM7.23529 16.4088V13.1437C7.23529 13.0896 7.25699 13.0377 7.2956 12.9994C7.33421 12.9611 7.38657 12.9396 7.44118 12.9396H15.8824V16.6129H7.44118C7.38657 16.6129 7.33421 16.5914 7.2956 16.5531C7.25699 16.5148 7.23529 16.4629 7.23529 16.4088ZM8.88235 24.5715V17.8373H15.8824V24.7756H9.08824C9.03363 24.7756 8.98127 24.7541 8.94265 24.7158C8.90404 24.6775 8.88235 24.6256 8.88235 24.5715ZM24.1176 24.5715C24.1176 24.6256 24.096 24.6775 24.0573 24.7158C24.0187 24.7541 23.9664 24.7756 23.9118 24.7756H17.1176V17.8373H24.1176V24.5715ZM25.7647 16.4088C25.7647 16.4629 25.743 16.5148 25.7044 16.5531C25.6658 16.5914 25.6134 16.6129 25.5588 16.6129H17.1176V12.9396H25.5588C25.6134 12.9396 25.6658 12.9611 25.7044 12.9994C25.743 13.0377 25.7647 13.0896 25.7647 13.1437V16.4088Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-home{background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M22.4407 19.898H20.7627V11.224C20.7625 11.0458 20.7249 10.8697 20.6522 10.7066C20.5795 10.5435 20.4734 10.397 20.3404 10.2762L12.8828 3.34346L12.8744 3.33611C12.6348 3.11992 12.3217 3 11.9967 3C11.6718 3 11.3587 3.11992 11.1191 3.33611L11.1107 3.34346L3.65305 10.2771C3.52114 10.3981 3.4161 10.5447 3.34455 10.7077C3.27299 10.8706 3.23647 11.0464 3.23729 11.224V19.898H1.55932C1.41098 19.898 1.26871 19.956 1.16382 20.0593C1.05893 20.1627 1 20.3028 1 20.449C1 20.5951 1.05893 20.7353 1.16382 20.8386C1.26871 20.9419 1.41098 21 1.55932 21H22.4407C22.589 21 22.7313 20.9419 22.8362 20.8386C22.9411 20.7353 23 20.5951 23 20.449C23 20.3028 22.9411 20.1627 22.8362 20.0593C22.7313 19.956 22.589 19.898 22.4407 19.898ZM4.35593 11.224C4.35588 11.1984 4.36124 11.1731 4.37167 11.1497C4.3821 11.1263 4.39738 11.1053 4.41653 11.0881L4.42492 11.0807L11.8769 4.14886C11.9109 4.11967 11.9545 4.10358 11.9995 4.10358C12.0446 4.10358 12.0882 4.11967 12.1221 4.14886L19.5751 11.0816L19.5825 11.089C19.6019 11.1061 19.6173 11.1271 19.6279 11.1505C19.6385 11.1739 19.644 11.1993 19.6441 11.2249V19.898H14.7966V15.3061C14.7966 14.9651 14.6591 14.6381 14.4144 14.397C14.1696 14.1559 13.8377 14.0204 13.4915 14.0204H10.5085C10.1623 14.0204 9.83039 14.1559 9.58564 14.397C9.34089 14.6381 9.20339 14.9651 9.20339 15.3061V19.898H4.35593V11.224ZM13.678 19.898H10.322V15.3061C10.322 15.2574 10.3417 15.2107 10.3766 15.1762C10.4116 15.1418 10.459 15.1224 10.5085 15.1224H13.4915C13.541 15.1224 13.5884 15.1418 13.6234 15.1762C13.6583 15.2107 13.678 15.2574 13.678 15.3061V19.898Z' fill='%23333333'/%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 d='M23.6596 7H8.34043C7.98492 7 7.64398 7.14122 7.3926 7.3926C7.14122 7.64398 7 7.98492 7 8.34043V23.6596C7 24.0151 7.14122 24.356 7.3926 24.6074C7.64398 24.8588 7.98492 25 8.34043 25H23.6596C24.0151 25 24.356 24.8588 24.6074 24.6074C24.8588 24.356 25 24.0151 25 23.6596V8.34043C25 7.98492 24.8588 7.64398 24.6074 7.3926C24.356 7.14122 24.0151 7 23.6596 7ZM23.8511 23.6596C23.8511 23.7104 23.8309 23.7591 23.795 23.795C23.7591 23.8309 23.7104 23.8511 23.6596 23.8511H8.34043C8.28964 23.8511 8.24093 23.8309 8.20502 23.795C8.16911 23.7591 8.14894 23.7104 8.14894 23.6596V8.34043C8.14894 8.28964 8.16911 8.24093 8.20502 8.20502C8.24093 8.16911 8.28964 8.14894 8.34043 8.14894H23.6596C23.7104 8.14894 23.7591 8.16911 23.795 8.20502C23.8309 8.24093 23.8511 8.28964 23.8511 8.34043V23.6596Z' 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%3cpath d='M23.6596 7H8.34043C7.98492 7 7.64398 7.14122 7.3926 7.3926C7.14122 7.64398 7 7.98492 7 8.34043V23.6596C7 24.0151 7.14122 24.356 7.3926 24.6074C7.64398 24.8588 7.98492 25 8.34043 25H23.6596C24.0151 25 24.356 24.8588 24.6074 24.6074C24.8588 24.356 25 24.0151 25 23.6596V8.34043C25 7.98492 24.8588 7.64398 24.6074 7.3926C24.356 7.14122 24.0151 7 23.6596 7ZM23.8511 23.6596C23.8511 23.7104 23.8309 23.7591 23.795 23.795C23.7591 23.8309 23.7104 23.8511 23.6596 23.8511H8.34043C8.28964 23.8511 8.24093 23.8309 8.20502 23.795C8.16911 23.7591 8.14894 23.7104 8.14894 23.6596V8.34043C8.14894 8.28964 8.16911 8.24093 8.20502 8.20502C8.24093 8.16911 8.28964 8.14894 8.34043 8.14894H23.6596C23.7104 8.14894 23.7591 8.16911 23.795 8.20502C23.8309 8.24093 23.8511 8.28964 23.8511 8.34043V23.6596Z' fill='%23333333'/%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 d='M23.5349 7H8.46512C8.07654 7 7.70389 7.15436 7.42912 7.42912C7.15436 7.70389 7 8.07654 7 8.46512V23.5349C7 23.9235 7.15436 24.2961 7.42912 24.5709C7.70389 24.8456 8.07654 25 8.46512 25H23.5349C23.9235 25 24.2961 24.8456 24.5709 24.5709C24.8456 24.2961 25 23.9235 25 23.5349V8.46512C25 8.07654 24.8456 7.70389 24.5709 7.42912C24.2961 7.15436 23.9235 7 23.5349 7ZM23.7442 8.46512V15.3721H16.6279V8.25581H23.5349C23.5904 8.25581 23.6436 8.27787 23.6829 8.31712C23.7221 8.35637 23.7442 8.40961 23.7442 8.46512ZM8.46512 8.25581H15.3721V15.3721H8.25581V8.46512C8.25581 8.40961 8.27787 8.35637 8.31712 8.31712C8.35637 8.27787 8.40961 8.25581 8.46512 8.25581ZM8.25581 23.5349V16.6279H15.3721V23.7442H8.46512C8.40961 23.7442 8.35637 23.7221 8.31712 23.6829C8.27787 23.6436 8.25581 23.5904 8.25581 23.5349ZM23.5349 23.7442H16.6279V16.6279H23.7442V23.5349C23.7442 23.5904 23.7221 23.6436 23.6829 23.6829C23.6436 23.7221 23.5904 23.7442 23.5349 23.7442Z' 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='M23.5349 7H8.46512C8.07654 7 7.70389 7.15436 7.42912 7.42912C7.15436 7.70389 7 8.07654 7 8.46512V23.5349C7 23.9235 7.15436 24.2961 7.42912 24.5709C7.70389 24.8456 8.07654 25 8.46512 25H23.5349C23.9235 25 24.2961 24.8456 24.5709 24.5709C24.8456 24.2961 25 23.9235 25 23.5349V8.46512C25 8.07654 24.8456 7.70389 24.5709 7.42912C24.2961 7.15436 23.9235 7 23.5349 7ZM23.7442 8.46512V15.3721H16.6279V8.25581H23.5349C23.5904 8.25581 23.6436 8.27787 23.6829 8.31712C23.7221 8.35637 23.7442 8.40961 23.7442 8.46512ZM8.46512 8.25581H15.3721V15.3721H8.25581V8.46512C8.25581 8.40961 8.27787 8.35637 8.31712 8.31712C8.35637 8.27787 8.40961 8.25581 8.46512 8.25581ZM8.25581 23.5349V16.6279H15.3721V23.7442H8.46512C8.40961 23.7442 8.35637 23.7221 8.31712 23.6829C8.27787 23.6436 8.25581 23.5904 8.25581 23.5349ZM23.5349 23.7442H16.6279V16.6279H23.7442V23.5349C23.7442 23.5904 23.7221 23.6436 23.6829 23.6829C23.6436 23.7221 23.5904 23.7442 23.5349 23.7442Z' fill='%23333333'/%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 d='M25.6272 11.1628L20.8377 6.37282C20.7195 6.25462 20.5792 6.16086 20.4248 6.09689C20.2704 6.03292 20.1049 6 19.9378 6C19.7707 6 19.6052 6.03292 19.4508 6.09689C19.2963 6.16086 19.156 6.25462 19.0379 6.37282L6.37278 19.0372C6.2546 19.1554 6.16085 19.2957 6.09688 19.4502C6.03292 19.6046 6 19.7701 6 19.9372C6 20.1044 6.03292 20.2699 6.09688 20.4243C6.16085 20.5787 6.2546 20.719 6.37278 20.8372L11.1623 25.6272C11.2805 25.7454 11.4208 25.8391 11.5752 25.9031C11.7296 25.9671 11.8951 26 12.0622 26C12.2293 26 12.3948 25.9671 12.5492 25.9031C12.7037 25.8391 12.8439 25.7454 12.9621 25.6272L25.6272 12.9628C25.7454 12.8446 25.8392 12.7043 25.9031 12.5498C25.9671 12.3954 26 12.2299 26 12.0628C26 11.8956 25.9671 11.7301 25.9031 11.5757C25.8392 11.4213 25.7454 11.281 25.6272 11.1628ZM24.8555 12.1909L12.1913 24.8554C12.1744 24.8723 12.1544 24.8857 12.1323 24.8948C12.1102 24.904 12.0866 24.9087 12.0627 24.9087C12.0388 24.9087 12.0151 24.904 11.993 24.8948C11.971 24.8857 11.9509 24.8723 11.934 24.8554L7.14452 20.0663C7.12762 20.0494 7.11421 20.0294 7.10506 20.0073C7.09591 19.9852 7.0912 19.9616 7.0912 19.9377C7.0912 19.9138 7.09591 19.8901 7.10506 19.8681C7.11421 19.846 7.12762 19.8259 7.14452 19.8091L10.1824 16.7709L12.7058 19.2945C12.7557 19.3481 12.8159 19.3911 12.8828 19.4209C12.9497 19.4507 13.022 19.4667 13.0952 19.468C13.1684 19.4693 13.2412 19.4559 13.3091 19.4284C13.377 19.401 13.4387 19.3602 13.4905 19.3084C13.5423 19.2566 13.5831 19.1949 13.6105 19.127C13.6379 19.059 13.6514 18.9863 13.6501 18.913C13.6488 18.8398 13.6328 18.7676 13.603 18.7007C13.5732 18.6338 13.5302 18.5735 13.4766 18.5236L10.9532 16L13.0912 13.8618L15.6146 16.3855C15.718 16.4818 15.8547 16.5343 15.996 16.5318C16.1373 16.5293 16.2721 16.472 16.3721 16.3721C16.472 16.2721 16.5292 16.1373 16.5317 15.996C16.5342 15.8547 16.4818 15.7179 16.3854 15.6145L13.862 13.0909L16 10.9537L18.5234 13.4764C18.6268 13.5727 18.7635 13.6252 18.9048 13.6227C19.0461 13.6202 19.1809 13.563 19.2808 13.463C19.3808 13.3631 19.438 13.2283 19.4405 13.087C19.443 12.9456 19.3906 12.8089 19.2942 12.7055L16.7717 10.1819L19.8087 7.14463C19.8256 7.12772 19.8456 7.11431 19.8677 7.10516C19.8898 7.09601 19.9134 7.0913 19.9373 7.0913C19.9612 7.0913 19.9849 7.09601 20.007 7.10516C20.029 7.11431 20.0491 7.12772 20.066 7.14463L24.8555 11.9337C24.8724 11.9506 24.8858 11.9706 24.8949 11.9927C24.9041 12.0148 24.9088 12.0384 24.9088 12.0623C24.9088 12.0862 24.9041 12.1099 24.8949 12.1319C24.8858 12.154 24.8724 12.1741 24.8555 12.1909Z' fill='%23333333'/%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='M16 6C14.0222 6 12.0888 6.58649 10.4443 7.6853C8.79981 8.78412 7.51809 10.3459 6.76121 12.1732C6.00433 14.0004 5.8063 16.0111 6.19215 17.9509C6.578 19.8907 7.53041 21.6725 8.92894 23.0711C10.3275 24.4696 12.1093 25.422 14.0491 25.8078C15.9889 26.1937 17.9996 25.9957 19.8268 25.2388C21.6541 24.4819 23.2159 23.2002 24.3147 21.5557C25.4135 19.9112 26 17.9778 26 16C25.9969 13.3488 24.9423 10.8071 23.0676 8.93237C21.1929 7.05768 18.6512 6.00311 16 6ZM16 24.8235C14.2549 24.8235 12.5489 24.306 11.0979 23.3365C9.64689 22.367 8.51596 20.9889 7.84813 19.3766C7.18029 17.7643 7.00556 15.9902 7.34602 14.2786C7.68647 12.567 8.52683 10.9948 9.76083 9.76082C10.9948 8.52683 12.567 7.68647 14.2786 7.34601C15.9902 7.00555 17.7643 7.18029 19.3766 7.84812C20.9889 8.51595 22.367 9.64689 23.3365 11.0979C24.306 12.5489 24.8235 14.2549 24.8235 16C24.8209 18.3393 23.8905 20.5821 22.2363 22.2363C20.5821 23.8905 18.3394 24.8209 16 24.8235ZM22.0784 16C22.0784 16.156 22.0165 16.3056 21.9061 16.4159C21.7958 16.5263 21.6462 16.5882 21.4902 16.5882H16C15.844 16.5882 15.6944 16.5263 15.5841 16.4159C15.4737 16.3056 15.4118 16.156 15.4118 16V10.5098C15.4118 10.3538 15.4737 10.2042 15.5841 10.0939C15.6944 9.98354 15.844 9.92157 16 9.92157C16.156 9.92157 16.3056 9.98354 16.4159 10.0939C16.5263 10.2042 16.5882 10.3538 16.5882 10.5098V15.4118H21.4902C21.6462 15.4118 21.7958 15.4737 21.9061 15.5841C22.0165 15.6944 22.0784 15.844 22.0784 16Z' fill='%23333333'/%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='M26.7509 7.83644C26.6733 7.77673 26.583 7.73525 26.4868 7.71516C26.3905 7.69506 26.2909 7.69688 26.1955 7.72047L19.5265 9.36531L12.8402 6.06712C12.7019 5.99908 12.5436 5.9821 12.3937 6.01924L5.49176 7.72153C5.35166 7.75571 5.22716 7.83511 5.13805 7.94711C5.04894 8.05912 5.00035 8.1973 5 8.33968V23.6603C4.99999 23.7574 5.02242 23.8532 5.06558 23.9404C5.10873 24.0276 5.17148 24.104 5.24905 24.1637C5.32661 24.2234 5.41696 24.2648 5.51321 24.2849C5.60946 24.305 5.70909 24.3032 5.80451 24.2795L12.4735 22.6347L19.1598 25.9329C19.2981 26.0009 19.4564 26.0179 19.6063 25.9808L26.5082 24.2785C26.6483 24.2443 26.7728 24.1649 26.8619 24.0529C26.9511 23.9409 26.9996 23.8027 27 23.6603V8.33968C27 8.24263 26.9775 8.14687 26.9344 8.05967C26.8912 7.97247 26.8284 7.89612 26.7509 7.83644ZM13.1961 7.67046L18.8039 10.4367V24.3295L13.1961 21.5633V7.67046ZM6.29412 8.84079L11.902 7.45768V21.4601L6.29412 22.8432V8.84079ZM25.7059 23.1624L20.098 24.5455V10.5399L25.7059 9.15678V23.1624Z' fill='%23333333'/%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='M6.6383 11.694H10.3191C10.4656 12.3893 10.8571 13.0144 11.4271 13.4634C11.9971 13.9124 12.7106 14.1576 13.4468 14.1576C14.183 14.1576 14.8965 13.9124 15.4665 13.4634C16.0366 13.0144 16.428 12.3893 16.5745 11.694H25.3617C25.531 11.694 25.6933 11.6292 25.813 11.5138C25.9328 11.3984 26 11.242 26 11.0788C26 10.9157 25.9328 10.7592 25.813 10.6438C25.6933 10.5285 25.531 10.4637 25.3617 10.4637H16.5745C16.428 9.76838 16.0366 9.14327 15.4665 8.69428C14.8965 8.24528 14.183 8 13.4468 8C12.7106 8 11.9971 8.24528 11.4271 8.69428C10.8571 9.14327 10.4656 9.76838 10.3191 10.4637H6.6383C6.46901 10.4637 6.30666 10.5285 6.18695 10.6438C6.06725 10.7592 6 10.9157 6 11.0788C6 11.242 6.06725 11.3984 6.18695 11.5138C6.30666 11.6292 6.46901 11.694 6.6383 11.694ZM13.4468 9.23338C13.8255 9.23338 14.1958 9.34161 14.5107 9.54439C14.8256 9.74717 15.071 10.0354 15.2159 10.3726C15.3609 10.7098 15.3988 11.0809 15.3249 11.4388C15.251 11.7968 15.0686 12.1257 14.8008 12.3837C14.533 12.6418 14.1918 12.8176 13.8204 12.8888C13.4489 12.96 13.0639 12.9235 12.714 12.7838C12.3641 12.6441 12.065 12.4076 11.8546 12.1041C11.6442 11.8006 11.5319 11.4438 11.5319 11.0788C11.5319 10.5894 11.7337 10.12 12.0928 9.7739C12.4519 9.42781 12.9389 9.23338 13.4468 9.23338ZM25.3617 20.306H23.383C23.2365 19.6107 22.8451 18.9856 22.2751 18.5366C21.7051 18.0876 20.9915 17.8424 20.2553 17.8424C19.5191 17.8424 18.8056 18.0876 18.2356 18.5366C17.6656 18.9856 17.2742 19.6107 17.1277 20.306H6.6383C6.46901 20.306 6.30666 20.3708 6.18695 20.4862C6.06725 20.6016 6 20.758 6 20.9212C6 21.0843 6.06725 21.2408 6.18695 21.3562C6.30666 21.4715 6.46901 21.5363 6.6383 21.5363H17.1277C17.2742 22.2316 17.6656 22.8567 18.2356 23.3057C18.8056 23.7547 19.5191 24 20.2553 24C20.9915 24 21.7051 23.7547 22.2751 23.3057C22.8451 22.8567 23.2365 22.2316 23.383 21.5363H25.3617C25.531 21.5363 25.6933 21.4715 25.813 21.3562C25.9328 21.2408 26 21.0843 26 20.9212C26 20.758 25.9328 20.6016 25.813 20.4862C25.6933 20.3708 25.531 20.306 25.3617 20.306ZM20.2553 22.7666C19.8766 22.7666 19.5064 22.6584 19.1915 22.4556C18.8766 22.2528 18.6311 21.9646 18.4862 21.6274C18.3413 21.2902 18.3033 20.9191 18.3772 20.5612C18.4511 20.2032 18.6335 19.8743 18.9013 19.6163C19.1691 19.3582 19.5103 19.1824 19.8817 19.1112C20.2532 19.04 20.6382 19.0765 20.9881 19.2162C21.338 19.3559 21.6371 19.5924 21.8475 19.8959C22.0579 20.1994 22.1702 20.5562 22.1702 20.9212C22.1702 21.4106 21.9685 21.88 21.6094 22.2261C21.2502 22.5722 20.7632 22.7666 20.2553 22.7666Z' fill='%23333333'/%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='M17.3726 20.7059C17.3726 20.8619 17.3106 21.0115 17.2003 21.1218C17.0899 21.2321 16.9403 21.2941 16.7843 21.2941C16.4203 21.2941 16.0712 21.1495 15.8138 20.8921C15.5564 20.6347 15.4118 20.2856 15.4118 19.9216V16C15.4118 15.948 15.3911 15.8981 15.3543 15.8613C15.3176 15.8246 15.2677 15.8039 15.2157 15.8039C15.0597 15.8039 14.9101 15.7419 14.7997 15.6316C14.6894 15.5213 14.6275 15.3717 14.6275 15.2157C14.6275 15.0597 14.6894 14.9101 14.7997 14.7997C14.9101 14.6894 15.0597 14.6274 15.2157 14.6274C15.5797 14.6274 15.9288 14.7721 16.1862 15.0295C16.4436 15.2869 16.5882 15.636 16.5882 16V19.9216C16.5882 19.9736 16.6089 20.0234 16.6457 20.0602C16.6824 20.097 16.7323 20.1176 16.7843 20.1176C16.9403 20.1176 17.0899 20.1796 17.2003 20.2899C17.3106 20.4002 17.3726 20.5499 17.3726 20.7059ZM15.6078 12.6667C15.8017 12.6667 15.9913 12.6092 16.1525 12.5014C16.3137 12.3937 16.4394 12.2406 16.5136 12.0615C16.5878 11.8823 16.6072 11.6852 16.5694 11.495C16.5316 11.3048 16.4382 11.1301 16.3011 10.993C16.164 10.8559 15.9893 10.7625 15.7991 10.7247C15.6089 10.6869 15.4118 10.7063 15.2327 10.7805C15.0535 10.8547 14.9004 10.9804 14.7927 11.1416C14.685 11.3028 14.6275 11.4924 14.6275 11.6863C14.6275 11.9463 14.7307 12.1957 14.9146 12.3795C15.0985 12.5634 15.3478 12.6667 15.6078 12.6667ZM26 16C26 17.9778 25.4135 19.9112 24.3147 21.5557C23.2159 23.2002 21.6541 24.4819 19.8268 25.2388C17.9996 25.9957 15.9889 26.1937 14.0491 25.8078C12.1093 25.422 10.3275 24.4696 8.92894 23.0711C7.53041 21.6725 6.578 19.8907 6.19215 17.9509C5.8063 16.0111 6.00433 14.0004 6.76121 12.1732C7.51809 10.3459 8.79981 8.78412 10.4443 7.6853C12.0888 6.58649 14.0222 6 16 6C18.6512 6.00311 21.1929 7.05768 23.0676 8.93237C24.9423 10.8071 25.9969 13.3488 26 16ZM24.8235 16C24.8235 14.2549 24.306 12.5489 23.3365 11.0979C22.367 9.64689 20.9889 8.51595 19.3766 7.84812C17.7643 7.18029 15.9902 7.00555 14.2786 7.34601C12.567 7.68647 10.9948 8.52683 9.76083 9.76082C8.52683 10.9948 7.68647 12.567 7.34602 14.2786C7.00556 15.9902 7.18029 17.7643 7.84813 19.3766C8.51596 20.9889 9.64689 22.367 11.0979 23.3365C12.5489 24.306 14.2549 24.8235 16 24.8235C18.3394 24.8209 20.5821 23.8905 22.2363 22.2363C23.8905 20.5821 24.8209 18.3393 24.8235 16Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-360 {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M12.702 11.641c0 .492-.223.883-.556 1.151.223.121.406.286.543.489.188.277.284.618.284.997 0 .565-.198 1.054-.557 1.4-.359.344-.867.536-1.474.536-.598 0-1.08-.2-1.423-.543-.341-.342-.533-.816-.57-1.342l-.01-.163h1.195l.015.134c.027.245.109.435.237.564.127.128.314.21.579.21.482 0 .777-.365.777-.828 0-.304-.103-.501-.261-.628-.165-.132-.405-.2-.697-.2h-.352v-1.1h.141c.288 0 .523-.047.681-.15.147-.094.24-.243.24-.494-.004-.196-.068-.325-.159-.408a.572.572 0 0 0-.393-.134.562.562 0 0 0-.398.145.652.652 0 0 0-.184.42l-.014.136H9.21l.004-.156c.012-.48.187-.903.496-1.204.308-.302.741-.473 1.256-.473.512 0 .947.16 1.255.45.31.293.482.708.482 1.191Zm1.919.769a1.759 1.759 0 0 1 1.057-.323c.542 0 1.005.202 1.333.566.328.363.51.874.51 1.473 0 .604-.206 1.13-.566 1.505-.359.375-.864.59-1.45.59-.688 0-1.222-.26-1.58-.767-.352-.5-.518-1.22-.518-2.108 0-1.025.163-1.858.518-2.44.36-.59.911-.906 1.64-.906.537 0 .979.173 1.302.48.322.307.517.736.577 1.23l.02.17h-1.207l-.018-.128c-.044-.305-.258-.604-.681-.604-.329 0-.554.165-.708.443-.119.214-.194.496-.229.818Zm.876 2.624a.777.777 0 0 1-.59-.253.985.985 0 0 1-.232-.67c0-.55.354-.916.815-.916.458 0 .815.387.815.931 0 .527-.355.908-.808.908Zm5.541.951c-.274.16-.607.245-1.006.245-.398 0-.732-.084-1.005-.245a1.697 1.697 0 0 1-.636-.681c-.303-.566-.397-1.339-.397-2.181 0-.763.083-1.537.378-2.125.15-.297.355-.549.631-.725.277-.177.617-.273 1.03-.273.411 0 .752.096 1.028.273.277.176.482.428.63.725.297.588.38 1.362.38 2.125 0 .842-.095 1.615-.398 2.18-.153.286-.36.52-.635.682Zm-1.006-.911a.52.52 0 0 1-.356-.124.868.868 0 0 1-.231-.373c-.124-.346-.168-.847-.168-1.454 0-.56.035-1.059.155-1.413a.904.904 0 0 1 .23-.39.526.526 0 0 1 .37-.132c.16 0 .278.05.37.132a.903.903 0 0 1 .23.39c.12.354.155.852.155 1.413 0 .607-.042 1.109-.165 1.454a.86.86 0 0 1-.23.373.526.526 0 0 1-.36.124Zm5.248-3.608c0 .829-.61 1.458-1.39 1.458-.781 0-1.399-.628-1.399-1.458 0-.829.617-1.466 1.398-1.466.783 0 1.39.639 1.39 1.466Zm-1.39.47a.456.456 0 0 1-.454-.47c0-.271.197-.477.453-.477.248 0 .446.205.446.477 0 .271-.19.47-.446.47Z' clip-rule='evenodd'/%3E%3Cpath fill='%23333' d='M6.026 15.08c-.522.301-.8.587-.913.81a.504.504 0 0 0-.062.256c.004.077.03.165.094.272.142.236.457.528 1.018.83 1.114.602 2.914 1.098 5.14 1.381 1.713.218 3.576.298 5.409.236l-.05-.043a.585.585 0 0 1-.066-.79.503.503 0 0 1 .737-.072l1.065.94a.583.583 0 0 1 .053.807.558.558 0 0 1-.05.057l-.924 1.058a.503.503 0 0 1-.74.03.585.585 0 0 1-.029-.793l.067-.077a35.26 35.26 0 0 1-5.596-.242c-2.276-.29-4.217-.805-5.491-1.493-.633-.342-1.14-.746-1.428-1.226-.312-.519-.352-1.105-.073-1.659.255-.506.743-.922 1.338-1.266.537-.31 1.208-.589 1.988-.83.279-.086.57.09.646.39a.57.57 0 0 1-.366.689c-.725.224-1.317.474-1.767.734Zm17.394-.667c1.037.34 1.761.727 2.17 1.106.219.204.312.373.344.493a.468.468 0 0 1-.05.355c-.083.161-.25.352-.528.558a5.575 5.575 0 0 1-1.14.619c-.892.375-2.064.693-3.439.926-.281.047-.484.327-.44.637.043.308.312.517.598.469 1.426-.241 2.68-.577 3.666-.991 1.028-.432 1.845-.982 2.204-1.68.193-.375.25-.786.14-1.198-.106-.397-.35-.74-.666-1.032-.57-.53-1.462-.975-2.563-1.336-.278-.091-.571.08-.652.379a.572.572 0 0 0 .356.695Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-upload {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none'%3E%3Cpath fill='%23333' d='M26 18.552v5.958A1.49 1.49 0 0 1 24.51 26H7.49A1.49 1.49 0 0 1 6 24.51v-5.958a.638.638 0 1 1 1.277 0v5.958a.213.213 0 0 0 .212.213h17.022a.213.213 0 0 0 .212-.213v-5.958a.638.638 0 0 1 1.277 0Z'/%3E%3Cpath fill='%23333' d='M16 6c.17 0 .332.068.452.187l4.255 4.256a.638.638 0 0 1-.902.902L16.639 8.18v10.373a.639.639 0 1 1-1.277 0V8.18l-3.165 3.165a.639.639 0 0 1-.903-.902l4.256-4.256A.638.638 0 0 1 16 6Z'/%3E%3C/svg%3E");}

/* 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 d='M31.7476 30.4184L23.6939 22.3647C25.9905 19.7235 27.172 16.2939 26.9892 12.7986C26.8064 9.3034 25.2737 6.01566 22.7141 3.62846C20.1546 1.24126 16.7681 -0.0588987 13.2687 0.00204999C9.76917 0.0629987 6.43006 1.48029 3.95518 3.95518C1.48029 6.43006 0.0629987 9.76917 0.00204999 13.2687C-0.0588987 16.7681 1.24126 20.1546 3.62846 22.7141C6.01566 25.2737 9.3034 26.8064 12.7986 26.9892C16.2939 27.172 19.7235 25.9905 22.3647 23.6939L30.4184 31.7476C30.5966 31.9137 30.8325 32.0042 31.0761 31.9999C31.3198 31.9956 31.5522 31.8969 31.7245 31.7245C31.8969 31.5522 31.9956 31.3198 31.9999 31.0761C32.0042 30.8325 31.9137 30.5966 31.7476 30.4184ZM1.92792 13.5272C1.92792 11.2331 2.60821 8.9905 3.88276 7.083C5.15731 5.17551 6.96888 3.68879 9.08838 2.81087C11.2079 1.93294 13.5401 1.70324 15.7902 2.1508C18.0402 2.59836 20.107 3.70309 21.7292 5.32528C23.3514 6.94748 24.4561 9.01428 24.9037 11.2643C25.3512 13.5144 25.1215 15.8466 24.2436 17.9661C23.3657 20.0856 21.879 21.8972 19.9715 23.1717C18.064 24.4463 15.8214 25.1266 13.5272 25.1266C10.4521 25.1228 7.50389 23.8996 5.32941 21.7251C3.15492 19.5506 1.93165 16.6024 1.92792 13.5272Z' 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 {-webkit-mask: 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.6131 15.7561L16.2438 6.38677C16.1213 6.26389 15.9758 6.16645 15.8155 6.10007C15.6552 6.03369 15.4834 5.99968 15.3099 6H6.56601C6.4159 6 6.27193 6.05964 6.16578 6.16578C6.05964 6.27193 6 6.4159 6 6.56601V15.3099C5.99968 15.4834 6.03369 15.6552 6.10007 15.8155C6.16645 15.9758 6.26389 16.1213 6.38677 16.2438L15.7561 25.6131C15.8787 25.7358 16.0243 25.8331 16.1846 25.8995C16.3448 25.9658 16.5166 26 16.69 26C16.8635 26 17.0352 25.9658 17.1954 25.8995C17.3557 25.8331 17.5013 25.7358 17.6239 25.6131L25.6131 17.6239C25.7358 17.5013 25.8331 17.3557 25.8995 17.1954C25.9658 17.0352 26 16.8635 26 16.69C26 16.5166 25.9658 16.3448 25.8995 16.1846C25.8331 16.0243 25.7358 15.8787 25.6131 15.7561ZM24.8122 16.823L16.823 24.8122C16.8055 24.8298 16.7847 24.8437 16.7618 24.8532C16.7389 24.8627 16.7143 24.8676 16.6895 24.8676C16.6647 24.8676 16.6402 24.8627 16.6173 24.8532C16.5944 24.8437 16.5736 24.8298 16.5561 24.8122L7.18768 15.4429C7.15225 15.4077 7.13223 15.3599 7.13202 15.3099V7.13202H15.3099C15.3599 7.13223 15.4077 7.15225 15.4429 7.18768L24.8122 16.5561C24.8298 16.5736 24.8437 16.5944 24.8532 16.6173C24.8627 16.6402 24.8676 16.6647 24.8676 16.6895C24.8676 16.7143 24.8627 16.7389 24.8532 16.7618C24.8437 16.7847 24.8298 16.8055 24.8122 16.823ZM11.6601 10.7167C11.6601 10.9033 11.6048 11.0857 11.5011 11.2408C11.3974 11.396 11.2501 11.5169 11.0777 11.5883C10.9054 11.6597 10.7157 11.6784 10.5327 11.642C10.3497 11.6056 10.1816 11.5157 10.0497 11.3838C9.91776 11.2519 9.82792 11.0838 9.79152 10.9008C9.75512 10.7178 9.7738 10.5281 9.8452 10.3557C9.9166 10.1834 10.0375 10.036 10.1926 9.93237C10.3478 9.82872 10.5302 9.77339 10.7167 9.77339C10.9669 9.77339 11.2069 9.87278 11.3838 10.0497C11.5607 10.2266 11.6601 10.4665 11.6601 10.7167Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-shipping-express {-webkit-mask: 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='M23.9852 15.2062C23.9643 15.1248 23.9218 15.0494 23.8612 14.9866C23.8007 14.9237 23.7241 14.8755 23.6383 14.8461L18.1285 12.9639L19.5239 6.60814C19.5477 6.49966 19.532 6.38707 19.4792 6.28744C19.4264 6.18781 19.3394 6.10659 19.2314 6.05608C19.1233 6.00558 19.0002 5.98855 18.8805 6.00758C18.7609 6.02661 18.6514 6.08066 18.5685 6.16154L8.14998 16.3308C8.08741 16.3919 8.04234 16.4661 8.01876 16.5469C7.99517 16.6276 7.99381 16.7124 8.01478 16.7938C8.03575 16.8752 8.07841 16.9506 8.13898 17.0133C8.19956 17.0761 8.27618 17.1243 8.36207 17.1536L13.8718 19.0358L12.4765 25.3915C12.4525 25.5 12.4681 25.6127 12.5208 25.7124C12.5735 25.8122 12.6605 25.8935 12.7686 25.9441C12.8475 25.9807 12.9348 25.9998 13.0234 26C13.1001 26 13.1759 25.9856 13.2461 25.9578C13.3164 25.9299 13.3796 25.8892 13.4318 25.8381L23.8503 15.6689C23.9128 15.6078 23.9578 15.5336 23.9813 15.4529C24.0048 15.3722 24.0062 15.2875 23.9852 15.2062Z' fill='%23333333'/%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) {}

/*
 *
 *  Alinhamento MAC/IOS
 *
*/
body.MacOS .form-message .help,
body.MacOS .form-message .success,
body.MacOS .form-message .info,
body.MacOS .form-message .warning,
body.MacOS .form-message .error { padding: 5px 10px 5px 38px; }

/*
 *
 *  HEADER
 *
*/
#header-nav .header-nav-item { font-size: 16px;font-weight: 400;line-height: 150%; }
#header .header-submenu-nav .paragraph { font-size: 16px;font-weight: 500;line-height: 20px; }

/*
 *
 *  Menu mobile
 *
*/
/* segundo nivel */
body #mobile-main-menu-sub a.mobile-nav-item-2 { font-size: 15px;font-weight: 700;line-height: 140%; }

/*
 *
 *  banner Homepage
 *
*/
.home .home-slider .description .content .home-slider-title.secondary-subtitle {font-size: 16px;font-weight: 700;line-height: 140%;}
.home .home-slider .description .content .home-slider-description.list-nav-title {font-size: 21px;font-weight: 400;line-height: 120%;}
html body .home .home-slider .slick-dots li button{outline: none; background-color: var(--color-white); opacity: 0.4;}
html body .home .home-slider .slick-dots li.slick-active button{background-color: var(--color-white); opacity: 1;}

@media screen and (max-width: 767px) {
	.home .home-slider .description .content .home-slider-description.list-nav-title {font-size: 18px; line-height: 140%;}
	.home .home-slider .description .content .home-slider-subtitle.mega-title{line-height: 130%;}
} 


/*
 *
 * Account landing
 *
*/
body #main.account .list-nav-title.list-nav-title-fixed-fontsize { font-size: 16px;font-weight: 700;}
body #main.account .ac-lg-list-desc { font-weight: 400;}

/*
 *
 * Account
 *
*/
body .account .account-menu ul li a { font-size: 14px;color: var(--color-gray); }
@media screen and (max-width: 767px) {
	body .account:not(.account-landing) .rdc-header-subtitle p { text-align: start; }
}

/*
 *
 * listagem
 *
*/
	/*    banner    */
		.light a, .light .a, .light li::before, .light span { color: var(--color-white); }
		#rdc-productlist-area-a .light span { opacity: 0.5; }
		@media screen and (max-width: 767px) {
			#rdc-productlist-top-image #rdc-productlist-top-image-wrap h2.secondary-subtitle { font-size: 14px;line-height: 160%; }
		}

/*
 *
 * Product Item
 *
*/
article.product-item .rdc-product-item-name {font-weight: 600; }
body article.product-item .rdc-product-item-resume p { font-size: 14px;color: var(--color-darkgray) !important; }
body article.product-item .price p:not(.rdc-promo-date).discount { min-height: 22px;padding-bottom: 0;padding-top: 1px; }

/* PI - Small*/
body article.product-item.rdc-product-item-size-small .image .flags .flag{border-radius: 2px; max-height: 17px;}
article.product-item.rdc-product-item-size-small .desc .paragraph.rdc-product-item-name{    line-height: 140%}
article.product-item.rdc-product-item-size-small .desc .price .old{font-size: 12px; line-height: 118%;}
article.product-item.rdc-product-item-size-small .desc .price .discount{font-size: 9px; line-height: 118%; min-height: 17px ;font-weight: 600;}
article.product-item.rdc-product-item-size-small .desc .price .current{font-size: 12px; color: var(--color-black);}
body article.product-item.rdc-product-item-size-small .productMask:before{background-color: none;}


/*
 *
 * Search
 *
*/
.search .empty-search-title .subtitle{font-size: 46px; font-weight: 400; line-height: 130%;}
#header-container-search .list-nav-title{opacity: 1 !important; text-transform: none !important; font-size: 16px;}
#header-container-search #rdc-overlay-search-resp-list li a{color: var(--color-black); line-height: 157%;}
#header-search-6655 #rdc-overlay-search-resp-btn-2 .button{font-weight: 600; line-height: 120%; min-height: 40px; padding: 0 30px 0 29px; font-family: var(--base-fontfamily); } 
#header-search-container .container #header-search-input{font-size: 13px; text-align: left; font-weight: 400; color: var(--color-black); font-family: var(--base-fontfamily)}


/* Mobile & Tablet */
@media screen and (max-width: 1199px) {
	html body #header-search-container{background-color: white !important; border-bottom: 1px solid var(--color-lines);}
	#header-search-container .container #header-search-icon-close{background-color: var(--color-background); border-radius: 100%;}
	#header-container-search .list-nav-title{font-size: 15px;}
	#rdc-overlay-search-resp-btn-1{border-top: 1px solid var(--color-theme)}
	.search .empty-search-title .subtitle{font-size: 34px;}
	.content-noresults .container.wrapper-search .sp-large{height: 0;}
	.content-noresults .container.wrapper-search .row .sp-ex-small{height: 5px;}
}




/* PI - Wishlist */

.wishlist .product-item .image .rdc-product-item-resume p{color: var(--color-darkgray) !important;}
.wishlist .product-item .image .rdc-product-item-resume p span{color: var(--color-darkgray);}
.wishlist .product-item .desc .paragraph.rdc-product-item-name{line-height: 140%;}
.wishlist .product-item .desc .rdc-product-item-variants-layout-2 .rdc-product-item-actions .addCart{border: transparent; background-color: var(--color-buttoncart);}
.wishlist .product-item .desc .rdc-product-item-variants-layout-2 .rdc-product-item-actions .addCart.loader { background-color: var(--color-buttoncart) !important;color: var(--color-buttoncart) !important;border: transparent !important; }
.wishlist .product-item .desc .price.rdc-product-item-promo-date .rdc-promo-date{ font-size: 10px;}
.wishlist .product-item .desc .price.rdc-product-item-promo-30days .rdc-promo-30days{ font-size: 10px; font-family: var(--base-fontfamily);padding-top: 3px;}

/* HOVERS */
@media (hover:hover) {
	.wishlist .product-item .desc .rdc-product-item-variants-layout-2 .rdc-product-item-actions .addCart:hover{background-color: var(--color-buttoncart-hover); color: var(--color-white);}
}

/* DESKTOP */
@media screen and (min-width:1200px){
    .wishlist .product-item .image .rdc-product-item-resume p{height: 31px;}
}

/* MOBILE */
@media screen and (max-width: 767px) {
	.wishlist article.product-item .desc .price .old{font-size: 12px;}
	.wishlist article.product-item .desc .price .discount{font-size: 10px; line-height: 100%; min-height: 17px;}
	.wishlist article.product-item .desc .price .current{font-size: 12px; line-height: 117%;}
	.wishlist .product-item .desc .rdc-product-item-variants-layout-2 .rdc-product-item-actions .addCart{font-size: 13px;}
	.wishlist .product-item .desc .price.rdc-product-item-promo-date .rdc-promo-date{font-size: 9px; line-height: 120%;}
	.wishlist .product-item .desc .price.rdc-product-item-promo-30days .rdc-promo-30days{font-size: 9px; line-height: 120%;}
}


/*
 *
 * Detail
 *
*/

/* B */
#rdc-productdetail-area-b .rdc-product-top-actions .rdc-icon-svg.rdc-icon-arrowleft{width: 16px !important; height: 16px !important;}
body #rdc-productdetail-area-b .rdc-product-name .title{font-size: 26px; line-height: 120% ;font-weight: 600 !important;}
#rdc-productdetail-area-b .rdc-product-info1-wrapper .rdc-product-reviews .paragraph span{font-size: 14px; font-weight: 400; line-height: 160%;}
body #rdc-productdetail-area-b .rdc-product-price.price .desde{font-size: 10px; color: var(--color-darkgray);}
body #rdc-productdetail-area-b .rdc-product-price.price .discount{font-size: 12px; line-height: 117%;}
body #rdc-productdetail-area-b .rdc-product-price.price .packageType{font-size: 10px;}
body #rdc-productdetail-area-b .rdc-product-afterprice .rdc-promo-date{color: var(--color-darkgray); font-size: 10px; line-height: 117%; font-family: var(--base-fontfamily);}
body #rdc-productdetail-area-b .rdc-product-afterprice .rdc-promo-30days{color: var(--color-darkgray); font-size: 10px; line-height: 117%; font-family: var(--base-fontfamily);}
#rdc-productdetail-area-b .wrapper-tabs-sizes .tabs_new .list-nav-subtitle{font-size: 14px; line-height: 140%;}
#rdc-productdetail-area-b .wrapper-tabs-sizes .tabs_new-content .tab-size-item.paragraph{font-size: 13px;}
#rdc-productdetail-area-b .sizes.wrapper-select #size-guide-5456 .rdc-size-guide-link-icon{border: 1px solid transparent !important;}
#rdc-productdetail-area-b .sizes.wrapper-select #size-guide-5456 .rdc-size-guide-link-icon .small{text-decoration: underline;}
.rdc-icon-svg.rdc-icon-size-guide{display: none;}
#rdc-productdetail-area-b .wrapper-tabs-sizes .tabs_new-content .tab-size-item[alert_stock]{color: var(--color-black);}
body #rdc-productdetail-area-b .wrapper-colors .colors #colors{font-size: 13px; font-weight: 400; line-height: 160%;}
body #rdc-productdetail-area-b .secondary-buttons .button.btn2:not([disabled]){color: var(--color-buttoncart); border: 1px solid var(--color-buttoncart);}
body #rdc-productdetail-area-b .secondary-buttons .button.btn2 {line-height: 117%;}

/* Tab3 */
#rdc-productdetail-area-b .tab3 .list-technologies .technology-desc .list-nav-subtitle{text-transform: none !important; font-size: 14px !important;}

/* Tab9 */
#rdc-productdetail-area-b .tab9 .list-faqs .accordion .accordion-content p span{font-size: 14px !important; font-family: var(--base-fontfamily) !important; color: var(--color-black);}
html #rdc-productdetail-area-b .tab9 .list-faqs .accordion > li{border-color: transparent;}

/* HOVERS */
@media (hover:hover) {
	body #rdc-productdetail-area-b .rdc-size-guide-link-icon:hover{background-color: transparent !important;}
	#rdc-productdetail-area-b .sizes.wrapper-select #size-guide-5456 .rdc-size-guide-link-icon .small:hover{text-decoration: none;}
	body #rdc-productdetail-area-b .secondary-buttons .button.btn2:not([disabled]):hover{color: var(--color-white); border: 1px solid var(--color-buttoncart); background-color: var(--color-buttoncart);}
}

/* MOBILE */
@media screen and (max-width: 1199px) {
	body #rdc-productdetail-area-b .rdc-product-name .title{font-size: 21px; line-height: 119%;}
	body #rdc-productdetail-area-b .rdc-product-price.price .desde{font-size: 9px; color: var(--color-gray);}
	body #rdc-productdetail-area-b .rdc-product-price.price .old{font-size: 14px; font-weight: 400;}
	body #rdc-productdetail-area-b .rdc-product-price.price .discount{font-weight: 700;}
	body #rdc-productdetail-area-b .rdc-product-price.price .current{font-size: 14px; font-weight: 500;}
	body #rdc-productdetail-area-b .rdc-product-price.price .packageType{font-size: 9px;}
	body #rdc-productdetail-area-b .rdc-product-afterprice .rdc-promo-date.systemFontFamily{font-size: 9px;}
	body #rdc-productdetail-area-b .rdc-product-afterprice .rdc-promo-30days.systemFontFamily{font-size: 9px;}

	#rdc-productdetail-area-b .rdc-extra_info-mobile .accordion .accordion-head .list-nav-subtitle{line-height: 142%;}
	#rdc-productdetail-area-b .rdc-extra_info-mobile .accordion li{border-color: transparent;}
	#rdc-productdetail-area-b .product-technologies .column .technology-desc .small{color: var(--color-black);}
    #rdc-productdetail-area-b .care-instructions .column .small{color: var(--color-black); line-height: 172%;}
	#rdc-productdetail-area-b .product-faqs .accordion .accordion-content p span{font-size: 14px !important; font-family: var(--base-fontfamily) !important; color: var(--color-black) !important;}

	#rdc-productdetail-area-b .rdc-product-actions{background: var(--color-white);}
	/*body #rdc-product-colors .rdc-product-color-item.sel figure{border-radius: 2px; border: 1px solid var(--color-black); outline: none;}*/

	/* rdc-product-colors */
	body #rdc-product-colors .rdc-wrapper-popup-header{border: 1px solid transparent;}
	#rdc-product-colors .rdc-icon-circle{background-color: transparent;}
	body #rdc-product-colors .rdc-wrapper-popup-body label .paragraph{font-size: 14px; line-height: 160%; margin-top: 4px;}

	 /* rdc-product-sizes */
	#rdc-product-sizes .mfp-close .rdc-icon-circle{background-color: transparent;}
	#rdc-product-sizes .rdc-wrapper-popup-header{border-bottom: 1px solid transparent;}
	#rdc-product-sizes .wrapper-tabs-sizes .tabs_new .list-nav-subtitle{font-size: 14px;}
	.tabs_new-content .tab-size-item[alert_stock]{color: var(--color-black);}
	#rdc-product-sizes .tabs_new-content .tab-size-item.paragraph{font-size: 13px;}
	.wrapper-popup #mobile-open-sizeguide{border: 1px solid transparent !important;}
	.wrapper-popup #mobile-open-sizeguide .small{text-decoration: underline;}
}


/* PI - Combined */ 
.combine-products .form-field.rdc-product-item-sizes .select select{font-weight: 400; font-family: var(--base-fontfamily); font-size: 13px; line-height: 160%;}
.combine-products .form-field.rdc-product-item-actions .addCart{line-height: 117%; background-color: var(--color-buttoncart); border: 1px solid var(--color-buttoncart); min-height: 43px;}
.combine-products .price.rdc-product-item-promo-date .date.rdc-promo-date{color: var(--color-gray); font-size: 10px;}
.combine-products .price.rdc-product-item-promo-30days .date.rdc-promo-30days{color: var(--color-gray); font-size: 10px; font-family: var(--base-fontfamily);}


/* HOVERS */
@media (hover:hover) {
	.combine-products .form-field.rdc-product-item-actions .addCart:hover{background-color: var(--color-buttoncart-hover); color: var(--color-white);}
}


/* PRODUCT-LIST */
#rdc-productlist-area-a-filters .box-filter .clear-filters .link{color: var(--color-link); font-size: 14px; font-weight: 400; line-height: 99%;}


/* MOBILE */
@media screen and (max-width: 767px){
    #rdc-productlist-area-a-filters #filters-mobile .list-nav-subtitle{text-transform: uppercase;}
	.desc .price .old{font-size: 12px;}
	.desc .price .discount{font-size: 10px;}
	.desc .price .current{font-size: 12px;}
}
