/*
 *
 * CSS VARS
 *
*/

:root {
	--color-dark: #000000;
	--color-theme: #1C0061;
	--color-black: #333;
	--color-darkgray: #666;
	--color-gray: #757575;/*#999*/
	--color-lightgray: #CCC;
	--color-white: #FFF;
	--color-overlay: #33333370;
	--color-background: #F5F5F5;
	--color-lines: #CCCCCC;
	--color-link: #666666;
	--color-help: #8B8D8F;
	--color-helplight: #E6E6E6;
	--color-error: #E41B23;
	--color-errorlight: #FFF1F0;
	--color-success: #3F9C35;
	--color-successlight: #F6FFED;
	--color-warning: #FAAD14;
	--color-warninglight: #FFFBE6;
	--color-info: #1890FF;
	--color-infolight: #E6F7FF;
	--color-buttoncart: #1C0061;
	--color-buttoncart-hover: #264582;
	--color-goldeninfo: #caae77;

	--base-fontfamily: Inter, sans-serif;
	--container-padding: 30px;
	--container-padding-n: -30px;
	--color-featuredmenu: #a61c00;
	/*--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: 6px;
	--button-border-radius: 0;

	--sat: env(safe-area-inset-top);
    --sar: env(safe-area-inset-right);
    --sab: env(safe-area-inset-bottom);
    --sal: env(safe-area-inset-left);

	/* Spacing */
	--sp-ex-small: 20px;
	--sp-small: 30px;
	--sp-medium: 60px;
	--sp-large: 120px;
}

@media screen and (max-width: 767px) {
	:root {
		/* Spacing */
		--sp-ex-small: 15px;
		--sp-small: 30px;
		--sp-medium: 40px;
		--sp-large: 100px;
	}
}

@media screen and (max-width: 991px) {
	:root {
		--container-padding: 15px;
		--container-padding-n: -15px;
	}
}



/*
 *
 * Tipography
 *
*/
body .systemFontFamily {
	font-family: var(--base-fontfamily);
}

body, .paragraph, .gm-style, .page-content,
body .account p:not(.label-title), body .account .paragraph, body .account td {
	/* Do not add styles */
	font-family: var(--base-fontfamily);
	font-weight: 400;
	font-size: 14px;
	color: var(--color-black);
}

/* 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-gray);
}

/* MEGA-TITLE */
.mega-title {
	font-weight: 700;
	font-size: 60px;
	line-height: 140%;
}

/* TITLE */
h1:not(.nostyle), .h1:not(.nostyle), .title {
	font-weight: 700;
	font-size: 30px;
	line-height: 140%;
}

/* SECONDARY-TITLE */
h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
	font-weight: 400;
	font-size: 25px;
	line-height: 140%;
}

/* SUBTITLE */
h3:not(.nostyle), .h3:not(.nostyle), .subtitle,
body .home-slider-title,
body .rdc-wrapper-popup-header-title {
	font-weight: 400;
	font-size: 20px;
	line-height: 140%;
}

/* SECONDARY-SUBTITLE */
h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
	font-weight: 700;
	font-size: 17px;
	line-height: 140%;
}

/* LIST-NAV-TITLE */
.list-nav-title,
body #main.account .list-nav-title {
	font-weight: 700;
	font-size: 15px;
	line-height: 160%;
}

.list-nav-title.active,
body #main.account .list-nav-title.active {
	text-decoration: underline;
}

/* SIGNATURE */
.signature,
body #main.account .signature {
	font-size: 12px;
	line-height: normal;
	font-weight: 400;
}

/* LIST-NAV-SUBTITLE */
.list-nav-subtitle,
body #main.account .list-nav-subtitle {
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
}

.list-nav-subtitle.active,
body #main.account .list-nav-subtitle.active {
	text-decoration: underline;
}

/* PRODUCT ITEM */
	/* Brand */
	.brand-list-product {
		font-weight: 600;
		font-size: 13px;
	} 

	/* Name */
	.product-item .desc .name {
		font-weight: 400;
		font-size: 13px;
		line-height: 150%;
	}

	/* Price */
	.price {
		display: inline-grid;
		align-items: baseline;
		grid-auto-flow: column;
		grid-gap: 10px;
	}

	.price, .price p {
		font-weight: 400;
		font-size: 13px;
	}

	/* Price Old */
	.price .old {
		color: var(--color-gray);
		text-decoration: line-through;
		margin-right: 0 !important;
	}

	/* Price Discount */
	.price .discount {
		background: #a61c00; /* Required */
		color: var(--color-white); /* Required */
		font-size: 13px;
		padding: 1px 4px;
	}

	/* Price Current */
	.price .current {color: var(--color-black);}
	.price .old + .current,
	.price .old + .discount + .current {color: #e84b3c;}

	/* Price Desde, Price Type, Price Date */
	.price .desde, .price .type, .price .date, .price .packageType {
		font-weight: 400;
		font-size: 10px;
		line-height: 150%;
	}

	/* Price Desde, Price Type */
	.price .desde, .price .type, .price .packageType {
		color: var(--color-gray);
	}

	/* Promo Date */
	.rdc-promo-date {
		font-size: 11px;
		color: #e84b3c;
		display: none !important;
	}

	/* Promo��o ultimos 30 dias */
	.rdc-promo-30days {
		font-size: 11px;
		color: var(--color-gray);	
	}

	/* Price Horizontal */
	.priceh {
		display: inline-flex;
		align-items: baseline;
		grid-auto-flow: column;
		grid-gap: 0 12px;
		flex-wrap: wrap;
	}

	.priceh, .priceh p {
		font-weight: 400;
		font-size: 13px;
	}

	/* Price Horizontal Old */
	.priceh .old {
		color: var(--color-gray);
		text-decoration: line-through;
	}

	/* Price Horizontal Discount */
	.priceh .discount {
		background: #a61c00;
		color: var(--color-white);
		display: none;
		padding: 0 4px;
	}

	/* Price Horizontal Current */
	.priceh .current {color: var(--color-black);}
	.priceh .old + .current,
	.priceh .old + .discount + .current {color: #e84b3c;}

@media screen and (max-width: 767px) {
	.priceh .discount {font-size: 12px;}
}
article.rdc-product-item-size-small .priceh .discount {font-size: 12px;}

@media screen and (max-width: 1199px) {
	/* MEGA-TITLE */
	.mega-title {
		font-size: 30px;
	}

	/* TITLE */
	h1:not(.nostyle), .h1:not(.nostyle), .title {
		font-size: 26px;
	}

	/* SECONDARY-TITLE */
	h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
		font-size: 22px;
	}

	/* SUBTITLE */
	h3:not(.nostyle), .h3:not(.nostyle), .subtitle,
	body .home-slider-title,
	body .rdc-wrapper-popup-header-title {
		font-size: 18px;
	}

	/* SECONDARY-SUBTITLE */
	h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
		font-size: 16px;
	}

	/* LIST-NAV-TITLE */
	.list-nav-title,
	body #main.account .list-nav-title {
		font-size: 15px;
	}

	/* LIST-NAV-SUBTITLE - Required for accordion contains secondary-subtitle */
	.list-nav-subtitle,
	body #main.account .list-nav-subtitle {
		font-size: 14px;
	}

	/* SIGNATURE */
	.signature,
	body #main.account .signature {
		font-size: 12px;
	}

	/* PRODUCT ITEM */
	.product-item .desc .name,
	.product-item .price p {
		font-size: 13px;
	}

	/* PRODUCT ITEM - Promo date */
	.product-item .price .type, .product-item .price .date {
		font-size: 10px;
		line-height: 150%;
	}
}

@media screen and (min-width: 1200px) {
	/* Colocar igual aos estilos anteriores de mobile */
	/* PRODUCT ITEM (SMALL) == MOBILE */
	.rdc-product-item-size-small .desc .name ,
	.rdc-product-item-size-small .price p {
		font-size: 13px;
	}

	/* PRODUCT ITEM - Promo date */
	.product-item .price .type, .product-item .price .date {
		font-size: 10px;
		line-height: 150%;
	}
}





/*
 *
 * Elements & Components
 *
*/

/* Primary Button */
	/* Normal */
	.button, button, input[type=submit], input[type=button],
	body .wsm-button {
		font-weight: 600;
		font-size: 13px;
		line-height: 12px;
		color: var(--color-white);
		text-transform: uppercase;
		padding: 0 30px;
		border: 1px solid var(--color-theme);
		background-color: var(--color-theme);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 90px;
		min-height: 42px;
		user-select: none;
	}

	@media screen and (max-width: 767px) {
		.button, button, input[type=submit], input[type=button],
		body .wsm-button {
			padding-left: 15px;
			padding-right: 15px;
		}
	}

	.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-theme) !important;
		background: var(--color-theme) !important;
		border-color: var(--color-theme) !important;
	}

	/* Normal Hover */
	@media (hover) {
		.button:not([disabled]):hover, button:not([disabled]):not(.esgotado):hover, input[type=submit]:not([disabled]):hover, input[type=button]:not([disabled]):hover {
			color: var(--color-theme);
			border-color: var(--color-theme);
			background-color: transparent;
		}
	}

	/* Normal Disabled */
	.button[disabled], button[disabled], input[type=submit][disabled], input[type=button][disabled] {
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

	/* White */
	.button.btn-light, .button.white, button.btn-light, button.white, input[type=submit].btn-light, input[type=submit].white, input[type=button].btn-light, input[type=button].white {
		color: var(--color-black);
		border-color: var(--color-white);
		background-color: var(--color-white);
	}

	/* White Hover */
	@media (hover) {
		.button.btn-light:not([disabled]):hover, .button.white:not([disabled]):hover, button.btn-light:not([disabled]):hover, button.white:not([disabled]):hover, input[type=submit].btn-light:not([disabled]):hover, input[type=submit].white:not([disabled]):hover, input[type=button].btn-light:not([disabled]):hover, input[type=button].white:not([disabled]):hover {
			color: var(--color-white);
			border-color: var(--color-white);
			background-color: transparent;
		}
	}

	/* White Disabled */
	.button.btn-light[disabled], .button.white[disabled], button.btn-light[disabled], button.white[disabled], input[type=submit].btn-light[disabled], input[type=submit].white[disabled], input[type=button].btn-light[disabled], input[type=button].white[disabled] {
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

/* Secondary Button */
	/* Normal */
	.button.btn2, button.btn2, input[type=submit].btn2, input[type=button].btn2,
	body #main .wsm-button {
		color: var(--color-theme);
		border-color: var(--color-theme);
		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,
		body #main .wsm-button:hover {
			color: var(--color-white);
			border-color: var(--color-theme);
			background-color: var(--color-theme);
		}
	}

	/* Normal Disable */
	.button.btn2[disabled], button.btn2[disabled], input[type=submit].btn2[disabled], input[type=button].btn2[disabled], .buttonBlocks[disabled]{
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

	/* White */
	.button.btn2.btn-light, .button.btn2.white, button.btn2.btn-light, button.btn2.white, input[type=submit].btn2.btn-light, input[type=submit].btn2.white, input[type=button].btn2.btn-light, input[type=button].btn2.white,
	body #main .contentTitles_button.btn-light {
		color: var(--color-white);
		border-color: var(--color-white);
		background-color: transparent;
	}

	/* White Hover */
	@media (hover) {
		.button.btn2.btn-light:not([disabled]):hover, .button.btn2.white:not([disabled]):hover, button.btn2.btn-light:not([disabled]):hover, button.btn2.white:not([disabled]):hover, input[type=submit].btn2.btn-light:not([disabled]):hover, input[type=submit].btn2.white:not([disabled]):hover, input[type=button].btn2.btn-light:not([disabled]):hover, input[type=button].btn2.white:not([disabled]):hover {
			color: var(--color-black); 
			border-color: var(--color-white);
			background-color: var(--color-white);
		}
	}

	/* White Disable */
	.button.btn2.btn-light[disabled], .button.btn2.white[disabled], button.btn2.btn-light[disabled], button.btn2.white[disabled], input[type=submit].btn2.btn-light[disabled], input[type=submit].btn2.white[disabled], input[type=button].btn2.btn-light[disabled], input[type=button].btn2.white[disabled] {
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

/* Button Link */
	/* Normal */
	.button.link, .link {
		display: inline; /* Required */
		font-weight: 700;
		font-size: 14px;
		line-height: 120%;
		text-decoration: none !important;
		padding: 1px 0;
		border: 0;
		background: transparent;
	}

	.button.link:not(.cursor-default), .link:not(.cursor-default) {
		border-bottom: 1px solid currentColor;
	}

	/* Normal Hover */
	@media (hover) {
		.button.link:not([disabled]):hover, .link:not([disabled]):hover {
			border-color: transparent;
			color: currentColor;
		}
	}

	/* Normal Disable */
	.button.link[disabled], .link[disabled] {
		cursor: default !important;
		color: var(--color-lightgray);
	}

	/* White */
	.button.link.white, .link.white {
		color: var(--color-white);
	}

	/* White Hover */
	@media (hover) {
		.button.link.white:not([disabled]):hover, .link.white:not([disabled]):hover {

		}
	}

	/* White Disable */
	.button.link.white[disabled], .link.white[disabled] {
		cursor: default !important;
		color: var(--color-lightgray);
	}

/* Button Card */
	/* Normal */
	.button-card {
		transition: border-color 0.15s,
		box-shadow 0.15s;
	}

	/* Normal hover e active */
	@media (hover) {
		.button-card:not(.disabled):not([disabled]):not(.esgotado):hover {
			border-color: var(--color-gray);
		}
	}

	/* Active */
	.button-card.active {
		box-shadow: 0px 0px 0px 2px var(--color-theme);
	}

	/* Disable */
	.button-card.disabled, .button-card[disabled] {
		color: var(--color-gray);
		border-color: var(--color-lines);
		background-color: var(--color-background);
	}

	/* Esgotado */
	.button-card.esgotado {
		border: none;
	}

	.button-card.esgotado .button-card-title {
		color: var(--color-gray);
	}

	.button-card.esgotado .button-card-desc {
		color: var(--color-lightgray);
	}

	/* 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 30px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 42px;
		border: 1px solid var(--color-buttoncart);
		background-color: var(--color-buttoncart);
		white-space: nowrap;
	}

	.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-buttoncart) !important;
    background-color: transparent !important;
    cursor: default !important;
    opacity: 1 !important;
}

/* Button Loading */
.button.loader, button.loader {
	position: relative;
}

.button.loader::before, button.loader::before, .btn-cart.loader::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 24px;
	height: 24px;
	margin: -13px 0 0 -13px;
	background: url("data:image/svg+xml,%3C!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL --%3E%3Csvg width='38' height='38' viewBox='0 0 38 38' xmlns='http://www.w3.org/2000/svg' stroke='%23fff'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(1 1)' stroke-width='2'%3E%3Ccircle stroke-opacity='.5' cx='18' cy='18' r='18'/%3E%3Cpath d='M36 18c0-9.94-8.06-18-18-18'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 18 18' to='360 18 18' dur='1s' repeatCount='indefinite'/%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center/24px;
}





/*
 *
 * Accordions
 *
*/
body .accordion > li {
	border-top-width: 0;
	margin-top: 0;
}

@media screen and (min-width: 768px) {
	.accordion-head .list-nav-subtitle,
	body #main.account .accordion-head .list-nav-subtitle {font-size: 14px;}
}
@media screen and (min-width: 1200px) {
	body .accordion > li:not(.active):hover .accordion-head {
		background-color: var(--color-background);
	}
}

body .accordion > li.active .accordion-head{
	background-color: var(--color-background);
}

/* body .accordion > li.active + li {
	border-top-color: var(--color-dark);
} */

body .accordion .accordion-icon {
	left: 15px;
	right: auto;
}

body .accordion .accordion-content{
	padding-top: 1.2em;
	font-size: 13px;
}

body .accordion .accordion-head, body .accordion .accordion-content {
	padding-right: 5px;
	padding-left: 41px;
}

body .accordion .accordion-icon .rdc-icon-svg {
	width: 16px;
	height: 16px;
}

.accordion-head {
	user-select: none;
	font-weight: 600 !important;
}

body .accordion .accordion-icon .rdc-icon-svg.rdc-icon-arrowdown{
	background-image: url("data:image/svg+xml,%0A%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6926 7.29205L21.7096 15.2997C22.0968 15.6865 22.0968 16.3135 21.7096 16.7003L13.6926 24.708C13.068 25.3318 12 24.89 12 24.0077V7.99232C12 7.11003 13.068 6.66817 13.6926 7.29205Z' fill='%23333333'/%3E%3C/svg%3E%0A");
}
body .accordion .accordion-icon .rdc-icon-svg.rdc-icon-arrowup{
	background-image: url("data:image/svg+xml,%0A%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.29205 13.6926L15.2997 21.7096C15.6865 22.0968 16.3135 22.0968 16.7003 21.7096L24.708 13.6926C25.3318 13.068 24.89 12 24.0077 12L7.99232 12C7.11003 12 6.66817 13.068 7.29205 13.6926Z' fill='%23333333'/%3E%3C/svg%3E%0A");
}

.accordion-content.page-content ul:not(.accordion), .accordion-content.page-content ol {margin-left: 22px;}


/*
 *
 * Tabs
 *
*/
.tabs-container .tabs:not(.rdc-fixed-styles) li {
	margin: 0;
}

.tabs-container .tabs:not(.rdc-fixed-styles) .tabs-item {
	font-weight: 700;
	font-size: 18px;
	line-height: normal;
	text-decoration: none;
	color: var(--color-lines);
	cursor: pointer;
	display: block;
	padding: 4px 15px;
	border-bottom: 1px solid currentColor;
	background-color: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 35px;
	user-select: none;
}

@media (hover) {
	.tabs-container .tabs:not(.rdc-fixed-styles) li:not(.sel) .tabs-item:hover {
		color: var(--color-black);
		border-color: var(--color-lines);
	}
}

.tabs-container .tabs:not(.rdc-fixed-styles) li.sel .tabs-item {
	color: var(--color-black);
}

.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 {}

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 */
}

/* CHECKBOX || RADIO */
.magic-checkbox+label:before, .magic-radio+label:before{border-color: var(--color-theme); opacity: 0.2;}
.magic-checkbox:checked+label:before, .magic-checkbox:checked+label:after, .magic-radio:checked+label:before{border-color: var(--color-theme);opacity: 1;}
.magic-radio:checked+label:after{background-color: var(--color-theme);opacity: 1;}

/* DISABLED */
.magic-checkbox[disabled]+label:before, .magic-radio[disabled]+label:before{border-color: var(--color-theme); opacity: 0.2;}
.magic-checkbox:checked[disabled]+label:before, .magic-checkbox:checked[disabled]+label:after, .magic-radio:checked[disabled]+label:before{border-color: var(--color-theme); opacity: 0.4;}
.magic-radio:checked[disabled]+label:after{background-color: var(--color-theme); opacity: 0.4;}
.magic-checkbox[disabled]+label:before, .magic-checkbox:checked[disabled]+label:before{background-color: var(--color-background);}

input[type=file] {
	padding: 8px 15px;
}

@media (hover) {
	input[type=text]:hover, input[type=number]:hover, input[type=email]:hover, input[type=password]:hover, input[type=tel]:hover, input[type=search]:hover, input[type=file]:hover, textarea:hover, div.select:not(.disabled):hover,
	.magic-checkbox+label:hover:before, .magic-radio+label:hover:before {
		border-color: var(--color-gray);
	}
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, input[type=tel]:focus, input[type=search]:focus, textarea:focus {
	border-color: var(--color-black);
}

input[type=text]:disabled, input[type=email]:disabled, input[type=password]:disabled, input[type=tel]:disabled, input[type=search]:disabled, textarea:disabled, div.select[disabled],
input[type=text].disabled, input[type=email].disabled, input[type=password].disabled, input[type=tel].disabled, input[type=search].disabled, textarea.disabled, div.select.disabled {
	background-color: var(--color-background) !important;
	border: 1px solid var(--color-lines)!important;
	-webkit-text-fill-color: var(--color-darkgray);
	-webkit-opacity: 1; 
	cursor: default;
}

div.select {
	position: relative;
	z-index: 0;
	display: block;
	border: 1px solid var(--color-lines);
	overflow-x: hidden;
}

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='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.64645 5.64645C3.84171 5.45118 4.15829 5.45118 4.35355 5.64645L8 9.29289L11.6464 5.64645C11.8417 5.45118 12.1583 5.45118 12.3536 5.64645C12.5488 5.84171 12.5488 6.15829 12.3536 6.35355L8.35355 10.3536C8.15829 10.5488 7.84171 10.5488 7.64645 10.3536L3.64645 6.35355C3.45118 6.15829 3.45118 5.84171 3.64645 5.64645Z' fill='%23333333'/%3E%3C/svg%3E") left top/100% no-repeat;
}

div.select.loading::after {
	background: url(../gif/variantsloader.gif) center center/18px no-repeat;
	width: 20px;
	right: 8px;
}

div.select select:disabled{
	background-color: var(--color-background);
}

div.select select::-ms-expand{
	display: none;
}

div.select[disabled]::after{
	opacity: 0.3;
}

::-webkit-input-placeholder {color: var(--color-gray);}
::-moz-placeholder {color: var(--color-gray);}
:-ms-input-placeholder {color: var(--color-gray);}
:-moz-placeholder {color: var(--color-gray);}

.checkbox-switch label {background-color: #d9d9d6;}
.checkbox-switch label:after {background-color: var(--color-theme);}





/*
 *
 * 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: 140%;
	padding: 7px 10px 7px 38px;
	border: 1px solid;
}

.form-message .help {
	background-color: var(--color-helplight);
	background-image: url("data:image/svg+xml,%3Csvg height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238b8d8f' fill-rule='evenodd'%3E%3Cpath d='m16 4c6.63 0 12 5.37 12 12s-5.37 12-12 12-12-5.37-12-12 5.37-12 12-12zm0 1.6875c-5.6980195 0-10.3125 4.6144805-10.3125 10.3125s4.6144805 10.3125 10.3125 10.3125 10.3125-4.6144805 10.3125-10.3125-4.6144805-10.3125-10.3125-10.3125z' fill-rule='nonzero'%3E%3C/path%3E%3Cpath d='m16.8556542 22.6708224c-.2787156.2480277-.6017256.3726806-.9676406.3726806-.3785865 0-.7088214-.12243-.9907049-.3677345-.2823281-.24486-.42377-.5876973-.42377-1.0281785 0-.3907422.1368847-.7196304.4097648-.9861643s.6076167-.3998008 1.0047101-.3998008c.3907576 0 .7196587.1332669.9866477.3998008.2665444.2665339.4002612.5953665.4002612.9861643-.0005001.4341458-.1401081.7752603-.4192683 1.0232324zm3.4753588-8.6155585c-.2141358.3970777-.4684534.7394704-.7634529 1.0281785-.2941103.2886524-.8230865.7738152-1.586595 1.4559331-.2105234.1924535-.3799203.3613991-.5068568.5068368-.1269364.1459378-.2218054.2791492-.2837175.4002454-.0623567.1210407-.110208.2421369-.1441096.3631775-.0339016.120596-.0849207.3333897-.1540577.6373806-.117433.6451054-.4865158.9676025-1.106804.9676025-.3225654 0-.5936115-.1052575-.8145276-.3162172-.220027-.2109597-.3297904-.5240092-.3297904-.9395932 0-.5208415.0808637-.9721596.2421464-1.3538433.1603935-.3817392.3749739-.7164627.6415183-1.0051151.266989-.2886525.6265683-.6311007 1.0796827-1.0281785.3970933-.3473943.6839787-.6093712.8606005-.7860416.1770664-.1770594.3257333-.3740144.446334-.590865.1215456-.2172951.1811791-.4526519.1811791-.7069595 0-.4964444-.1838467-.9147514-.5533742-1.2558104-.3690828-.3410589-.8452614-.5118384-1.4284801-.5118384-.6825893 0-1.1849444.1721133-1.5075098.5163399-.3225654.3442267-.5949453.8510635-.8185847 1.5210106-.2114126.7011242-.6116738 1.0516307-1.200339 1.0516307-.3474081 0-.6405736-.12243-.8795521-.3672899-.2385339-.24486-.3578008-.5100045-.3578008-.7954892 0-.5890867.1892932-1.1862871.567435-1.7911568.3785864-.6048697.9306267-1.10587118 1.6565656-1.50250431.7254943-.39707773 1.5725898-.59586667 2.5397858-.59586667.8994484 0 1.6931905.16622246 2.3816709.49827835.6884804.33155574 1.2206244.78287393 1.5960429 1.35384333.374974.5705248.5628833 1.1907886.5628833 1.8607356.0008837.5263434-.1061564.9884985-.3202923 1.3855762z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
	border-color: var(--color-help);
}

.form-message .success {
	background-color: var(--color-successlight);
	background-image: url("data:image/svg+xml,%3Csvg height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m16 4c6.63 0 12 5.37 12 12s-5.37 12-12 12-12-5.37-12-12 5.37-12 12-12zm0 1.6875c-5.6980195 0-10.3125 4.6144805-10.3125 10.3125s4.6144805 10.3125 10.3125 10.3125 10.3125-4.6144805 10.3125-10.3125-4.6144805-10.3125-10.3125-10.3125zm6.1588512 5.8627863c.0025742.0025545.005134.0051234.0076794.0077066.3826574.3883299.3815551 1.01228-.002472 1.3992554l-7.5148374 7.572533c-.3334527.3360127-.8761615.338088-1.2121742.0046354-.0015511-.0015392-.0030963-.0030844-.0046355-.0046354l-3.59894211-3.6265732c-.38226603-.3852009-.38226603-1.006628 0-1.3918289.37903691-.3819469.99593611-.384306 1.37788311-.0052691l.0043113.0043053 2.8251525 2.8389128 6.7420178-6.7937799c.3785236-.3814297.9945874-.3837856 1.3760171-.005262z' fill='%2338ca73'%3E%3C/path%3E%3C/svg%3E");
	border-color: var(--color-success);
}

.form-message .info {
	background-color: var(--color-infolight);
	background-image: url("data:image/svg+xml,%3Csvg height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230088df'%3E%3Cpath d='m16 4c6.63 0 12 5.37 12 12s-5.37 12-12 12-12-5.37-12-12 5.37-12 12-12zm0 1.6875c-5.6980195 0-10.3125 4.6144805-10.3125 10.3125s4.6144805 10.3125 10.3125 10.3125 10.3125-4.6144805 10.3125-10.3125-4.6144805-10.3125-10.3125-10.3125z'%3E%3C/path%3E%3Cpath d='m0 0h2.400017v2.400023h-2.400017z' transform='matrix(1 0 0 -1 15 12.400022)'%3E%3C/path%3E%3Cpath d='m0 4.799989h2.400017v7.200011h-2.400017z' transform='matrix(1 0 0 -1 15 26.799988)'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
	border-color: var(--color-info);
}

.form-message .warning {
	background-color: var(--color-warninglight);
	background-image: url("data:image/svg+xml,%3Csvg height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m7.51175785 27c-1.21116724 0-2.32813258-.669486-2.96063102-1.7215355-.71324293-1.1886792-.71324293-2.6096291-.12111672-3.8529603l7.84567219-14.03448273c.8881893-1.32530904 2.0455269-2.39102147 3.7277036-2.39102147s2.8395143 1.06571243 3.7277036 2.39102147l7.8053 13.96616783c.6459558 1.2160052.619041 2.746259-.0942019 3.9212752-.6324985 1.0520495-1.7360064 1.7215355-2.9606311 1.7215355zm8.49162805-6.804164c.7132429 0 1.2784543.5875082 1.2784543 1.3116461s-.5652114 1.2979831-1.2784543 1.2979831-1.2919117-.5738452-1.2919117-1.2979831.5786688-1.3116461 1.2919117-1.3116461zm0-1.297983c-.4710095 0-.8074448-.3962265-.8612745-.8744307l-.4306372-3.9212753c-.0672871-.669486.6324984-1.297983 1.2919117-1.297983s1.3591988.628497 1.2784543 1.297983l-.4306372 3.9212753c-.0403723.4645413-.3633502.8744307-.8478171.8744307zm-8.49162805 6.3669486h16.96979865c.6324985 0 1.170795-.3552375 1.5072304-.9017567.390265-.655823.3768076-1.4482759.067287-2.1314249l-7.7514703-13.87052696c-.5517539-.81977879-1.238082-1.6258946-2.3012177-1.6258946s-1.7629212.80611581-2.3146752 1.6258946l-7.73801284 13.87052696c-.32297793.696812-.33643535 1.4756019.06728706 2.1314249.32297793.5465192.86127448.9017567 1.49377293.9017567z' fill='%23ec7a09'%3E%3C/path%3E%3C/svg%3E");
	border-color: var(--color-warning);
}

.form-message .error {
	background-color: var(--color-errorlight);
	background-image: url("data:image/svg+xml,%3Csvg height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f60000'%3E%3Cpath d='m16 4c6.6274416 0 12 5.37261464 12 12 0 6.6273854-5.3726146 12-12 12-6.62738536 0-12-5.3726146-12-12 0-6.62738536 5.37261464-12 12-12zm0 1.7c-5.6885013 0-10.3 4.6114987-10.3 10.3s4.6114987 10.3 10.3 10.3 10.3-4.6114987 10.3-10.3c0-5.6885219-4.6114631-10.3-10.3-10.3z'%3E%3C/path%3E%3Cpath d='m20.2792452 11.8792201-.1584717-.1584665c-.4260336-.4260195-1.116759-.4260081-1.5427785.0000254-.000455.0004551-.0009096.0009105-.0013638.0013663l-2.5766312 2.5858521-2.5766185-2.5858393c-.4252649-.4267867-1.1159892-.4280205-1.5427759-.0027556-.0004601.0004585-.0009198.0009173-.0013791.0013766l-.1584474.1584474c-.4260265.4260265-.4260265 1.116752 0 1.5427785.0004593.0004592.0009189.0009181.001379.0013765l2.5858393 2.5766185-2.5858521 2.5766312c-.4267867.4252649-.4280204 1.1159892-.0027555 1.542776.0004542.0004558.0009088.0009112.0013638.0013663l.1584665.1584717c.4260194.4260335 1.1167449.4260449 1.5427784.0000254.0004657-.0004656.0009309-.0009317.0013957-.0013982l2.5766058-2.5858698 2.5766185 2.5858826c.4252613.4267903 1.1159856.4280298 1.5427759.0027685.0004623-.0004606.0009241-.0009216.0013855-.001383l.1584908-.1584908c.4260265-.4260265.4260265-1.1167519 0-1.5427784-.0004614-.0004614-.0009233-.0009224-.0013855-.001383l-2.5858826-2.5766185 2.5858698-2.5766058c.4267903-.4252613.4280298-1.1159856.0027685-1.5427759-.0004648-.0004665-.0009301-.0009326-.0013957-.0013982z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
	border-color: var(--color-error);
}

.form-field.displayError .label-title,
.form-field.displayError .checkbox-uni label {
	color: var(--color-error);
}

.form-field.displayError input,
.form-field.displayError div.select,
.form-field.displayError textarea,
.form-field.displayError .checkbox-uni .magic-checkbox+label:before{
	border-color: var(--color-error) !important;
}






/*
 *
 * Slim Scrollbar (Minicart, Product List Filters)
 * Customizar se necess�rio
 *
*/
/* Firefox used (scrollbar-width and scrollbar-color) */
@-moz-document url-prefix() {
	body:not(.MacOS) .slim-scrollbar {
		scrollbar-color: #AAA lightgray;
	}
}
.slim-scrollbar::-webkit-scrollbar,
.overlay-size-guide .tabs-container .tabs-content::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}
.slim-scrollbar::-webkit-scrollbar-track,
.overlay-size-guide .tabs-container .tabs-content::-webkit-scrollbar-track {
	background: lightgray;
}
.slim-scrollbar::-webkit-scrollbar-thumb,
.overlay-size-guide .tabs-container .tabs-content::-webkit-scrollbar-track {
	background-color: #AAA;
	border-radius: 8px;
}







/*
 *
 * Geral
 *
*/
.overlay::before {background-color: var(--color-overlay);content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 90;}
.menu-mobile-opened .overlay::before {background-color: rgba(0, 0, 0, .5);}
#containerSite-mask {background-color: transparent;}
.border-color {border-color: lightgray;}

/* CONTAINER => max-width: (1902px | 1600px | 1440px) + (--container-padding * 2) */
.container {max-width: calc(2560px + var(--container-padding) * 2);padding-left: var(--container-padding);padding-right: var(--container-padding);}
/* Se o max-width do container for (1902px), colocar o CSS abaixo */
.rdc-container-fullscreen {max-width: 2560px;padding-left: 0;padding-right: 0;}
@media screen and (max-width: 1440px) {
	.container {max-width: 1404px}
}
@media screen and (max-width: 1366px) {
	.container {max-width: 1332px}
}
@media screen and (max-width: 1280px) {
	.container {max-width: 1242px}
}
@media screen and (width: 1920px) {
	body.windows .container {max-width: 1902px;}
}



/*
 *
 * Sliders
 *
*/
.slider .slick-arrow, .rdc-slider-arrow {
	background-position: center !important;
	background-size: 40px;
}

.slick-dots li button {background-color: var(--color-gray);border-color: var(--color-gray);}
.slick-dots li.slick-active button {background-color: var(--color-darkgray);border-color: var(--color-darkgray);}

@media (hover) {
	.slider .slick-arrow:hover, .rdc-slider-arrow:hover {opacity: 0.8;}
}

.slider .slick-arrow.slick-prev, .rdc-slider-prev {
	background-image: url("data:image/svg+xml,%3Csvg 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.8373 7.15506C21.0542 7.36181 21.0542 7.69701 20.8373 7.90376L12.3412 16L20.8373 24.0962C21.0542 24.303 21.0542 24.6382 20.8373 24.8449C20.6203 25.0517 20.2686 25.0517 20.0516 24.8449L11.1627 16.3744C10.9458 16.1676 10.9458 15.8324 11.1627 15.6256L20.0516 7.15506C20.2686 6.94831 20.6203 6.94831 20.8373 7.15506Z' fill='%23333333'/%3E%3C/svg%3E%0A");
}

.slider .slick-arrow.slick-next, .rdc-slider-next {
	background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.1627 7.15506C10.9458 7.36181 10.9458 7.69701 11.1627 7.90376L19.6588 16L11.1627 24.0962C10.9458 24.303 10.9458 24.6382 11.1627 24.8449C11.3797 25.0517 11.7314 25.0517 11.9484 24.8449L20.8373 16.3744C21.0542 16.1676 21.0542 15.8324 20.8373 15.6256L11.9484 7.15506C11.7314 6.94831 11.3797 6.94831 11.1627 7.15506Z' fill='%23333333'/%3E%3C/svg%3E%0A");
}

.slider .slick-disabled {visibility: hidden;}

@media screen and (max-width: 767px) {
	.slider .slick-arrow, .rdc-slider-arrow {background-size: 30px;}
}






/*
 *
 * 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: 24px;}
}
body .rdc-icon-svg.rdc-icon-menu {background-image: url("data:image/svg+xml,%3Csvg height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='m0 0h32v32h-32z'%3E%3C/path%3E%3Cg fill='%23000'%3E%3Cpath d='m6 9h20v1h-20z'%3E%3C/path%3E%3Cpath d='m6 15h20v1h-20z'%3E%3C/path%3E%3Cpath d='m6 21h20v1h-20z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-menu-close{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 16.8058L9.20869 23.5971C8.98618 23.8196 8.62541 23.8196 8.4029 23.5971C8.18038 23.3746 8.18038 23.0138 8.4029 22.7913L15.1942 16L8.4029 9.20869C8.18038 8.98618 8.18038 8.62541 8.4029 8.4029C8.62541 8.18038 8.98618 8.18038 9.20869 8.4029L16 15.1942L22.7913 8.4029C23.0138 8.18038 23.3746 8.18038 23.5971 8.4029C23.8196 8.62541 23.8196 8.98618 23.5971 9.20869L16.8058 16L23.5971 22.7913C23.8196 23.0138 23.8196 23.3746 23.5971 23.5971C23.3746 23.8196 23.0138 23.8196 22.7913 23.5971L16 16.8058Z' fill='%23000000'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-share {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.1727 20.911L13.3101 17.255C13.4463 16.8573 13.5225 16.4304 13.5225 15.9848C13.5225 15.5394 13.4464 15.1127 13.3105 14.7152L19.1741 11.0874C19.8542 12.0707 20.972 12.7179 22.2389 12.7179C24.3176 12.7179 26 10.9823 26 8.85897C26 6.73566 24.3176 5 22.2389 5C20.1603 5 18.4778 6.73566 18.4778 8.85897C18.4778 9.28655 18.5489 9.69628 18.6745 10.0794L12.7988 13.7149C12.1157 12.7545 11.0103 12.1258 9.76108 12.1258C7.68241 12.1258 6 13.8615 6 15.9848C6 18.1081 7.68241 19.8438 9.76108 19.8438C11.0101 19.8438 12.115 19.2153 12.7981 18.2553L18.6734 21.919C18.5462 22.3082 18.4775 22.7197 18.4775 23.1429C18.4775 23.7924 18.6331 24.4184 18.9264 24.975C19.0977 25.2999 19.3158 25.6012 19.5774 25.8698C20.3102 26.6227 21.2743 27 22.2386 27C23.2028 27 24.167 26.6226 24.8998 25.8698C25.6094 25.1407 25.9996 24.1716 25.9996 23.1429C25.9996 22.1141 25.6094 21.1446 24.8997 20.4159C23.4328 18.9085 21.0446 18.9085 19.5777 20.416C19.4268 20.571 19.2925 20.7372 19.1727 20.911ZM19.2309 21.1787L13.0712 17.3374C13.2341 16.9184 13.3264 16.4628 13.3264 15.9848C13.3264 15.5068 13.2341 15.0512 13.0715 14.6322L19.2327 10.8202L13.0715 14.6322C13.2341 15.0512 13.3264 15.5068 13.3264 15.9848C13.3264 16.4628 13.2341 16.9184 13.0712 17.3374L19.2309 21.1787ZM22.2389 6.12536C23.6985 6.12536 24.8948 7.34721 24.8948 8.85897C24.8948 10.3707 23.6985 11.5926 22.2389 11.5926C20.7793 11.5926 19.583 10.3707 19.583 8.85897C19.583 7.34719 20.779 6.12536 22.2389 6.12536ZM9.76143 18.7184C8.30183 18.7184 7.10551 17.4966 7.10551 15.9848C7.10551 14.473 8.30183 13.2512 9.76143 13.2512C11.221 13.2512 12.4174 14.473 12.4174 15.9848C12.4174 17.4966 11.221 18.7184 9.76143 18.7184ZM24.1149 25.0776C23.0799 26.1409 21.3976 26.1409 20.3626 25.0776C19.8601 24.5614 19.583 23.8747 19.583 23.1429C19.583 22.411 19.8601 21.7243 20.3626 21.2081C20.8807 20.6758 21.5597 20.4107 22.2389 20.4107C22.9181 20.4107 23.5971 20.6758 24.1153 21.2081C24.6177 21.7243 24.8948 22.411 24.8948 23.1429C24.8948 23.8747 24.6177 24.5614 24.1149 25.0776Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-social-fb {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27 25.9C27 26.5659 26.6639 27 25.9856 27H20.2778V18.6757H23.1806L23.6206 15.1081H20.2778V13.253C20.2778 12.3016 20.5406 11.5405 21.9461 11.5405H23.9444V8.70432C23.3333 8.6627 22.3861 8.57351 21.1456 8.57351C18.5667 8.57351 16.6111 10.1076 16.6111 12.9259V15.1081H13.5556V18.6757H16.6111V27H6.02667C5.34222 27 5 26.5659 5 25.9V6.48054C5 5.81459 5.34222 5 6.02667 5H25.9856C26.6639 5 27 5.81459 27 6.48054V25.9Z' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-social-in {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.2915 27H9.70854C7.11222 27 5 24.8876 5 22.2913V9.7087C5 7.11222 7.11222 5 9.70854 5H22.2915C24.8878 5 27 7.11222 27 9.7087V22.2913C27 24.8876 24.8878 27 22.2915 27ZM9.71065 7.56836C8.5303 7.56836 7.57031 8.52867 7.57031 9.70885V22.2915C7.57031 23.4718 8.5303 24.4318 9.71065 24.4318H22.2936C23.4738 24.4318 24.4339 23.4718 24.4339 22.2915V9.70885C24.4339 8.52867 23.4738 7.56836 22.2936 7.56836H9.71065ZM12.4883 16C12.4883 14.0651 14.0625 12.4911 15.9974 12.4911C17.9324 12.4911 19.5066 14.0651 19.5066 16C19.5066 17.9349 17.9324 19.5089 15.9974 19.5089C14.0625 19.5089 12.4883 17.9349 12.4883 16ZM16.0011 22.0775C12.6501 22.0775 9.92383 19.3511 9.92383 16.0002C9.92383 12.6493 12.6501 9.92291 16.0011 9.92291C19.3521 9.92291 22.0787 12.6493 22.0787 16.0002C22.0787 19.3511 19.3521 22.0775 16.0011 22.0775ZM22.223 11.207C22.8271 11.207 23.3171 10.7171 23.3171 10.1129C23.3171 9.50863 22.8271 9.01892 22.223 9.01892C21.6188 9.01892 21.1289 9.50863 21.1289 10.1129C21.1289 10.7171 21.6188 11.207 22.223 11.207Z' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-social-lk {background-image: url("data:image/svg+xml,%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.44538 9.76909C5.96025 9.76909 5 8.70193 5 7.38209C5 6.03527 5.98928 5 7.50585 5C9.02242 5 9.95123 6.03527 9.98026 7.38209C9.98026 8.70193 9.02242 9.76909 7.44538 9.76909ZM9.82515 27.0006H5.12305V11.6531H9.82515V27.0006ZM22.297 27.0006H26.9991V17.9261C26.9991 13.4072 24.6795 11.3048 21.5859 11.3048C19.0486 11.3048 17.532 12.7816 16.9128 13.7826H16.8185L16.6032 11.6507H12.5179C12.5808 13.0294 12.6413 14.6314 12.6413 16.5474V26.9981H17.3458V18.1493C17.3458 17.7102 17.3772 17.2686 17.503 16.9571C17.8441 16.0813 18.6157 15.1711 19.9145 15.1711C21.6149 15.1711 22.297 16.5155 22.297 18.4952V27.0006Z' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-social-pi {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.3369 20.9523C16.0832 20.85 15.5581 20.186 14.5772 19.5503C14.0378 22.5785 13.3785 25.4826 11.4247 27C10.8202 22.4196 12.3079 18.9843 12.9999 15.3334C11.8215 13.2108 13.1403 8.94173 15.6273 9.99105C18.6862 11.2885 12.9775 17.8827 16.8098 18.7078C20.8109 19.5655 22.4452 11.2798 19.9643 8.58906C16.3783 4.69874 9.52992 8.4998 10.3725 14.0686C10.576 15.4292 11.8928 15.8428 10.8976 17.7216C8.60391 17.1773 7.91805 15.242 8.0076 12.6622C8.14803 8.43884 11.5549 5.48029 14.97 5.07319C19.2907 4.55942 23.3447 6.76908 23.9065 11.1187C24.5353 16.0257 21.9547 21.3354 17.3369 20.9523Z' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-social-tm {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.9981 25.7979C21.2343 26.2428 20.5443 26.5504 19.9263 26.7326C19.3083 26.9077 18.6398 27 17.9226 27C17.1064 27 16.3853 26.8699 15.7576 26.6166C15.1299 26.3634 14.5954 26.0014 14.1523 25.5305C13.7092 25.0643 13.4021 24.5603 13.2311 24.0326C13.0601 23.5002 12.9746 22.7335 12.9746 21.7301V14.0111H11V10.9017C11.6977 10.6201 12.3021 10.2178 12.8016 9.69011C13.3011 9.16715 13.7034 8.54007 14.0046 7.80413C14.3078 7.07056 14.5157 6.13112 14.6304 5H17.1705V10.5609H21.4072V14.0111H17.1705V19.6548C17.1705 20.9303 17.2249 21.7491 17.3357 22.1087C17.4445 22.4732 17.6486 22.7595 17.9479 22.9772C18.3443 23.2683 18.7972 23.415 19.3025 23.415C20.2081 23.415 21.106 23.0506 22 22.3241V25.7979H21.9981Z' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-social-tw {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.3263 7H25.6998L18.3297 15.0482L27 26H20.2112L14.894 19.3578L8.80995 26H5.43443L13.3174 17.3915L5 7H11.9611L16.7674 13.0712L22.3263 7ZM21.1423 24.0708H23.0116L10.9454 8.8279H8.93946L21.1423 24.0708Z' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-social-vm {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.8905 11.3203C25.6616 17.8133 18.7913 23.3155 16.7278 24.5713C14.6619 25.8227 12.775 24.0659 12.0928 22.7365C11.309 21.2179 8.96491 12.9993 8.35046 12.3157C7.736 11.6343 5.89265 12.9993 5.89265 12.9993L5 11.8993C5 11.8993 8.74235 7.70645 11.5896 7.1854C14.6087 6.62873 14.6038 11.5297 15.3296 14.2529C16.0335 16.887 16.5052 18.3923 17.1173 18.3923C17.7317 18.3923 18.905 16.9271 20.1871 14.6737C21.4741 12.4203 20.1339 10.4297 17.6205 11.8458C18.6244 6.19008 28.1194 4.82735 26.8905 11.3203Z' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-social-yt {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 16C4 23.9777 4.2064 25 16 25C27.7936 25 28 23.9777 28 16C28 8.02231 27.7936 7 16 7C4.2064 7 4 8.02231 4 16ZM14.458 13.1961L19.8484 15.6146C20.3188 15.8269 20.3188 16.1731 19.846 16.3854L14.458 18.8038C13.9876 19.0138 13.6012 18.7784 13.6012 18.2777V13.7223C13.6012 13.2215 13.9876 12.9861 14.458 13.1961Z' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-social-wa {background-image: url("data:image/svg+xml,%0A%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.4715 6.8878C19.0807 6.20526 17.5521 5.85013 16.0028 5.84961C14.2356 5.84928 12.4989 6.31026 10.9646 7.18696C9.43031 8.06366 8.15146 9.32569 7.25459 10.8482C6.35771 12.3708 5.87388 14.1011 5.85095 15.8679C5.82831 17.6128 6.25592 19.3336 7.09199 20.8644L5.92266 24.3712C5.84333 24.609 5.83182 24.8643 5.88942 25.1083C5.94702 25.3524 6.07144 25.5755 6.24876 25.7528C6.42607 25.9301 6.64927 26.0546 6.89332 26.1122C7.13737 26.1697 7.39265 26.1582 7.63053 26.0789L11.1376 24.9097C12.4778 25.6408 13.9659 26.0604 15.4913 26.1369C17.0386 26.2144 18.5832 25.9368 20.0067 25.3252C21.4301 24.7136 22.6947 23.7843 23.7035 22.6085C24.7123 21.4327 25.4385 20.0416 25.8266 18.5418C26.2146 17.042 26.2541 15.4733 25.9422 13.9558C25.6302 12.4383 24.975 11.0124 24.0267 9.78729C23.0785 8.56216 21.8624 7.57033 20.4715 6.8878ZM16.0027 25.0496C14.4114 25.0501 12.8481 24.6311 11.4704 23.8347C11.387 23.7867 11.2917 23.7611 11.1954 23.7606C11.136 23.7606 11.0763 23.7705 11.02 23.7896L7.28261 25.0353C7.23855 25.05 7.19127 25.0521 7.14607 25.0415C7.10087 25.0308 7.05954 25.0078 7.0267 24.9749C6.99386 24.9421 6.97082 24.9008 6.96016 24.8556C6.94949 24.8104 6.95163 24.7631 6.96632 24.719L8.21241 20.981C8.23709 20.9072 8.24581 20.829 8.23799 20.7515C8.23017 20.674 8.20592 20.5989 8.16694 20.5315C7.16911 18.8068 6.76837 16.8011 7.0269 14.8254C7.28543 12.8498 8.18877 11.0147 9.59679 9.6048C11.0048 8.19491 12.8388 7.28905 14.8142 7.02776C16.7897 6.76648 18.7961 7.16436 20.5223 8.1597C22.2485 9.15503 23.598 10.6922 24.3613 12.5327C25.1247 14.3731 25.2593 16.4141 24.7442 18.3388C24.2291 20.2636 23.0932 21.9646 21.5127 23.178C19.9321 24.3914 17.9953 25.0493 16.0027 25.0496Z' fill='%231C0061'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.2039 11.4942C12.7586 11.594 12.3517 11.8278 12.0402 12.1677C11.6605 12.5818 11.45 13.1232 11.45 13.685C11.452 15.5051 12.1758 17.2501 13.4627 18.5371C14.7496 19.8242 16.4945 20.5481 18.3145 20.55C18.8762 20.5503 19.4176 20.3399 19.8318 19.9604C20.1718 19.6489 20.4057 19.2421 20.5057 18.7968C20.5029 18.7943 20.4992 18.7918 20.4947 18.7895L18.4009 17.7429C18.3848 17.7348 18.3658 17.736 18.3508 17.7459L17.0015 18.6434V18.6434C16.8873 18.7197 16.7554 18.7671 16.6187 18.7806C16.4818 18.794 16.3437 18.7735 16.2166 18.7207L16.2148 18.7199C14.8904 18.1628 13.8369 17.1091 13.2798 15.7847L13.2783 15.7811C13.2262 15.6542 13.2062 15.5163 13.22 15.3798C13.2338 15.2437 13.2808 15.1131 13.3569 14.9994L13.3577 14.9983L14.2547 13.6494C14.2646 13.6345 14.2658 13.6154 14.2578 13.5994L13.2111 11.5051C13.2089 11.5007 13.2063 11.497 13.2039 11.4942ZM13.0309 10.6108C13.4648 10.5171 13.8484 10.767 14.0162 11.1028L15.0628 13.197C15.215 13.5016 15.1926 13.8643 15.0041 14.1478L14.1243 15.4708C14.5891 16.5507 15.4501 17.4115 16.5302 17.876L17.8524 16.9966C18.1359 16.808 18.4987 16.7856 18.8033 16.9378L20.8972 17.9845C21.2331 18.1524 21.4829 18.5361 21.3891 18.97C21.2522 19.6031 20.9221 20.182 20.4398 20.624C19.8595 21.1557 19.1009 21.4504 18.3138 21.45C16.2554 21.4478 14.2817 20.6291 12.8263 19.1735C11.3708 17.7179 10.5522 15.7443 10.55 13.6857C10.5499 12.8986 10.8449 12.1397 11.3767 11.5595C11.8188 11.0773 12.3978 10.7475 13.0309 10.6108Z' fill='%231C0061'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-social-ms {background-image: url("data:image/svg+xml,%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 5.00214L15.5203 5.00315C9.79264 5.14064 5.13207 9.75948 5 15.5428C5.01551 18.5685 6.35541 21.4357 8.66665 23.3887V26.5417L8.68303 26.6635C8.73639 26.8575 8.91406 27 9.125 27C9.21089 27 9.29507 26.9759 9.3679 26.9304L11.9227 25.3346L12.4852 25.533C13.6194 25.8997 14.8055 26.0858 16 26.0834C21.9449 26.2006 26.8643 21.4867 27 15.5428C26.8643 9.59883 21.9449 4.88493 16 5.00214ZM17.8877 14.9882L22.6544 12.3898C22.8546 12.2806 23.1047 12.3353 23.241 12.5181C23.3782 12.6999 23.361 12.9548 23.2007 13.1166L17.7007 18.616C17.5314 18.7854 17.2602 18.7958 17.0783 18.6399L14.1102 16.0964L9.34353 18.6949C9.1656 18.7914 8.94547 18.7598 8.80191 18.6171C8.62235 18.4386 8.62149 18.1485 8.79994 17.969L14.2999 12.4695C14.4693 12.3001 14.7405 12.2898 14.9223 12.4456L17.8877 14.9882Z' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-social-em {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.69039 8.70294C6.13244 8.25286 6.73199 8 7.35714 8H24.6429C25.268 8 25.8676 8.25286 26.3096 8.70294C26.7517 9.15303 27 9.76348 27 10.4V21.6C27 22.2365 26.7517 22.847 26.3096 23.2971C25.8676 23.7471 25.268 24 24.6429 24H7.35714C6.73199 24 6.13244 23.7471 5.69039 23.2971C5.24834 22.847 5 22.2365 5 21.6V10.4C5 9.76348 5.24834 9.15303 5.69039 8.70294ZM7.35714 9.6C7.14876 9.6 6.94891 9.68429 6.80156 9.83431C6.74185 9.89511 6.69274 9.96468 6.65545 10.0401L15.5529 16.3117C15.6843 16.4043 15.8403 16.4539 16 16.4539C16.1597 16.4539 16.3157 16.4043 16.4471 16.3117L25.3446 10.0401C25.3073 9.96468 25.2582 9.89511 25.1984 9.83431C25.0511 9.68429 24.8512 9.6 24.6429 9.6H7.35714ZM25.4286 11.9268L17.3414 17.6274C16.9473 17.905 16.4792 18.0539 16 18.0539C15.5208 18.0539 15.0529 17.9051 14.6588 17.6275L6.57143 11.9268V21.6C6.57143 21.8122 6.65421 22.0157 6.80156 22.1657C6.94891 22.3157 7.14876 22.4 7.35714 22.4H24.6429C24.8512 22.4 25.0511 22.3157 25.1984 22.1657C25.3458 22.0157 25.4286 21.8122 25.4286 21.6V11.9268Z' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-phone {background-image: url("data:image/svg+xml,%0A%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.34777 6.00001L9.5075 6.00497C9.93099 6.03693 10.3318 6.21786 10.6385 6.51963L13.6347 9.516C14.3535 10.2665 14.3337 11.4581 13.5923 12.1821L12.2577 13.5186L12.5064 13.984C13.1472 15.1435 13.9417 16.2111 14.8666 17.1552C15.7952 18.0701 16.8412 18.8557 17.9804 19.4938L18.497 19.7733L19.8302 18.4363C20.1944 18.0779 20.6847 17.8777 21.1912 17.8791C21.6727 17.8721 22.1372 18.0575 22.4843 18.3967L25.4738 21.3968C26.1922 22.1452 26.1724 23.3351 25.4303 24.0582L24.7366 24.7413L24.6982 24.7755L24.5299 24.9073C24.135 25.2167 23.697 25.4665 23.2305 25.6483C22.8055 25.8156 22.3611 25.9282 21.9006 25.9844C21.7695 25.9962 21.6378 26.0013 21.5087 25.9997C18.7552 25.9997 15.1666 24.5764 11.3148 20.7137C7.18912 16.5764 5.65533 13.4917 6.06365 10.0956C6.11716 9.64284 6.22735 9.19864 6.39202 8.77254C6.57332 8.30967 6.81902 7.87486 7.10733 7.50226L7.1674 7.40255C7.18944 7.36632 7.21568 7.33283 7.24511 7.30325L7.98022 6.55989C8.3446 6.19975 8.83613 5.99857 9.34777 6.00001ZM9.3542 7.07217L9.23502 7.07932C9.08563 7.09856 8.94389 7.15646 8.82444 7.24674L8.73927 7.32041L8.05399 8.0075L7.83106 8.31702C7.65142 8.58125 7.50237 8.86541 7.38704 9.16388C7.25614 9.50397 7.16825 9.85917 7.12536 10.2216C6.76165 13.2437 8.18199 16.0566 12.0703 19.9579C15.6097 23.5026 18.8393 24.8562 21.305 24.9268L21.5087 24.9298L21.7141 24.924L21.7853 24.9191C22.1478 24.8747 22.5033 24.7845 22.8442 24.6506C23.1399 24.5356 23.421 24.3864 23.6813 24.2065L23.8726 24.0659L24.008 23.9608L24.6802 23.2991C24.838 23.1406 24.9288 22.926 24.9325 22.701C24.9358 22.5303 24.8814 22.3645 24.7797 22.2301L24.7131 22.1534L21.729 19.1589C21.5872 19.0174 21.3947 18.9388 21.1906 18.9408C21.0001 18.9393 20.8155 19.0006 20.6657 19.1123L20.5802 19.1853L18.968 20.802C18.8245 20.9539 18.6085 21.0063 18.4113 20.9413L18.3283 20.9062L17.8969 20.6665C16.5043 19.9484 15.2276 19.0239 14.1069 17.9214C13.1104 16.9056 12.2571 15.7589 11.5742 14.5206L11.353 14.1045L11.1133 13.69C11.0101 13.5062 11.0251 13.2817 11.1446 13.1147L11.2022 13.047L12.8339 11.419C13.1303 11.1335 13.1665 10.6776 12.9385 10.355L12.8697 10.2706L9.88598 7.28043C9.7673 7.16555 9.61455 7.09433 9.45241 7.07643L9.3542 7.07217Z' fill='%231C0061'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-notification {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M15.9952 5.11563C16.4151 5.11563 16.7812 5.35256 16.9689 5.7008C17.1139 5.96998 17.3504 6.23233 17.6562 6.23233C17.962 6.23233 18.2169 5.98069 18.1424 5.68411C17.8997 4.71706 17.0299 4 15.9963 4C14.9623 4 14.0923 4.71752 13.8499 5.68503C13.7757 5.98113 14.0301 6.23233 14.3354 6.23233C14.6414 6.23233 14.8778 5.96912 15.0228 5.69969C15.21 5.35205 15.5758 5.11563 15.9952 5.11563Z' fill='%23FFF'/%3E%3Cpath d='M15.991 26.8833C15.2911 26.8833 14.6475 26.6377 14.222 26.2075C14.1097 26.0942 13.9858 25.9395 13.8979 25.746C13.7716 25.4678 13.5331 25.2094 13.2275 25.2088C12.9214 25.2082 12.6667 25.4592 12.7369 25.7571C12.844 26.2114 13.0837 26.6389 13.438 26.997C14.0688 27.6342 14.9996 28 15.9899 28C17.5973 28 18.943 27.035 19.2496 25.7583C19.321 25.4611 19.0673 25.2094 18.7616 25.2088C18.4558 25.2082 18.2159 25.4659 18.0906 25.7449C17.7933 26.4065 16.9641 26.8833 15.991 26.8833Z' fill='%23FFF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25.5038 19.2681C25.5624 19.3301 25.6134 19.3991 25.6503 19.476C26.095 20.4037 26.0148 21.5264 25.9463 22.2793C25.934 22.4123 25.9429 22.5351 25.9508 22.6433C25.9551 22.7025 25.9591 22.7573 25.9591 22.807C25.9591 23.0066 25.8433 23.1879 25.6623 23.2719L25.6145 23.2941C23.2711 24.6146 20.166 25.2292 15.9718 25.2292C11.7786 25.2292 8.70865 24.6146 6.36632 23.2941L6.32884 23.2759C6.14879 23.1886 6.03444 23.0061 6.03444 22.806C6.03444 22.7563 6.03843 22.7016 6.04275 22.6425C6.05063 22.5346 6.05958 22.412 6.04721 22.2782C5.97487 21.493 5.91637 20.3087 6.42589 19.3604L6.48865 19.2671C6.64077 19.0858 6.82054 18.9173 7.01094 18.7393C7.75555 18.0431 8.7746 17.0894 8.99479 14.2864C9.29157 10.5608 11.7924 6.79023 15.9962 6.79023C20.2001 6.79023 22.7009 10.5608 22.9977 14.2864C23.2168 17.0904 24.2368 18.0441 24.9814 18.7402C25.1718 18.9172 25.3517 19.0858 25.5038 19.2681ZM24.5118 22.5959C24.6735 22.5166 24.7775 22.3555 24.7943 22.1763L24.7951 22.1682C24.8518 21.5399 24.9274 20.7022 24.6772 20.0701C24.6438 19.9857 24.5919 19.9101 24.5284 19.8453C24.4434 19.7586 24.345 19.6662 24.2369 19.5648L24.2305 19.5588C23.4019 18.7843 22.1488 17.6129 21.8946 14.3754C21.6468 11.2603 19.6948 7.90693 15.9973 7.90693C12.2998 7.90693 10.3479 11.2603 10.1 14.3754C9.84577 17.6118 8.59377 18.7833 7.76513 19.5578L7.75884 19.5637C7.65051 19.6653 7.55189 19.7579 7.46679 19.8447C7.4036 19.9092 7.35192 19.9844 7.3185 20.0683C7.06483 20.7049 7.14138 21.5467 7.19922 22.1763C7.20324 22.2244 7.20727 22.2714 7.21117 22.317C7.21906 22.4091 7.27293 22.491 7.35531 22.5328C9.4774 23.6091 12.2407 24.1125 15.9973 24.1125C19.6797 24.1125 22.4076 23.6288 24.5118 22.5959Z' fill='%23FFF'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-notification-em {background-image: url("data:image/svg+xml,%0A%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.69039 8.70294C6.13244 8.25286 6.73199 8 7.35714 8H24.6429C25.268 8 25.8676 8.25286 26.3096 8.70294C26.7517 9.15303 27 9.76348 27 10.4V21.6C27 22.2365 26.7517 22.847 26.3096 23.2971C25.8676 23.7471 25.268 24 24.6429 24H7.35714C6.73199 24 6.13244 23.7471 5.69039 23.2971C5.24834 22.847 5 22.2365 5 21.6V10.4C5 9.76348 5.24834 9.15303 5.69039 8.70294ZM7.35714 9.6C7.14876 9.6 6.94891 9.68429 6.80156 9.83431C6.74185 9.89511 6.69274 9.96468 6.65545 10.0401L15.5529 16.3117C15.6843 16.4043 15.8403 16.4539 16 16.4539C16.1597 16.4539 16.3157 16.4043 16.4471 16.3117L25.3446 10.0401C25.3073 9.96468 25.2582 9.89511 25.1984 9.83431C25.0511 9.68429 24.8512 9.6 24.6429 9.6H7.35714ZM25.4286 11.9268L17.3414 17.6274C16.9473 17.905 16.4792 18.0539 16 18.0539C15.5208 18.0539 15.0529 17.9051 14.6588 17.6275L6.57143 11.9268V21.6C6.57143 21.8122 6.65421 22.0157 6.80156 22.1657C6.94891 22.3157 7.14876 22.4 7.35714 22.4H24.6429C24.8512 22.4 25.0511 22.3157 25.1984 22.1657C25.3458 22.0157 25.4286 21.8122 25.4286 21.6V11.9268Z' fill='%23000'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-help {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.8548 22.6708C16.5761 22.9188 16.253 23.0435 15.8871 23.0435C15.5085 23.0435 15.1783 22.921 14.8964 22.6757C14.6141 22.4309 14.4727 22.088 14.4727 21.6476C14.4727 21.2568 14.6095 20.9279 14.8824 20.6614C15.1553 20.3949 15.49 20.2616 15.8871 20.2616C16.2779 20.2616 16.6068 20.3949 16.8738 20.6614C17.1403 20.9279 17.274 21.2568 17.274 21.6476C17.2735 22.0817 17.1339 22.4228 16.8548 22.6708Z' fill='%238B8D8F'/%3E%3Cpath d='M19.5683 15.0835C19.8633 14.7948 20.1176 14.4524 20.3317 14.0553C20.5459 13.6582 20.6529 13.196 20.652 12.6697C20.652 11.9998 20.4641 11.3795 20.0892 10.809C19.7137 10.238 19.1816 9.78668 18.4931 9.45513C17.8046 9.12307 17.0109 8.95685 16.1114 8.95685C15.1442 8.95685 14.2972 9.15564 13.5717 9.55271C12.8457 9.94935 12.2937 10.4503 11.9151 11.0552C11.5369 11.6601 11.3477 12.2573 11.3477 12.8464C11.3477 13.1319 11.4669 13.397 11.7055 13.6419C11.9444 13.8867 12.2376 14.0092 12.585 14.0092C13.1737 14.0092 13.5739 13.6586 13.7853 12.9575C14.009 12.2876 14.2814 11.7807 14.6039 11.4365C14.9265 11.0923 15.4289 10.9202 16.1114 10.9202C16.6947 10.9202 17.1708 11.091 17.5399 11.432C17.9095 11.7731 18.0933 12.1914 18.0933 12.6878C18.0933 12.9421 18.0337 13.1775 17.9121 13.3948C17.7915 13.6116 17.6429 13.8086 17.4658 13.9856C17.2892 14.1623 17.0023 14.4243 16.6052 14.7717C16.1521 15.1688 15.7925 15.5112 15.5255 15.7999C15.259 16.0885 15.0444 16.4232 14.884 16.805C14.7227 17.1867 14.6418 17.638 14.6418 18.1588C14.6418 18.5744 14.7516 18.8875 14.9716 19.0984C15.1925 19.3094 15.4636 19.4146 15.7862 19.4146C16.4064 19.4146 16.7755 19.0921 16.893 18.447C16.9621 18.143 17.0131 17.9302 17.047 17.8097C17.0809 17.6886 17.1288 17.5675 17.1911 17.4465C17.253 17.3254 17.3479 17.1922 17.4748 17.0462C17.6018 16.9008 17.7712 16.7318 17.9817 16.5394C18.7452 15.8573 19.2742 15.3721 19.5683 15.0835Z' fill='%238B8D8F'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M28 16C28 9.37 22.63 4 16 4C9.37 4 4 9.37 4 16C4 22.63 9.37 28 16 28C22.63 28 28 22.63 28 16ZM5.6875 16C5.6875 10.302 10.302 5.6875 16 5.6875C21.698 5.6875 26.3125 10.302 26.3125 16C26.3125 21.698 21.698 26.3125 16 26.3125C10.302 26.3125 5.6875 21.698 5.6875 16Z' fill='%238B8D8F'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-info {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 11.3091C15 11.9116 15.4884 12.4 16.0909 12.4H16.3091C16.9116 12.4 17.4 11.9116 17.4 11.3091V11.0909C17.4 10.4884 16.9116 10 16.3091 10H16.0909C15.4884 10 15 10.4884 15 11.0909V11.3091Z' fill='%231890FF'/%3E%3Cpath d='M16.0909 22C15.4884 22 15 21.5116 15 20.9091V15.8909C15 15.2884 15.4884 14.8 16.0909 14.8H16.3091C16.9116 14.8 17.4 15.2884 17.4 15.8909V20.9091C17.4 21.5116 16.9116 22 16.3091 22H16.0909Z' fill='%231890FF'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M28 16C28 9.37 22.63 4 16 4C9.37 4 4 9.37 4 16C4 22.63 9.37 28 16 28C22.63 28 28 22.63 28 16ZM5.6875 16C5.6875 10.302 10.302 5.6875 16 5.6875C21.698 5.6875 26.3125 10.302 26.3125 16C26.3125 21.698 21.698 26.3125 16 26.3125C10.302 26.3125 5.6875 21.698 5.6875 16Z' fill='%231890FF'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-info-stock {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M15 11.3091C15 11.9116 15.4884 12.4 16.0909 12.4H16.3091C16.9116 12.4 17.4 11.9116 17.4 11.3091V11.0909C17.4 10.4884 16.9116 10 16.3091 10H16.0909C15.4884 10 15 10.4884 15 11.0909V11.3091Z' fill='%23F93232'/%3E%3Cpath d='M16.0909 22C15.4884 22 15 21.5116 15 20.9091V15.8909C15 15.2884 15.4884 14.8 16.0909 14.8H16.3091C16.9116 14.8 17.4 15.2884 17.4 15.8909V20.9091C17.4 21.5116 16.9116 22 16.3091 22H16.0909Z' fill='%23F93232'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M28 16C28 9.37 22.63 4 16 4C9.37 4 4 9.37 4 16C4 22.63 9.37 28 16 28C22.63 28 28 22.63 28 16ZM5.6875 16C5.6875 10.302 10.302 5.6875 16 5.6875C21.698 5.6875 26.3125 10.302 26.3125 16C26.3125 21.698 21.698 26.3125 16 26.3125C10.302 26.3125 5.6875 21.698 5.6875 16Z' fill='%23F93232'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-success {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.82867 16.8984L13.4324 20.5298C13.7677 20.8676 14.314 20.8676 14.6492 20.5298L22.1718 12.9494C22.5515 12.5668 22.5526 11.9498 22.1743 11.5658C21.7898 11.1757 21.1609 11.1746 20.7751 11.5634L14.0408 18.3493L11.2205 15.5152C10.8366 15.1295 10.212 15.1299 9.82867 15.5162C9.44906 15.8987 9.44906 16.5158 9.82867 16.8984Z' fill='%233F9C35'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 4C22.63 4 28 9.37 28 16C28 22.63 22.63 28 16 28C9.37 28 4 22.63 4 16C4 9.37 9.37 4 16 4ZM16 5.6875C10.302 5.6875 5.6875 10.302 5.6875 16C5.6875 21.698 10.302 26.3125 16 26.3125C21.698 26.3125 26.3125 21.698 26.3125 16C26.3125 10.302 21.698 5.6875 16 5.6875Z' fill='%233F9C35'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-error {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.2785 11.8792C20.7051 12.3058 20.7045 12.9976 20.2771 13.4234L17.6913 16L20.2771 18.5766C20.7045 19.0024 20.7051 19.6942 20.2785 20.1208L20.12 20.2793C19.6935 20.7058 19.0017 20.7052 18.5759 20.2779L15.9993 17.692L13.4226 20.2779C12.9968 20.7052 12.305 20.7058 11.8785 20.2792L11.72 20.1208C11.2935 19.6942 11.2941 19.0024 11.7214 18.5766L14.3073 16L11.7214 13.4234C11.2941 12.9976 11.2935 12.3058 11.72 11.8792L11.8785 11.7208C12.305 11.2942 12.9968 11.2948 13.4226 11.7221L15.9993 14.308L18.5759 11.7221C19.0017 11.2948 19.6935 11.2942 20.12 11.7207L20.2785 11.8792Z' fill='%23F14244'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 4C22.6274 4 28 9.37261 28 16C28 22.6274 22.6274 28 16 28C9.37261 28 4 22.6274 4 16C4 9.37261 9.37261 4 16 4ZM16 5.7C10.3115 5.7 5.7 10.3115 5.7 16C5.7 21.6885 10.3115 26.3 16 26.3C21.6885 26.3 26.3 21.6885 26.3 16C26.3 10.3115 21.6885 5.7 16 5.7Z' fill='%23F14244'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-warning {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.55113 24.2785C5.18363 25.3305 6.30059 26 7.51176 26H24.4816C25.7062 26 26.8097 25.3305 27.4422 24.2785C28.1554 23.1034 28.1823 21.5732 27.5364 20.3572L19.7311 6.39102C18.8429 5.06571 17.6856 4 16.0034 4C14.3212 4 13.1639 5.06571 12.2757 6.39102L4.43001 20.4255C3.83788 21.6688 3.83788 23.0898 4.55113 24.2785ZM17.2818 20.5075C17.2818 19.7833 16.7166 19.1958 16.0034 19.1958C15.2901 19.1958 14.7115 19.7833 14.7115 20.5075C14.7115 21.2316 15.2901 21.8055 16.0034 21.8055C16.7166 21.8055 17.2818 21.2316 17.2818 20.5075ZM16.0034 17.8979C15.5324 17.8979 15.1959 17.5016 15.1421 17.0234L14.7115 13.1021C14.6442 12.4327 15.344 11.8042 16.0034 11.8042C16.6628 11.8042 17.3626 12.4327 17.2818 13.1021L16.8512 17.0234C16.8108 17.488 16.4879 17.8979 16.0034 17.8979ZM24.4816 24.2648H7.51176C6.87926 24.2648 6.34096 23.9096 6.01798 23.363C5.61426 22.7072 5.62772 21.9284 5.9507 21.2316L13.6887 7.36109C14.2405 6.54131 14.9403 5.7352 16.0034 5.7352C17.0665 5.7352 17.7528 6.54131 18.3046 7.36109L26.0561 21.2316C26.3656 21.9148 26.3791 22.7072 25.9888 23.363C25.6524 23.9096 25.1141 24.2648 24.4816 24.2648Z' fill='%23FAAD14'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-close {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 16.8058L9.20869 23.5971C8.98618 23.8196 8.62541 23.8196 8.4029 23.5971C8.18038 23.3746 8.18038 23.0138 8.4029 22.7913L15.1942 16L8.4029 9.20869C8.18038 8.98618 8.18038 8.62541 8.4029 8.4029C8.62541 8.18038 8.98618 8.18038 9.20869 8.4029L16 15.1942L22.7913 8.4029C23.0138 8.18038 23.3746 8.18038 23.5971 8.4029C23.8196 8.62541 23.8196 8.98618 23.5971 9.20869L16.8058 16L23.5971 22.7913C23.8196 23.0138 23.8196 23.3746 23.5971 23.5971C23.3746 23.8196 23.0138 23.8196 22.7913 23.5971L16 16.8058Z' fill='%23333333'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-delete {background-image: url("data:image/svg+xml,%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.9045 5.55467C19.2565 5.91023 19.4547 6.39302 19.4547 6.89699V8.50116H24.5111C24.6399 8.50116 24.764 8.55281 24.8559 8.64564C24.9479 8.73856 25 8.86515 25 8.99769C25 9.13023 24.9479 9.25681 24.8559 9.34973C24.764 9.44256 24.6399 9.49421 24.5111 9.49421H23.5765L22.3791 24.6108C22.3273 25.2624 22.0345 25.8699 21.5598 26.3124C21.0851 26.7549 20.4633 27.0001 19.8184 27H11.1815C10.5367 27.0001 9.91492 26.7549 9.44024 26.3124C8.9655 25.8699 8.67269 25.2624 8.62091 24.6108L7.42351 9.49421H6.48886C6.36008 9.49421 6.23602 9.44256 6.14413 9.34973C6.05215 9.25681 6 9.13023 6 8.99769C6 8.86514 6.05215 8.73856 6.14413 8.64564C6.23602 8.55281 6.36008 8.50116 6.48886 8.50116H11.5453V6.89699C11.5453 6.39302 11.7435 5.91023 12.0955 5.55467C12.4474 5.19921 12.924 5 13.4205 5H17.5795C18.076 5 18.5526 5.19921 18.9045 5.55467ZM21.4043 24.5308C21.3724 24.9321 21.192 25.3071 20.8984 25.5808C20.6046 25.8546 20.2191 26.007 19.8184 26.0069H11.1816C10.7809 26.007 10.3954 25.8546 10.1016 25.5808C9.80797 25.3071 9.62763 24.9321 9.59575 24.5309L8.40552 9.49421H22.5987L21.4043 24.5308ZM11.996 11.3023C11.9351 11.307 11.8755 11.3232 11.8204 11.3502C11.7627 11.3786 11.7108 11.4182 11.668 11.467C11.6251 11.5158 11.5921 11.5729 11.5709 11.6349C11.5498 11.6969 11.5409 11.7626 11.5449 11.8282L12.2394 23.7304C12.2502 23.8601 12.3105 23.9798 12.4069 24.0643C12.5036 24.1492 12.6288 24.192 12.7557 24.1843C12.8826 24.1766 13.0021 24.1189 13.0882 24.0227C13.174 23.9268 13.2198 23.8004 13.215 23.6703L12.522 11.7684C12.5144 11.6362 12.455 11.5129 12.358 11.4257C12.2611 11.3385 12.1344 11.2942 12.0059 11.3017L11.996 11.3023ZM15.5 11.3021C15.6288 11.3021 15.7528 11.3537 15.8447 11.4466C15.9367 11.5395 15.9889 11.6661 15.9889 11.7986V23.7025C15.9889 23.8351 15.9367 23.9617 15.8447 24.0546C15.7528 24.1474 15.6288 24.1991 15.5 24.1991C15.3712 24.1991 15.2472 24.1474 15.1553 24.0546C15.0633 23.9617 15.0111 23.8351 15.0111 23.7025V11.7986C15.0111 11.6661 15.0633 11.5395 15.1553 11.4466C15.2472 11.3537 15.3712 11.3021 15.5 11.3021ZM18.9941 11.3017C18.8656 11.2942 18.7389 11.3385 18.642 11.4257C18.545 11.5129 18.4857 11.6361 18.478 11.7683L17.7846 23.6766C17.7793 23.7428 17.7872 23.8093 17.8077 23.8723C17.8282 23.9353 17.8609 23.9934 17.9037 24.0431C17.9465 24.0929 17.9986 24.1334 18.0568 24.1623C18.1149 24.1913 18.1781 24.2082 18.2427 24.2121C18.3072 24.216 18.3719 24.2069 18.433 24.1852C18.4941 24.1636 18.5505 24.1297 18.5988 24.0856C18.6471 24.0414 18.6864 23.9879 18.7142 23.9279C18.7419 23.8679 18.7577 23.8028 18.7603 23.7365L18.7604 23.7328L19.4536 11.8288C19.4577 11.7632 19.4488 11.6969 19.4277 11.6349C19.4065 11.5729 19.3735 11.5158 19.3306 11.467C19.2878 11.4182 19.236 11.3786 19.1782 11.3502C19.1205 11.322 19.0579 11.3055 18.9941 11.3017ZM12.523 6.89699C12.523 6.65811 12.617 6.42848 12.785 6.25876C12.9531 6.08895 13.1816 5.99306 13.4205 5.99306H17.5795C17.8184 5.99306 18.0469 6.08895 18.215 6.25876C18.383 6.42848 18.477 6.65811 18.477 6.89699V8.50116H12.523V6.89699Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-edit {background-image: url("data:image/svg+xml,%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.9536 8.10309L8.72115 20.3365C8.51872 20.539 8.38069 20.7968 8.32454 21.0775L7.70035 24.1985L10.8204 23.5743C11.1011 23.5182 11.3589 23.3802 11.5613 23.1778L23.7957 10.9443C24.1564 10.5651 24.3549 10.0601 24.349 9.5367C24.3432 9.01135 24.1318 8.50919 23.7603 8.13774C23.3887 7.76629 22.8865 7.55508 22.3611 7.54934C21.8377 7.54362 21.3327 7.74233 20.9536 8.10309ZM7.94334 19.5587L20.1889 7.31219C20.7762 6.75016 21.5603 6.44052 22.3732 6.4494C23.186 6.45829 23.9631 6.78508 24.538 7.35981C25.1129 7.93454 25.4399 8.71152 25.449 9.52437C25.4581 10.3372 25.1486 11.1213 24.5867 11.7088L24.5782 11.7177L12.3392 23.9555C11.9832 24.3115 11.5298 24.5542 11.0361 24.653L7.10712 25.439C6.92679 25.475 6.74037 25.4186 6.61033 25.2886C6.48029 25.1585 6.42384 24.9721 6.45991 24.7918L7.24591 20.8618C7.34465 20.3681 7.58734 19.9147 7.94334 19.5587Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.1103 10.0107C18.3251 9.79591 18.6733 9.79591 18.8881 10.0107L21.8881 13.0107C22.1029 13.2255 22.1029 13.5737 21.8881 13.7885C21.6733 14.0033 21.3251 14.0033 21.1103 13.7885L18.1103 10.7885C17.8955 10.5737 17.8955 10.2255 18.1103 10.0107Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-search {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' fill='none'%3E%3Cpath fill='%23000' d='M8.438 2.582a5.937 5.937 0 0 1 4.575 9.722.599.599 0 0 1 .241.149l4.063 4.062a.625.625 0 1 1-.884.884l-4.062-4.063a.621.621 0 0 1-.15-.24A5.937 5.937 0 1 1 8.438 2.582Zm0 .625a5.313 5.313 0 1 0 0 10.625 5.313 5.313 0 0 0 0-10.625Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-wishlist {background-image: url("data:image/svg+xml,%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.8322 7.00022C21.5703 7.00564 22.2964 7.18081 22.9518 7.51126L22.9559 7.51323C24.3935 8.19836 25.4435 9.47005 25.8251 10.983C26.2658 12.9381 25.8655 14.9844 24.7169 16.644C22.4461 19.7845 19.6764 22.5511 16.5121 24.8394C16.3627 24.943 16.1836 24.9993 15.9993 25C15.8234 24.9999 15.6519 24.9479 15.5071 24.8517C12.3348 22.5615 9.55844 19.7905 7.28309 16.644C6.13445 14.9844 5.73423 12.938 6.1749 10.9829C6.55347 9.47242 7.5991 8.20071 9.03158 7.51253L9.0342 7.51123C9.71396 7.16845 10.4705 6.99294 11.236 7.00022C13.2217 7.00022 14.923 8.20695 15.8987 9.09217L16.0344 9.21536L16.1707 9.09269C17.1478 8.21294 18.8126 7.00051 20.8322 7.00022ZM15.88 23.8853L16.0002 23.9736L16.1202 23.8852C19.0958 21.6946 21.7332 19.0628 23.8802 16.0871L23.8812 16.0856C24.8669 14.6676 25.2149 12.9162 24.843 11.2399L24.8426 11.2384L24.8419 11.2353L24.8415 11.2337C24.5263 9.99992 23.6696 8.9673 22.5033 8.4106C21.9852 8.14716 21.4099 8.00893 20.8263 8.00724C19.8019 8.00724 18.8563 8.40955 18.0943 8.88869C17.3311 9.36861 16.737 9.93504 16.4108 10.285C16.3151 10.3886 16.1767 10.448 16.0314 10.4455H16.0297L16.0262 10.4455L16.0245 10.4455C15.8791 10.448 15.7404 10.3882 15.6448 10.2847C15.3226 9.9421 14.7284 9.37549 13.9644 8.89393C13.2019 8.41324 12.2545 8.00724 11.2297 8.00724C10.6463 8.00864 10.0713 8.14676 9.55338 8.41023C8.37634 8.9604 7.50827 9.99382 7.18668 11.2329L7.18552 11.2377L7.18516 11.2392C6.80611 12.919 7.15229 14.6775 8.14032 16.1L8.14204 16.1024C10.2921 19.0735 12.9027 21.6992 15.88 23.8853Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .btn-wish .rdc-icon-svg.rdc-icon-wishlist{background-image: url("data:image/svg+xml,%0A%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.8322 7.00022C21.5703 7.00564 22.2964 7.18081 22.9518 7.51126L22.9559 7.51323C24.3935 8.19836 25.4435 9.47005 25.8251 10.983C26.2658 12.9381 25.8655 14.9844 24.7169 16.644C22.4461 19.7845 19.6764 22.5511 16.5121 24.8394C16.3627 24.943 16.1836 24.9993 15.9993 25C15.8234 24.9999 15.6519 24.9479 15.5071 24.8517C12.3348 22.5615 9.55844 19.7905 7.28309 16.644C6.13445 14.9844 5.73423 12.938 6.1749 10.9829C6.55347 9.47242 7.5991 8.20071 9.03158 7.51253L9.0342 7.51123C9.71396 7.16845 10.4705 6.99294 11.236 7.00022C13.2217 7.00022 14.923 8.20695 15.8987 9.09217L16.0344 9.21536L16.1707 9.09269C17.1478 8.21294 18.8126 7.00051 20.8322 7.00022ZM15.88 23.8853L16.0002 23.9736L16.1202 23.8852C19.0958 21.6946 21.7332 19.0628 23.8802 16.0871L23.8812 16.0856C24.8669 14.6676 25.2149 12.9162 24.843 11.2399L24.8426 11.2384L24.8419 11.2353L24.8415 11.2337C24.5263 9.99992 23.6696 8.9673 22.5033 8.4106C21.9852 8.14716 21.4099 8.00893 20.8263 8.00724C19.8019 8.00724 18.8563 8.40955 18.0943 8.88869C17.3311 9.36861 16.737 9.93504 16.4108 10.285C16.3151 10.3886 16.1767 10.448 16.0314 10.4455H16.0297L16.0262 10.4455L16.0245 10.4455C15.8791 10.448 15.7404 10.3882 15.6448 10.2847C15.3226 9.9421 14.7284 9.37549 13.9644 8.89393C13.2019 8.41324 12.2545 8.00724 11.2297 8.00724C10.6463 8.00864 10.0713 8.14676 9.55338 8.41023C8.37634 8.9604 7.50827 9.99382 7.18668 11.2329L7.18552 11.2377L7.18516 11.2392C6.80611 12.919 7.15229 14.6775 8.14032 16.1L8.14204 16.1024C10.2921 19.0735 12.9027 21.6992 15.88 23.8853Z' fill='%23fff'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-wishlist.active,
body .rdc-icon-svg.rdc-icon-wishlist-active {background-image: url("data:image/svg+xml,%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.8322 7.00022C21.5703 7.00564 22.2964 7.18081 22.9518 7.51126L22.9559 7.51323C24.3935 8.19836 25.4435 9.47005 25.8251 10.983C26.2658 12.9381 25.8655 14.9844 24.7169 16.644C22.4461 19.7845 19.6764 22.5511 16.5121 24.8394C16.3627 24.943 16.1836 24.9993 15.9993 25C15.8234 24.9999 15.6519 24.9479 15.5071 24.8517C12.3348 22.5615 9.55844 19.7905 7.28309 16.644C6.13445 14.9844 5.73423 12.938 6.1749 10.9829C6.55347 9.47242 7.5991 8.20071 9.03158 7.51253L9.0342 7.51123C9.71396 7.16845 10.4705 6.99294 11.236 7.00022C13.2217 7.00022 14.923 8.20695 15.8987 9.09217L16.0344 9.21536L16.1707 9.09269C17.1478 8.21294 18.8126 7.00051 20.8322 7.00022Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .btn-wish .rdc-icon-svg.rdc-icon-wishlist-active {background-image: url("data:image/svg+xml,%0A%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.8322 7.00022C21.5703 7.00564 22.2964 7.18081 22.9518 7.51126L22.9559 7.51323C24.3935 8.19836 25.4435 9.47005 25.8251 10.983C26.2658 12.9381 25.8655 14.9844 24.7169 16.644C22.4461 19.7845 19.6764 22.5511 16.5121 24.8394C16.3627 24.943 16.1836 24.9993 15.9993 25C15.8234 24.9999 15.6519 24.9479 15.5071 24.8517C12.3348 22.5615 9.55844 19.7905 7.28309 16.644C6.13445 14.9844 5.73423 12.938 6.1749 10.9829C6.55347 9.47242 7.5991 8.20071 9.03158 7.51253L9.0342 7.51123C9.71396 7.16845 10.4705 6.99294 11.236 7.00022C13.2217 7.00022 14.923 8.20695 15.8987 9.09217L16.0344 9.21536L16.1707 9.09269C17.1478 8.21294 18.8126 7.00051 20.8322 7.00022Z' fill='%23FFF'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-cart:not(.active){background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='23' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23333' d='M14.63 22.99c.285 0 .573.002.859.005 1.06.011 2.156.02 3.218-.117 1.423-.181 2.776-1.334 3.144-2.681.225-.82.148-1.697.08-2.47-.107-1.242-.24-2.505-.366-3.726l-.125-1.23c-.05-.485-.095-.969-.143-1.454-.112-1.172-.23-2.382-.38-3.566-.204-1.603-1.107-2.682-2.683-3.21-.353-.118-.749-.15-1.17-.187a11.74 11.74 0 0 1-.432-.041c-.308-.034-.485-.188-.559-.483-.476-1.984-2.328-3.579-4.407-3.795C9.859-.153 8.332.403 7.12 1.678a4.609 4.609 0 0 0-1.154 2.095c-.092.362-.328.548-.701.55-.24.003-.483.03-.742.055l-.057.008c-1.568.172-2.971 1.414-3.259 2.89-.13.667-.205 1.366-.278 2.04l-.03.29c-.135 1.25-.258 2.498-.378 3.748l-.03.302c-.053.544-.103 1.084-.15 1.628l-.1 1.11c-.058.613-.119 1.224-.173 1.808l-.065.625.027.317c.017.21.032.399.053.584.156 1.433 1.496 2.844 2.928 3.084.668.11 1.405.166 2.319.174 2.895.017 5.76.014 9.176.005h.124v-.002Zm-4.575-1.437c-1.186 0-2.452-.002-3.848-.009a57.181 57.181 0 0 1-2.46-.072c-1.212-.058-2.214-1.058-2.189-2.184.02-.868.088-1.746.158-2.593l.057-.73c.032-.445.08-.887.124-1.332l.464-4.652c.053-.536.103-1.07.166-1.604l.005-.05c.053-.462.113-.984.429-1.443.55-.798 1.384-1.165 2.487-1.093l.323.022.02.388c.005.065.008.133.008.2v1.82c.003.434.319.767.736.773h.01a.74.74 0 0 0 .523-.214.802.802 0 0 0 .236-.558c.006-.423.006-.845.003-1.27V5.77h7.422v1.198c0 .43-.002.861.003 1.29a.745.745 0 0 0 .746.733h.003a.738.738 0 0 0 .742-.716c.008-.493.005-.986.005-1.477l-.003-.935.314-.043c1.014-.138 1.889.21 2.47.983.368.488.433 1.05.49 1.541l.008.071c.124 1.044.226 2.107.326 3.134l.03.314c.065.674.127 1.35.188 2.02l.13 1.404c.03.316.06.636.093.952.062.639.127 1.276.177 1.914.035.447.063.92.003 1.395-.13 1.032-1.12 1.891-2.204 1.92-1.588.04-3.27.068-5 .077-1.014.005-2.067.008-3.194.008l-.001.001Zm4.56-17.267H7.436l.098-.428c.216-.93 1.42-2.344 3.33-2.414 1.66-.057 3.235.993 3.626 2.4l.123.442Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h22v23H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-cart.active,
body .rdc-icon-svg.rdc-icon-cart-active {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='23' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%23333' d='M14.63 22.99c.285 0 .573.002.859.005 1.06.011 2.156.02 3.218-.117 1.423-.181 2.776-1.334 3.144-2.681.225-.82.148-1.697.08-2.47-.107-1.242-.24-2.505-.366-3.726l-.125-1.23c-.05-.485-.095-.969-.143-1.454-.112-1.172-.23-2.382-.38-3.566-.204-1.603-1.107-2.682-2.683-3.21-.353-.118-.749-.15-1.17-.187a11.74 11.74 0 0 1-.432-.041c-.308-.034-.485-.188-.559-.483-.476-1.984-2.328-3.579-4.407-3.795C9.859-.153 8.332.403 7.12 1.678a4.609 4.609 0 0 0-1.154 2.095c-.092.362-.328.548-.701.55-.24.003-.483.03-.742.055l-.057.008c-1.568.172-2.971 1.414-3.259 2.89-.13.667-.205 1.366-.278 2.04l-.03.29c-.135 1.25-.258 2.498-.378 3.748l-.03.302c-.053.544-.103 1.084-.15 1.628l-.1 1.11c-.058.613-.119 1.224-.173 1.808l-.065.625.027.317c.017.21.032.399.053.584.156 1.433 1.496 2.844 2.928 3.084.668.11 1.405.166 2.319.174 2.895.017 5.76.014 9.176.005h.124v-.002Zm-4.575-1.437c-1.186 0-2.452-.002-3.848-.009a57.181 57.181 0 0 1-2.46-.072c-1.212-.058-2.214-1.058-2.189-2.184.02-.868.088-1.746.158-2.593l.057-.73c.032-.445.08-.887.124-1.332l.464-4.652c.053-.536.103-1.07.166-1.604l.005-.05c.053-.462.113-.984.429-1.443.55-.798 1.384-1.165 2.487-1.093l.323.022.02.388c.005.065.008.133.008.2v1.82c.003.434.319.767.736.773h.01a.74.74 0 0 0 .523-.214.802.802 0 0 0 .236-.558c.006-.423.006-.845.003-1.27V5.77h7.422v1.198c0 .43-.002.861.003 1.29a.745.745 0 0 0 .746.733h.003a.738.738 0 0 0 .742-.716c.008-.493.005-.986.005-1.477l-.003-.935.314-.043c1.014-.138 1.889.21 2.47.983.368.488.433 1.05.49 1.541l.008.071c.124 1.044.226 2.107.326 3.134l.03.314c.065.674.127 1.35.188 2.02l.13 1.404c.03.316.06.636.093.952.062.639.127 1.276.177 1.914.035.447.063.92.003 1.395-.13 1.032-1.12 1.891-2.204 1.92-1.588.04-3.27.068-5 .077-1.014.005-2.067.008-3.194.008l-.001.001Zm4.56-17.267H7.436l.098-.428c.216-.93 1.42-2.344 3.33-2.414 1.66-.057 3.235.993 3.626 2.4l.123.442Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h22v23H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-cart-add {background-image: url("data:image/svg+xml,%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.8292 7.36808C19.4094 7.94341 19.8231 8.65373 20.039 9.42511H20.4713C22.3927 9.42511 23.784 10.7769 23.9796 12.6927C24.164 14.4987 24.3691 16.6438 24.5609 18.6495C24.7164 20.2764 24.8633 21.8119 24.9831 23C25.1415 24.5708 24.1737 25.9976 22.5956 25.9987C18.4606 26.0016 11.9114 25.999 8.41012 25.9972C6.83156 25.9963 5.85793 24.5734 6.01693 23C6.14322 21.7503 6.29769 20.1435 6.45878 18.4679C6.64618 16.5187 6.84253 14.4763 7.01389 12.7944C7.20914 10.8781 8.60719 9.42511 10.5281 9.42511H10.9605C11.1764 8.65373 11.5901 7.94341 12.1702 7.36808C13.0541 6.49154 14.2519 6 15.4997 6C16.7476 6 17.9453 6.49154 18.8292 7.36808ZM12.8726 8.07873C13.5685 7.3886 14.5134 7 15.4997 7C16.486 7 17.431 7.3886 18.1269 8.07873C18.5147 8.46336 18.8075 8.92404 18.9907 9.42511H12.0087C12.1919 8.92404 12.4847 8.46336 12.8726 8.07873ZM10.793 12.0906V10.6704C10.793 10.4042 11.0005 10.1867 11.2628 10.1713C11.2726 10.1707 11.2825 10.1704 11.2925 10.1704C11.5687 10.1704 11.793 10.3942 11.793 10.6704V12.0906C11.793 12.3667 11.5691 12.5906 11.293 12.5906C11.0168 12.5906 10.793 12.3667 10.793 12.0906ZM19.209 12.0908V10.6706C19.209 10.4045 19.4165 10.1869 19.6788 10.1715C19.6886 10.171 19.6986 10.1707 19.7085 10.1707C19.9847 10.1707 20.209 10.3945 20.209 10.6706V12.0908C20.209 12.367 19.9851 12.5908 19.709 12.5908C19.4328 12.5908 19.209 12.367 19.209 12.0908Z' fill='%23333333'/%3E%3Cpath d='M14.5424 19.7338L12.6458 17.868L12 18.4989L14.5424 21L20 15.6309L19.3587 15L14.5424 19.7338Z' fill='white'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-comparator:not(.active) {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.5455 6C22.2442 6 22 6.23878 22 6.53333C22 6.66636 22.054 6.79019 22.1364 6.88333C22.1965 6.95131 26.0824 10.5333 26.0824 10.5333H4.54545C4.24421 10.5333 4 10.7721 4 11.0667C4 11.3612 4.24421 11.6 4.54545 11.6H26.0824C26.0824 11.6 22.1965 15.182 22.1364 15.25C22.054 15.3431 22 15.467 22 15.6C22 15.8945 22.2442 16.1333 22.5455 16.1333C22.6847 16.1333 22.8156 16.0839 22.9119 16C23.0241 15.9023 27.4545 11.8 27.4545 11.8C27.4545 11.8 27.8046 11.4746 27.8381 11.4417C27.9362 11.3452 28 11.2134 28 11.0667C28 10.9199 27.9362 10.7881 27.8381 10.6917C27.8046 10.6587 27.4545 10.3333 27.4545 10.3333C27.4545 10.3333 23.0241 6.23102 22.9119 6.13333C22.8156 6.04941 22.6847 6 22.5455 6ZM9.45455 16.6667C9.31533 16.6667 9.18445 16.7161 9.08807 16.8C8.97589 16.8977 4.54545 21 4.54545 21C4.54545 21 4.19544 21.3254 4.16193 21.3583C4.06381 21.4548 4 21.5866 4 21.7333C4 21.8801 4.06381 22.0119 4.16193 22.1083C4.19544 22.1413 4.54545 22.4667 4.54545 22.4667C4.54545 22.4667 8.97589 26.569 9.08807 26.6667C9.18445 26.7506 9.31533 26.8 9.45455 26.8C9.75579 26.8 10 26.5612 10 26.2667C10 26.1336 9.94603 26.0098 9.86364 25.9167C9.8035 25.8487 5.91761 22.2667 5.91761 22.2667H27.4545C27.7558 22.2667 28 22.0279 28 21.7333C28 21.4388 27.7558 21.2 27.4545 21.2H5.91761C5.91761 21.2 9.8035 17.618 9.86364 17.55C9.94603 17.4569 10 17.333 10 17.2C10 16.9055 9.75579 16.6667 9.45455 16.6667Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-comparator.active,
body .rdc-icon-svg.rdc-icon-comparator-active {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.5455 6C22.2442 6 22 6.23878 22 6.53333V10.5333H4.54545C4.24421 10.5333 4 10.7721 4 11.0667C4 11.3612 4.24421 11.6 4.54545 11.6H22V15.6C22 15.8945 22.2442 16.1333 22.5455 16.1333C22.6847 16.1333 22.8156 16.0839 22.9119 16C23.0241 15.9023 27.4545 11.8 27.4545 11.8C27.4545 11.8 27.8046 11.4746 27.8381 11.4417C27.9362 11.3452 28 11.2134 28 11.0667C28 10.9199 27.9362 10.7881 27.8381 10.6917C27.8046 10.6587 27.4545 10.3333 27.4545 10.3333C27.4545 10.3333 23.0241 6.23102 22.9119 6.13333C22.8156 6.04941 22.6847 6 22.5455 6ZM9.45454 26.1333C9.75579 26.1333 10 25.8945 10 25.6L10 21.6L27.4545 21.6C27.7558 21.6 28 21.3612 28 21.0666C28 20.7721 27.7558 20.5333 27.4545 20.5333L10 20.5333L10 16.5333C10 16.2388 9.75579 16 9.45455 16C9.31533 16 9.18445 16.0494 9.08807 16.1333C8.97589 16.231 4.54545 20.3333 4.54545 20.3333C4.54545 20.3333 4.19544 20.6587 4.16193 20.6916C4.06381 20.7881 4 20.9199 4 21.0666C4 21.2134 4.06381 21.3452 4.16193 21.4416C4.19543 21.4746 4.54545 21.8 4.54545 21.8C4.54545 21.8 8.97589 25.9023 9.08807 26C9.18445 26.0839 9.31533 26.1333 9.45454 26.1333Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-location {background-image: url("data:image/svg+xml,%0A%3Csvg width='14' height='16' viewBox='0 0 14 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23000' stroke-width='1.023' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 8.865c1.243 0 2.25-.99 2.25-2.211 0-1.222-1.007-2.212-2.25-2.212s-2.25.99-2.25 2.212c0 1.221 1.007 2.211 2.25 2.211Z'/%3E%3Cpath d='M12.625 6.654C12.625 11.63 7 15.5 7 15.5s-5.625-3.87-5.625-8.846c0-1.466.593-2.873 1.648-3.91A5.675 5.675 0 0 1 7 1.125c1.492 0 2.923.583 3.977 1.62a5.481 5.481 0 0 1 1.648 3.909h0Z'/%3E%3C/g%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-tracking {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.8264 9.03996C19.8257 9.6479 19.5374 10.1933 19.0913 10.5468C18.8146 10.7662 18.477 10.9116 18.1098 10.9522L18.1044 10.9528L17.9013 10.964C17.3165 10.964 16.7893 10.6979 16.4352 10.2814C16.1495 9.94529 15.9763 9.51125 15.9763 9.03985C15.9763 7.98375 16.8447 7.11589 17.9013 7.11589C18.8872 7.11589 19.7095 7.87203 19.8148 8.83133L19.8153 8.83679L19.8264 9.03996ZM16.886 9.03985C16.886 8.48484 17.3428 8.02704 17.8979 8.02519L18.0413 8.03512C18.5329 8.10473 18.9159 8.5318 18.9165 9.03997C18.9165 9.59639 18.4578 10.0545 17.9013 10.0545C17.3447 10.0545 16.886 9.59599 16.886 9.03985Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.9045 9.85289L26.776 11.3149C26.9681 11.3723 27.1004 11.5503 27.1004 11.7504V26.6457C27.1004 26.8957 26.8955 27.1004 26.6456 27.1004C26.6016 27.1004 26.5574 27.094 26.5149 27.0813L19.5487 24.9912L12.5827 27.0813C12.5401 27.0941 12.496 27.1004 12.452 27.1004C12.408 27.1004 12.3638 27.094 12.3213 27.0813L5.22467 24.9534C5.03279 24.8957 4.90039 24.7181 4.90039 24.5178V9.62254C4.90039 9.37256 5.10524 9.16789 5.35523 9.16789L12.4505 11.276L14.2206 10.744C14.1151 10.5006 14.0237 10.2621 13.9514 10.0331C13.8378 9.67306 13.7714 9.33624 13.7714 9.03985V9.02815C13.7714 6.76304 15.6354 4.90039 17.9013 4.90039C20.1671 4.90039 22.0312 6.76304 22.0312 9.02815V9.03985C22.0312 9.28739 21.9849 9.56189 21.9045 9.85289ZM21.5958 10.712C21.5841 10.7391 21.5723 10.7663 21.5603 10.7936C21.1652 11.6913 20.5744 12.672 20.0026 13.5323L20.0036 24.1796L26.1907 26.0347V12.0887L21.5958 10.712ZM14.9463 10.1325C14.9732 10.2008 15.0019 10.2704 15.0324 10.3413C15.2527 10.8539 15.559 11.4217 15.902 11.9927C16.5564 13.0825 17.34 14.1775 17.9013 14.9127C18.4627 14.1775 19.2463 13.0826 19.9007 11.9929C20.1658 11.5514 20.409 11.1119 20.6075 10.6984C20.6658 10.577 20.7202 10.4578 20.7702 10.3415C20.9916 9.8263 21.1215 9.3772 21.1215 9.03997C21.1194 7.27549 19.6668 5.82352 17.9013 5.82139C16.1357 5.82352 14.6831 7.27549 14.681 9.03997C14.6811 9.33072 14.7777 9.70471 14.9463 10.1325ZM17.9013 16.1062C17.7633 16.1062 17.6328 16.0435 17.5465 15.9358C17.4413 15.8046 15.6996 13.6214 14.6209 11.5731L12.9068 12.0887V26.0347L19.0939 24.1796L19.0935 14.8343C18.6383 15.4574 18.3015 15.8796 18.2564 15.9358C18.17 16.0435 18.0395 16.1062 17.9013 16.1062ZM5.81007 10.2336L11.9972 12.0887V26.0347L5.81007 24.1796V10.2336Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-user:not(.active){background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.4942 16.3821C19.0695 16.3821 21.1571 14.2819 21.1571 11.6911C21.1571 9.10026 19.0695 7 16.4942 7C13.9189 7 11.8312 9.10026 11.8312 11.6911C11.8372 14.2794 13.9214 16.3761 16.4942 16.3821ZM16.4942 8.09861C18.4663 8.09861 20.0651 9.707 20.0651 11.6911C20.0651 13.6751 18.4663 15.2835 16.4942 15.2835C14.522 15.2835 12.9233 13.6751 12.9233 11.6911C12.9233 9.707 14.522 8.09861 16.4942 8.09861Z' fill='%23333333'/%3E%3Cpath d='M16.4942 18.6751C20.0323 18.686 23.0744 21.1326 23.8982 24.5465C23.9688 24.8391 24.2491 25.0411 24.5483 24.9929C24.8515 24.9441 25.0574 24.6577 24.9857 24.3613C24.0391 20.4522 20.5507 17.66 16.5042 17.6574C12.458 17.6548 8.96621 20.4422 8.01449 24.3497C7.94224 24.6463 8.14829 24.9332 8.45171 24.982C8.75065 25.0301 9.03076 24.8287 9.10171 24.5364C9.9284 21.1305 12.9634 18.6902 16.4942 18.6751Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-user.active,
body .rdc-icon-svg.rdc-icon-user-active {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.4803 16.3406C19.0557 16.3406 21.1435 14.2497 21.1435 11.6703C21.1435 9.09097 19.0557 7 16.4803 7C13.9048 7 11.817 9.09097 11.817 11.6703C11.823 14.2472 13.9073 16.3346 16.4803 16.3406Z' fill='%23333333'/%3E%3Cpath d='M23.3941 25C23.7916 25 24.1911 24.9684 24.5836 24.9055V24.9055C24.8596 24.8613 25.0472 24.5986 24.9824 24.3266C24.0508 20.4127 20.5516 17.6129 16.4903 17.6103C12.4667 17.6077 8.99141 20.3514 8.01646 24.2069C7.93286 24.5375 8.16178 24.8584 8.49848 24.9123V24.9123C8.81737 24.9634 9.14025 24.9891 9.46321 24.9891C13.9751 24.9898 16.1307 24.9995 23.3941 25Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-logout {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.5976 23.8616H10.0861V8.13842H17.5976C17.9022 8.13842 18.1458 7.8807 18.1458 7.56924C18.1458 7.24705 17.9022 7 17.5976 7H9.54814C9.24362 7 9 7.25779 9 7.56924V24.4308C9 24.753 9.24362 25 9.54814 25H17.5976C17.9022 25 18.1458 24.7422 18.1458 24.4308C18.1458 24.1086 17.9022 23.8616 17.5976 23.8616Z' fill='%23333333'/%3E%3Cpath d='M22.8466 16.0389L19.4259 12.4733C19.3232 12.3657 19.1846 12.3054 19.0401 12.3054C18.8957 12.3054 18.757 12.3657 18.6544 12.4733C18.6044 12.5261 18.5647 12.589 18.5376 12.6581C18.5105 12.7272 18.4966 12.8012 18.4966 12.876C18.4966 12.9508 18.5105 13.0249 18.5376 13.094C18.5647 13.1631 18.6044 13.2259 18.6544 13.2788L21.1718 15.8993H15.3554C15.0509 15.8993 14.8073 16.1571 14.8073 16.4685C14.8073 16.7907 15.0509 17.0485 15.3554 17.0485H21.1718L18.6544 19.669C18.6044 19.7219 18.5647 19.7847 18.5376 19.8538C18.5105 19.9229 18.4966 19.9969 18.4966 20.0717C18.4966 20.1465 18.5105 20.2206 18.5376 20.2898C18.5647 20.3589 18.6044 20.4216 18.6544 20.4745C18.757 20.582 18.8957 20.6424 19.0401 20.6424C19.1846 20.6424 19.3232 20.582 19.4259 20.4745L22.8466 16.9088C22.8993 16.8527 22.9401 16.7855 22.9664 16.7114C22.9926 16.6373 23.0037 16.5582 22.9989 16.4793C22.9989 16.3182 22.9583 16.1571 22.8466 16.0389Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-arrowup {background-image: url("data:image/svg+xml,%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.15506 20.8373C7.36181 21.0542 7.69701 21.0542 7.90376 20.8373L16 12.3412L24.0962 20.8373C24.303 21.0542 24.6382 21.0542 24.8449 20.8373C25.0517 20.6203 25.0517 20.2686 24.8449 20.0516L16.3744 11.1627C16.1676 10.9458 15.8324 10.9458 15.6257 11.1627L7.15506 20.0516C6.94831 20.2686 6.94831 20.6203 7.15506 20.8373Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-arrowdown {background-image: url("data:image/svg+xml,%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.15506 11.1627C7.36181 10.9458 7.69701 10.9458 7.90376 11.1627L16 19.6588L24.0962 11.1627C24.303 10.9458 24.6382 10.9458 24.8449 11.1627C25.0517 11.3797 25.0517 11.7314 24.8449 11.9484L16.3744 20.8373C16.1676 21.0542 15.8324 21.0542 15.6257 20.8373L7.15506 11.9484C6.94831 11.7314 6.94831 11.3797 7.15506 11.1627Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-arrowleft {background-image: url("data:image/svg+xml,%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.8373 7.15506C21.0542 7.36181 21.0542 7.69701 20.8373 7.90376L12.3412 16L20.8373 24.0962C21.0542 24.303 21.0542 24.6382 20.8373 24.8449C20.6203 25.0517 20.2686 25.0517 20.0516 24.8449L11.1627 16.3744C10.9458 16.1676 10.9458 15.8324 11.1627 15.6256L20.0516 7.15506C20.2686 6.94831 20.6203 6.94831 20.8373 7.15506Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-arrowright {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.1627 7.15506C10.9458 7.36181 10.9458 7.69701 11.1627 7.90376L19.6588 16L11.1627 24.0962C10.9458 24.303 10.9458 24.6382 11.1627 24.8449C11.3797 25.0517 11.7314 25.0517 11.9484 24.8449L20.8373 16.3744C21.0542 16.1676 21.0542 15.8324 20.8373 15.6256L11.9484 7.15506C11.7314 6.94831 11.3797 6.94831 11.1627 7.15506Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-arrow-full-up {background-image: url("data:image/svg+xml,%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.29289 21.7071C7.68342 22.0976 8.31658 22.0976 8.70711 21.7071L16 14.4142L23.2929 21.7071C23.6834 22.0976 24.3166 22.0976 24.7071 21.7071C25.0976 21.3166 25.0976 20.6834 24.7071 20.2929L16.7071 12.2929C16.3166 11.9024 15.6834 11.9024 15.2929 12.2929L7.29289 20.2929C6.90237 20.6834 6.90237 21.3166 7.29289 21.7071Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-arrow-full-down {background-image: url("data:image/svg+xml,%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.29289 11.2929C7.68342 10.9024 8.31658 10.9024 8.70711 11.2929L16 18.5858L23.2929 11.2929C23.6834 10.9024 24.3166 10.9024 24.7071 11.2929C25.0976 11.6834 25.0976 12.3166 24.7071 12.7071L16.7071 20.7071C16.3166 21.0976 15.6834 21.0976 15.2929 20.7071L7.29289 12.7071C6.90237 12.3166 6.90237 11.6834 7.29289 11.2929Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-arrow-full-left {background-image: url("data:image/svg+xml,%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.7071 7.29289C21.0976 7.68342 21.0976 8.31658 20.7071 8.70711L13.4142 16L20.7071 23.2929C21.0976 23.6834 21.0976 24.3166 20.7071 24.7071C20.3166 25.0976 19.6834 25.0976 19.2929 24.7071L11.2929 16.7071C10.9024 16.3166 10.9024 15.6834 11.2929 15.2929L19.2929 7.29289C19.6834 6.90237 20.3166 6.90237 20.7071 7.29289Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-arrow-full-right {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.2929 7.29289C10.9024 7.68342 10.9024 8.31658 11.2929 8.70711L18.5858 16L11.2929 23.2929C10.9024 23.6834 10.9024 24.3166 11.2929 24.7071C11.6834 25.0976 12.3166 25.0976 12.7071 24.7071L20.7071 16.7071C21.0976 16.3166 21.0976 15.6834 20.7071 15.2929L12.7071 7.29289C12.3166 6.90237 11.6834 6.90237 11.2929 7.29289Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-scroll-up {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.1' width='32' height='32' fill='%23264582'/%3E%3Cpath d='M11 12C11 12.2761 11.2121 12.5 11.4737 12.5C11.5918 12.5 11.7018 12.4505 11.7845 12.375C11.8449 12.3199 15.0263 8.75781 15.0263 8.75781L15.0263 24.5C15.0263 24.7761 15.2384 25 15.5 25C15.7616 25 15.9737 24.7761 15.9737 24.5L15.9737 8.75781C15.9737 8.75781 19.1551 12.3199 19.2155 12.375C19.2982 12.4505 19.4082 12.5 19.5263 12.5C19.7879 12.5 20 12.2761 20 12C20 11.8724 19.9561 11.7524 19.8816 11.6641C19.7948 11.5612 16.1513 7.5 16.1513 7.5C16.1513 7.5 15.8623 7.17915 15.8331 7.14844C15.7474 7.05849 15.6304 7 15.5 7C15.3696 7 15.2526 7.05849 15.1669 7.14844C15.1377 7.17915 14.8487 7.5 14.8487 7.5C14.8487 7.5 11.2052 11.5612 11.1184 11.6641C11.0439 11.7524 11 11.8724 11 12Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-scroll-down {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.1' width='32' height='32' fill='%23264582'/%3E%3Cpath d='M11 20C11 19.7239 11.2121 19.5 11.4737 19.5C11.5918 19.5 11.7018 19.5495 11.7845 19.625C11.8449 19.6801 15.0263 23.2422 15.0263 23.2422L15.0263 7.5C15.0263 7.22386 15.2384 7 15.5 7C15.7616 7 15.9737 7.22386 15.9737 7.5L15.9737 23.2422C15.9737 23.2422 19.1551 19.6801 19.2155 19.625C19.2982 19.5495 19.4082 19.5 19.5263 19.5C19.7879 19.5 20 19.7239 20 20C20 20.1276 19.9561 20.2476 19.8816 20.3359C19.7948 20.4388 16.1513 24.5 16.1513 24.5C16.1513 24.5 15.8623 24.8209 15.8331 24.8516C15.7474 24.9415 15.6304 25 15.5 25C15.3696 25 15.2526 24.9415 15.1669 24.8516C15.1377 24.8209 14.8487 24.5 14.8487 24.5C14.8487 24.5 11.2052 20.4388 11.1184 20.3359C11.0439 20.2476 11 20.1276 11 20Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-equal {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 12C6.22386 12 6 12.2239 6 12.5C6 12.7761 6.22386 13 6.5 13H25.5C25.7761 13 26 12.7761 26 12.5C26 12.2239 25.7761 12 25.5 12H6.5Z' fill='%23333333'/%3E%3Cpath d='M6.5 19C6.22386 19 6 19.2239 6 19.5C6 19.7761 6.22386 20 6.5 20H25.5C25.7761 20 26 19.7761 26 19.5C26 19.2239 25.7761 19 25.5 19H6.5Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-plus {background-image: url("data:image/svg+xml,%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.4302 16.8835L5.82586 16.8835C5.51118 16.8835 5.25607 16.6284 5.25607 16.3137C5.25607 15.999 5.51118 15.7439 5.82586 15.7439L15.4302 15.7439L15.4302 6.13957C15.4302 5.82488 15.6853 5.56978 16 5.56978C16.3147 5.56978 16.5698 5.82488 16.5698 6.13957L16.5698 15.7439L26.1741 15.7439C26.4888 15.7439 26.7439 15.999 26.7439 16.3137C26.7439 16.6284 26.4888 16.8835 26.1741 16.8835L16.5698 16.8835V26.4878C16.5698 26.8025 16.3147 27.0576 16 27.0576C15.6853 27.0576 15.4302 26.8025 15.4302 26.4878V16.8835Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-minus {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='16' width='20' height='1' rx='0.5' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-chat {background-image: url("data:image/svg+xml,%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.5 10.5H20V8.5C19.9996 8.10228 19.8414 7.72105 19.5601 7.4398C19.279 7.15862 18.8977 7.00045 18.5 7H6.5C6.10228 7.00045 5.72105 7.15862 5.4398 7.4398C5.15862 7.72105 5.00045 8.10228 5 8.5V17.5C5.00045 17.8977 5.15862 18.279 5.4398 18.5602C5.72105 18.8414 6.10228 18.9996 6.5 19H6.99995V21C7.00003 21.0989 7.02935 21.1956 7.08425 21.2778C7.13923 21.36 7.2173 21.424 7.30865 21.4618C7.4 21.4997 7.5005 21.5096 7.59748 21.4903C7.69445 21.471 7.78355 21.4234 7.85345 21.3535L10.207 19H12V21C12.0004 21.3977 12.1586 21.779 12.4398 22.0602C12.721 22.3414 13.1023 22.4996 13.5 22.5H21.793L24.1465 24.8535C24.2164 24.9234 24.3055 24.971 24.4025 24.9903C24.4995 25.0096 24.6 24.9997 24.6913 24.9618C24.7827 24.924 24.8608 24.8599 24.9157 24.7777C24.9706 24.6955 25 24.5989 25 24.5V22.5H25.5C25.8977 22.4996 26.2789 22.3414 26.5602 22.0602C26.8414 21.779 26.9995 21.3977 27 21V12C26.9995 11.6023 26.8414 11.221 26.5602 10.9398C26.2789 10.6587 25.8977 10.5004 25.5 10.5ZM9.99996 18C9.86735 18 9.74023 18.0528 9.64648 18.1465L8 19.793V18.5C8 18.3674 7.94728 18.2402 7.85353 18.1464C7.75978 18.0527 7.63258 18 7.49998 18H6.5C6.3674 17.9999 6.24028 17.9472 6.1466 17.8534C6.05285 17.7597 6.00013 17.6326 5.99998 17.5V8.5C6.00013 8.3674 6.05285 8.24035 6.1466 8.1466C6.24028 8.05285 6.3674 8.00013 6.5 7.99998H18.5C18.6325 8.00013 18.7597 8.05285 18.8534 8.1466C18.9472 8.24035 18.9999 8.3674 19 8.5V17.5C18.9999 17.6326 18.9472 17.7597 18.8534 17.8534C18.7597 17.9472 18.6325 17.9999 18.5 18H9.99996ZM26 21C25.9999 21.1326 25.9471 21.2597 25.8534 21.3534C25.7596 21.4472 25.6326 21.4999 25.5 21.5H24.5C24.3674 21.5 24.2402 21.5527 24.1465 21.6465C24.0526 21.7402 24 21.8674 24 22V23.2929L22.3535 21.6465C22.2598 21.5527 22.1326 21.5001 22 21.5H13.5C13.3674 21.4999 13.2403 21.4472 13.1466 21.3534C13.0528 21.2597 13.0001 21.1326 13 21V19H18.5C18.8977 18.9996 19.279 18.8414 19.5601 18.5602C19.8414 18.279 19.9996 17.8977 20 17.5V11.5H25.5C25.6326 11.5002 25.7596 11.5528 25.8534 11.6466C25.9471 11.7403 25.9999 11.8674 26 12V21ZM12 11.5001H16C16.1326 11.5001 16.2598 11.4474 16.3535 11.3536C16.4473 11.2599 16.5 11.1327 16.5 11.0001C16.5 10.8675 16.4473 10.7403 16.3535 10.6465C16.2598 10.5528 16.1326 10.5 16 10.5H12C11.8674 10.5 11.7402 10.5528 11.6464 10.6465C11.5526 10.7403 11.5 10.8675 11.5 11.0001C11.5 11.1327 11.5526 11.2599 11.6464 11.3536C11.7402 11.4474 11.8674 11.5001 12 11.5001ZM16.3535 14.6465C16.4473 14.7402 16.5 14.8674 16.5 15C16.5 15.1326 16.4473 15.2598 16.3535 15.3536C16.2598 15.4473 16.1326 15.5 16 15.5H8.99998C8.86738 15.5 8.74018 15.4473 8.64643 15.3536C8.5526 15.2598 8.49995 15.1326 8.49995 15C8.49995 14.8674 8.5526 14.7402 8.64643 14.6465C8.74018 14.5527 8.86738 14.5 8.99998 14.5H16C16.1326 14.5 16.2598 14.5527 16.3535 14.6465Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-chat2 {background-image: url("data:image/svg+xml,%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.5 10.5H20V8.5C19.9996 8.10228 19.8414 7.72105 19.5601 7.4398C19.279 7.15862 18.8977 7.00045 18.5 7H6.5C6.10228 7.00045 5.72105 7.15862 5.4398 7.4398C5.15862 7.72105 5.00045 8.10228 5 8.5V17.5C5.00045 17.8977 5.15862 18.279 5.4398 18.5602C5.72105 18.8414 6.10228 18.9996 6.5 19H6.99995V21C7.00003 21.0989 7.02935 21.1956 7.08425 21.2778C7.13923 21.36 7.2173 21.424 7.30865 21.4618C7.4 21.4997 7.5005 21.5096 7.59748 21.4903C7.69445 21.471 7.78355 21.4234 7.85345 21.3535L10.207 19H12V21C12.0004 21.3977 12.1586 21.779 12.4398 22.0602C12.721 22.3414 13.1023 22.4996 13.5 22.5H21.793L24.1465 24.8535C24.2164 24.9234 24.3055 24.971 24.4025 24.9903C24.4995 25.0096 24.6 24.9997 24.6913 24.9618C24.7827 24.924 24.8608 24.8599 24.9157 24.7777C24.9706 24.6955 25 24.5989 25 24.5V22.5H25.5C25.8977 22.4996 26.2789 22.3414 26.5602 22.0602C26.8414 21.779 26.9995 21.3977 27 21V12C26.9995 11.6023 26.8414 11.221 26.5602 10.9398C26.2789 10.6587 25.8977 10.5004 25.5 10.5ZM9.99996 18C9.86735 18 9.74023 18.0528 9.64648 18.1465L8 19.793V18.5C8 18.3674 7.94728 18.2402 7.85353 18.1464C7.75978 18.0527 7.63258 18 7.49998 18H6.5C6.3674 17.9999 6.24028 17.9472 6.1466 17.8534C6.05285 17.7597 6.00013 17.6326 5.99998 17.5V8.5C6.00013 8.3674 6.05285 8.24035 6.1466 8.1466C6.24028 8.05285 6.3674 8.00013 6.5 7.99998H18.5C18.6325 8.00013 18.7597 8.05285 18.8534 8.1466C18.9472 8.24035 18.9999 8.3674 19 8.5V17.5C18.9999 17.6326 18.9472 17.7597 18.8534 17.8534C18.7597 17.9472 18.6325 17.9999 18.5 18H9.99996ZM26 21C25.9999 21.1326 25.9471 21.2597 25.8534 21.3534C25.7596 21.4472 25.6326 21.4999 25.5 21.5H24.5C24.3674 21.5 24.2402 21.5527 24.1465 21.6465C24.0526 21.7402 24 21.8674 24 22V23.2929L22.3535 21.6465C22.2598 21.5527 22.1326 21.5001 22 21.5H13.5C13.3674 21.4999 13.2403 21.4472 13.1466 21.3534C13.0528 21.2597 13.0001 21.1326 13 21V19H18.5C18.8977 18.9996 19.279 18.8414 19.5601 18.5602C19.8414 18.279 19.9996 17.8977 20 17.5V11.5H25.5C25.6326 11.5002 25.7596 11.5528 25.8534 11.6466C25.9471 11.7403 25.9999 11.8674 26 12V21ZM12 11.5001H16C16.1326 11.5001 16.2598 11.4474 16.3535 11.3536C16.4473 11.2599 16.5 11.1327 16.5 11.0001C16.5 10.8675 16.4473 10.7403 16.3535 10.6465C16.2598 10.5528 16.1326 10.5 16 10.5H12C11.8674 10.5 11.7402 10.5528 11.6464 10.6465C11.5526 10.7403 11.5 10.8675 11.5 11.0001C11.5 11.1327 11.5526 11.2599 11.6464 11.3536C11.7402 11.4474 11.8674 11.5001 12 11.5001ZM16.3535 14.6465C16.4473 14.7402 16.5 14.8674 16.5 15C16.5 15.1326 16.4473 15.2598 16.3535 15.3536C16.2598 15.4473 16.1326 15.5 16 15.5H8.99998C8.86738 15.5 8.74018 15.4473 8.64643 15.3536C8.5526 15.2598 8.49995 15.1326 8.49995 15C8.49995 14.8674 8.5526 14.7402 8.64643 14.6465C8.74018 14.5527 8.86738 14.5 8.99998 14.5H16C16.1326 14.5 16.2598 14.5527 16.3535 14.6465Z' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-helpdesk {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.5176 13.6288C14.8596 13.2623 15.3246 13.0416 15.8033 12.9886C16.2638 12.94 16.7836 12.993 17.1027 13.3065C17.4447 13.6465 17.3945 14.2072 17.2121 14.6222C17.1118 14.8474 16.9614 15.0682 16.7608 15.2183C16.6689 15.2873 16.5446 15.345 16.4164 15.4046C16.2903 15.4632 16.1604 15.5235 16.0541 15.598C15.7076 15.8453 15.4431 16.1764 15.2744 16.5562C15.1969 16.7283 15.1286 16.8961 15.1194 17.086C15.1134 17.2507 15.1154 17.4173 15.1174 17.5846C15.1184 17.6684 15.1194 17.7526 15.1194 17.8366C15.1194 18.4062 16.0313 18.4062 16.0313 17.8366C16.0313 17.7715 16.0298 17.7074 16.0284 17.644C16.0213 17.3376 16.0147 17.0498 16.1772 16.7681C16.355 16.4546 16.6057 16.2824 16.9295 16.1323C17.5586 15.8365 17.9872 15.2625 18.1696 14.6134C18.3611 13.9379 18.2562 13.1652 17.7228 12.6619C17.2532 12.2159 16.5556 12.057 15.9127 12.0967C15.1331 12.1453 14.4036 12.4367 13.8702 13.0018C13.4781 13.4257 14.121 14.0527 14.5176 13.6288Z' fill='%23333333'/%3E%3Cpath d='M15.1152 19.6735V19.0995C15.1152 18.8522 15.325 18.6712 15.5712 18.658C15.8174 18.6491 16.0271 18.8699 16.0271 19.0995V19.6735C16.0271 19.9207 15.8174 20.1062 15.5712 20.115C15.325 20.1239 15.1152 19.9031 15.1152 19.6735Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.95209 20.2256C7.09822 20.3737 7.25195 20.5169 7.4095 20.6551L7.39104 20.7757C7.22958 21.8307 7.06853 22.8831 6.91106 23.9388C6.89738 24.0227 6.88484 24.1066 6.87231 24.1905C6.85977 24.2744 6.84723 24.3583 6.83355 24.4422C6.80619 24.6232 6.83811 24.791 6.99768 24.9058C7.13902 25.0073 7.34874 25.0383 7.50376 24.9411L10.7317 22.9012C10.8092 22.8527 10.8856 22.8041 10.962 22.7555L11.019 22.7193C14.7878 24.0731 19.3492 23.8372 22.8502 21.8725C24.2499 21.0866 25.5174 19.9783 26.2742 18.5787C26.99 17.2541 27.1997 15.7131 26.7985 14.2649C25.8958 11.0197 22.4809 9.05486 19.294 8.35724C15.6101 7.55365 11.3381 8.07024 8.2378 10.2691C6.93841 11.1874 5.85787 12.4017 5.32444 13.8852C4.7135 15.5851 4.98705 17.466 5.96273 18.9893C6.24265 19.4265 6.57621 19.8378 6.94129 20.2145L6.95209 20.2256ZM7.60662 19.6152L7.59494 19.603C6.81531 18.7994 6.22717 17.8325 5.99465 16.7419C5.81228 15.8677 5.88522 15.0376 6.16334 14.2119C6.68309 12.6798 7.95056 11.4259 9.39129 10.5737C11.1512 9.53171 13.2119 9.00187 15.2636 8.90474C17.3837 8.80318 19.5675 9.13433 21.5007 10.0041C23.1055 10.7283 24.5873 11.8277 25.4353 13.3377C26.1967 14.6976 26.3015 16.2783 25.6815 17.7309C25.0386 19.2321 23.6663 20.4331 22.1709 21.2278C20.3153 22.2169 18.177 22.6628 16.066 22.6761C14.7803 22.6805 13.4992 22.5259 12.2591 22.186C11.9809 22.1109 11.7074 22.027 11.4384 21.9343C11.401 21.9213 11.3639 21.9073 11.327 21.8933C11.1256 21.817 10.9299 21.7429 10.718 21.8548C10.6391 21.8973 10.5639 21.947 10.49 21.9959C10.4487 22.0232 10.4078 22.0503 10.367 22.0756C9.53204 22.6038 8.69711 23.1321 7.85973 23.658L8.29251 20.8216C8.29674 20.7888 8.30196 20.756 8.30724 20.7228C8.31334 20.6844 8.31954 20.6455 8.32442 20.6053C8.35634 20.3889 8.30163 20.2653 8.14205 20.1108C8.07224 20.0449 8.00042 19.9802 7.92838 19.9154C7.81966 19.8176 7.71016 19.719 7.60662 19.6152Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-sendmessage {background-image: url("data:image/svg+xml,%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.51145 8.00062L24.477 8.00062C24.6583 8.00053 24.8255 8.09783 24.9155 8.25534L24.9187 8.25975C25.0273 8.40973 25.027 8.6124 24.9184 8.76238L16.4351 23.745L16.434 23.7472C16.3521 23.9094 16.1824 24.0082 16.001 23.9995H15.9219C15.7112 23.961 15.541 23.8052 15.4841 23.5984L13.8314 14.589L7.18587 8.91607L7.18494 8.91532C7.01193 8.77462 6.95281 8.53653 7.03961 8.33103L7.04102 8.32662C7.10561 8.1236 7.29883 7.98974 7.51145 8.00062ZM16.2943 21.9475L23.0392 10.0442L14.9656 14.7043L16.2943 21.9475ZM14.5326 13.7277L22.7997 8.9832L8.94787 8.9893L14.5326 13.7277Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-play {background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 245.6 214.4' style='enable-background:new 0 0 245.6 214.4;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:none;%7D .st1%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23FFFFFF;%7D%0A%3C/style%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='Icons'%3E%3Cg id='Outlined' transform='translate(-204.000000, -952.000000)'%3E%3Cg id='Av' transform='translate(100.000000, 852.000000)'%3E%3Cg id='Outlined-_x2F_-AV-_x2F_-play_x5F_circle_x5F_filled' transform='translate(102.000000, 98.000000)'%3E%3Cg%3E%3Cpolygon id='Path' class='st0' points='2.8,-12.8 246.8,-12.8 246.8,231.2 2.8,231.2 '/%3E%3Cpath id='_xD83D__xDD39_-Icon-Color' class='st1' d='M124.8,7.6C68.7,7.6,23.1,53.1,23.1,109.2s45.5,101.7,101.7,101.7 s101.7-45.5,101.7-101.7S180.9,7.6,124.8,7.6z M104.5,155V63.5l61,45.7L104.5,155z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-pause {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' rx='4' fill='%23F5F5F5'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19 8.52105C19 8.23818 19.2191 8 19.5 8C19.7809 8 20 8.23818 20 8.52105V23.6789C20 23.9618 19.7809 24.2 19.5 24.2C19.2191 24.2 19 23.9618 19 23.6789V8.52105Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 8.52105C12 8.23818 12.2191 8 12.5 8C12.7809 8 13 8.23818 13 8.52105V23.6789C13 23.9618 12.7809 24.2 12.5 24.2C12.2191 24.2 12 23.9618 12 23.6789V8.52105Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-calendar {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.2 6C11.4209 6 11.6 6.17909 11.6 6.4V7.6H20.4V6.4C20.4 6.17909 20.5791 6 20.8 6C21.0209 6 21.2 6.17909 21.2 6.4V7.6H24.8C25.4628 7.6 26 8.13726 26 8.8V24.8C26 25.4628 25.4628 26 24.8001 26H7.19996C6.53719 26 5.99997 25.4627 6 24.8L6.00003 8.79996C6.00003 8.13721 6.53724 7.6 7.19999 7.6H10.8V6.4C10.8 6.17909 10.9791 6 11.2 6ZM10.8 8.4H7.19999C6.97907 8.4 6.80003 8.57904 6.80003 8.79996V12.4H25.2V8.8C25.2 8.57908 25.0209 8.4 24.8 8.4H21.2V9.6C21.2 9.82091 21.0209 10 20.8 10C20.5791 10 20.4 9.82091 20.4 9.6V8.4H11.6V9.6C11.6 9.82091 11.4209 10 11.2 10C10.9791 10 10.8 9.82091 10.8 9.6V8.4ZM25.2 13.2H6.80003L6.8 24.8C6.79999 25.0209 6.97904 25.2 7.19996 25.2H24.8001C25.021 25.2 25.2 25.021 25.2 24.8V13.2ZM8.40003 16C8.40003 15.7791 8.57912 15.6 8.80003 15.6H11.2C11.4209 15.6 11.6 15.7791 11.6 16C11.6 16.2209 11.4209 16.4 11.2 16.4H8.80003C8.57912 16.4 8.40003 16.2209 8.40003 16ZM14.4 16C14.4 15.7791 14.5791 15.6 14.8 15.6H17.2C17.4209 15.6 17.6 15.7791 17.6 16C17.6 16.2209 17.4209 16.4 17.2 16.4H14.8C14.5791 16.4 14.4 16.2209 14.4 16ZM20.4 16C20.4 15.7791 20.5791 15.6 20.8 15.6H23.2C23.4209 15.6 23.6 15.7791 23.6 16C23.6 16.2209 23.4209 16.4 23.2 16.4H20.8C20.5791 16.4 20.4 16.2209 20.4 16ZM8.40003 18.8C8.40003 18.5791 8.57912 18.4 8.80003 18.4H11.2C11.4209 18.4 11.6 18.5791 11.6 18.8C11.6 19.0209 11.4209 19.2 11.2 19.2H8.80003C8.57912 19.2 8.40003 19.0209 8.40003 18.8ZM14.4 18.8C14.4 18.5791 14.5791 18.4 14.8 18.4H17.2C17.4209 18.4 17.6 18.5791 17.6 18.8C17.6 19.0209 17.4209 19.2 17.2 19.2H14.8C14.5791 19.2 14.4 19.0209 14.4 18.8ZM20.4 18.8C20.4 18.5791 20.5791 18.4 20.8 18.4H23.2C23.4209 18.4 23.6 18.5791 23.6 18.8C23.6 19.0209 23.4209 19.2 23.2 19.2H20.8C20.5791 19.2 20.4 19.0209 20.4 18.8ZM8.40003 22C8.40003 21.7791 8.57912 21.6 8.80003 21.6H11.2C11.4209 21.6 11.6 21.7791 11.6 22C11.6 22.2209 11.4209 22.4 11.2 22.4H8.80003C8.57912 22.4 8.40003 22.2209 8.40003 22ZM14.4 22C14.4 21.7791 14.5791 21.6 14.8 21.6H17.2C17.4209 21.6 17.6 21.7791 17.6 22C17.6 22.2209 17.4209 22.4 17.2 22.4H14.8C14.5791 22.4 14.4 22.2209 14.4 22ZM20.4 22C20.4 21.7791 20.5791 21.6 20.8 21.6H23.2C23.4209 21.6 23.6 21.7791 23.6 22C23.6 22.2209 23.4209 22.4 23.2 22.4H20.8C20.5791 22.4 20.4 22.2209 20.4 22Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-checked {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.2626 21.7793L5.09892 15.56L3 17.6629L11.2626 26L29 8.10291L26.9159 6L11.2626 21.7793Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-clear {background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='13' fill='none'%3E%3Cpath fill='%23000' d='m9.397 3.262-.454-.454-3.09 3.09-3.091-3.09-.454.454 3.09 3.09-3.09 3.09.454.455 3.09-3.09 3.09 3.09.455-.454-3.09-3.09 3.09-3.091Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-download {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 20.5306C15.8651 20.5306 15.7458 20.5086 15.6397 20.4673C15.5388 20.4283 15.4318 20.3575 15.3207 20.2464L11.5014 16.4271C11.3946 16.3203 11.3437 16.2019 11.3396 16.0638L11.3395 16.0628C11.335 15.9348 11.3811 15.8106 11.5028 15.6838C11.6352 15.5519 11.7601 15.5004 11.8808 15.4985C11.999 15.4967 12.1218 15.5446 12.2537 15.6764L15.4752 18.8979V6.52478C15.4752 6.36894 15.5253 6.24821 15.6239 6.14865C15.7235 6.05004 15.8442 6 16 6C16.1558 6 16.2766 6.05006 16.3761 6.14871C16.4747 6.24826 16.5248 6.36897 16.5248 6.52478V18.8979L19.7463 15.6764C19.8528 15.5699 19.9728 15.5179 20.115 15.513C20.2438 15.5085 20.3692 15.5562 20.4974 15.684C20.6243 15.8152 20.6737 15.9386 20.6749 16.0576L20.675 16.0586C20.6768 16.1746 20.6296 16.2961 20.4985 16.4271L16.6793 20.2464C16.5682 20.3575 16.4612 20.4283 16.3603 20.4673C16.2542 20.5086 16.1349 20.5306 16 20.5306Z' fill='%23333333'/%3E%3Cpath d='M24.9504 21.0466C24.9504 20.8894 25.0007 20.769 25.0989 20.6708C25.1985 20.572 25.3193 20.5219 25.4752 20.5219C25.6312 20.5219 25.752 20.572 25.8516 20.6708C25.9497 20.769 26 20.8894 26 21.0466V23.8499C26 24.4697 25.7947 24.9765 25.3863 25.3848C24.9769 25.7943 24.4695 26 23.8499 26H8.15015C7.53035 26 7.02354 25.7947 6.61515 25.3863C6.2057 24.9769 6 24.4695 6 23.8499V21.0466C6 20.8895 6.0503 20.7691 6.14841 20.6708C6.24802 20.572 6.36882 20.5219 6.52478 20.5219C6.68075 20.5219 6.80154 20.572 6.90115 20.6708C6.99927 20.7691 7.04956 20.8894 7.04956 21.0466V23.8499C7.04956 24.1371 7.17172 24.3921 7.38884 24.6104L7.3896 24.6112C7.60786 24.8283 7.8629 24.9504 8.15015 24.9504H23.8499C24.1371 24.9504 24.3921 24.8283 24.6104 24.6112L24.6112 24.6104C24.8283 24.3921 24.9504 24.1371 24.9504 23.8499V21.0466Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-star-empty {background-image: url("data:image/svg+xml,%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.0039 2L20.297 10.8306L30 12.3148L23.0386 19.1872L24.645 29L16.0493 24.412L7.34018 28.9937L8.98754 19.2855L2 12.3046L11.6164 10.893L16.0039 2ZM15.9975 4.2081L12.2657 11.7718L4.04473 12.9786L10.0298 18.9579L8.62687 27.2257L16.0527 23.3191L23.3686 27.224L21.9983 18.8536L27.9515 12.9765L19.6424 11.7056L19.4203 11.2487L15.9975 4.2081Z' fill='%23CCCCCC'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-star-half {background-image: url("data:image/svg+xml,%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.0039 2L11.6201 10.8877L2 12.3002L8.99062 19.286L7.34379 28.9937L16.0493 24.4127L24.6414 29L23.0354 19.1878L30 12.3104L20.2932 10.8253L16.0039 2ZM16.0477 23.3138L16.0526 23.3112L23.3637 27.2146L21.9944 18.8484L27.9376 12.9796L19.6419 11.7104L16.009 4.23575L16.0477 23.3138Z' fill='url(%23paint0_linear_16_4700)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_16_4700' x1='16' y1='15.5218' x2='16.0451' y2='15.5218' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%231C0061'/%3E%3Cstop offset='1' stop-color='%23CCCCCC'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-star-full {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.297 10.8306L30 12.3148L23.0386 19.1872L24.645 29L16.0493 24.412L7.34018 28.9937L8.98754 19.2855L2 12.3046L11.6164 10.893L16.0039 2L20.297 10.8306Z' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-marker {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.9924 1C9.91901 1.0082 5 5.83127 5 11.778C5 17.7245 15.9924 31 15.9924 31C15.9924 31 27 17.7245 27 11.778C27 5.82547 22.0717 1 15.9924 1Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-marker-success {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.9924 1C9.91901 1.0082 5 5.83127 5 11.778C5 17.7245 15.9924 31 15.9924 31C15.9924 31 27 17.7245 27 11.778C27 5.82547 22.0717 1 15.9924 1Z' fill='%233F9C35'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-marker-error {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.9924 1C9.91901 1.0082 5 5.83127 5 11.778C5 17.7245 15.9924 31 15.9924 31C15.9924 31 27 17.7245 27 11.778C27 5.82547 22.0717 1 15.9924 1Z' fill='%23A30B0B'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-clustering {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='16' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-microphone {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.0323 5C13.317 5 11.1155 7.16447 11.0044 9.87227L11 10.0871V14.8468C11 17.7103 13.2359 20 16.0323 20C18.7033 20 20.8855 17.8169 20.9956 15.0651L21 14.8468V10.0871C21 7.28967 18.7641 5 16.0323 5ZM16.0323 6.25C18.0136 6.25 19.6726 7.88556 19.7744 9.89187L19.7793 10.0871V14.8468C19.7793 16.9963 18.088 18.75 16.0323 18.75C13.9885 18.75 12.3274 17.1144 12.2256 15.048L12.2207 14.8468V10.0871C12.2207 7.98201 13.9332 6.25 16.0323 6.25Z' fill='%23333333'/%3E%3Cpath d='M23.9554 16.5939C23.9915 16.2709 23.7297 16 23.4047 16C23.0986 16 22.8491 16.2415 22.8112 16.5452C22.3995 19.8418 19.6683 22.5361 16.2605 22.651L16.0322 22.6549C12.5136 22.6549 9.69624 19.957 9.25664 16.5733C9.21513 16.2537 8.95235 16 8.63014 16C8.2865 16 8.00991 16.287 8.05068 16.6282C8.48308 20.2468 11.2903 23.2577 14.9752 23.7712L15.2237 23.8019L15.3972 23.8206V25.8541H14.246C13.9067 25.8541 13.6747 26.0868 13.6747 26.427C13.6747 26.7673 13.9067 27 14.246 27H17.7546C18.1115 27 18.3897 26.7504 18.3897 26.427C18.3897 26.1037 18.1115 25.8541 17.7546 25.8541H16.6034V23.8203L16.7772 23.8018C20.597 23.3955 23.5384 20.3338 23.9554 16.5939Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-nomicrophone {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29.5993 26.4873C29.8204 26.2025 29.768 25.7922 29.4825 25.5721L3.31283 5.39633C3.02864 5.17723 2.62076 5.22928 2.40072 5.51274C2.17962 5.79754 2.23198 6.20777 2.51752 6.42791L28.6872 26.6037C28.9714 26.8228 29.3792 26.7707 29.5993 26.4873Z' fill='%23333333'/%3E%3Cpath d='M16.0323 5C18.6922 5 20.882 7.17075 20.9954 9.86737L21 10.0871V14.8468L20.9956 15.0651C20.9683 15.7493 20.8128 16.3983 20.5536 16.9873L19.5421 16.2096C19.6739 15.8446 19.7544 15.4539 19.7744 15.0471L19.7793 14.8468V10.0871L19.7744 9.89187C19.6726 7.88556 18.0136 6.25 16.0323 6.25C13.9988 6.25 12.3281 7.87545 12.2256 9.89092L12.2207 10.0871L12.22 10.586L11.017 9.661C11.2349 7.04906 13.3904 5 16.0323 5Z' fill='%23333333'/%3E%3Cpath d='M11 14.692L12.3117 15.7012C12.6908 17.4488 14.2093 18.75 16.0323 18.75C16.1124 18.75 16.192 18.7473 16.2709 18.7421L17.5776 19.7462C17.0911 19.911 16.5717 20 16.0323 20C13.3076 20 11.115 17.8262 11.0044 15.0659L11 14.8468V14.692Z' fill='%23333333'/%3E%3Cpath d='M8.63014 16C8.95235 16 9.21513 16.2537 9.25664 16.5733C9.69623 19.957 12.5136 22.6549 16.0322 22.6549L16.2605 22.651C17.5767 22.6066 18.804 22.1802 19.8347 21.48L20.8 22.2206C19.664 23.0757 18.2884 23.6411 16.7772 23.8018L16.6034 23.8203V25.8541H17.7546C18.1115 25.8541 18.3897 26.1037 18.3897 26.427C18.3897 26.7504 18.1115 27 17.7546 27H14.246C13.9067 27 13.6747 26.7673 13.6747 26.427C13.6747 26.0868 13.9067 25.8541 14.246 25.8541H15.3972V23.8206L14.9752 23.7712C11.2903 23.2577 8.48308 20.2468 8.05068 16.6282C8.00991 16.287 8.2865 16 8.63014 16Z' fill='%23333333'/%3E%3Cpath d='M23.9583 16.5937C23.9914 16.2705 23.7297 16 23.4047 16C23.0986 16 22.8491 16.2411 22.8147 16.5453C22.7438 17.1715 22.5975 17.7839 22.3567 18.3729L23.2994 19.0967C23.6588 18.2985 23.8699 17.4568 23.9583 16.5937Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-sound {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.75' d='M16 0C7.16 0 0 7.16 0 16C0 24.84 7.16 32 16 32C24.84 32 32 24.84 32 16C32 7.16 24.84 0 16 0Z' fill='%23F5F5F5'/%3E%3Cpath d='M6.5 18.6906C6.22386 18.6906 6 18.4667 6 18.1906V13.875C6 13.5988 6.22386 13.375 6.5 13.375H10.2376C10.3722 13.375 10.5011 13.3207 10.5952 13.2245L14.2333 9.5017C14.5466 9.18113 15.0909 9.40293 15.0909 9.85116V22.2618C15.0909 22.7115 14.5435 22.9326 14.2312 22.6091L10.5955 18.8433C10.5013 18.7457 10.3714 18.6906 10.2358 18.6906H6.5ZM13.7922 12.3376C13.7922 12.1583 13.5745 12.0695 13.4492 12.1978L11.1471 14.5534C11.053 14.6496 10.9241 14.7039 10.7895 14.7039H7.7987C7.52256 14.7039 7.2987 14.9278 7.2987 15.2039V16.8617C7.2987 17.1378 7.52256 17.3617 7.7987 17.3617H10.7895C10.9241 17.3617 11.053 17.416 11.1471 17.5122L13.4492 19.8678C13.5745 19.9961 13.7922 19.9073 13.7922 19.728V12.3376Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.1689 10.8505C17.1689 10.4555 17.5603 10.1487 17.9387 10.334C18.7982 10.7549 19.5148 11.4019 20.0884 12.268C20.7675 13.2939 21.1064 14.4538 21.1064 15.7408C21.1064 17.0279 20.7676 18.1876 20.0884 19.213C19.5148 20.0795 18.7982 20.7266 17.9388 21.1476C17.5603 21.333 17.1689 21.0261 17.1689 20.6312C17.1689 20.3891 17.3134 20.1822 17.5152 20.0876C18.2348 19.7504 18.8255 19.2144 19.2879 18.472C19.7932 17.6606 20.0467 16.7523 20.0467 15.7408C20.0467 14.7294 19.7932 13.821 19.2879 13.0097C18.8255 12.2673 18.2348 11.7313 17.5152 11.3941C17.3134 11.2995 17.1689 11.0926 17.1689 10.8505Z' fill='%23333333'/%3E%3Cpath d='M22.3378 20.3258C21.3651 21.6272 20.1118 22.5746 18.5779 23.1681C18.3357 23.2619 18.1689 23.4908 18.1689 23.7506C18.1689 24.1581 18.5642 24.4489 18.9436 24.3001C20.6487 23.6314 22.0705 22.5805 23.2089 21.1474C24.5156 19.5033 25.1689 17.6447 25.1689 15.5716C25.1689 13.4985 24.5156 11.6395 23.2089 9.99459C22.0705 8.5622 20.6487 7.51169 18.9436 6.84307C18.5642 6.6943 18.1689 6.98511 18.1689 7.39262C18.1689 7.65239 18.3357 7.88133 18.5779 7.97507C20.1118 8.56857 21.3651 9.51603 22.3378 10.8174C23.3956 12.2327 23.9244 13.8175 23.9244 15.5716C23.9244 17.3258 23.3956 18.9105 22.3378 20.3258Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-nosound {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.75' d='M16 0C7.16 0 0 7.16 0 16C0 24.84 7.16 32 16 32C24.84 32 32 24.84 32 16C32 7.16 24.84 0 16 0Z' fill='%23F5F5F5'/%3E%3Cpath d='M27.1946 24.4108C27.3552 24.1972 27.3086 23.8959 27.0969 23.7327L5.69852 7.23537C5.48706 7.07234 5.18402 7.10365 5.01825 7.31298C4.94618 7.40398 4.87522 7.49591 4.80538 7.58873C4.64471 7.80228 4.69139 8.10364 4.90303 8.26681L26.3014 24.7641C26.5129 24.9272 26.8159 24.8959 26.9817 24.6865C27.0538 24.5955 27.1247 24.5036 27.1946 24.4108Z' fill='%23333333'/%3E%3Cpath d='M15.0909 12.3017C15.0909 12.4677 14.9003 12.5614 14.7688 12.4601L12.9928 11.0908C12.898 11.0177 12.8882 10.8783 12.9719 10.7927L14.2333 9.50187C14.5466 9.18131 15.0909 9.40311 15.0909 9.85134V12.3017Z' fill='%23333333'/%3E%3Cpath d='M5.99998 13.5752C5.99998 13.4647 6.08952 13.3752 6.19998 13.3752H9.16838C9.21257 13.3752 9.25551 13.3898 9.2905 13.4168L10.4954 14.3457C10.6465 14.4622 10.5641 14.7041 10.3732 14.7041H7.49868C7.38823 14.7041 7.29868 14.7936 7.29868 14.9041V17.1619C7.29868 17.2723 7.38823 17.3619 7.49868 17.3619H10.9158C10.9696 17.3619 11.0212 17.3836 11.0588 17.4221L13.4492 19.868C13.5745 19.9962 13.7922 19.9075 13.7922 19.7282V17.2941C13.7922 17.1281 13.9828 17.0344 14.1143 17.1357L15.013 17.8286C15.0621 17.8665 15.0909 17.925 15.0909 17.987V22.2146C15.0909 22.6628 14.5466 22.8846 14.2333 22.5641L10.5069 18.751C10.4692 18.7125 10.4177 18.6908 10.3638 18.6908H6.19998C6.08952 18.6908 5.99998 18.6012 5.99998 18.4908V13.5752Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.9372 10.3342C17.5588 10.1489 17.1674 10.4557 17.1674 10.8506C17.1674 11.0927 17.3119 11.2996 17.5137 11.3942C18.2333 11.7315 18.8239 12.2674 19.2864 13.0099C19.7917 13.8212 20.0451 14.7295 20.0451 15.741C20.0451 16.1614 20.0013 16.564 19.9139 16.9492C19.8964 17.0261 19.9233 17.1067 19.9852 17.1557L20.5602 17.6112C20.669 17.6973 20.83 17.6492 20.8677 17.5157C21.0258 16.9543 21.1049 16.3625 21.1049 15.741C21.1049 14.4539 20.766 13.294 20.0869 12.2681C19.5133 11.402 18.7967 10.7551 17.9372 10.3342ZM19.069 20.3922C19.1556 20.3161 19.1546 20.1824 19.0702 20.1039L18.5513 19.6218C18.4766 19.5524 18.3619 19.5508 18.2818 19.614C18.0445 19.8012 17.7885 19.9589 17.5137 20.0877C17.3119 20.1823 17.1674 20.3892 17.1674 20.6313C17.1674 21.0263 17.5588 21.3331 17.9372 21.1478C18.347 20.9471 18.7242 20.695 19.069 20.3922Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.5764 23.1683C19.4146 22.8439 20.169 22.4139 20.8397 21.8782C20.9169 21.8165 21.0276 21.8179 21.1016 21.8835L21.6871 22.4028C21.7778 22.4831 21.7768 22.6251 21.6832 22.702C20.8697 23.3699 19.956 23.9026 18.9421 24.3003C18.5627 24.449 18.1674 24.1582 18.1674 23.7507C18.1674 23.4909 18.3341 23.262 18.5764 23.1683ZM23.671 20.13C23.7649 20.1946 23.894 20.1679 23.9522 20.0699C24.7623 18.7035 25.1674 17.2041 25.1674 15.5717C25.1674 13.4986 24.514 11.6396 23.2074 9.99473C22.069 8.56234 20.6472 7.51183 18.9421 6.8432C18.5627 6.69444 18.1674 6.98524 18.1674 7.39275C18.1674 7.65252 18.3341 7.88146 18.5764 7.9752C20.1103 8.5687 21.3636 9.51616 22.3362 10.8176C23.394 12.2329 23.9229 13.8176 23.9229 15.5717C23.9229 16.9529 23.595 18.229 22.9393 19.4C22.888 19.4917 22.9134 19.608 22.9999 19.6676L23.671 20.13Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-payment {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.84 11.9106H26.16V10.33C26.16 10.0574 25.95 9.85032 25.6875 9.85032H7.3125C7.05 9.85032 6.84 10.0683 6.84 10.33V11.9106ZM26.58 12.7609H6.42C6.30861 12.7609 6.20178 12.7149 6.12301 12.6332C6.04425 12.5514 6 12.4405 6 12.3248V10.33C6 9.5996 6.588 9 7.3125 9H25.6875C26.412 9 27 9.5996 27 10.33V12.3357C26.9973 12.4495 26.9518 12.5576 26.8733 12.6371C26.7949 12.7165 26.6896 12.7609 26.58 12.7609Z' fill='%23333333'/%3E%3Cpath d='M6.84 16.0531V22.67C6.84 22.9426 7.05 23.1497 7.3125 23.1497H25.6875C25.95 23.1497 26.16 22.9317 26.16 22.67V16.0531H6.84ZM25.6875 24H7.3125C6.588 24 6 23.4004 6 22.67V15.6279C6.00274 15.5142 6.0482 15.406 6.12667 15.3266C6.20514 15.2472 6.31041 15.2027 6.42 15.2028H26.58C26.811 15.2028 27 15.3881 27 15.6279V22.67C27 23.4004 26.412 24 25.6875 24Z' fill='%23333333'/%3E%3Cpath d='M6.84 15.192H26.16V12.7611H6.84V15.192ZM26.58 16.0532H6.42C6.30861 16.0532 6.20178 16.0073 6.12301 15.9255C6.04425 15.8437 6 15.7328 6 15.6172V12.3359C6.00274 12.2222 6.0482 12.1141 6.12667 12.0346C6.20514 11.9552 6.31041 11.9107 6.42 11.9108H26.58C26.811 11.9108 27 12.0959 27 12.3357V15.6279C26.9973 15.7417 26.9518 15.8499 26.8733 15.9294C26.7949 16.0088 26.6896 16.0533 26.58 16.0532Z' fill='%23333333'/%3E%3Cpath d='M13.0326 21.057H8.93758C8.82619 21.057 8.71936 21.0111 8.64059 20.9293C8.56183 20.8476 8.51758 20.7367 8.51758 20.621C8.52297 20.5092 8.56959 20.4038 8.64778 20.3267C8.72597 20.2495 8.82973 20.2066 8.93758 20.2068H13.0326C13.2636 20.2068 13.4526 20.392 13.4526 20.6319C13.4498 20.7456 13.4044 20.8538 13.3259 20.9332C13.2474 21.0126 13.1422 21.057 13.0326 21.057Z' fill='%23333333'/%3E%3Cpath d='M13.0326 18.9966H8.93758C8.82619 18.9966 8.71936 18.9506 8.64059 18.8689C8.56183 18.7871 8.51758 18.6762 8.51758 18.5605C8.52297 18.4487 8.56959 18.3433 8.64778 18.2662C8.72597 18.1891 8.82973 18.1462 8.93758 18.1463H13.0326C13.2636 18.1463 13.4526 18.3316 13.4526 18.5715C13.4498 18.6852 13.4044 18.7933 13.3259 18.8727C13.2474 18.9522 13.1422 18.9966 13.0326 18.9966Z' fill='%23333333'/%3E%3Cpath d='M22.8408 18.6801C22.7236 18.6787 22.6072 18.7012 22.4984 18.7465C22.3896 18.7917 22.2904 18.8588 22.2066 18.9438C22.1227 19.0289 22.0558 19.1302 22.0097 19.242C21.9636 19.3539 21.9391 19.4742 21.9378 19.5959C21.9378 19.8793 22.0638 20.1409 22.2843 20.3153C22.4418 20.4352 22.6308 20.5006 22.8408 20.5006C23.3448 20.5006 23.7438 20.0973 23.7438 19.5959C23.7383 19.352 23.6404 19.1203 23.4713 18.9509C23.3023 18.7815 23.0757 18.6881 22.8408 18.6911V18.6801ZM22.8408 21.3618C22.4418 21.3618 22.0743 21.231 21.7698 20.9912C21.5631 20.8285 21.3955 20.6184 21.2802 20.3773C21.1648 20.1361 21.1047 19.8705 21.1047 19.6013C21.1047 19.332 21.1648 19.0665 21.2802 18.8253C21.3955 18.5842 21.5631 18.3741 21.7698 18.2114C22.0743 17.9716 22.4418 17.8407 22.8408 17.8407C23.8068 17.8407 24.5838 18.6365 24.5838 19.6067C24.5838 20.5769 23.8068 21.3618 22.8408 21.3618Z' fill='%23333333'/%3E%3Cpath d='M21.2133 18.6801C21.0961 18.6787 20.9798 18.7012 20.871 18.7465C20.7622 18.7917 20.663 18.8588 20.5792 18.9438C20.4953 19.0289 20.4284 19.1302 20.3823 19.242C20.3362 19.3539 20.3117 19.4742 20.3103 19.5959C20.3118 19.7286 20.3408 19.8595 20.3953 19.9796C20.4497 20.0997 20.5284 20.2062 20.626 20.292C20.7235 20.3778 20.8377 20.4409 20.9608 20.4769C21.0839 20.5129 21.213 20.5209 21.3393 20.5006C21.1785 20.2303 21.0934 19.9189 21.0934 19.6013C21.0934 19.2836 21.1785 18.9722 21.3393 18.702L21.2133 18.6911V18.6801ZM21.2133 21.3618C20.2473 21.3618 19.4703 20.5769 19.4703 19.6067C19.4703 18.6256 20.2473 17.8407 21.2133 17.8407C21.6123 17.8407 21.9798 17.9716 22.2843 18.2114C22.3343 18.2499 22.3749 18.3001 22.4028 18.3578C22.4308 18.4155 22.4453 18.4793 22.4453 18.5439C22.4453 18.6085 22.4308 18.6722 22.4028 18.73C22.3749 18.7877 22.3343 18.8378 22.2843 18.8764C22.1757 18.9606 22.0875 19.07 22.0267 19.1959C21.966 19.3217 21.9343 19.4605 21.9343 19.6013C21.9343 19.742 21.966 19.8809 22.0267 20.0067C22.0875 20.1326 22.1757 20.242 22.2843 20.3262C22.3343 20.3648 22.3749 20.4149 22.4028 20.4726C22.4308 20.5303 22.4453 20.5941 22.4453 20.6587C22.4453 20.7233 22.4308 20.7871 22.4028 20.8448C22.3749 20.9025 22.3343 20.9526 22.2843 20.9912C21.9798 21.231 21.6123 21.3618 21.2133 21.3618Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-secure {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.3533 11.3897L16.8464 7.13835L16.8433 7.13661C16.509 6.95061 16.1119 6.95476 15.7807 7.14774L12.561 9.05765C12.5349 9.07005 12.5097 9.08508 12.4857 9.10237L8.62741 11.3911C8.24039 11.6176 8 12.0614 8 12.5498V20.4502C8 20.9386 8.24039 21.3823 8.62741 21.6088L15.7775 25.8504L15.7808 25.8523C15.9496 25.9507 16.1357 26 16.3219 26C16.5007 26 16.6795 25.9545 16.8433 25.8634L24.3533 21.6102C24.7522 21.3872 25 20.9392 25 20.4405V12.5595C25 12.0608 24.7522 11.6127 24.3533 11.3897ZM16.2422 8.13391C16.291 8.10593 16.3493 8.10537 16.3985 8.13235L23.4252 12.1118L20.6905 13.6336L13.8208 9.57035L16.2422 8.13391ZM15.8168 24.6137L9.09271 20.6248L9.08949 20.6229C9.03169 20.5892 8.99573 20.523 8.99573 20.4502V13.052L15.8168 17.0275V24.6137ZM16.3199 16.0656L9.53637 12.1119L12.7579 10.2009L19.5936 14.244L16.3199 16.0656ZM24.0042 20.4404C24.0042 20.5149 23.9672 20.5818 23.9076 20.615L16.8126 24.6331V17.0347L20.0793 15.2169V17.1228C20.0793 17.4301 20.3022 17.6793 20.5772 17.6793C20.8521 17.6793 21.0751 17.4301 21.0751 17.1228V14.6628L24.0042 13.0329V20.4404Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-shipping {background-image: url("data:image/svg+xml,%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.1324 11.5V10C20.1324 9.44772 19.6847 9 19.1324 9H5C4.44772 9 4 9.44772 4 10V21.2143C4 21.7666 4.44771 22.2143 5 22.2143H6.89514C7.11501 23.2331 8.07236 23.9999 9.22006 23.9999C10.3678 23.9999 11.3251 23.2331 11.545 22.2143H19.1324L19.1429 22.2143H21.1295C21.3494 23.2331 22.3067 23.9999 23.4544 23.9999C24.6021 23.9999 25.5595 23.2331 25.7794 22.2143H26.9995C27.5518 22.2143 27.9995 21.7666 27.9995 21.2143V17.6016C27.9995 17.4071 27.9428 17.2169 27.8364 17.0542L24.4997 11.9527C24.315 11.6702 24.0003 11.5 23.6628 11.5H20.1324ZM5.11684 10.1168V17.2581H18.9844V12.5C18.9844 12.4142 18.9952 12.3309 19.0155 12.2514V10.1168H5.11684ZM25.718 21.0975H26.8827V17.6364L23.5996 12.6169H20.1324V21.0975H21.1909C21.4934 20.1922 22.3924 19.5356 23.4544 19.5356C24.5165 19.5356 25.4155 20.1922 25.718 21.0975ZM11.4836 21.0975H18.9844V18.4205H5.11684V21.0975H6.95648C7.25899 20.1922 8.15803 19.5356 9.22006 19.5356C10.2821 19.5356 11.1811 20.1922 11.4836 21.0975ZM23.4544 22.883C24.213 22.883 24.71 22.3205 24.71 21.7677C24.71 21.2149 24.213 20.6524 23.4544 20.6524C22.6959 20.6524 22.1989 21.2149 22.1989 21.7677C22.1989 22.3205 22.6959 22.883 23.4544 22.883ZM9.22006 22.8831C9.97859 22.8831 10.4756 22.3206 10.4756 21.7678C10.4756 21.215 9.97859 20.6525 9.22006 20.6525C8.46153 20.6525 7.9645 21.215 7.9645 21.7678C7.9645 22.3206 8.46153 22.8831 9.22006 22.8831Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-exchange {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.1259 6.10957C13.11 6.04513 13.0534 6 12.9886 6C12.9237 6 12.8672 6.04513 12.8512 6.10957L12.7472 6.52994C12.6941 6.7451 12.5841 6.9419 12.4288 7.0991C12.2734 7.25632 12.0786 7.36805 11.865 7.42213L11.4491 7.52732C11.3858 7.54332 11.3413 7.60154 11.3413 7.66837C11.3413 7.7352 11.3858 7.79341 11.4491 7.80942L11.865 7.91461C12.0786 7.96869 12.2734 8.08043 12.4288 8.23764C12.5841 8.39483 12.6941 8.59158 12.7472 8.80674L12.8512 9.22717C12.8672 9.29161 12.9237 9.33674 12.9886 9.33674C13.0534 9.33674 13.11 9.29161 13.1259 9.22717L13.2299 8.8068C13.2831 8.59159 13.3931 8.39477 13.5485 8.23757C13.7039 8.08035 13.8988 7.96864 14.1125 7.91462L14.5281 7.80941C14.5913 7.79339 14.6358 7.73519 14.6358 7.66837C14.6358 7.60155 14.5913 7.54334 14.5281 7.52733L14.1125 7.42213C13.8989 7.36811 13.7039 7.25639 13.5485 7.09917C13.3931 6.94197 13.2831 6.74519 13.2299 6.52998L13.1259 6.10957Z' fill='%23333333'/%3E%3Cpath d='M18.0108 8.05857C18.0001 8.01561 17.9624 7.98553 17.9192 7.98553C17.876 7.98553 17.8382 8.01561 17.8276 8.05857L17.7583 8.33886C17.7229 8.4823 17.6495 8.61347 17.546 8.71826C17.4424 8.82307 17.3125 8.89756 17.1701 8.93362L16.8929 9.00374C16.8507 9.01441 16.821 9.05322 16.821 9.09778C16.821 9.14233 16.8507 9.18114 16.8929 9.19181L17.1702 9.26194C17.3126 9.298 17.4424 9.37248 17.546 9.47729C17.6495 9.58208 17.7229 9.71329 17.7583 9.85673L17.8276 10.137C17.8382 10.1799 17.876 10.21 17.9192 10.21C17.9624 10.21 18.0001 10.1799 18.0108 10.137L18.0801 9.8567C18.1155 9.71323 18.1889 9.58204 18.2925 9.47724C18.3961 9.37243 18.5261 9.29795 18.6685 9.26193L18.9455 9.1918C18.9877 9.18113 19.0173 9.14232 19.0173 9.09778C19.0173 9.05323 18.9877 9.01443 18.9455 9.00375L18.6685 8.93361C18.526 8.89759 18.3961 8.82312 18.2925 8.71831C18.1889 8.61351 18.1155 8.4823 18.0801 8.33882L18.0108 8.05857Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.0001 9.80057C16.2103 9.8006 16.3952 9.94311 16.4537 10.1502L17.3603 13.361C17.5721 14.1104 17.9693 14.7936 18.515 15.3457C19.0609 15.8979 19.7373 16.3008 20.4809 16.5158L23.6559 17.4342C23.8595 17.4931 24 17.6835 24 17.9003C24 18.1172 23.8594 18.3076 23.6558 18.3664L20.482 19.2836C19.7385 19.4986 19.062 19.9016 18.5162 20.4537C17.9704 21.0059 17.5732 21.6891 17.3615 22.4384C17.3589 22.4474 17.3562 22.4562 17.3532 22.4649L16.4537 25.6504C16.3952 25.8575 16.2103 26 16 26C15.7897 26 15.6048 25.8575 15.5463 25.6504L14.6397 22.4396C14.4279 21.6902 14.0307 21.007 13.485 20.4549C12.9391 19.9027 12.2627 19.4997 11.5191 19.2847L8.34408 18.3664C8.14054 18.3075 7.99998 18.1171 8 17.9002C8.00002 17.6834 8.14063 17.493 8.34418 17.4342L11.518 16.517C12.2615 16.302 12.938 15.899 13.4838 15.3468C14.0296 14.7947 14.4268 14.1115 14.6385 13.3621L15.5463 10.1501C15.6049 9.94301 15.7898 9.80055 16.0001 9.80057ZM16.4617 22.1425C16.7204 21.2435 17.199 20.4256 17.8527 19.7643C18.5127 19.0966 19.3294 18.6106 20.2256 18.3514L21.7874 17.9001L20.2245 17.448C19.3283 17.1889 18.5116 16.7028 17.8516 16.0351C17.1915 15.3674 16.7099 14.5399 16.453 13.6305L15.9998 12.0255L15.5459 13.6316C15.2889 14.541 14.8074 15.3685 14.1473 16.0362C13.4873 16.704 12.6706 17.19 11.7744 17.4491L10.2126 17.9005L11.7755 18.3526C12.6717 18.6117 13.4884 19.0977 14.1484 19.7655C14.8085 20.4332 15.2901 21.2607 15.547 22.1701L16 23.7743L16.453 22.1702C16.4556 22.1608 16.4585 22.1516 16.4617 22.1425Z' fill='%23333333'/%3E%3Cpath d='M11.1064 10.1592C11.0851 10.0733 11.0097 10.0131 10.9232 10.0131C10.8368 10.0131 10.7614 10.0733 10.7401 10.1592L10.5668 10.8599C10.4761 11.2272 10.2884 11.5629 10.0234 11.831C9.75847 12.0992 9.42614 12.2897 9.06194 12.382L8.36877 12.5573C8.28439 12.5786 8.22509 12.6562 8.22509 12.7453C8.22509 12.8344 8.28439 12.9121 8.36877 12.9334L9.06199 13.1087C9.42618 13.2009 9.75847 13.3915 10.0234 13.6597C10.2884 13.9278 10.4761 14.2636 10.5668 14.6308L10.7401 15.3314C10.7614 15.4174 10.8368 15.4775 10.9232 15.4775C11.0097 15.4775 11.0851 15.4174 11.1064 15.3314L11.2797 14.6308C11.3704 14.2635 11.5582 13.9277 11.8233 13.6595C12.0884 13.3913 12.4209 13.2008 12.7852 13.1087L13.4778 12.9334C13.5621 12.912 13.6214 12.8344 13.6214 12.7453C13.6214 12.6562 13.5621 12.5786 13.4778 12.5573L12.7852 12.3819C12.4208 12.2898 12.0884 12.0993 11.8233 11.8311C11.5582 11.563 11.3704 11.2272 11.2797 10.8599L11.1064 10.1592Z' fill='%23333333'/%3E%3Cpath d='M21.1554 11.1865C21.1395 11.1221 21.0829 11.077 21.0181 11.077C20.9532 11.077 20.8967 11.1221 20.8807 11.1865L20.7767 11.607C20.7236 11.8221 20.6136 12.0189 20.4583 12.1761C20.303 12.3333 20.1081 12.445 19.8945 12.4991L19.4786 12.6043C19.4153 12.6203 19.3708 12.6785 19.3708 12.7453C19.3708 12.8122 19.4153 12.8704 19.4786 12.8864L19.8945 12.9916C20.1081 13.0457 20.303 13.1574 20.4583 13.3146C20.6136 13.4718 20.7236 13.6686 20.7767 13.8838L20.8807 14.3041C20.8967 14.3686 20.9532 14.4137 21.0181 14.4137C21.0829 14.4137 21.1395 14.3686 21.1554 14.3041L21.2594 13.8837C21.3126 13.6685 21.4226 13.4717 21.578 13.3145C21.7334 13.1573 21.9284 13.0456 22.1421 12.9916L22.5576 12.8864C22.6209 12.8704 22.6653 12.8122 22.6653 12.7453C22.6653 12.6785 22.6209 12.6203 22.5576 12.6043L22.142 12.4991C21.9283 12.4451 21.7334 12.3334 21.578 12.1761C21.4226 12.0189 21.3126 11.8221 21.2594 11.6069L21.1554 11.1865Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-copy {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.5217 5H11.2174C11.0905 5 10.9689 5.05039 10.8792 5.14008C10.7895 5.22977 10.7391 5.35142 10.7391 5.47826V10.7391H5.47826C5.35142 10.7391 5.22977 10.7895 5.14008 10.8792C5.05039 10.9689 5 11.0905 5 11.2174V26.5217C5 26.6486 5.05039 26.7702 5.14008 26.8599C5.22977 26.9496 5.35142 27 5.47826 27H20.7826C20.9095 27 21.0311 26.9496 21.1208 26.8599C21.2105 26.7702 21.2609 26.6486 21.2609 26.5217V21.2609H26.5217C26.6486 21.2609 26.7702 21.2105 26.8599 21.1208C26.9496 21.0311 27 20.9095 27 20.7826V5.47826C27 5.35142 26.9496 5.22977 26.8599 5.14008C26.7702 5.05039 26.6486 5 26.5217 5ZM20.3043 26.0435H5.95652V11.6957H20.3043V26.0435ZM26.0435 20.3043H21.2609V11.2174C21.2609 11.0905 21.2105 10.9689 21.1208 10.8792C21.0311 10.7895 20.9095 10.7391 20.7826 10.7391H11.6957V5.95652H26.0435V20.3043Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-points{background-image: url("data:image/svg+xml,%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 5.5C16.2233 5.50003 16.4195 5.64802 16.4808 5.86266L17.6852 10.0789C17.6852 10.0789 17.6852 10.0789 17.6852 10.079C17.9732 11.0863 18.5131 12.0037 19.2539 12.7446C19.9948 13.4855 20.9122 14.0254 21.9196 14.3133L21.9197 14.3133L26.1374 15.5193C26.3521 15.5806 26.5 15.7768 26.5 16.0001C26.5 16.2233 26.352 16.4195 26.1373 16.4808L21.9211 17.6852C21.9211 17.6852 21.9211 17.6852 21.921 17.6852C20.9137 17.9732 19.9963 18.5131 19.2554 19.2539C18.5145 19.9948 17.9746 20.9122 17.6867 21.9196C17.6837 21.93 17.6804 21.9402 17.6769 21.9502L16.4808 26.1373C16.4194 26.352 16.2232 26.5 16 26.5C15.7768 26.5 15.5806 26.352 15.5192 26.1373L14.3148 21.9211C14.3148 21.9211 14.3148 21.9211 14.3148 21.921C14.0268 20.9137 13.4869 19.9963 12.7461 19.2554C12.0052 18.5145 11.0878 17.9746 10.0804 17.6867L10.0803 17.6867L5.86255 16.4807C5.64792 16.4194 5.49997 16.2232 5.5 15.9999C5.50003 15.7767 5.64802 15.5805 5.86266 15.5192L10.0789 14.3148C10.0789 14.3148 10.0789 14.3148 10.079 14.3148C11.0863 14.0268 12.0037 13.4869 12.7446 12.7461C13.4855 12.0052 14.0254 11.0878 14.3133 10.0804L14.3133 10.0803L15.5193 5.86255C15.5806 5.64792 15.7768 5.49997 16.0001 5.5ZM16.7339 21.6146C17.0706 20.4557 17.6947 19.4004 18.5483 18.5468C19.4093 17.6858 20.4755 17.0583 21.6463 16.7237L21.6464 16.7237L24.1804 15.9998L21.6448 15.2748C20.474 14.9402 19.4078 14.3127 18.5468 13.4517C17.6858 12.5907 17.0583 11.5245 16.7237 10.3537L16.7237 10.3536L15.9998 7.81958L15.2748 10.3552C14.9402 11.526 14.3127 12.5922 13.4517 13.4532C12.5907 14.3142 11.5245 14.9417 10.3537 15.2763L10.3536 15.2763L7.81959 16.0002L10.3552 16.7252C11.526 17.0598 12.5922 17.6873 13.4532 18.5483C14.3142 19.4093 14.9417 20.4755 15.2763 21.6463L15.2763 21.6464L16 24.1797L16.7237 21.6464C16.7267 21.6356 16.7302 21.625 16.7339 21.6146Z' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-gift{background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.68 11.1259H20.2691C20.7733 10.9044 21.2415 10.6095 21.6584 10.251C21.9475 9.99538 22.1804 9.68313 22.3424 9.33383C22.5045 8.98453 22.5921 8.60571 22.6 8.22112C22.6125 7.79493 22.5372 7.37069 22.3789 6.97444C22.2206 6.57819 21.9825 6.21828 21.6792 5.91679C21.376 5.6153 21.014 5.37858 20.6155 5.22116C20.2169 5.06373 19.7903 4.98893 19.3616 5.00132C18.9748 5.00913 18.5938 5.09632 18.2425 5.25742C17.8911 5.41852 17.5771 5.65006 17.32 5.93751C16.6699 6.667 16.2607 7.61741 16 8.52844C15.7415 7.61741 15.3323 6.66919 14.68 5.93751C14.4229 5.65006 14.1089 5.41852 13.7575 5.25742C13.4062 5.09632 13.0252 5.00913 12.6384 5.00132C12.2097 4.98893 11.7831 5.06373 11.3845 5.22116C10.986 5.37858 10.624 5.6153 10.3208 5.91679C10.0175 6.21828 9.77944 6.57819 9.6211 6.97444C9.46277 7.37069 9.38753 7.79493 9.4 8.22112C9.40785 8.60571 9.49555 8.98453 9.65758 9.33383C9.81961 9.68313 10.0525 9.99538 10.3416 10.251C10.7585 10.6095 11.2267 10.9044 11.7309 11.1259H6.32C5.96991 11.1259 5.63417 11.2642 5.38662 11.5103C5.13907 11.7565 5 12.0903 5 12.4384V15.9381C5 16.2862 5.13907 16.62 5.38662 16.8662C5.63417 17.1123 5.96991 17.2506 6.32 17.2506H6.76V24.6876C6.76 25.0357 6.89907 25.3695 7.14662 25.6156C7.39417 25.8617 7.72991 26 8.08 26H23.92C24.2701 26 24.6058 25.8617 24.8534 25.6156C25.1009 25.3695 25.24 25.0357 25.24 24.6876V17.2506H25.68C26.0301 17.2506 26.3658 17.1123 26.6134 16.8662C26.8609 16.62 27 16.2862 27 15.9381V12.4384C27 12.0903 26.8609 11.7565 26.6134 11.5103C26.3658 11.2642 26.0301 11.1259 25.68 11.1259ZM17.98 6.51717C18.1577 6.3197 18.3744 6.16085 18.6167 6.05056C18.859 5.94028 19.1216 5.88094 19.388 5.87627H19.4551C19.7581 5.87659 20.058 5.93728 20.3371 6.05475C20.6161 6.17222 20.8687 6.3441 21.0798 6.56024C21.2909 6.77637 21.4563 7.03237 21.5663 7.31313C21.6763 7.59388 21.7285 7.8937 21.72 8.19487C21.7152 8.45976 21.6555 8.72081 21.5446 8.9617C21.4337 9.20258 21.274 9.41811 21.0754 9.59478C19.7455 10.765 17.4377 11.0395 16.4554 11.103C16.5236 10.134 16.7986 7.84489 17.98 6.51717ZM10.28 8.19487C10.2715 7.8937 10.3237 7.59388 10.4337 7.31313C10.5437 7.03237 10.7091 6.77637 10.9202 6.56024C11.1313 6.3441 11.3839 6.17222 11.6629 6.05475C11.942 5.93728 12.2419 5.87659 12.5449 5.87627H12.612C12.8784 5.88094 13.141 5.94028 13.3833 6.05056C13.6256 6.16085 13.8423 6.3197 14.02 6.51717C15.1981 7.83943 15.4731 10.134 15.5369 11.1106C14.559 11.0472 12.2512 10.7727 10.9169 9.60244C10.7188 9.42421 10.56 9.20715 10.4503 8.9649C10.3407 8.72266 10.2827 8.46049 10.28 8.19487ZM5.88 15.9381V12.4384C5.88 12.3223 5.92636 12.2111 6.00887 12.129C6.09139 12.047 6.2033 12.0009 6.32 12.0009H15.56V16.3756H6.32C6.2033 16.3756 6.09139 16.3295 6.00887 16.2475C5.92636 16.1654 5.88 16.0542 5.88 15.9381ZM7.64 24.6876V17.2506H15.56V25.1251H8.08C7.9633 25.1251 7.85139 25.079 7.76887 24.9969C7.68636 24.9149 7.64 24.8036 7.64 24.6876ZM24.36 24.6876C24.36 24.8036 24.3136 24.9149 24.2311 24.9969C24.1486 25.079 24.0367 25.1251 23.92 25.1251H16.44V17.2506H24.36V24.6876ZM26.12 15.9381C26.12 16.0542 26.0736 16.1654 25.9911 16.2475C25.9086 16.3295 25.7967 16.3756 25.68 16.3756H16.44V12.0009H25.68C25.7967 12.0009 25.9086 12.047 25.9911 12.129C26.0736 12.2111 26.12 12.3223 26.12 12.4384V15.9381Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-home{background-image: url("data:image/svg+xml,%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.3087 6.13061C16.1374 5.95646 15.8626 5.95646 15.6913 6.13061L7.4946 14.466C7.4826 14.4769 7.47119 14.4885 7.46042 14.5007L5.13133 16.8692C4.95815 17.0453 4.95596 17.3331 5.12643 17.512C5.29691 17.6909 5.57549 17.6932 5.74867 17.5171L7.3457 15.893V24.3523C7.3457 24.7916 7.51739 25.2115 7.8207 25.5199C8.12377 25.8281 8.53337 26 8.95904 26H12.479C12.9047 26 13.3143 25.8281 13.6174 25.5199C13.9207 25.2115 14.0924 24.7916 14.0924 24.3523V19.5796C14.0924 19.386 14.1679 19.1989 14.3047 19.0598C14.4417 18.9205 14.629 18.8409 14.8257 18.8409H17.1724C17.3691 18.8409 17.5564 18.9205 17.6934 19.0598C17.8302 19.1989 17.9057 19.386 17.9057 19.5796V24.3523C17.9057 24.7916 18.0774 25.2115 18.3807 25.5199C18.6838 25.8281 19.0934 26 19.519 26H23.039C23.4647 26 23.8743 25.8281 24.1774 25.5199C24.4807 25.2115 24.6524 24.7916 24.6524 24.3523V15.8911L26.2513 17.5171C26.4245 17.6932 26.7031 17.6909 26.8736 17.512C27.044 17.3331 27.0418 17.0453 26.8687 16.8692L16.3087 6.13061ZM23.7724 14.9962L16 7.09237L8.2257 14.9982V24.3523C8.2257 24.5458 8.30125 24.733 8.43803 24.872C8.57504 25.0114 8.76233 25.0909 8.95904 25.0909H12.479C12.6757 25.0909 12.863 25.0114 13 24.872C13.1368 24.733 13.2124 24.5458 13.2124 24.3523V19.5796C13.2124 19.1402 13.3841 18.7204 13.6874 18.4119C13.9904 18.1037 14.4 17.9318 14.8257 17.9318H17.1724C17.598 17.9318 18.0076 18.1037 18.3107 18.4119C18.614 18.7204 18.7857 19.1402 18.7857 19.5796V24.3523C18.7857 24.5458 18.8613 24.733 18.998 24.872C19.135 25.0114 19.3223 25.0909 19.519 25.0909H23.039C23.2357 25.0909 23.423 25.0114 23.56 24.872C23.6968 24.733 23.7724 24.5458 23.7724 24.3523V14.9962Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-returns{background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='32px' height='32px' viewBox='0 0 32 32' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 59.1 (86144) - https://sketch.com --%3E%3Ctitle%3Esalsa-info-returns%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Group-2' transform='translate(2.000000, 2.000000)' fill='%23000000' fill-rule='nonzero'%3E%3Cpath d='M9.81529631,13.111943 C10.0296143,13.2860763 10.0621903,13.6009783 9.888057,13.8152963 C9.71392365,14.0296143 9.39902165,14.0621903 9.18470369,13.888057 L9.18470369,13.888057 L1.18470369,7.388057 C1.18321864,7.3868504 1.18174258,7.38563747 1.18027552,7.38441831 C1.13566621,7.34736786 1.09733387,7.30223787 1.06770937,7.25140924 C1.05708265,7.23361412 1.04797038,7.21540717 1.04003898,7.1968126 C1.03676667,7.18876225 1.03337697,7.1802301 1.03021902,7.17158637 C1.02291044,7.15181825 1.01705646,7.13183164 1.01246943,7.11161392 C1.00437942,7.0762248 1,7.03862384 1,7 L1.0072455,7.08536126 C1.00378277,7.06516064 1.00156216,7.04478804 1.00058122,7.02436944 L1,7 L1,7 L1.00009416,6.99029675 C1.00099365,6.94395561 1.00826394,6.89773813 1.0218765,6.85311444 C1.02530706,6.84211881 1.02891585,6.8316598 1.03285521,6.82136432 C1.03730035,6.80937021 1.04236863,6.79745028 1.04791771,6.78570892 C1.05519716,6.77081367 1.06296312,6.75636852 1.07139546,6.74237019 C1.07710832,6.7323923 1.08327425,6.72289703 1.08979406,6.71358183 C1.10034606,6.69895917 1.11139333,6.68485061 1.12315128,6.67137833 C1.14543068,6.64561903 1.17116387,6.6216271 1.2,6.6 L1.148463,6.64444158 C1.16194335,6.63111275 1.17617782,6.61854499 1.19109665,6.60680804 L1.2,6.6 L9.2,0.6 C9.4209139,0.434314575 9.73431458,0.4790861 9.9,0.7 C10.0656854,0.9209139 10.0209139,1.23431458 9.8,1.4 L9.8,1.4 L2.999,6.49997057 L20.5,6.5 C24.5609173,6.5 27.8680175,9.72747441 27.9961464,13.7572689 L28,14 L28,16 C28,20.1421356 24.6421356,23.5 20.5,23.5 L20.5,23.5 L1,23.5 C0.723857625,23.5 0.5,23.2761424 0.5,23 C0.5,22.7238576 0.723857625,22.5 1,22.5 L1,22.5 L20.5,22.5 C24.0898509,22.5 27,19.5898509 27,16 L27,16 L27,14 C27,10.4101491 24.0898509,7.5 20.5,7.5 L20.5,7.5 L2.909,7.49997057 Z' id='Combined-Shape'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-call-back{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.69995 3V29C5.69995 30.7 7.09995 32 8.89995 32H22.2C23.9 32 25.4 30.6 25.4 29V3C25.4 1.3 24 0 22.2 0H8.79995C7.09995 0 5.69995 1.4 5.69995 3ZM7.19995 3C7.19995 2.1 7.89995 1.4 8.79995 1.4H22.1C23 1.4 23.7 2.1 23.7 3V29C23.7 29.9 23 30.6 22.1 30.6H8.79995C7.89995 30.6 7.19995 29.9 7.19995 29V3Z' fill='%231C0061'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.4 2.79995H17.6V2.19995H13.4V2.79995Z' fill='%231C0061'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.7 28.5999C16.7 29.2999 16.1 29.7999 15.4 29.7999C14.7 29.7999 14.1 29.2999 14.1 28.5999C14.1 27.8999 14.7 27.3999 15.4 27.3999C16.1 27.3999 16.7 27.8999 16.7 28.5999Z' fill='%231C0061'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.59998 4C7.59998 4.1 24.1 4 24.1 4H6.59998Z' fill='%231C0061'/%3E%3Cpath d='M6.59998 4C7.59998 4.1 24.1 4 24.1 4' stroke='%231C0061' stroke-width='1.5822'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.59998 26C7.59998 26.1 24.1 26 24.1 26H6.59998Z' fill='%231C0061'/%3E%3Cpath d='M6.59998 26C7.59998 26.1 24.1 26 24.1 26' stroke='%231C0061' stroke-width='1.5822'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-map-center{background-image: url("data:image/svg+xml,%3Csvg fill='%23000000' height='20px' width='20px' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 492.589 492.589' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M468.467,222.168h-28.329c-9.712-89.679-80.46-161.18-169.71-172.258V24.135c0-13.338-10.791-24.134-24.134-24.134 c-13.311,0-24.117,10.796-24.117,24.134V49.91C132.924,60.988,62.177,132.488,52.482,222.168H24.153 C10.806,222.168,0,232.964,0,246.286c0,13.336,10.806,24.132,24.153,24.132h29.228c12.192,86.816,81.551,155.4,168.797,166.229 v31.804c0,13.336,10.806,24.135,24.117,24.135c13.343,0,24.134-10.799,24.134-24.135v-31.804 c87.228-10.829,156.607-79.413,168.775-166.229h29.264c13.33,0,24.122-10.796,24.122-24.132 C492.589,232.964,481.797,222.168,468.467,222.168z M246.294,398.093c-85.345,0-154.804-69.453-154.804-154.813 c0-85.363,69.459-154.813,154.804-154.813c85.376,0,154.823,69.45,154.823,154.813 C401.117,328.639,331.671,398.093,246.294,398.093z'/%3E%3Cpath d='M246.294,176.93c-36.628,0-66.34,29.704-66.34,66.349c0,36.635,29.711,66.349,66.34,66.349 c36.66,0,66.34-29.713,66.34-66.349C312.634,206.635,282.955,176.93,246.294,176.93z'/%3E%3C/g%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-storelocator{background-image: url("data:image/svg+xml,%0A%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.9994 5.97508C13.8677 5.97225 11.824 6.77754 10.3067 8.21145C8.80275 9.63949 7.96367 11.5701 7.96367 13.5743C7.96367 17.0266 9.99115 20.1452 12.0943 22.4413C13.1386 23.5813 14.1844 24.4998 14.9695 25.1333C15.3616 25.4497 15.6877 25.6942 15.9148 25.8589C15.945 25.8808 15.9734 25.9013 16 25.9204C16.0266 25.9013 16.055 25.8808 16.0852 25.8589C16.3123 25.6942 16.6384 25.4497 17.0305 25.1333C17.8156 24.4998 18.8614 23.5813 19.9057 22.4413C22.0087 20.1454 24.036 17.0271 24.0363 13.5751C24.0347 12.5779 23.8272 11.5903 23.4255 10.67C23.0237 9.74956 22.4354 8.91418 21.6937 8.21329L21.6927 8.21236C20.189 6.78345 18.1405 5.97508 15.9994 5.97508ZM16 26.5126C15.7355 26.9201 15.7354 26.92 15.7352 26.9199L15.733 26.9184L15.7275 26.9147L15.7073 26.9011C15.6899 26.8893 15.6646 26.872 15.6321 26.8495C15.567 26.8044 15.4726 26.738 15.3532 26.6514C15.1144 26.4781 14.775 26.2236 14.3686 25.8956C13.5565 25.2403 12.4728 24.2888 11.3875 23.1041C9.23161 20.7505 7 17.3999 7 13.5743C7 11.2904 7.95677 9.10535 9.64778 7.49997L9.64856 7.49923C11.349 5.89202 13.63 4.99694 16.0003 5.00001C18.3776 5.00009 20.6635 5.89693 22.3519 7.50111C23.1868 8.29017 23.8519 9.23329 24.307 10.276C24.7623 11.319 24.9981 12.4401 25 13.5735C25 17.3991 22.7684 20.7505 20.6125 23.1041C19.5272 24.2888 18.4435 25.2403 17.6314 25.8956C17.225 26.2236 16.8856 26.4781 16.6468 26.6514C16.5274 26.738 16.433 26.8044 16.3679 26.8495C16.3354 26.872 16.3101 26.8893 16.2927 26.9011L16.2725 26.9147L16.267 26.9184L16.2654 26.9195C16.2652 26.9196 16.2645 26.9201 16 26.5126ZM16 26.5126L16.2645 26.9201C16.1039 27.0268 15.8957 27.0266 15.7352 26.9199L16 26.5126ZM12.1109 13.5743C12.1109 11.489 13.8809 9.85149 16 9.85149C18.1191 9.85149 19.8891 11.489 19.8891 13.5743C19.8891 15.6583 18.119 17.2957 16 17.2957C13.881 17.2957 12.1109 15.6583 12.1109 13.5743ZM16 10.8266C14.3545 10.8266 13.0746 12.085 13.0746 13.5743C13.0746 15.062 14.3543 16.3206 16 16.3206C17.6457 16.3206 18.9254 15.062 18.9254 13.5743C18.9254 12.085 17.6455 10.8266 16 10.8266Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-storelocator-mask{background-color: var(--color-black); -webkit-mask: url("data:image/svg+xml,%0A%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.9994 5.97508C13.8677 5.97225 11.824 6.77754 10.3067 8.21145C8.80275 9.63949 7.96367 11.5701 7.96367 13.5743C7.96367 17.0266 9.99115 20.1452 12.0943 22.4413C13.1386 23.5813 14.1844 24.4998 14.9695 25.1333C15.3616 25.4497 15.6877 25.6942 15.9148 25.8589C15.945 25.8808 15.9734 25.9013 16 25.9204C16.0266 25.9013 16.055 25.8808 16.0852 25.8589C16.3123 25.6942 16.6384 25.4497 17.0305 25.1333C17.8156 24.4998 18.8614 23.5813 19.9057 22.4413C22.0087 20.1454 24.036 17.0271 24.0363 13.5751C24.0347 12.5779 23.8272 11.5903 23.4255 10.67C23.0237 9.74956 22.4354 8.91418 21.6937 8.21329L21.6927 8.21236C20.189 6.78345 18.1405 5.97508 15.9994 5.97508ZM16 26.5126C15.7355 26.9201 15.7354 26.92 15.7352 26.9199L15.733 26.9184L15.7275 26.9147L15.7073 26.9011C15.6899 26.8893 15.6646 26.872 15.6321 26.8495C15.567 26.8044 15.4726 26.738 15.3532 26.6514C15.1144 26.4781 14.775 26.2236 14.3686 25.8956C13.5565 25.2403 12.4728 24.2888 11.3875 23.1041C9.23161 20.7505 7 17.3999 7 13.5743C7 11.2904 7.95677 9.10535 9.64778 7.49997L9.64856 7.49923C11.349 5.89202 13.63 4.99694 16.0003 5.00001C18.3776 5.00009 20.6635 5.89693 22.3519 7.50111C23.1868 8.29017 23.8519 9.23329 24.307 10.276C24.7623 11.319 24.9981 12.4401 25 13.5735C25 17.3991 22.7684 20.7505 20.6125 23.1041C19.5272 24.2888 18.4435 25.2403 17.6314 25.8956C17.225 26.2236 16.8856 26.4781 16.6468 26.6514C16.5274 26.738 16.433 26.8044 16.3679 26.8495C16.3354 26.872 16.3101 26.8893 16.2927 26.9011L16.2725 26.9147L16.267 26.9184L16.2654 26.9195C16.2652 26.9196 16.2645 26.9201 16 26.5126ZM16 26.5126L16.2645 26.9201C16.1039 27.0268 15.8957 27.0266 15.7352 26.9199L16 26.5126ZM12.1109 13.5743C12.1109 11.489 13.8809 9.85149 16 9.85149C18.1191 9.85149 19.8891 11.489 19.8891 13.5743C19.8891 15.6583 18.119 17.2957 16 17.2957C13.881 17.2957 12.1109 15.6583 12.1109 13.5743ZM16 10.8266C14.3545 10.8266 13.0746 12.085 13.0746 13.5743C13.0746 15.062 14.3543 16.3206 16 16.3206C17.6457 16.3206 18.9254 15.062 18.9254 13.5743C18.9254 12.085 17.6455 10.8266 16 10.8266Z' fill='%23333333'/%3E%3C/svg%3E%0A") no-repeat 50% 50%; mask: url("data:image/svg+xml,%0A%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.9994 5.97508C13.8677 5.97225 11.824 6.77754 10.3067 8.21145C8.80275 9.63949 7.96367 11.5701 7.96367 13.5743C7.96367 17.0266 9.99115 20.1452 12.0943 22.4413C13.1386 23.5813 14.1844 24.4998 14.9695 25.1333C15.3616 25.4497 15.6877 25.6942 15.9148 25.8589C15.945 25.8808 15.9734 25.9013 16 25.9204C16.0266 25.9013 16.055 25.8808 16.0852 25.8589C16.3123 25.6942 16.6384 25.4497 17.0305 25.1333C17.8156 24.4998 18.8614 23.5813 19.9057 22.4413C22.0087 20.1454 24.036 17.0271 24.0363 13.5751C24.0347 12.5779 23.8272 11.5903 23.4255 10.67C23.0237 9.74956 22.4354 8.91418 21.6937 8.21329L21.6927 8.21236C20.189 6.78345 18.1405 5.97508 15.9994 5.97508ZM16 26.5126C15.7355 26.9201 15.7354 26.92 15.7352 26.9199L15.733 26.9184L15.7275 26.9147L15.7073 26.9011C15.6899 26.8893 15.6646 26.872 15.6321 26.8495C15.567 26.8044 15.4726 26.738 15.3532 26.6514C15.1144 26.4781 14.775 26.2236 14.3686 25.8956C13.5565 25.2403 12.4728 24.2888 11.3875 23.1041C9.23161 20.7505 7 17.3999 7 13.5743C7 11.2904 7.95677 9.10535 9.64778 7.49997L9.64856 7.49923C11.349 5.89202 13.63 4.99694 16.0003 5.00001C18.3776 5.00009 20.6635 5.89693 22.3519 7.50111C23.1868 8.29017 23.8519 9.23329 24.307 10.276C24.7623 11.319 24.9981 12.4401 25 13.5735C25 17.3991 22.7684 20.7505 20.6125 23.1041C19.5272 24.2888 18.4435 25.2403 17.6314 25.8956C17.225 26.2236 16.8856 26.4781 16.6468 26.6514C16.5274 26.738 16.433 26.8044 16.3679 26.8495C16.3354 26.872 16.3101 26.8893 16.2927 26.9011L16.2725 26.9147L16.267 26.9184L16.2654 26.9195C16.2652 26.9196 16.2645 26.9201 16 26.5126ZM16 26.5126L16.2645 26.9201C16.1039 27.0268 15.8957 27.0266 15.7352 26.9199L16 26.5126ZM12.1109 13.5743C12.1109 11.489 13.8809 9.85149 16 9.85149C18.1191 9.85149 19.8891 11.489 19.8891 13.5743C19.8891 15.6583 18.119 17.2957 16 17.2957C13.881 17.2957 12.1109 15.6583 12.1109 13.5743ZM16 10.8266C14.3545 10.8266 13.0746 12.085 13.0746 13.5743C13.0746 15.062 14.3543 16.3206 16 16.3206C17.6457 16.3206 18.9254 15.062 18.9254 13.5743C18.9254 12.085 17.6455 10.8266 16 10.8266Z' fill='%23333333'/%3E%3C/svg%3E%0A") no-repeat 50% 50%; -webkit-mask-size: cover;mask-size: cover;}

body .rdc-icon-svg.rdc-icon-view1, body .rdc-icon-svg.rdc-icon-view2 {background-image: none;display: grid;}
body .rdc-icon-view1.active > div, body .rdc-icon-view2.active > div {background-color: var(--color-dark);}
body .rdc-icon-view1:not(.active) > div, body .rdc-icon-view2:not(.active) > div {background-color: var(--color-gray);}
body .rdc-icon-view1 {grid-template-columns: repeat(3, 4px);grid-template-rows: repeat(3, 4px);grid-gap: 1px;padding: 3px;}
body .rdc-icon-view2 {grid-template-columns: repeat(4, 4px);grid-template-rows: repeat(4, 4px);grid-gap: 1px;padding: 3px 1px;}

body .rdc-icon-svg.rdc-icon-size-guide{background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.3468 13.3948L28.4306 21.5679H28.4327L28.4538 21.5834C28.6829 21.7523 28.8523 21.988 28.9378 22.2571C29.0234 22.5262 29.0206 22.815 28.9299 23.0825C28.8392 23.3499 28.6652 23.5823 28.4329 23.7469C28.2006 23.9115 27.9216 24 27.6355 24H5.36221C5.07629 23.9995 4.79765 23.9107 4.56571 23.7459C4.33375 23.5812 4.16018 23.3487 4.06977 23.0814C3.97936 22.814 3.97675 22.5254 4.06233 22.2565C4.1479 21.9877 4.31728 21.7522 4.54623 21.5834L16.1876 12.9932L16.2018 12.9832L19.4057 10.6207C19.3389 9.8987 18.9962 9.22753 18.4453 8.74316C17.8833 8.24905 17.1484 7.98771 16.3945 8.01422C15.6406 8.04072 14.9267 8.35299 14.4021 8.88525C13.8776 9.41748 13.5831 10.1284 13.5801 10.8689C13.58 11.0018 13.5263 11.1291 13.431 11.2227C13.3357 11.3164 13.2066 11.3689 13.0723 11.3689C12.938 11.3689 12.8089 11.3164 12.7136 11.2227C12.6182 11.129 12.5645 11.0016 12.5645 10.8686C12.5645 9.84221 12.9793 8.8581 13.7172 8.13269C14.4552 7.40731 15.4558 7 16.4989 7C17.5421 7 18.5427 7.40731 19.2806 8.13269C20.0186 8.8581 20.4334 9.84236 20.4334 10.8687C20.4332 10.9467 20.4146 11.0235 20.379 11.0931C20.3434 11.1626 20.2918 11.2229 20.2286 11.2693L17.3468 13.3948ZM27.9693 22.5553C27.9909 22.6236 27.9892 22.6969 27.9646 22.7641L27.9634 22.7675C27.942 22.8353 27.8987 22.8947 27.8399 22.9366C27.781 22.9785 27.7098 23.0006 27.6368 22.9994H5.36234C5.28886 22.9994 5.21735 22.9767 5.15794 22.9346C5.09855 22.8925 5.05431 22.8333 5.0313 22.7654C5.00828 22.6975 5.00758 22.6243 5.02927 22.556C5.05097 22.4877 5.09405 22.4277 5.15261 22.3845L16.4989 14.0197L27.8431 22.3845L27.8445 22.3855C27.904 22.4274 27.9477 22.4871 27.9693 22.5553Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-timer{background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 6.00039C14.0222 6.00039 12.0888 6.58688 10.4443 7.68569C8.79983 8.78451 7.51811 10.3463 6.76123 12.1736C6.00436 14.0008 5.80632 16.0115 6.19218 17.9513C6.57803 19.8911 7.53044 21.6729 8.92896 23.0715C10.3275 24.47 12.1093 25.4224 14.0491 25.8082C15.9889 26.1941 17.9996 25.9961 19.8269 25.2392C21.6541 24.4823 23.2159 23.2006 24.3147 21.5561C25.4135 19.9116 26 17.9782 26 16.0004C25.9971 13.3491 24.9426 10.8073 23.0679 8.93254C21.1931 7.05781 18.6513 6.0033 16 6.00039ZM16 25.2004C14.1804 25.2004 12.4017 24.6608 10.8888 23.6499C9.37585 22.639 8.19666 21.2022 7.50034 19.5211C6.80401 17.84 6.62182 15.9902 6.9768 14.2056C7.33179 12.4209 8.208 10.7817 9.49465 9.49501C10.7813 8.20836 12.4206 7.33215 14.2052 6.97717C15.9898 6.62218 17.8396 6.80437 19.5207 7.5007C21.2018 8.19702 22.6386 9.37621 23.6495 10.8891C24.6605 12.4021 25.2 14.1808 25.2 16.0004C25.1974 18.4396 24.2272 20.7781 22.5025 22.5028C20.7777 24.2276 18.4392 25.1977 16 25.2004ZM22 16.0004C22 16.1065 21.9579 16.2082 21.8829 16.2832C21.8079 16.3582 21.7061 16.4004 21.6 16.4004H16C15.8939 16.4004 15.7922 16.3582 15.7172 16.2832C15.6422 16.2082 15.6 16.1065 15.6 16.0004V10.4004C15.6 10.2943 15.6422 10.1926 15.7172 10.1175C15.7922 10.0425 15.8939 10.0004 16 10.0004C16.1061 10.0004 16.2079 10.0425 16.2829 10.1175C16.3579 10.1926 16.4 10.2943 16.4 10.4004V15.6004H21.6C21.7061 15.6004 21.8079 15.6425 21.8829 15.7175C21.9579 15.7926 22 15.8943 22 16.0004Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.0001 5.90039C18.6779 5.90333 21.2451 6.96837 23.1386 8.86183C25.032 10.7553 26.0971 13.3225 26.1 16.0003C26.1 17.9979 25.5077 19.9507 24.3979 21.6116C23.2881 23.2726 21.7107 24.5671 19.8651 25.3316C18.0196 26.096 15.9888 26.296 14.0296 25.9063C12.0704 25.5166 10.2708 24.5547 8.85825 23.1422C7.44574 21.7297 6.48381 19.93 6.0941 17.9708C5.70439 16.0116 5.9044 13.9808 6.66885 12.1353C7.43329 10.2898 8.72783 8.71235 10.3888 7.60255C12.0497 6.49275 14.0025 5.90039 16.0001 5.90039ZM26 16.0004C26 17.9782 25.4135 19.9116 24.3147 21.5561C23.2159 23.2006 21.6541 24.4823 19.8269 25.2392C17.9996 25.9961 15.9889 26.1941 14.0491 25.8082C12.1093 25.4224 10.3275 24.47 8.92896 23.0715C7.53044 21.6729 6.57803 19.8911 6.19218 17.9513C5.80632 16.0115 6.00436 14.0008 6.76123 12.1736C7.51811 10.3463 8.79983 8.78451 10.4443 7.68569C12.0888 6.58688 14.0222 6.00039 16 6.00039C18.6513 6.0033 21.1931 7.05781 23.0679 8.93254C24.9426 10.8073 25.9971 13.3491 26 16.0004ZM10.9443 23.5668C12.4408 24.5667 14.2001 25.1004 15.9999 25.1004C18.4126 25.0978 20.7257 24.1382 22.4318 22.4321C24.1378 20.7261 25.0974 18.413 25.1 16.0003C25.1 14.2005 24.5663 12.4412 23.5664 10.9447C22.5665 9.44821 21.1453 8.28184 19.4824 7.59309C17.8196 6.90433 15.9899 6.72412 14.2247 7.07524C12.4595 7.42637 10.838 8.29306 9.56536 9.56572C8.2927 10.8384 7.42601 12.4598 7.07488 14.2251C6.72376 15.9903 6.90397 17.82 7.59272 19.4828C8.28148 21.1456 9.44785 22.5668 10.9443 23.5668ZM25.2 16.0004C25.2 14.1808 24.6605 12.4021 23.6495 10.8891C22.6386 9.37621 21.2018 8.19702 19.5207 7.5007C17.8396 6.80437 15.9898 6.62218 14.2052 6.97717C12.4206 7.33215 10.7813 8.20836 9.49465 9.49501C8.208 10.7817 7.33179 12.4209 6.9768 14.2056C6.62182 15.9902 6.80401 17.84 7.50034 19.5211C8.19666 21.2022 9.37585 22.639 10.8888 23.6499C12.4017 24.6608 14.1804 25.2004 16 25.2004C18.4392 25.1977 20.7777 24.2276 22.5025 22.5028C24.2272 20.7781 25.1974 18.4396 25.2 16.0004ZM22.1 16.0004C22.1 16.133 22.0473 16.2602 21.9536 16.3539C21.8598 16.4477 21.7326 16.5004 21.6 16.5004H16C15.8674 16.5004 15.7402 16.4477 15.6465 16.3539C15.5527 16.2602 15.5 16.133 15.5 16.0004V10.4004C15.5 10.2678 15.5527 10.1406 15.6465 10.0468C15.7402 9.95307 15.8674 9.90039 16 9.90039C16.1326 9.90039 16.2598 9.95307 16.3536 10.0468C16.4473 10.1406 16.5 10.2678 16.5 10.4004V15.5004H21.6C21.7326 15.5004 21.8598 15.5531 21.9536 15.6468C22.0473 15.7406 22.1 15.8678 22.1 16.0004ZM21.6 15.6004C21.7061 15.6004 21.8079 15.6425 21.8829 15.7175C21.9579 15.7926 22 15.8943 22 16.0004C22 16.1065 21.9579 16.2082 21.8829 16.2832C21.8079 16.3582 21.7061 16.4004 21.6 16.4004H16C15.8939 16.4004 15.7922 16.3582 15.7172 16.2832C15.6422 16.2082 15.6 16.1065 15.6 16.0004V10.4004C15.6 10.2943 15.6422 10.1926 15.7172 10.1175C15.7922 10.0425 15.8939 10.0004 16 10.0004C16.1061 10.0004 16.2079 10.0425 16.2829 10.1175C16.3579 10.1926 16.4 10.2943 16.4 10.4004V15.6004H21.6Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-address{background-image: url("data:image/svg+xml,%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.4736 11.6857C20.4736 9.50929 18.6838 7.74783 16.4795 7.74783C14.2752 7.74783 12.4853 9.50929 12.4853 11.6857C12.4853 13.8621 14.2752 15.6236 16.4795 15.6236C18.6838 15.6236 20.4736 13.8621 20.4736 11.6857ZM13.503 11.6857C13.503 10.0681 14.834 8.75399 16.4795 8.75399C18.125 8.75399 19.456 10.0681 19.456 11.6857C19.456 13.3033 18.125 14.6174 16.4795 14.6174C14.834 14.6174 13.503 13.3033 13.503 11.6857Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.6981 5.00259L16.4958 5.00001L16.4945 5C12.359 5.0055 9 8.24629 9 12.2538C9 13.5842 9.76128 15.4166 11.0937 17.6458C11.5358 18.3854 12.0351 19.1575 12.581 19.9528C13.3516 21.0754 14.1766 22.1892 15.0012 23.2439L15.3369 23.6699L16.0709 24.5755L16.0719 24.5767C16.2915 24.8381 16.6984 24.838 16.9178 24.5764L17.0054 24.4719L17.3398 24.0623C17.4406 23.9377 17.5457 23.8067 17.6543 23.6701L17.9906 23.2439C18.8164 22.1892 19.6423 21.0757 20.414 19.9531C20.9607 19.1578 21.4606 18.3857 21.9033 17.6461C23.2376 15.4168 24 13.5843 24 12.2538C24 8.30817 20.7441 5.10648 16.6981 5.00259ZM10.0176 12.2538C10.0176 8.87273 12.81 6.10992 16.307 6.00901L16.4955 6.00618L16.6842 6.00877C20.1847 6.1052 22.9824 8.86943 22.9824 12.2538C22.9824 12.7922 22.8108 13.4841 22.4783 14.309C22.1465 15.1325 21.657 16.082 21.0276 17.1336C20.5966 17.8536 20.1081 18.6082 19.5724 19.3875C18.8137 20.4911 17.9999 21.5884 17.186 22.628L16.7135 23.2247C16.6024 23.3619 16.3888 23.3615 16.2782 23.2239L16.1253 23.0335L15.806 22.6281C14.9932 21.5885 14.1806 20.4914 13.423 19.3878C12.888 18.6085 12.4001 17.8539 11.9698 17.1339C11.3412 16.0822 10.8524 15.1327 10.521 14.3092C10.189 13.4843 10.0176 12.7923 10.0176 12.2538Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.636 20.1661C21.386 20.0426 21.0805 20.1415 20.954 20.39C20.827 20.6395 20.9301 20.9421 21.181 21.0661C22.3453 21.6415 22.9414 22.3649 22.9414 23.052C22.9414 23.4222 22.7734 23.7905 22.4546 24.1383C22.1356 24.4864 21.6694 24.8093 21.0854 25.0852C19.9175 25.637 18.2931 25.9938 16.4795 25.9938C14.6659 25.9938 13.0415 25.637 11.8736 25.0852C11.2896 24.8093 10.8234 24.4864 10.5044 24.1383C10.1856 23.7905 10.0176 23.4222 10.0176 23.052C10.0176 22.3649 10.6137 21.6415 11.778 21.0661C12.0289 20.9421 12.132 20.6395 12.005 20.39C11.8785 20.1415 11.573 20.0426 11.323 20.1661C9.88515 20.8767 9 21.89 9 23.052C9 24.2067 9.87204 25.195 11.2246 25.8893C12.581 26.5856 14.443 27 16.4795 27C18.516 27 20.378 26.5856 21.7344 25.8893C23.087 25.195 23.959 24.2067 23.959 23.052C23.959 21.89 23.0739 20.8767 21.636 20.1661Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-filter{background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.52632 10.1333H10.2361L10.3601 9.77772C10.7216 8.7413 11.6971 8 12.8421 8C13.9871 8 14.9626 8.7413 15.3241 9.77772L15.4481 10.1333H25.4737C25.7644 10.1333 26 10.3721 26 10.6667C26 10.9612 25.7644 11.2 25.4737 11.2H15.4481L15.3241 11.5556C14.9626 12.592 13.9871 13.3333 12.8421 13.3333C11.6971 13.3333 10.7216 12.592 10.3601 11.5556L10.2361 11.2H6.52632C6.23564 11.2 6 10.9612 6 10.6667C6 10.3721 6.23564 10.1333 6.52632 10.1333ZM12.8421 9.06667C11.9701 9.06667 11.2632 9.78302 11.2632 10.6667C11.2632 11.5503 11.9701 12.2667 12.8421 12.2667C13.7142 12.2667 14.4211 11.5503 14.4211 10.6667C14.4211 9.78302 13.7142 9.06667 12.8421 9.06667Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25.4737 15.4663H21.7639L21.6399 15.1107C21.2784 14.0743 20.3029 13.333 19.1579 13.333C18.0129 13.333 17.0374 14.0743 16.6759 15.1107L16.5519 15.4663H6.52632C6.23563 15.4663 6 15.7051 6 15.9997C6 16.2942 6.23563 16.533 6.52632 16.533H16.5519L16.6759 16.8886C17.0374 17.9251 18.0129 18.6663 19.1579 18.6663C20.3029 18.6663 21.2784 17.9251 21.6399 16.8886L21.7639 16.533H25.4737C25.7644 16.533 26 16.2942 26 15.9997C26 15.7051 25.7644 15.4663 25.4737 15.4663ZM19.1579 14.3997C20.0299 14.3997 20.7368 15.116 20.7368 15.9997C20.7368 16.8833 20.0299 17.5997 19.1579 17.5997C18.2858 17.5997 17.5789 16.8833 17.5789 15.9997C17.5789 15.116 18.2858 14.3997 19.1579 14.3997Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.52632 20.8003H10.2361L10.3601 20.4447C10.7216 19.4083 11.6971 18.667 12.8421 18.667C13.9871 18.667 14.9626 19.4083 15.3241 20.4447L15.4481 20.8003H25.4737C25.7644 20.8003 26 21.0391 26 21.3337C26 21.6282 25.7644 21.867 25.4737 21.867H15.4481L15.3241 22.2226C14.9626 23.259 13.9871 24.0003 12.8421 24.0003C11.6971 24.0003 10.7216 23.259 10.3601 22.2226L10.2361 21.867H6.52632C6.23564 21.867 6 21.6282 6 21.3337C6 21.0391 6.23564 20.8003 6.52632 20.8003ZM12.8421 19.7337C11.9701 19.7337 11.2632 20.45 11.2632 21.3337C11.2632 22.2173 11.9701 22.9337 12.8421 22.9337C13.7142 22.9337 14.4211 22.2173 14.4211 21.3337C14.4211 20.45 13.7142 19.7337 12.8421 19.7337Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-filter.light {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='%23FFF'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.52632 10.1333H10.2361L10.3601 9.77772C10.7216 8.7413 11.6971 8 12.8421 8C13.9871 8 14.9626 8.7413 15.3241 9.77772L15.4481 10.1333H25.4737C25.7644 10.1333 26 10.3721 26 10.6667C26 10.9612 25.7644 11.2 25.4737 11.2H15.4481L15.3241 11.5556C14.9626 12.592 13.9871 13.3333 12.8421 13.3333C11.6971 13.3333 10.7216 12.592 10.3601 11.5556L10.2361 11.2H6.52632C6.23564 11.2 6 10.9612 6 10.6667C6 10.3721 6.23564 10.1333 6.52632 10.1333ZM12.8421 9.06667C11.9701 9.06667 11.2632 9.78302 11.2632 10.6667C11.2632 11.5503 11.9701 12.2667 12.8421 12.2667C13.7142 12.2667 14.4211 11.5503 14.4211 10.6667C14.4211 9.78302 13.7142 9.06667 12.8421 9.06667Z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M25.4737 15.4663H21.7639L21.6399 15.1107C21.2784 14.0743 20.3029 13.333 19.1579 13.333C18.0129 13.333 17.0374 14.0743 16.6759 15.1107L16.5519 15.4663H6.52632C6.23563 15.4663 6 15.7051 6 15.9997C6 16.2942 6.23563 16.533 6.52632 16.533H16.5519L16.6759 16.8886C17.0374 17.9251 18.0129 18.6663 19.1579 18.6663C20.3029 18.6663 21.2784 17.9251 21.6399 16.8886L21.7639 16.533H25.4737C25.7644 16.533 26 16.2942 26 15.9997C26 15.7051 25.7644 15.4663 25.4737 15.4663ZM19.1579 14.3997C20.0299 14.3997 20.7368 15.116 20.7368 15.9997C20.7368 16.8833 20.0299 17.5997 19.1579 17.5997C18.2858 17.5997 17.5789 16.8833 17.5789 15.9997C17.5789 15.116 18.2858 14.3997 19.1579 14.3997Z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.52632 20.8003H10.2361L10.3601 20.4447C10.7216 19.4083 11.6971 18.667 12.8421 18.667C13.9871 18.667 14.9626 19.4083 15.3241 20.4447L15.4481 20.8003H25.4737C25.7644 20.8003 26 21.0391 26 21.3337C26 21.6282 25.7644 21.867 25.4737 21.867H15.4481L15.3241 22.2226C14.9626 23.259 13.9871 24.0003 12.8421 24.0003C11.6971 24.0003 10.7216 23.259 10.3601 22.2226L10.2361 21.867H6.52632C6.23564 21.867 6 21.6282 6 21.3337C6 21.0391 6.23564 20.8003 6.52632 20.8003ZM12.8421 19.7337C11.9701 19.7337 11.2632 20.45 11.2632 21.3337C11.2632 22.2173 11.9701 22.9337 12.8421 22.9337C13.7142 22.9337 14.4211 22.2173 14.4211 21.3337C14.4211 20.45 13.7142 19.7337 12.8421 19.7337Z'/%3E%3C/svg%3E");}
body .rdc-icon-svg.rdc-icon-filter-xs{background-image: url("data:image/svg+xml,%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.5982 10.0813L15.5225 9.86522C15.1419 8.77937 14.1138 8 12.904 8C11.6943 8 10.6661 8.77937 10.2856 9.86521L10.2098 10.0813H6.71207C6.31637 10.0813 6 10.4041 6 10.7967C6 11.1894 6.31637 11.5122 6.71207 11.5122H10.2098L10.2856 11.7283C10.6661 12.8141 11.6943 13.5935 12.904 13.5935C14.1138 13.5935 15.1419 12.8141 15.5225 11.7283L15.5982 11.5122H25.2879C25.6836 11.5122 26 11.1894 26 10.7967C26 10.4041 25.6836 10.0813 25.2879 10.0813H15.5982ZM11.5521 10.7967C11.5521 10.04 12.1598 9.43089 12.904 9.43089C13.6482 9.43089 14.2559 10.04 14.2559 10.7967C14.2559 11.5535 13.6482 12.1626 12.904 12.1626C12.1598 12.1626 11.5521 11.5535 11.5521 10.7967Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.096 13.2031C17.8862 13.2031 16.8581 13.9825 16.4775 15.0684L16.4018 15.2844H6.71207C6.31635 15.2844 6 15.6072 6 15.9999C6 16.3926 6.31635 16.7153 6.71207 16.7153H16.4018L16.4775 16.9314C16.8581 18.0173 17.8862 18.7966 19.096 18.7966C20.3057 18.7966 21.3339 18.0173 21.7144 16.9314L21.7902 16.7153H25.2879C25.6836 16.7153 26 16.3926 26 15.9999C26 15.6072 25.6836 15.2844 25.2879 15.2844H21.7902L21.7144 15.0684C21.3339 13.9825 20.3057 13.2031 19.096 13.2031ZM19.096 14.634C19.8402 14.634 20.4479 15.2431 20.4479 15.9999C20.4479 16.7567 19.8402 17.3657 19.096 17.3657C18.3518 17.3657 17.7441 16.7567 17.7441 15.9999C17.7441 15.2431 18.3518 14.634 19.096 14.634Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.71207 20.4878H10.2098L10.2856 20.2717C10.6661 19.1859 11.6943 18.4065 12.904 18.4065C14.1138 18.4065 15.1419 19.1859 15.5225 20.2717L15.5982 20.4878H25.2879C25.6836 20.4878 26 20.8106 26 21.2033C26 21.5959 25.6836 21.9187 25.2879 21.9187H15.5982L15.5225 22.1348C15.1419 23.2206 14.1138 24 12.904 24C11.6943 24 10.6661 23.2206 10.2856 22.1348L10.2098 21.9187H6.71207C6.31637 21.9187 6 21.5959 6 21.2033C6 20.8106 6.31637 20.4878 6.71207 20.4878ZM11.5521 21.2033C11.5521 20.4465 12.1598 19.8374 12.904 19.8374C13.6482 19.8374 14.2559 20.4465 14.2559 21.2033C14.2559 21.96 13.6482 22.5691 12.904 22.5691C12.1598 22.5691 11.5521 21.96 11.5521 21.2033Z' fill='%23333333'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-info-size {background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M28 16C28 9.37 22.63 4 16 4C9.37 4 4 9.37 4 16C4 22.63 9.37 28 16 28C22.63 28 28 22.63 28 16ZM16.0909 12.4C15.4884 12.4 15 11.9116 15 11.3091V11.0909C15 10.4884 15.4884 10 16.0909 10H16.3091C16.9116 10 17.4 10.4884 17.4 11.0909V11.3091C17.4 11.9116 16.9116 12.4 16.3091 12.4H16.0909ZM16.0909 22C15.4884 22 15 21.5116 15 20.9091V15.8909C15 15.2884 15.4884 14.8 16.0909 14.8H16.3091C16.9116 14.8 17.4 15.2884 17.4 15.8909V20.9091C17.4 21.5116 16.9116 22 16.3091 22H16.0909Z' fill='%231C0061'/%3E%3C/svg%3E%0A");}
body .rdc-icon-svg.rdc-icon-form{background-image: url("data:image/svg+xml,%0A%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.3895 12.5C11.2441 12.5 11.1033 12.5607 10.9983 12.6711C10.8932 12.7817 10.8329 12.9332 10.8329 13.0926C10.8329 13.2519 10.8932 13.4034 10.9983 13.514C11.1033 13.6244 11.2441 13.6851 11.3895 13.6851H16.4286C16.574 13.6851 16.7149 13.6244 16.8198 13.514C16.925 13.4034 16.9852 13.2519 16.9852 13.0926C16.9852 12.9332 16.925 12.7817 16.8198 12.6711C16.7149 12.5607 16.574 12.5 16.4286 12.5H11.3895Z' fill='%231C0061'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.3895 20.7338C11.2441 20.7338 11.1033 20.7945 10.9983 20.9049C10.8932 21.0156 10.8329 21.167 10.8329 21.3264C10.8329 21.4858 10.8932 21.6372 10.9983 21.7479C11.1033 21.8583 11.2441 21.919 11.3895 21.919H20.2103C20.3557 21.919 20.4966 21.8583 20.6015 21.7479C20.7067 21.6372 20.7669 21.4858 20.7669 21.3264C20.7669 21.167 20.7067 21.0156 20.6015 20.9049C20.4966 20.7945 20.3557 20.7338 20.2103 20.7338H11.3895Z' fill='%231C0061'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.3895 16.4131C11.2441 16.4131 11.1033 16.4738 10.9983 16.5842C10.8932 16.6948 10.8329 16.8463 10.8329 17.0056C10.8329 17.165 10.8932 17.3165 10.9983 17.4271C11.1033 17.5375 11.2441 17.5982 11.3895 17.5982H20.2103C20.3557 17.5982 20.4966 17.5375 20.6015 17.4271C20.7067 17.3165 20.7669 17.165 20.7669 17.0056C20.7669 16.8463 20.7067 16.6948 20.6015 16.5842C20.4966 16.4738 20.3557 16.4131 20.2103 16.4131H11.3895Z' fill='%231C0061'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.3699 6C17.9304 6.00014 18.4693 6.23391 18.8683 6.65236L23.3738 10.6418C23.7734 11.0617 23.9995 11.633 24 12.2301V24.7562C24 25.3535 23.7744 25.925 23.3749 26.3453C22.9756 26.7653 22.4354 27 21.8737 27H10.1263C9.56455 27 9.02444 26.7653 8.62514 26.3453C8.22561 25.925 8 25.3535 8 24.7562V8.2438C8 7.6465 8.22561 7.07502 8.62514 6.65473C9.02444 6.23467 9.56455 6 10.1263 6H17.3699ZM17.37 7.18512C17.6404 7.18518 17.8983 7.29807 18.0876 7.49671L22.5949 11.4865C22.7824 11.6852 22.8867 11.9527 22.8868 12.2298V24.7562C22.8868 25.0348 22.7816 25.3033 22.5924 25.5023C22.403 25.7016 22.1446 25.8149 21.8737 25.8149H10.1263C9.85537 25.8149 9.59698 25.7016 9.40755 25.5023C9.21835 25.3033 9.11321 25.0348 9.11321 24.7562V8.2438C9.11321 7.96521 9.21835 7.6967 9.40755 7.49766C9.59698 7.29838 9.85537 7.18512 10.1263 7.18512H17.37Z' fill='%231C0061'/%3E%3C/svg%3E");}

body .rdc-icon-svg.rdc-icon-salsastar{background-size: 85%;height: 200px;display: block;background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='194' height='84' viewBox='0 0 194 84'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M23.1352177,0 C28.9248991,0 33.8464641,2.03181738 37.9083085,6.09545213 C41.9684737,10.1607428 43.9985563,15.0622745 43.9985563,20.7983914 L43.9532195,21.3812762 L43.9532195,22.7258856 L26.8629128,25.057425 L26.8727417,24.6083756 C26.8792647,24.4325535 26.8890051,24.2305632 26.9018741,24.0023176 L26.9317576,23.5107931 C26.9754153,22.8086818 26.9989233,22.2340765 26.9989233,21.7853214 C26.9989233,20.7089716 26.9233619,19.6789875 26.7722391,18.6920575 C26.6211163,17.7051274 26.369245,16.7198533 26.0216627,15.7329233 C25.6740803,14.7476492 25.1367549,13.9627417 24.4080073,13.3798569 C23.6826179,12.796972 22.8010684,12.5071855 21.7734336,12.5071855 C19.9549228,12.5071855 18.5897804,13.2076409 17.6813646,14.6135194 C16.7729489,16.019398 16.3179014,17.6769768 16.3179014,19.5879118 C16.3179014,21.2637057 16.5832058,22.8318647 17.1121355,24.2957005 C17.6427444,25.7595363 18.4470534,27.1273286 19.5233833,28.3957656 C20.5980342,29.6675143 21.5904071,30.7206813 22.4988229,31.5552664 L22.9783578,31.9897929 C23.6515072,32.5899116 24.4597342,33.2729491 25.4030388,34.0379241 L27.5050291,35.7299707 C28.2383663,36.3279796 28.8131254,36.8107363 29.2300318,37.1757371 L29.3631551,37.2930392 C31.6971624,39.3265125 33.6651168,41.2308238 35.2720556,43.0076291 C36.8773153,44.7877462 38.3919013,46.7980365 39.8174929,49.0385002 C41.2414052,51.2789639 42.3093395,53.6999231 43.0212957,56.299722 C43.7332519,58.899521 44.0909091,61.7079662 44.0909091,64.7267136 C44.0909091,70.3750665 42.0440351,74.9984032 37.9553244,78.6000355 C33.8632555,82.2000118 28.8929954,84 23.0462231,84 C19.2563998,84 15.8930785,83.312792 12.9545801,81.938376 C10.0160817,80.5656159 7.64345412,78.696079 5.84173481,76.334733 C4.03833637,73.9766988 2.65136513,71.3603406 1.68250023,68.4906263 C0.711956183,65.6225679 0.152801917,62.5458631 0,59.2572003 L16.7729489,56.0745165 L16.7774266,57.1418077 C16.7878746,58.3532504 16.8166065,59.4467115 16.8636225,60.42297 C16.9240716,61.6781596 17.0835901,63.0459519 17.3404988,64.524691 C17.5974075,66.0034301 17.9466691,67.2155657 18.3866043,68.1561299 C18.8248603,69.0966941 19.4461428,69.8882252 20.2504518,70.5323792 C21.0514025,71.1732214 22.0001177,71.4961263 23.0898808,71.4961263 C26.3625285,71.4961263 27.9996919,69.4345023 27.9996919,65.3079425 C27.9996919,59.6612455 24.7723811,54.0443551 18.3177594,48.4556154 L13.1829434,44.1518718 L12.1028867,43.2569272 C10.9620944,42.3024313 10.0187941,41.4807408 9.2722218,40.7903483 C8.30167776,39.8944941 7.15986124,38.6840144 5.84173481,37.1589095 C4.52192925,35.6354604 3.49261524,34.1650009 2.7504345,32.7442191 C2.00657462,31.3250931 1.37017982,29.6145248 0.841250113,27.612514 C0.312320401,25.6105033 0.0453368324,23.4876101 0.0453368324,21.2471465 C0.0453368324,14.7029393 2.15098083,9.52486841 6.36394796,5.71458986 C10.5752359,1.90431131 16.1667786,0 23.1352177,0 Z M89.9454545,1.75 L89.9454545,13.914628 L78.1019337,13.914628 L78.1019337,82.25 L61.4551134,82.25 L61.4551134,13.914628 L49.3818182,13.914628 L49.3818182,1.75 L89.9454545,1.75 Z M123.65754,1.75 L141.090909,82.25 L124.958984,82.25 L121.635655,65.0311551 L111.074705,65.0311551 L107.930656,82.25 L91.7090909,82.25 L109.18894,1.75 L123.65754,1.75 Z M148.145455,1.75 L166.176742,1.75 C170.274533,1.75 173.879445,2.12998974 176.99316,2.89162134 C180.103511,3.65160082 182.82696,4.84278604 185.16519,6.46848127 C187.503421,8.0941765 189.278121,10.2848999 190.492655,13.0423037 C191.707189,15.7997075 192.314456,19.102314 192.314456,22.948471 C192.314456,24.6187737 192.253897,26.1089944 192.13278,27.420785 C192.009981,28.7325757 191.729057,30.2327091 191.290008,31.9145767 C190.849277,33.5997486 190.248739,35.0899692 189.490075,36.3868907 C188.731412,37.6838122 187.639677,38.959256 186.213189,40.21157 C184.785018,41.463884 183.099473,42.5063776 181.158238,43.3407029 L183.382472,50.2471162 C186.893198,61.1042996 190.052196,70.6575604 192.858774,78.9096155 L194,82.25 L176.833353,82.25 L167.451835,45.1762186 L164.719974,45.1762186 L164.719974,82.25 L148.145455,82.25 L148.145455,1.75 L166.176742,1.75 L148.145455,1.75 Z M116.46806,25.1396745 L112.198528,55.0140896 L120.556652,55.0140896 L116.46806,25.1396745 Z M167.113717,11.3637404 L165.672088,19.3104823 C165.279038,21.4846845 163.59225,23.2014609 161.414192,23.6771389 L161.178985,23.7233197 L153.087699,25.1408466 L161.870361,26.6756747 C163.67547,26.9933919 165.102648,28.3391074 165.50586,30.0797957 L165.549289,30.2905336 L167.113717,38.9179528 L168.632725,30.5416573 C168.983099,28.6187558 170.472189,27.0998821 172.398632,26.6738696 L172.614445,26.6310672 L181.141416,25.1408466 L172.750702,23.6721036 C170.713342,23.3152437 169.104564,21.7923872 168.652881,19.8234761 L168.607492,19.6029092 L167.113717,11.3637404 Z'/%3E%3C/svg%3E%0A");}

/* SVG icons cursor Ex: {cursor: url("data:image/svg+xml,%3Csvg ... "), default;} */
body .rdc-icon-svg.rdc-icon-cursor-zoom, body .rdc-icon-svg.rdc-icon-cursor-zoom * {cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M23.0659 21.7506L31.7273 30.4119C32.0909 30.7751 32.0909 31.3643 31.7273 31.7276C31.546 31.9092 31.3078 32 31.07 32C30.8318 32 30.5936 31.9092 30.4119 31.7276L21.7498 23.0659C19.4421 25.0705 16.4333 26.288 13.1438 26.288C5.89599 26.288 0 20.3917 0 13.1444C0 5.89702 5.89599 0 13.1438 0C20.3916 0 26.288 5.89665 26.288 13.144C26.288 16.4338 25.0705 19.4426 23.0659 21.7506ZM13.1438 1.86096C6.92251 1.86096 1.86099 6.92241 1.86099 13.144C1.86099 19.3652 6.92251 24.4266 13.1438 24.4266C19.3655 24.4266 24.427 19.3652 24.427 13.144C24.427 6.92278 19.3655 1.86096 13.1438 1.86096Z' fill='%23666666'/%3E%3C/svg%3E%0A"), default;}

/* SVG icons MASK Ex: {-webkit-mask: url("data:image/svg+xml,%3Csvg ... ");} */
body .rdc-icon-svg.rdc-icon-tag {background-color: #333; -webkit-mask: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7349 11.8617C21.5191 12.0771 21.2263 12.1981 20.9209 12.1981C20.6155 12.1981 20.3228 12.0771 20.1069 11.8617C19.8911 11.6463 19.7699 11.3543 19.7699 11.0499C19.7699 10.7454 19.8911 10.4534 20.1069 10.2381C20.3228 10.0227 20.6155 9.90163 20.9209 9.90163C21.2263 9.90163 21.5191 10.0227 21.7349 10.2381C21.9507 10.4534 22.0719 10.7454 22.0719 11.0499C22.0719 11.3543 21.9507 11.6463 21.7349 11.8617Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.2326 6.18272C16.533 6.05995 16.8548 5.99786 17.1795 6.00006L23.5525 6.04167C24.1999 6.04621 24.8192 6.30577 25.2756 6.76374C25.732 7.22172 25.9886 7.84101 25.9896 8.48676L26 14.9244C26.0006 15.2467 25.9374 15.566 25.814 15.8639C25.6906 16.1618 25.5095 16.4325 25.281 16.6605L16.639 25.2829C16.1787 25.742 15.5546 26 14.9037 26C14.2528 26 13.6286 25.742 13.1684 25.2829L6.71844 18.8479C6.49044 18.6203 6.30964 18.3502 6.18637 18.0528C6.0631 17.7555 5.99977 17.4368 6 17.1151C6.00023 16.7933 6.06401 16.4747 6.1877 16.1776C6.3114 15.8804 6.49258 15.6105 6.72092 15.3832L15.4295 6.71521C15.6592 6.48647 15.9322 6.30548 16.2326 6.18272ZM24.5675 7.4661C24.2968 7.19429 23.9294 7.04032 23.5455 7.03763L17.1724 6.99602C16.9799 6.99472 16.7891 7.03153 16.611 7.10432C16.4329 7.17711 16.271 7.28444 16.1347 7.42012L7.42618 16.0881C7.29073 16.2229 7.18323 16.3831 7.10983 16.5594C7.03642 16.7358 6.99857 16.9248 6.99844 17.1158C6.9983 17.3067 7.03589 17.4959 7.10904 17.6723C7.18219 17.8487 7.28949 18.0091 7.42475 18.1441L13.8746 24.579C14.0098 24.7141 14.1703 24.8212 14.347 24.8943C14.5237 24.9674 14.7131 25.005 14.9043 25.005C15.0956 25.005 15.2849 24.9674 15.4616 24.8943C15.6383 24.8212 15.7988 24.7141 15.934 24.579L24.5747 15.9553C24.7101 15.8203 24.8174 15.6599 24.8906 15.4834C24.9638 15.3069 25.0014 15.1175 25.0013 14.9265L24.9909 8.48889C24.9905 8.10552 24.8383 7.7379 24.5675 7.4661Z' fill='%23333333'/%3E%3C/svg%3E%0A") no-repeat 50% 50%; mask: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7349 11.8617C21.5191 12.0771 21.2263 12.1981 20.9209 12.1981C20.6155 12.1981 20.3228 12.0771 20.1069 11.8617C19.8911 11.6463 19.7699 11.3543 19.7699 11.0499C19.7699 10.7454 19.8911 10.4534 20.1069 10.2381C20.3228 10.0227 20.6155 9.90163 20.9209 9.90163C21.2263 9.90163 21.5191 10.0227 21.7349 10.2381C21.9507 10.4534 22.0719 10.7454 22.0719 11.0499C22.0719 11.3543 21.9507 11.6463 21.7349 11.8617Z' fill='%23333333'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.2326 6.18272C16.533 6.05995 16.8548 5.99786 17.1795 6.00006L23.5525 6.04167C24.1999 6.04621 24.8192 6.30577 25.2756 6.76374C25.732 7.22172 25.9886 7.84101 25.9896 8.48676L26 14.9244C26.0006 15.2467 25.9374 15.566 25.814 15.8639C25.6906 16.1618 25.5095 16.4325 25.281 16.6605L16.639 25.2829C16.1787 25.742 15.5546 26 14.9037 26C14.2528 26 13.6286 25.742 13.1684 25.2829L6.71844 18.8479C6.49044 18.6203 6.30964 18.3502 6.18637 18.0528C6.0631 17.7555 5.99977 17.4368 6 17.1151C6.00023 16.7933 6.06401 16.4747 6.1877 16.1776C6.3114 15.8804 6.49258 15.6105 6.72092 15.3832L15.4295 6.71521C15.6592 6.48647 15.9322 6.30548 16.2326 6.18272ZM24.5675 7.4661C24.2968 7.19429 23.9294 7.04032 23.5455 7.03763L17.1724 6.99602C16.9799 6.99472 16.7891 7.03153 16.611 7.10432C16.4329 7.17711 16.271 7.28444 16.1347 7.42012L7.42618 16.0881C7.29073 16.2229 7.18323 16.3831 7.10983 16.5594C7.03642 16.7358 6.99857 16.9248 6.99844 17.1158C6.9983 17.3067 7.03589 17.4959 7.10904 17.6723C7.18219 17.8487 7.28949 18.0091 7.42475 18.1441L13.8746 24.579C14.0098 24.7141 14.1703 24.8212 14.347 24.8943C14.5237 24.9674 14.7131 25.005 14.9043 25.005C15.0956 25.005 15.2849 24.9674 15.4616 24.8943C15.6383 24.8212 15.7988 24.7141 15.934 24.579L24.5747 15.9553C24.7101 15.8203 24.8174 15.6599 24.8906 15.4834C24.9638 15.3069 25.0014 15.1175 25.0013 14.9265L24.9909 8.48889C24.9905 8.10552 24.8383 7.7379 24.5675 7.4661Z' fill='%23333333'/%3E%3C/svg%3E%0A") no-repeat 50% 50%; -webkit-mask-size: cover;mask-size: cover;}
body .rdc-icon-shipping-express {background-color: #1C0061; -webkit-mask: url("data:image/svg+xml,%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.0116 15.48L12.6095 5.32577C12.6325 5.23145 12.6881 5.14688 12.7667 5.08771C12.8456 5.02838 12.943 4.99755 13.0425 5.00015L19.1155 5.00015L19.117 5.00015C19.1817 4.99993 19.2456 5.01388 19.304 5.04097C19.3625 5.06806 19.4143 5.10805 19.4551 5.15714C19.4964 5.20678 19.5257 5.26493 19.5407 5.32722C19.5557 5.38951 19.5558 5.45511 19.5415 5.51755L17.9498 12.5122C17.9377 12.5652 17.978 12.6156 18.0323 12.6156L22.5792 12.6156L22.5801 12.6156C22.6613 12.6154 22.7408 12.6376 22.8097 12.6795C22.8763 12.7199 22.9303 12.7773 22.9661 12.8453C22.9947 12.9117 23.0055 12.9841 22.9974 13.0557C22.9891 13.1291 22.9614 13.1991 22.9169 13.2587L14.2523 26.8041L14.2451 26.8145C14.2071 26.8696 14.1563 26.9152 14.0969 26.9475C14.041 26.9779 13.979 26.9958 13.9153 27C13.8579 26.9976 13.8014 26.9857 13.748 26.9648C13.6606 26.9281 13.5879 26.8642 13.5413 26.7831C13.4944 26.7013 13.4767 26.606 13.4908 26.5132L15.1279 16.098C15.1359 16.0466 15.0962 16.0002 15.0443 16.0002L10.4562 16.0001L10.4446 16.0004C10.3783 16.0021 10.3125 15.989 10.2522 15.9619C10.192 15.9349 10.1389 15.8946 10.097 15.8443C10.0552 15.7941 10.0257 15.7351 10.0109 15.6719C9.99612 15.6087 9.99637 15.5431 10.0116 15.48ZM11.0302 15.0483C11.0164 15.1019 11.0569 15.1541 11.1122 15.1541H16.0113C16.0893 15.1541 16.1488 15.2238 16.1366 15.3008L14.8861 23.2014C14.7626 23.6882 15.06 23.6882 15.1956 23.5558L21.6407 13.5923C21.6771 13.536 21.6367 13.4618 21.5697 13.4618H17C16.9186 13.4618 16.8582 13.3861 16.8763 13.3067L18.5493 5.94969C18.5614 5.89674 18.5211 5.84631 18.4668 5.84631H13.468C13.4294 5.84631 13.3957 5.87243 13.386 5.90981L11.0302 15.0483Z' fill='%231C0061'/%3E%3C/svg%3E%0A") no-repeat 50% 50%; mask: url("data:image/svg+xml,%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.0116 15.48L12.6095 5.32577C12.6325 5.23145 12.6881 5.14688 12.7667 5.08771C12.8456 5.02838 12.943 4.99755 13.0425 5.00015L19.1155 5.00015L19.117 5.00015C19.1817 4.99993 19.2456 5.01388 19.304 5.04097C19.3625 5.06806 19.4143 5.10805 19.4551 5.15714C19.4964 5.20678 19.5257 5.26493 19.5407 5.32722C19.5557 5.38951 19.5558 5.45511 19.5415 5.51755L17.9498 12.5122C17.9377 12.5652 17.978 12.6156 18.0323 12.6156L22.5792 12.6156L22.5801 12.6156C22.6613 12.6154 22.7408 12.6376 22.8097 12.6795C22.8763 12.7199 22.9303 12.7773 22.9661 12.8453C22.9947 12.9117 23.0055 12.9841 22.9974 13.0557C22.9891 13.1291 22.9614 13.1991 22.9169 13.2587L14.2523 26.8041L14.2451 26.8145C14.2071 26.8696 14.1563 26.9152 14.0969 26.9475C14.041 26.9779 13.979 26.9958 13.9153 27C13.8579 26.9976 13.8014 26.9857 13.748 26.9648C13.6606 26.9281 13.5879 26.8642 13.5413 26.7831C13.4944 26.7013 13.4767 26.606 13.4908 26.5132L15.1279 16.098C15.1359 16.0466 15.0962 16.0002 15.0443 16.0002L10.4562 16.0001L10.4446 16.0004C10.3783 16.0021 10.3125 15.989 10.2522 15.9619C10.192 15.9349 10.1389 15.8946 10.097 15.8443C10.0552 15.7941 10.0257 15.7351 10.0109 15.6719C9.99612 15.6087 9.99637 15.5431 10.0116 15.48ZM11.0302 15.0483C11.0164 15.1019 11.0569 15.1541 11.1122 15.1541H16.0113C16.0893 15.1541 16.1488 15.2238 16.1366 15.3008L14.8861 23.2014C14.7626 23.6882 15.06 23.6882 15.1956 23.5558L21.6407 13.5923C21.6771 13.536 21.6367 13.4618 21.5697 13.4618H17C16.9186 13.4618 16.8582 13.3861 16.8763 13.3067L18.5493 5.94969C18.5614 5.89674 18.5211 5.84631 18.4668 5.84631H13.468C13.4294 5.84631 13.3957 5.87243 13.386 5.90981L11.0302 15.0483Z' fill='%231C0061'/%3E%3C/svg%3E%0A") no-repeat 50% 50%;-webkit-mask-size: cover;mask-size: cover;}

/* 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) {}
