/*
 *
 * CSS VARS
 *
*/

:root {
	--color-dark: #000000;
	--color-theme: #74838B;
	--color-black: #333;
	--color-darkgray: #666;
	--color-gray: #999;
	--color-lightgray: #CCC;
	--color-white: #FFF;
	--color-overlay: rgba(51, 51, 51, 0.75);
	--color-background: #F5F5F5;
	--color-lines: #CCC;
	--color-link: #333;
	--color-help: #8B8D8F;
	--color-helplight: #E6E6E6;
	--color-error: #BA152C;
	--color-errorlight: #FFF1F0;
	--color-success: #3F9C35;
	--color-successlight: #F6FFED;
	--color-warning: #FAAD14;
	--color-warninglight: #FFFBE6;
	--color-info: #1890FF;
	--color-infolight: #E6F7FF;
	--color-buttoncart: #333;
	--color-buttoncart-hover: #666;

	--base-fontfamily: "DM Sans", -apple-system, BlinkMacsystemFontFamily, "Segoe UI", Roboto, Arial, sans-serif;
    --container-width: 2560px; /* (2560px | 1920px | 1680px | 1440px) */
	--container-padding: 24px;
	--container-padding-n: -24px;
	--row-padding: 14px;
	--row-padding-n: -14px;
	--productlist-padding: 24px;
	--productdetail-padding: 40px;
	--color-featuredmenu: #95A092;
	--mobile-popup-max-height: calc(var(--window-inner-height, 100vh) - max(30px, env(safe-area-inset-top)) - 10px);
	--mobile-popup-radius: 6px;

	--input-border-radius: 4px;
	--button-border-radius: 4px;
	--button-circle-size: 32px;
	--button-circle-icon-size: 24px;
	--button-hover-opacity: 0.5;

	/* Spacing */
	--sp-ex-small: 20px;
	--sp-small: 30px;
	--sp-medium: 60px;
	--sp-large: 100px;
}

@media screen and (max-width: 767px) {
	:root {
		/* Spacing */
		--sp-ex-small: 15px;
		--sp-small: 25px;
		--sp-medium: 55px;
		--sp-large: 80px;
	}
}

@media screen and (max-width: 1200px) {
	:root {
		--container-padding: 14px;
		--container-padding-n: -14px;
		--productlist-padding: 0px;
	}
}

/*
 *
 * Tipography
 *
*/

/* PARAGRAPH */
body, .paragraph, .gm-style, .page-content {
	/* Do not add styles */
	font-size: 14px;
	font-weight: 300;
	font-family: var(--base-fontfamily);
	color: var(--color-black);
}

/* A */
a, .a {
	color: currentColor;
	text-decoration: underline;
}

/* PARAGRAPH */
.paragraph, .gm-style, .page-content{
	line-height: 160%;
}

/* PARAGRAPH - A */
.paragraph a, .paragraph .a,
a.paragraph, .paragraph.a {
	color: var(--color-link);
	text-decoration: underline;
}

/* A - Hover */
@media (hover: hover) {
	a:hover, .a:hover,
	.paragraph a:hover, .paragraph .a:hover,
	a.paragraph:hover, .paragraph.a:hover {
		text-decoration: none;
	}

	/*.paragraph a:hover, a.paragraph:hover {
		color: var(--color-link);
		text-decoration: none;
	}*/
}

/* PARAGRAPH - B (For mozilla) */
body b, body strong {font-weight: bold;}

/* SMALL */
a.small, .a.small, .small, small, .small, .small::before, .small::after {
	font-weight: 300; /* Required font-weight  */
	font-size: 14px;
	color: var(--color-darkgray);
}

/* MEGA-TITLE */
.mega-title {
	font-weight: 600;
	font-size: 52px;
	line-height: 110%;
}

/* TITLE */
h1:not(.nostyle), .h1:not(.nostyle), .title {
	font-weight: 300;
	font-size: 48px;
	line-height: 110%;
}

/* SECONDARY-TITLE */
h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
	font-weight: 600;
	font-size: 34px;
	line-height: 110%;
}

/* SUBTITLE */
h3:not(.nostyle), .h3:not(.nostyle), .subtitle {
	font-weight: 600;
	font-size: 24px;
	line-height: 140%;
}

/* SECONDARY-SUBTITLE */
h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
	font-weight: 300;
	font-size: 24px;
	line-height: 140%;
}

/* LIST-NAV-TITLE */
.list-nav-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 160%;
}

.list-nav-title.active {
	text-decoration: underline;
}

/* SIGNATURE */
.signature {
	font-size: 14px;
	line-height: 100%;
	background: linear-gradient(to bottom, transparent 50%, #95A09280 50%);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* LIST-NAV-SUBTITLE */
.list-nav-subtitle {
	font-weight: 500;
	font-size: 14px;
	line-height: 160%;
}

.list-nav-subtitle.active {
	text-decoration: underline;
}

/* PRODUCT */
	/* Brand */
		.brand-list-product,
		.rdc-product-item-brand {
			font-weight: 500;
			font-size: 14px;
			line-height: 140%;
			color: var(--color-gray);
		} 

	/* Name */
		.product-item .desc .name,
		.rdc-product-item-name {
			font-weight: 500;
			font-size: 14px;
			line-height: 160%;
		}

	/* Ref */
		.rdc-product-item-ref {
			color: var(--color-black);
			font-size: 14px;
			font-weight: 300;
			line-height: 160%;
		}

	/* Price */
		.price {
			display: inline-flex;
			align-items: baseline;
			grid-auto-flow: column;
			grid-gap: 2px 10px;
			line-height: 100%;
			align-items: flex-end;
		}

		/* Price Old */
		.price .old {
			font-weight: 400;
			font-size: 13px;
			color: var(--color-gray);
			text-decoration: line-through;
			margin-right: 0 !important;
		}

		/* Price Discount */
		.price .discount {
			font-weight: 600;
			font-size: 13px;
			background: transparent; /* Required */
			color: var(--color-error); /* Required */
		}

		/* Price Current */
		.price .current {
			font-weight: 600;
			font-size: 13px;
		}

		body .price .old + .current{
			color: var(--color-error);
		}

	/* Price Horizontal */
		.priceh {
			display: inline-flex;
			align-items: baseline;
			grid-auto-flow: column;
			grid-gap: 2px 10px;
			line-height: 100%;
			align-items: flex-end;
		}

		/* Priceh Old */
		.priceh .old {
			font-weight: 400;
			font-size: 18px;
			color: var(--color-gray);
			text-decoration: line-through;
		}

		/* Priceh Discount */
		.priceh .discount {
			font-weight: 600;
			font-size: 18px;
			display: none;
		}
		
		body .priceh .old ~ .current{
			color: var(--color-error);
		}

		/* Priceh Current */
		.priceh .current {
			font-weight: 600;
			font-size: 18px;
		}

	/* Desde, Package Type, Value */
	.desde, .packageType, .value {
		font-weight: 300;
		font-size: 11px;
		line-height: 130%;
		color: var(--color-darkgray);
		text-transform: capitalize;
	}

	/* .price .desde, .priceh .desde {
		margin-right: -4px;
	} */

	/* Promo Date */
	.rdc-promo-date {
		font-weight: 300;
		font-size: 11px; /* Required font-size */
		color: var(--color-darkgray);
		line-height: 130%;
	}

	/* Promoção ultimos 30 dias */
	.rdc-promo-30days {
		font-weight: 300;
		font-size: 11px;
		color: var(--color-darkgray);
		line-height: 130%;
	}

@media screen and (max-width: 1199px) {
	/* MEGA-TITLE */
	.mega-title {
		font-size: 38px;
	}

	/* TITLE */
	h1:not(.nostyle), .h1:not(.nostyle), .title {
		font-size: 35px;
	}

	/* SECONDARY-TITLE */
	h2:not(.nostyle), .h2:not(.nostyle), .secondary-title {
		font-size: 26px;
		line-height: 140%;
	}

	/* SUBTITLE */
	h3:not(.nostyle), .h3:not(.nostyle), .subtitle {
		font-size: 20px;
	}

	/* SECONDARY-SUBTITLE */
	h4:not(.nostyle), .h4:not(.nostyle), .secondary-subtitle {
		font-size: 20px;
	}

	/* LIST-NAV-SUBTITLE - Required for accordion contains secondary-subtitle */
	/* .list-nav-subtitle {
		font-size: 16px;
	} */

	/* SIGNATURE */
	/* .signature {
		font-size: 14px;
	} */

	/* PRODUCT */
	/* Brand */
	.brand-list-product,
	.rdc-product-item-brand {
		font-size: 12px;
	} 

	/* Name */
	.product-item .desc .name,
	.rdc-product-item-name {
		font-size: 12px;
	}

	/* Price */
	.price {
		grid-gap: 2px 4px;
	}

	.price .current, .price .discount, .price .old {
		font-size: 12px;
	}

	/* Price Desde, Type, packageType */
	.price .desde, .price .type, .price .packageType, .price .date {
		font-size: 11px;
	}

	/* Promo Date */
	.price .date,
	.rdc-promo-date {
		font-size: 10px;
	}

	/* Promoção ultimos 30 dias */
	.rdc-promo-30days {
		font-size: 10px;
	}

	.priceh {
		grid-gap: 2px 8px;
	}

	/* Price Horizontal */
	.priceh .old, .priceh .discount, .priceh .current {
		font-size: 16px;
	}

}

/* ==========================================================================
   PRODUCT ITEM SMALL (.rdc-product-item-small)
   --------------------------------------------------------------------------
   Versão compacta do product item com estilos da versão mobile.
   Os estilos de preço previamente aplicados para mobile devem ser
   duplicados nesta área. Estes estilos serão usados em desktop quando se 
   pretende aplicar visualmente a aparência de mobile.
   Usar a classe: .rdc-product-item-small
========================================================================== */
@media screen and (min-width: 1200px) {
	/* Brand */
	.rdc-product-item-small .brand-list-product,
	.rdc-product-item-small .rdc-product-item-brand {
		font-size: 12px;
	} 

	/* Name */
	.rdc-product-item-small .product-item .desc .name,
	.rdc-product-item-small .rdc-product-item-name {
		font-size: 12px;
	}

	/* Price */
	.rdc-product-item-small .price {
		grid-gap: 2px 4px;
	}

	.rdc-product-item-small .price p {
		font-size: 12px;
	}

	/* Price Desde, Type, packageType */
	.rdc-product-item-small .price .desde,
	.rdc-product-item-small .price .type,
	.rdc-product-item-small .price .packageType, .price .date {
		font-size: 10px;
	}

	/* Promo Date */
	.rdc-product-item-small .price .date,
	.rdc-product-item-small .rdc-promo-date {
		font-size: 10px;
	}

	/* Promoção ultimos 30 dias */
	.rdc-product-item-small .rdc-promo-30days {
		font-size: 10px;
	}

}





/*
 *
 * Elements & Components
 *
*/

/* Banners Homepage */
#main.home .home-slider .rdc-home-slider-wrap-buttons .button{color: var(--color-white) !important; background-color: transparent !important;}



/* Primary Button */
	/* Normal */
	.button, button, input[type=submit], input[type=button] {
		font-weight: 600;
		font-size: 13px;
		line-height: 10px;
		color: var(--color-white);
		text-transform: uppercase;
		padding: 0 40px;
		border: 1px solid var(--color-black);
		background-color: var(--color-black);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 90px;
		min-height: 42px;
		border-radius: var(--button-border-radius);
		user-select: none;
	}

	.button:not(.btn-cart):not(.btn-cart-sec).loader, button:not(.btn-cart):not(.btn-cart-sec).loader, input[type=submit]:not(.btn-cart):not(.btn-cart-sec).loader, input[type=button]:not(.btn-cart):not(.btn-cart-sec).loader {
		color: var(--color-black) !important;
		background: var(--color-black) !important;
		border-color: var(--color-black) !important;
	}

	/* Normal Hover */
	@media (hover: hover) {
		.button:not([disabled]):hover, button:not([disabled]):hover, input[type=submit]:not([disabled]):hover, input[type=button]:not([disabled]):hover {
			color: var(--color-black);
			border-color: var(--color-black);
			background-color: transparent;
		}
	}

	/* Normal Disabled */
	.button[disabled], button[disabled], input[type=submit][disabled], input[type=button][disabled] {
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

	/* White */
	.button.btn-light, .button.white, button.btn-light, button.white, input[type=submit].btn-light, input[type=submit].white, input[type=button].btn-light, input[type=button].white {
		color: var(--color-black) !important;
		border-color: var(--color-white);
		background-color: var(--color-white);
	}

	/* White Hover */
	@media (hover: 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) !important;
			border-color: var(--color-white);
			background-color: transparent;
		}
	}

	/* White Disabled */
	.button.btn-light[disabled], .button.white[disabled], button.btn-light[disabled], button.white[disabled], input[type=submit].btn-light[disabled], input[type=submit].white[disabled], input[type=button].btn-light[disabled], input[type=button].white[disabled] {
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

/* Secondary Button */
	/* Normal */
	.button.btn2, button.btn2, input[type=submit].btn2, input[type=button].btn2 {
		color: var(--color-black);
		border-color: var(--color-black);
		background-color: transparent;
	}

	/* Normal Hover */
	@media (hover: hover) {
		.button.btn2:not([disabled]):hover, button.btn2:not([disabled]):hover, input[type=submit].btn2:not([disabled]):hover, input[type=button].btn2:not([disabled]):hover, .buttonBlocks:not([disabled]):hover{
			color: var(--color-white);
			border-color: var(--color-black);
			background-color: var(--color-black);
		}
	}

	/* Normal Disable */
	.button.btn2[disabled], button.btn2[disabled], input[type=submit].btn2[disabled], input[type=button].btn2[disabled], .buttonBlocks[disabled]{
		cursor: default !important;
		color: var(--color-white);
		background-color: var(--color-lightgray);
		border-color: var(--color-lightgray);
	}

	/* White */
	.button.btn2.btn-light, .button.btn2.white, button.btn2.btn-light, button.btn2.white, input[type=submit].btn2.btn-light, input[type=submit].btn2.white, input[type=button].btn2.btn-light, input[type=button].btn2.white,
	body #main .contentTitles_button.btn-light {
		color: var(--color-white);
		border-color: var(--color-white);
		background-color: transparent;
	}

	/* White Hover */
	@media (hover: 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: 600;
		font-size: 13px;
		line-height: 100%;
		text-decoration: none !important;
		padding: 4px 0;
		border: 0;
		background: transparent;
		text-transform: uppercase;
	}

	.button.link:not(.cursor-default), .link:not(.cursor-default) {
		border-bottom: 1px solid currentColor;
	}

	/* Normal Hover */
	@media (hover: 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);
		border-bottom: 1px solid currentColor;
	}

	/* White */
	.button.link.white, .link.white {
		color: var(--color-white);
	}

	/* White Hover */
	@media (hover: hover) {
		.button.link.white:not([disabled]):hover, .link.white:not([disabled]):hover {

		}
	}

	/* White Disable */
	.button.link.white[disabled], .link.white[disabled] {
		cursor: default !important;
		color: var(--color-lightgray);
	}

/* Button Card */
	/* Normal */
	.button-card {
		transition: border-color 0.15s,
		box-shadow 0.15s;
		border-radius: var(--button-border-radius);
	}

	/* Normal hover e active */
	@media (hover: hover) {
		.button-card:not(.disabled):not(.esgotado):not(.active):hover {
			border-color: var(--color-gray);
		}
	}

	/* Active */
	.button-card.active {
		border-color: var(--color-black);
		box-shadow: 0px 0px 0px 2px var(--color-theme);
	}

	/* Disable */
	.button-card.disabled {}

	/* Esgotado */
	.button-card.esgotado {}

	/* Title */
	.button-card-title {
		color: var(--color-black);
	}

	/* Description */ 
	.button-card-desc {
		color: var(--color-gray);
	}

	@media screen and (hover) {
		.button-card:not(.disabled):not(.esgotado):hover{
			background-color: var(--color-white);
		}
	}


/* Buttons Cart - (Nota: O tamanho do botÃ£o deve ser igual ao .button, no detalhe devem customizar a altura) */
	/* Normal */
	.btn-cart, .btn-cart-sec, .btn-cart-esgotado {
		font-weight: 600;
		font-size: 13px;
		line-height: 10px;
		color: var(--color-white);
		text-transform: uppercase;
		padding: 0 20px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 220px;
		min-height: 42px; /* Ser igual ao .button  */
		border: 1px solid var(--color-buttoncart);
		background-color: var(--color-buttoncart);
		white-space: nowrap;
		border-radius: var(--button-border-radius);
	}

	.btn-cart.loader {
		color: var(--color-buttoncart) !important;
		border-color: var(--color-buttoncart) !important;
		background-color: var(--color-buttoncart) !important;
	}

	/* Normal hover */
	@media (hover: 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;
		color: var(--color-white);
		background-color: var(--color-buttoncart);
		border-color: var(--color-buttoncart);
		opacity: 0.5;
	}

/* Button Esgotado */
body .btn-cart-esgotado{
	color: var(--color-white) !important;
	border-color: var(--color-lightgray) !important;
	background-color: var(--color-lightgray) !important;
	cursor: default !important;
	opacity: 1 !important;
}

/* Button Cart Secundario */
.btn-cart-sec{
	color: var(--color-buttoncart);
	border-color: var(--color-buttoncart);
	background-color: transparent;
}

/* Button Cart Secundario hover */
@media (hover: hover) {
	.btn-cart-sec:not([disabled]):not(.loader):not(.btn-cart-esgotado):hover{
		color: var(--color-white);
		border-color: var(--color-buttoncart);
		background-color: var(--color-buttoncart);
	}
}

/* Button Loading */
.button.loader, button.loader {
	position: relative;
}

.button.loader::before, button.loader::before, .btn-cart.loader::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 24px;
	height: 24px;
	margin: -12px 0 0 -12px;
	background: url("data:image/svg+xml,%3C!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL --%3E%3Csvg width='38' height='38' viewBox='0 0 38 38' xmlns='http://www.w3.org/2000/svg' stroke='%23fff'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(1 1)' stroke-width='2'%3E%3Ccircle stroke-opacity='.5' cx='18' cy='18' r='18'/%3E%3Cpath d='M36 18c0-9.94-8.06-18-18-18'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 18 18' to='360 18 18' dur='1s' repeatCount='indefinite'/%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center/24px;
}

/* Button Cart Secundario Loading */
.btn-cart-sec.loader {
	color: transparent;
}

.btn-cart-sec.loader::before {
	background: url("data:image/svg+xml,%3C!-- By Sam Herbert (@sherb), for everyone. More @ http://goo.gl/7AJzbL --%3E%3Csvg width='38' height='38' viewBox='0 0 38 38' xmlns='http://www.w3.org/2000/svg' stroke='%230F355C'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(1 1)' stroke-width='2'%3E%3Ccircle stroke-opacity='.5' cx='18' cy='18' r='18'/%3E%3Cpath d='M36 18c0-9.94-8.06-18-18-18'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 18 18' to='360 18 18' dur='1s' repeatCount='indefinite'/%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center / 24px;
}

/* Button Icon */
.btn-icon {min-width: 0;padding: 0;}
.btn-icon .rdc-icon-svg {width: 24px;height: 24px;flex-shrink: 0;}
@media (hover: hover) {
	.btn-icon:not(.sel):not(.active):not(.disabled):not([disabled]):hover .rdc-icon-svg {filter: invert(1);}
}

/*
 *
 * FLAGS
 *
*/
.flags .flag {font-weight: 600;line-height: normal;text-transform: uppercase;min-height: 19px; display: flex;justify-content: center;align-items: center;font-size: 10px;padding: 1px 10px;}
.blog .flags .flag{font-weight: 400;line-height: normal;text-transform: capitalize;background: var(--color-dark); color: var(--color-white); border-radius: 0 4px 4px 0;} 
.blog .flags.flagsStatic .flag{color: var(--color-dark); background: none; border: 0;}

.flags .flag.rdc-flag-last-units{color: var(--color-error) !important; background-color: var(--color-background) !important; border-color: var(--color-background) !important;}
.flags .flag.rdc-flag-sold-out{color: var(--color-darkgray) !important; background-color: var(--color-background) !important; border-color: var(--color-background) !important;}

/* article.product-item .flag{display: none;} */

/*
 *
 * Accordions
 *
*/
/* body .accordion > li {
	border-color: var(--color-lines);
} */

body .accordion > li.active {
	border-bottom: 1px solid var(--color-theme);
}

body .accordion > li.active:not(:first-child) {
	border-top: 1px solid var(--color-theme);
}


.accordion-head {
	user-select: none;
}

.accordion .accordion-head, .accordion .accordion-content {
	padding-left: 15px;
	padding-right: 15px;
}






/*
 *
 * Tabs
 *
*/
.tabs-container .tabs:not(.rdc-fixed-styles) li {
	margin: 0 15px;
}

.tabs-container .tabs:not(.rdc-fixed-styles) .tabs-item {
	font-weight: 500;
	font-size: 14px;
	line-height: 160%;
	text-decoration: none;
	cursor: pointer;
	display: block;
	padding: 10px 20px;
	border: 1px solid var(--color-lightgray);
	background-color: var(--color-white);
	border-radius: var(--button-border-radius);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	min-width: 120px;
	user-select: none;
}

@media (hover: hover) {
	.tabs-container .tabs:not(.rdc-fixed-styles) li:not(.sel) .tabs-item:hover {
		opacity: var(--button-hover-opacity);
	}
}

.tabs-container .tabs:not(.rdc-fixed-styles) li.sel .tabs-item {
	color: var(--color-black);
	border-color: var(--color-black);
	opacity: 1;
}

.tabs-container.vertical .tabs:not(.rdc-fixed-styles) .tabs-item {
	display: inline-block;
	padding-bottom: 0;
	border-bottom-width: 1px;
}

@media screen and (max-width: 991px) {
	.tabs-container .tabs:not(.rdc-fixed-styles) {
		margin: 0 var(--container-padding-n);
	}

	.tabs-container .tabs:not(.rdc-fixed-styles) li:first-child {
		margin-left: var(--container-padding);
	}

	.tabs-container .tabs:not(.rdc-fixed-styles) li:last-child {
		margin-right: var(--container-padding);
		padding-right: 0;
	}
}



/*
 *
 * Form
 *
*/
/* Label (forms, filters, etc) */
.label-title, .label-subtitle, .label-desc {user-select: none;line-height: 100%; font-weight: 400;}

textarea,  input[type=text], input[type=number], input[type=email], input[type=password], input[type=tel], input[type=search], input[type=file], input[type=date], select {
	padding: 5px 15px;
	border: 1px solid var(--color-lines);
	min-height: 42px;
	background-color: white;
	color: currentColor; /* Required */
	border-radius: var(--input-border-radius);
}

input[type=file] {
	padding: 15px;
}

@media (hover: 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, input[type=date]:hover, textarea:hover, div.select:not(.disabled,[readonly]):hover, input[type="checkbox"].magic-checkbox:not([checked]):not([disabled]):hover, input[type="radio"].magic-radio:not([checked]):not([disabled]):hover {
        border-color: var(--color-gray);
    }

    input[type=text].filled:not(:focus):hover, input[type=number].filled:not(:focus):hover, input[type=email].filled:not(:focus):hover, input[type=password].filled:not(:focus):hover, input[type=tel].filled:not(:focus):hover, input[type=file].filled:not(:focus):hover, input[type=date].filled:not(:focus):hover, textarea.filled:not(:focus):hover, .select.filled:hover {
        border-color: var(--color-gray);
    }
	

    .filter-cnt-item:hover .magic-radio:checked:not(:disabled):before {
        opacity: 0.5;
    }

    .filter-cnt-item:hover .magic-checkbox:checked:not(:disabled), .filter-cnt-item:hover .magic-checkbox:checked:not(:disabled):before {
        opacity: 0.5;
    }
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, input[type=tel]:focus, input[type=search]:focus, input[type=date]:focus, input[type=number]: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, input[type=date]:disabled, input[type=number]: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, input[type=date].disabled, input[type=number].disabled, textarea.disabled, div.select.disabled {
    background-color: var(--color-background) !important;
    border: 1px solid var(--color-lines)!important;
    -webkit-text-fill-color: var(--color-gray);
    -webkit-opacity: 1;
    cursor: default;
}

input[type=text].filled:not(:focus), input[type=number].filled:not(:focus), input[type=email].filled:not(:focus), input[type=password].filled:not(:focus), input[type=tel].filled:not(:focus), input[type=file].filled:not(:focus), input[type=date].filled:not(:focus), textarea.filled:not(:focus), .select.filled {
    border-color: var(--color-lines);
}


/* Select */
div.select {
	position: relative;
	z-index: 0;
	display: block;
	border: 1px solid var(--color-lines);
	overflow-x: hidden;
	border-radius: var(--input-border-radius);
}

body div.select select {
	position: relative;
	width: 100%;
	padding: 5px 40px 5px 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:not([readonly])::after {
	content: '';
	position: absolute;
	top: calc(50% - 8px);
	right: 15px;
	width: 16px;
	height: 16px;
	-webkit-mask-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='M27 10L5 10L16 22L27 10Z' fill='black'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15.9908 22C15.7794 22 15.585 21.9646 15.4075 21.8939C15.2288 21.8231 15.0546 21.7003 14.885 21.5254L6.29473 12.7382C6.11206 12.5513 6.0142 12.3217 6.00115 12.0493C5.9881 11.777 6.08596 11.534 6.29473 11.3204C6.5035 11.1068 6.73446 11 6.98759 11C7.24072 11 7.47167 11.1068 7.68044 11.3204L15.9908 19.8232L24.3011 11.3204C24.4838 11.1335 24.7082 11.0334 24.9744 11.02C25.2406 11.0067 25.4781 11.1068 25.6868 11.3204C25.8956 11.534 26 11.7703 26 12.0293C26 12.2883 25.8956 12.5246 25.6868 12.7382L17.0966 21.5254C16.927 21.7003 16.7528 21.8231 16.574 21.8939C16.3966 21.9646 16.2022 22 15.9908 22Z' fill='%23333333'/%3e%3c/svg%3e ");
    -webkit-mask-position: left top;
    mask-position: left top;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
	background-color: var(--color-black);
}

body div.select:not([readonly]).active::after {
	-webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg fill='none' height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath clip-rule='evenodd' d='m5 22h22l-11-12z' fill='%23333' fill-rule='evenodd'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%0A%3Csvg fill='none' height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath clip-rule='evenodd' d='m5 22h22l-11-12z' fill='%23333' fill-rule='evenodd'/%3E%3C/svg%3E");
}

div.select.loading:not([readonly])::after {
	background: url(/sysimages/variantsloader.gif) center center/18px no-repeat;
	width: 20px;
	right: 8px;
	mask-image: none;
	-webkit-mask-image: none;
}

div.select select:disabled{
	background-color: var(--color-background);
}

div.select select::-ms-expand{
	display: none;
}

div.select[disabled]::after{
	opacity: 0.5;
}

div.select:has(select:focus){
	border-color: var(--color-black) !important;
}

/* Normal Readonly */
select[readonly], div.select[readonly] {
	pointer-events: none;
}

/* Input date */
div.input-date::after {
	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.12 6.98H21.5V5.22C21.5 5.099 21.401 5 21.28 5H19.74C19.619 5 19.52 5.099 19.52 5.22V6.98H12.48V5.22C12.48 5.099 12.381 5 12.26 5H10.72C10.599 5 10.5 5.099 10.5 5.22V6.98H5.88C5.39325 6.98 5 7.37325 5 7.86V26.12C5 26.6068 5.39325 27 5.88 27H26.12C26.6068 27 27 26.6068 27 26.12V7.86C27 7.37325 26.6068 6.98 26.12 6.98ZM25.02 25.02H6.98V14.57H25.02V25.02ZM6.98 12.7V8.96H10.5V10.28C10.5 10.401 10.599 10.5 10.72 10.5H12.26C12.381 10.5 12.48 10.401 12.48 10.28V8.96H19.52V10.28C19.52 10.401 19.619 10.5 19.74 10.5H21.28C21.401 10.5 21.5 10.401 21.5 10.28V8.96H25.02V12.7H6.98Z' fill='%23333333'%3E%3C/path%3E%3C/svg%3E");
}

body .magic-checkbox{border-radius: 2px; }

/* Magic Checkbox & Radio */
.magic-checkbox:checked:before {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.0402 20.6569L7.81655 15.3519C7.62122 15.1536 7.38125 15.0473 7.09663 15.0331C6.81201 15.019 6.55808 15.1252 6.33485 15.3519C6.11162 15.5786 6 15.8294 6 16.1043C6 16.3792 6.11162 16.63 6.33485 16.8567L11.8577 22.4635C12.1954 22.8078 12.5895 22.98 13.0402 22.98C13.4908 22.98 13.885 22.8078 14.2226 22.4635L25.6848 10.8227C25.8802 10.6243 25.9848 10.3806 25.9988 10.0916C26.0127 9.80252 25.9081 9.54535 25.6848 9.32006C25.4616 9.09477 25.2147 8.98141 24.944 8.97999C24.6733 8.97858 24.4271 9.09193 24.2052 9.32006L13.0402 20.6569Z' fill='%23333333'/%3e%3c/svg%3e ");
}

.magic-checkbox:not(:disabled), .magic-radio:not(:disabled) {
	background-color: var(--color-white);
}

.magic-radio:not(:checked), .magic-checkbox:not(:checked) {
	border-color: var(--color-lines);
}

.magic-radio:checked:not(:disabled), .magic-checkbox:checked:not(:disabled) {
	border-color: var(--color-black);
}

.magic-radio:checked:not(:disabled):before {
	background-color: var(--color-black);
}

.magic-radio:disabled:checked::before {
	background-color: var(--color-background);
}

.magic-radio:disabled:checked {
	border-color: var(--color-gray);
}

.magic-radio:disabled {
	background-color: var(--color-background);
}

.magic-radio:disabled + label, .magic-checkbox:disabled + label {
	color: var(--color-gray);
}

::-webkit-input-placeholder {color: var(--color-darkgray);}
::-moz-placeholder {color: var(--color-darkgray);}
:-ms-input-placeholder {color: var(--color-darkgray);}
:-moz-placeholder {color: var(--color-darkgray);}



/*
 *
 * 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%;
	border-radius: var(--input-border-radius);
	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 {
	border-color: var(--color-error) !important;
}






/*
 *
 * Slim Scrollbar (Minicart, Product List Filters)
 * Customizar se necessÃ¡rio
 *
*/
/* Firefox used (scrollbar-width and scrollbar-color) */
/*
	body:not(.MacOS) .slim-scrollbar {
		scrollbar-width: thin;
		scrollbar-color: #AAA lightgray;
	}
	.slim-scrollbar::-webkit-scrollbar {
		width: 5px;
		height: 5px;
	}
	.slim-scrollbar::-webkit-scrollbar-track {
		background: lightgray;
	}
	.slim-scrollbar::-webkit-scrollbar-thumb {
		background-color: #AAA;
		border-radius: 8px;
	}
*/






/*
 *
 * Geral
 *
*/
.overlay::before {background-color: var(--color-overlay);content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 90;}
#containerSite-mask {background-color: transparent;}
.border-color {border-color: lightgray;}



/*
 *
 * Sliders
 *
*/
.slider .slick-arrow, .rdc-slider-arrow {
	background-color: white !important;
	border-radius: 6px;
	box-shadow: 0px 0px 4px 0px rgba(51, 51, 51, 0.25);
	background-position: center !important;
	background-size: 20px;
}

.slider .slick-arrow.slick-disabled {visibility: hidden;cursor: default !important;}

.slider.slick-vertical .slick-arrow, 
.slick-vertical .rdc-slider-arrow, 
.vertical .rdc-slider-arrow{transform: rotate(90deg);}


@media (hover: hover) {
	.slider .slick-arrow:hover, .rdc-slider-arrow:hover {opacity: var(--button-hover-opacity);}
}

.slider .slick-arrow.slick-prev, .rdc-slider-prev {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 15.625L10.9914 14.6336L7.06797 10.7031L15.625 10.7031V9.29688L7.06797 9.29688L10.9984 5.37344L10 4.375L4.375 10L10 15.625Z' fill='%23333333'/%3E%3C/svg%3E");
}

.slider.slick-vertical .slick-prev, 
.slick-vertical .rdc-slider-prev, 
.vertical .rdc-slider-prev{top: 16px;left: calc(50% - 16px);}

.slider .slick-arrow.slick-next, .rdc-slider-next {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 15.625L9.00859 14.6336L12.932 10.7031H4.375V9.29688H12.932L9.00156 5.37344L10 4.375L15.625 10L10 15.625Z' fill='%23333333'/%3E%3C/svg%3E");
}

.slider.slick-vertical .slick-next, 
.slick-vertical .rdc-slider-next, 
.vertical .rdc-slider-next{top: auto;bottom: 16px;left: calc(50% - 16px);right: auto;}

/* DOTS */
.slick-dots li button{border: 1px solid var(--color-theme);background-color: rgba(255, 255, 255, 0.5);border-radius: 100%;}
.slick-dots li.slick-active button{background-color: var(--color-theme);border-color: var(--color-theme);}

/* DESKTOP */
@media screen and (min-width:1200px){
	.slick-dots li{margin: 0 11px 0 0;}
	.slick-dots li button{width: 12px;height: 12px;}
}

/* MOBILE & TABLET */
@media screen and (max-width:1199px){
	.slick-dots li{margin: 0 8px 0 0;}
	.slick-dots li button{width: 10px;height: 10px;}
}




/*
 *
 * Icons SVG
 *
*/
@media (hover: hover) {
	a:not(.disabled):hover .rdc-icon-svg, .a:not(.disabled):hover .rdc-icon-svg, .rdc-icon-hover:hover {
		opacity: var(--button-hover-opacity);
	}
}

/* SVG icons Ex: {mask-image: url("data:image/svg+xml,%3Csvg ... ");} */
body .rdc-icon-svg.rdc-icon-social-share {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.07643 29C8.485 29 7.99129 28.7972 7.59529 28.3916C7.19929 27.986 7.00086 27.4799 7 26.8733V14.0079C7 13.4022 7.19843 12.8965 7.59529 12.4909C7.99214 12.0853 8.48586 11.8821 9.07643 11.8812H11.1541C11.3367 11.8812 11.4897 11.944 11.6131 12.0695C11.7366 12.1951 11.7979 12.3518 11.797 12.5396C11.7961 12.7275 11.7344 12.8842 11.6119 13.0097C11.4893 13.1353 11.3367 13.1981 11.1541 13.1981H9.07643C8.87929 13.1981 8.698 13.2823 8.53257 13.4509C8.36714 13.6194 8.28486 13.8051 8.28571 14.0079V26.8733C8.28571 27.0752 8.368 27.2609 8.53257 27.4303C8.69714 27.5998 8.87843 27.684 9.07643 27.6832H22.9236C23.1207 27.6832 23.302 27.5989 23.4674 27.4303C23.6329 27.2618 23.7151 27.0761 23.7143 26.8733V14.0079C23.7143 13.806 23.632 13.6203 23.4674 13.4509C23.3029 13.2815 23.1216 13.1972 22.9236 13.1981H20.8459C20.6633 13.1981 20.5103 13.1353 20.3869 13.0097C20.2634 12.8842 20.2026 12.7275 20.2043 12.5396C20.206 12.3518 20.2677 12.1951 20.3894 12.0695C20.5111 11.944 20.6637 11.8812 20.8471 11.8812H22.9249C23.5163 11.8812 24.01 12.0845 24.406 12.4909C24.802 12.8974 25 13.403 25 14.0079V26.8733C25 27.4791 24.802 27.9847 24.406 28.3903C24.01 28.7959 23.5159 28.9991 22.9236 29H9.07643ZM15.3571 6.10561L13.1123 8.40479C12.9871 8.53296 12.8397 8.60012 12.67 8.60627C12.5003 8.61154 12.3443 8.5413 12.202 8.39558C12.0649 8.25072 11.9954 8.09578 11.9937 7.93073C11.992 7.76569 12.0614 7.61031 12.202 7.46458L15.2736 4.31999C15.481 4.10666 15.7231 4 16 4C16.2769 4 16.519 4.10666 16.7264 4.31999L19.798 7.46458C19.918 7.58748 19.9823 7.7376 19.9909 7.91493C19.9994 8.09227 19.9351 8.25292 19.798 8.39689C19.6557 8.54174 19.5027 8.61417 19.339 8.61417C19.1753 8.61417 19.0223 8.54174 18.88 8.39689L16.6429 6.10561V19.7822C16.6429 19.9692 16.5816 20.1259 16.459 20.2523C16.3364 20.3787 16.1834 20.4415 16 20.4406C15.8166 20.4397 15.6636 20.377 15.541 20.2523C15.4184 20.1259 15.3571 19.9692 15.3571 19.7822V6.10561Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-fb {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M24 23.2C24 23.6843 23.7556 24 23.2622 24H19.1111V17.9459H21.2222L21.5422 15.3514H19.1111V14.0022C19.1111 13.3103 19.3022 12.7568 20.3244 12.7568H21.7778V10.6941C21.3333 10.6638 20.6444 10.5989 19.7422 10.5989C17.8667 10.5989 16.4444 11.7146 16.4444 13.7643V15.3514H14.2222V17.9459H16.4444V24H8.74667C8.24889 24 8 23.6843 8 23.2V9.07676C8 8.59243 8.24889 8 8.74667 8H23.2622C23.7556 8 24 8.59243 24 9.07676V23.2Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-in {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.5756 24H11.4244C9.53616 24 8 22.4637 8 20.5755V11.4245C8 9.53616 9.53616 8 11.4244 8H20.5756C22.4638 8 24 9.53616 24 11.4245V20.5755C24 22.4637 22.4638 24 20.5756 24ZM11.4244 9.86779C10.566 9.86779 9.86779 10.5662 9.86779 11.4245V20.5755C9.86779 21.4339 10.566 22.1321 11.4244 22.1321H20.5756C21.4339 22.1321 22.1322 21.4339 22.1322 20.5755V11.4245C22.1322 10.5662 21.4339 9.86779 20.5756 9.86779H11.4244ZM13.4479 16.0001C13.4479 14.5929 14.5927 13.4481 15.9999 13.4481C17.4073 13.4481 18.5521 14.5929 18.5521 16.0001C18.5521 17.4073 17.4073 18.552 15.9999 18.552C14.5927 18.552 13.4479 17.4073 13.4479 16.0001ZM15.9999 20.4199C13.5628 20.4199 11.5801 18.4371 11.5801 16.0001C11.5801 13.5631 13.5628 11.5802 15.9999 11.5802C18.4371 11.5802 20.42 13.5631 20.42 16.0001C20.42 18.4371 18.4371 20.4199 15.9999 20.4199ZM20.5237 12.5141C20.9631 12.5141 21.3195 12.1578 21.3195 11.7184C21.3195 11.279 20.9631 10.9228 20.5237 10.9228C20.0843 10.9228 19.728 11.279 19.728 11.7184C19.728 12.1578 20.0843 12.5141 20.5237 12.5141Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-lk {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5562 12.0348C9.6111 12.0348 9 11.3557 9 10.5158C9 9.65879 9.62958 9 10.5947 9C11.5599 9 12.151 9.65879 12.1694 10.5158C12.1694 11.3557 11.5599 12.0348 10.5562 12.0348ZM12.0709 23H9.07849V13.2337H12.0709V23ZM20.0076 23H23V17.2255C23 14.3499 21.5238 13.012 19.555 13.012C17.9403 13.012 16.9752 13.9518 16.5811 14.5888H16.5211L16.3841 13.2322H13.7842C13.8242 14.1095 13.8627 15.1289 13.8627 16.3481V22.9984H16.8566V17.3675C16.8566 17.0881 16.8766 16.8071 16.9567 16.6088C17.1737 16.0515 17.6648 15.4723 18.4914 15.4723C19.5735 15.4723 20.0076 16.3278 20.0076 17.5876V23Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-pi {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M17.0027 19.6017C16.0624 19.5272 15.6686 19.0443 14.9329 18.582C14.5284 20.7844 14.0338 22.8965 12.5685 24C12.1152 20.6688 13.231 18.1704 13.7499 15.5152C12.8662 13.9715 13.8553 10.8667 15.7205 11.6299C18.0147 12.5735 13.7331 17.3692 16.6073 17.9693C19.6082 18.5931 20.8339 12.5672 18.9732 10.6102C16.2837 7.78091 11.1474 10.5453 11.7794 14.5953C11.932 15.5849 12.9196 15.8857 12.1732 17.2521C10.4529 16.8563 9.93854 15.4487 10.0057 13.5725C10.111 10.501 12.6662 8.3493 15.2275 8.05323C18.468 7.67958 21.5086 9.2866 21.9298 12.45C22.4015 16.0187 20.466 19.8803 17.0027 19.6017Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-tm {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M19.9986 22.235C19.4431 22.5181 18.9413 22.7139 18.4919 22.8298C18.0424 22.9413 17.5562 23 17.0346 23C16.441 23 15.9166 22.9172 15.4601 22.7561C15.0035 22.5949 14.6148 22.3645 14.2926 22.0649C13.9703 21.7682 13.747 21.4475 13.6226 21.1116C13.4982 20.7728 13.436 20.2849 13.436 19.6464V14.7343H12V12.7556C12.5074 12.5764 12.947 12.3204 13.3102 11.9846C13.6735 11.6518 13.9661 11.2528 14.1852 10.7844C14.4057 10.3176 14.5569 9.7198 14.6403 9H16.4876V12.5388H19.5689V14.7343H16.4876V18.3258C16.4876 19.1375 16.5272 19.6585 16.6078 19.8874C16.6869 20.1193 16.8353 20.3015 17.053 20.44C17.3413 20.6253 17.6707 20.7186 18.0382 20.7186C18.6968 20.7186 19.3498 20.4867 20 20.0244V22.235H19.9986Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-tw {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M21.1761 8H23.9362L17.9061 14.7774L25 24H19.4456L15.0951 18.4066L10.1172 24H7.35544L13.8052 16.7508L7 8H12.6955L16.6279 13.1126L21.1761 8ZM20.2073 22.3754H21.7368L11.8644 9.53928H10.2232L20.2073 22.3754Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-vm {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M22.9303 12.8802C22.1483 17.2089 17.7763 20.877 16.4632 21.7142C15.1485 22.5485 13.9477 21.3772 13.5136 20.491C13.0148 19.4786 11.5231 13.9995 11.1321 13.5438C10.7411 13.0895 9.56805 13.9995 9.56805 13.9995L9 13.2662C9 13.2662 11.3815 10.471 13.1934 10.1236C15.1146 9.75249 15.1115 13.0198 15.5734 14.8353C16.0213 16.5914 16.3215 17.5949 16.711 17.5949C17.102 17.5949 17.8486 16.6181 18.6645 15.1158C19.4835 13.6136 18.6307 12.2864 17.0312 13.2306C17.6701 9.46005 23.7123 8.55157 22.9303 12.8802Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-yt {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 16C8 21.3185 8.1376 22 16 22C23.8624 22 24 21.3185 24 16C24 10.6815 23.8624 10 16 10C8.1376 10 8 10.6815 8 16ZM14.9712 14.1308L18.5648 15.7431C18.8784 15.8846 18.8784 16.1154 18.5632 16.2569L14.9712 17.8692C14.6576 18.0092 14.4 17.8523 14.4 17.5185V14.4815C14.4 14.1477 14.6576 13.9908 14.9712 14.1308Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-wa {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M25 15.7682C25 20.6108 21.0442 24.5364 16.1636 24.5364C14.6142 24.5364 13.1586 24.1404 11.8922 23.4454L7 25L8.595 20.2956C7.7904 18.9744 7.327 17.4248 7.327 15.7682C7.327 10.9256 11.2832 7 16.1636 7C21.0446 7 25 10.9256 25 15.7682ZM16.1643 8.39643C12.0675 8.39643 8.73506 11.7034 8.73506 15.7682C8.73506 17.3812 9.26086 18.875 10.1503 20.0902L9.22206 22.828L12.0771 21.9206C13.2501 22.6908 14.6553 23.14 16.1645 23.14C20.2607 23.14 23.5937 19.8334 23.5937 15.7686C23.5937 11.7038 20.2609 8.39643 16.1643 8.39643ZM20.3281 17.5938C20.4796 17.6665 20.582 17.7156 20.626 17.7877C20.6798 17.8773 20.6798 18.3075 20.4998 18.8099C20.3186 19.3115 19.4342 19.7955 19.0374 19.8313C18.9694 19.8374 18.913 19.851 18.8552 19.8648C18.5756 19.9319 18.263 20.007 16.438 19.2941C14.4031 18.4988 13.0618 16.5247 12.7846 16.1168C12.7618 16.0833 12.7462 16.0603 12.738 16.0495L12.7377 16.049C12.6277 15.904 11.8536 14.8833 11.8536 13.8269C11.8536 12.8375 12.3434 12.3186 12.5689 12.0796C12.5844 12.0632 12.5987 12.0481 12.6114 12.0343C12.81 11.8193 13.0448 11.7655 13.1892 11.7655C13.2639 11.7655 13.3385 11.7703 13.4107 11.7749C13.4782 11.7793 13.5435 11.7835 13.6044 11.7835C13.6196 11.7835 13.6355 11.7825 13.6521 11.7814C13.7741 11.7735 13.9328 11.7633 14.0916 12.1419C14.1495 12.2798 14.2333 12.4822 14.3223 12.6971C14.511 13.1526 14.7229 13.6643 14.7596 13.7373C14.814 13.8451 14.8502 13.9705 14.7776 14.1139C14.7673 14.1345 14.7577 14.154 14.7486 14.1727C14.694 14.2839 14.6542 14.3649 14.5612 14.4725C14.5254 14.514 14.4883 14.5588 14.4512 14.6036C14.3764 14.6939 14.3015 14.7844 14.2362 14.8489C14.128 14.9559 14.015 15.0721 14.1412 15.2871C14.2676 15.5025 14.7024 16.2057 15.3462 16.7753C16.0388 17.388 16.6405 17.647 16.9452 17.7782C17.0045 17.8037 17.0526 17.8244 17.0878 17.8419C17.3046 17.9495 17.4308 17.9315 17.5572 17.7877C17.6838 17.6443 18.099 17.1605 18.2432 16.9453C18.3874 16.7303 18.5322 16.7663 18.7308 16.8379C18.9288 16.9093 19.994 17.4295 20.2108 17.5369C20.2527 17.5576 20.2918 17.5764 20.3281 17.5938Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-ms {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 7.00175L15.6075 7.00258C10.9213 7.11507 7.10806 10.8941 7 15.6259C7.01269 18.1015 8.10897 20.4474 9.99999 22.0453V24.625L10.0134 24.7247C10.057 24.8834 10.2024 25 10.375 25C10.4453 25 10.5141 24.9802 10.5737 24.943L12.664 23.6374L13.1243 23.7997C14.0522 24.0997 15.0227 24.252 16 24.2501C20.864 24.346 24.8889 20.4892 25 15.6259C24.8889 10.7627 20.864 6.90585 16 7.00175ZM17.5455 15.1722L21.4455 13.0462C21.6093 12.9569 21.8139 13.0016 21.9255 13.1512C22.0377 13.2999 22.0236 13.5085 21.8925 13.6409L17.3925 18.1404C17.2539 18.279 17.032 18.2875 16.8833 18.1599L14.4548 16.0789L10.5548 18.2049C10.4092 18.2839 10.2291 18.258 10.1116 18.1413C9.96471 17.9953 9.96401 17.7579 10.11 17.611L14.61 13.1114C14.7486 12.9729 14.9705 12.9644 15.1193 13.0919L17.5455 15.1722Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-em {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7.9 23C7.35882 23 6.90706 22.8219 6.54471 22.4658C6.18157 22.1097 6 21.6663 6 21.1355V9.86332C6 9.33259 6.18157 8.88955 6.54471 8.53419C6.90784 8.17883 7.35961 8.00077 7.9 8H24.1C24.6412 8 25.0929 8.17806 25.4553 8.53419C25.8184 8.88955 26 9.33297 26 9.86447V21.1355C26 21.6663 25.8188 22.1097 25.4565 22.4658C25.0933 22.8212 24.6412 22.9988 24.1 22.9988L7.9 23ZM15.4365 16.539L7.17647 10.5083V21.1344C7.17647 21.342 7.24431 21.512 7.38 21.6443C7.51569 21.7766 7.68902 21.8432 7.9 21.8439H24.1C24.311 21.8439 24.4843 21.7774 24.62 21.6443C24.7557 21.5113 24.8235 21.3413 24.8235 21.1344V10.5083L16.5635 16.5367C16.3933 16.6613 16.2055 16.7236 16 16.7236C15.7945 16.7236 15.6067 16.6613 15.4365 16.5367M16 15.5479L24.5976 9.28644C24.5522 9.24183 24.5031 9.20837 24.4506 9.18606C24.3973 9.16376 24.3255 9.1526 24.2353 9.1526H7.76471C7.68941 9.1526 7.61412 9.17106 7.53882 9.20798C7.46353 9.2449 7.40314 9.28567 7.35765 9.33028L16 15.5479Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-sp {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 7C13.6131 7 11.3239 7.94821 9.63604 9.63604C7.94821 11.3239 7 13.6131 7 16C7 18.3869 7.94821 20.6761 9.63604 22.364C11.3239 24.0518 13.6131 25 16 25C18.3869 25 20.6761 24.0518 22.364 22.364C24.0518 20.6761 25 18.3869 25 16C25 13.6131 24.0518 11.3239 22.364 9.63604C20.6761 7.94821 18.3869 7 16 7ZM20.1279 19.9807C20.0896 20.0437 20.0392 20.0985 19.9796 20.142C19.92 20.1855 19.8525 20.2168 19.7808 20.2342C19.709 20.2515 19.6346 20.2545 19.5618 20.243C19.4889 20.2315 19.419 20.2057 19.3561 20.1672C17.2424 18.876 14.5835 18.5843 11.4503 19.2997C11.3785 19.3161 11.3042 19.3182 11.2316 19.3058C11.159 19.2935 11.0896 19.267 11.0272 19.2278C10.9649 19.1887 10.9108 19.1376 10.8682 19.0776C10.8256 19.0175 10.7952 18.9497 10.7789 18.8779C10.7625 18.8061 10.7604 18.7318 10.7727 18.6592C10.785 18.5866 10.8115 18.5172 10.8507 18.4548C10.8899 18.3925 10.9409 18.3385 11.001 18.2959C11.061 18.2532 11.1289 18.2229 11.2006 18.2065C14.6285 17.4222 17.5695 17.7598 19.9414 19.2098C20.2054 19.3714 20.2886 19.7167 20.1279 19.9807ZM21.2278 17.5303C21.1305 17.6886 20.9744 17.8019 20.7936 17.8453C20.6129 17.8887 20.4224 17.8586 20.2638 17.7617C17.845 16.2745 14.157 15.8441 11.2953 16.7125C11.1212 16.7538 10.9379 16.7272 10.7828 16.638C10.6276 16.5489 10.5123 16.4039 10.4604 16.2327C10.4084 16.0614 10.4237 15.8768 10.5032 15.7165C10.5826 15.5561 10.7202 15.4321 10.8879 15.3697C14.157 14.3779 18.2199 14.859 20.9973 16.5652C21.076 16.6134 21.1444 16.6767 21.1986 16.7513C21.2528 16.826 21.2918 16.9106 21.3133 17.0003C21.3348 17.09 21.3384 17.1831 21.3239 17.2742C21.3094 17.3653 21.2771 17.4526 21.2288 17.5312M21.3244 14.9785C18.4226 13.256 13.6367 13.0972 10.8678 13.9389C10.7615 13.9728 10.6496 13.9852 10.5385 13.9755C10.4274 13.9657 10.3193 13.934 10.2206 13.8822C10.1219 13.8303 10.0344 13.7593 9.96335 13.6734C9.89228 13.5874 9.839 13.4882 9.80662 13.3814C9.77423 13.2747 9.76338 13.1626 9.7747 13.0517C9.78601 12.9407 9.81927 12.8331 9.87253 12.7351C9.92579 12.6371 9.998 12.5507 10.085 12.4808C10.1719 12.411 10.2719 12.3591 10.3791 12.3283C13.5573 11.3623 18.8425 11.5497 22.1814 13.5315C22.3734 13.6453 22.5123 13.8309 22.5676 14.0472C22.6228 14.2635 22.5899 14.4929 22.476 14.6849C22.3621 14.8769 22.1766 15.0158 21.9603 15.0711C21.744 15.1263 21.5146 15.0934 21.3225 14.9795' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-social-tk {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M20.1071 10.5067C19.4968 9.813 19.1605 8.92216 19.1607 8H16.4018V19.0222C16.3805 19.6187 16.1276 20.1837 15.6962 20.5982C15.2649 21.0127 14.6888 21.2444 14.0893 21.2444C12.8214 21.2444 11.7679 20.2133 11.7679 18.9333C11.7679 17.4044 13.25 16.2578 14.7768 16.7289V13.92C11.6964 13.5111 9 15.8933 9 18.9333C9 21.8933 11.4643 24 14.0804 24C16.8839 24 19.1607 21.7333 19.1607 18.9333V13.3422C20.2795 14.1421 21.6226 14.5712 23 14.5689V11.8222C23 11.8222 21.3214 11.9022 20.1071 10.5067Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-file {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7.53961 30C6.81565 30 6.21166 29.7604 5.72762 29.2813C5.24359 28.8022 5.00105 28.2044 5 27.4878V4.51222C5 3.79667 5.24254 3.19933 5.72762 2.72022C6.21271 2.24111 6.8167 2.00104 7.53961 2H18.8751C19.2135 2 19.5425 2.06741 19.8621 2.20222C20.1816 2.33704 20.4551 2.518 20.6824 2.74511L26.2472 8.25333C26.4746 8.47941 26.6569 8.75007 26.7941 9.06533C26.9314 9.38059 27 9.70622 27 10.0422V27.4862C27 28.2018 26.7575 28.7996 26.2724 29.2798C25.7873 29.7599 25.1843 30 24.4635 30H7.53961ZM19.1439 8.52089V3.55556H7.53961C7.29759 3.55556 7.07548 3.65511 6.87328 3.85422C6.67107 4.05333 6.57049 4.27267 6.57154 4.51222V27.4878C6.57154 27.7263 6.67212 27.9456 6.87328 28.1458C7.07443 28.3459 7.29602 28.4455 7.53804 28.4444H24.4635C24.7045 28.4444 24.9261 28.3449 25.1283 28.1458C25.3305 27.9467 25.4311 27.7268 25.43 27.4862V9.77778H20.4137C20.048 9.77778 19.7452 9.65852 19.5053 9.42C19.2654 9.18148 19.1449 8.88178 19.1439 8.52089Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-ai {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.0364 25.4098C14.8913 25.4098 15.6137 25.1179 16.2035 24.534C16.7934 23.9491 17.0883 23.2341 17.0883 22.3889V16.1978H20.1717C20.4964 16.1978 20.7793 16.0832 21.0203 15.854C21.2613 15.6248 21.3812 15.3401 21.3802 15C21.3802 14.6785 21.2597 14.3985 21.0187 14.16C20.7777 13.9215 20.4949 13.8022 20.1701 13.8022H17.0899C16.7651 13.8022 16.4822 13.9215 16.2412 14.16C16.0003 14.3985 15.8798 14.6785 15.8798 15V20.1598C15.6325 19.8922 15.3549 19.6936 15.0469 19.564C14.7399 19.4333 14.4031 19.368 14.0364 19.368C13.1825 19.368 12.4601 19.6599 11.8692 20.2438C11.2794 20.8276 10.9844 21.5427 10.9844 22.3889C10.9844 23.2351 11.2794 23.9501 11.8692 24.534C12.4591 25.1179 13.1814 25.4098 14.0364 25.4098ZM7.53961 30C6.81565 30 6.21166 29.7604 5.72762 29.2813C5.24359 28.8022 5.00105 28.2044 5 27.4878V4.51222C5 3.79667 5.24254 3.19933 5.72762 2.72022C6.21271 2.24111 6.8167 2.00104 7.53961 2H18.8751C19.2135 2 19.5425 2.06741 19.8621 2.20222C20.1816 2.33704 20.4551 2.518 20.6824 2.74511L26.2472 8.25333C26.4746 8.47941 26.6569 8.75007 26.7941 9.06533C26.9314 9.38059 27 9.70622 27 10.0422V27.4862C27 28.2018 26.7575 28.7996 26.2724 29.2798C25.7873 29.7599 25.1843 30 24.4635 30H7.53961ZM19.1439 8.52089V3.55556H7.53961C7.29759 3.55556 7.07548 3.65511 6.87328 3.85422C6.67107 4.05333 6.57049 4.27267 6.57154 4.51222V27.4878C6.57154 27.7263 6.67212 27.9456 6.87328 28.1458C7.07443 28.3459 7.29602 28.4455 7.53804 28.4444H24.4635C24.7045 28.4444 24.9261 28.3449 25.1283 28.1458C25.3305 27.9467 25.4311 27.7268 25.43 27.4862V9.77778H20.4137C20.048 9.77778 19.7452 9.65852 19.5053 9.42C19.2654 9.18148 19.1449 8.88178 19.1439 8.52089Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-zip {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 4.71429V3H13.3333V4.71429H11.6667V6.42857H13.3333L13.3333 8.14286H11.6667V9.85714H13.3333L13.3333 11.5714L11.6667 11.5714V13.2857C10.8073 16.2589 10.2865 18.0268 10.1042 18.5893C10.0347 18.8304 10 19.0625 10 19.2857C10 20.0268 10.3147 20.6406 10.944 21.1272C11.5734 21.6138 12.3698 21.8571 13.3333 21.8571C14.2969 21.8571 15.0933 21.6138 15.7227 21.1272C16.352 20.6406 16.6667 20.0268 16.6667 19.2857C16.6667 19.0625 16.6319 18.8304 16.5625 18.5893L15.1693 13.9152C15.1172 13.7277 15.0174 13.5759 14.8698 13.4598C14.7222 13.3438 14.553 13.2857 14.362 13.2857H13.3333L13.3333 11.5714H15V9.85714H13.3333L13.3333 8.14286H15V6.42857H13.3333L13.3333 4.71429H15ZM14.5117 19.8884C14.1862 20.058 13.7934 20.1429 13.3333 20.1429C12.8733 20.1429 12.4805 20.058 12.1549 19.8884C11.8294 19.7188 11.6667 19.5179 11.6667 19.2857C11.6667 19.0536 11.8294 18.8527 12.1549 18.683C12.4805 18.5134 12.8733 18.4286 13.3333 18.4286C13.7934 18.4286 14.1862 18.5134 14.5117 18.683C14.8372 18.8527 15 19.0536 15 19.2857C15 19.5179 14.8372 19.7188 14.5117 19.8884Z' fill='black'/%3e%3cpath d='M7.53961 30C6.81565 30 6.21166 29.7604 5.72762 29.2813C5.24359 28.8022 5.00105 28.2044 5 27.4878V4.51222C5 3.79667 5.24254 3.19933 5.72762 2.72022C6.21271 2.24111 6.8167 2.00104 7.53961 2H18.8751C19.2135 2 19.5425 2.06741 19.8621 2.20222C20.1816 2.33704 20.4551 2.518 20.6824 2.74511L26.2472 8.25333C26.4746 8.47941 26.6569 8.75007 26.7941 9.06533C26.9314 9.38059 27 9.70622 27 10.0422V27.4862C27 28.2018 26.7575 28.7996 26.2724 29.2798C25.7873 29.7599 25.1843 30 24.4635 30H7.53961ZM19.1439 8.52089V3.55556H7.53961C7.29759 3.55556 7.07548 3.65511 6.87328 3.85422C6.67107 4.05333 6.57049 4.27267 6.57154 4.51222V27.4878C6.57154 27.7263 6.67212 27.9456 6.87328 28.1458C7.07443 28.3459 7.29602 28.4455 7.53804 28.4444H24.4635C24.7045 28.4444 24.9261 28.3449 25.1283 28.1458C25.3305 27.9467 25.4311 27.7268 25.43 27.4862V9.77778H20.4137C20.048 9.77778 19.7452 9.65852 19.5053 9.42C19.2654 9.18148 19.1449 8.88178 19.1439 8.52089Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-htm {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 12.4286C11 12.3036 11.0391 12.2009 11.1172 12.1205C11.1953 12.0402 11.2951 12 11.4167 12H20.5833C20.7049 12 20.8047 12.0402 20.8828 12.1205C20.9609 12.2009 21 12.3036 21 12.4286V13.2857C21 13.4107 20.9609 13.5134 20.8828 13.5938C20.8047 13.6741 20.7049 13.7143 20.5833 13.7143H11.4167C11.2951 13.7143 11.1953 13.6741 11.1172 13.5938C11.0391 13.5134 11 13.4107 11 13.2857V12.4286ZM20.5833 15.4286C20.7049 15.4286 20.8047 15.4688 20.8828 15.5491C20.9609 15.6295 21 15.7321 21 15.8571V16.7143C21 16.8393 20.9609 16.942 20.8828 17.0223C20.8047 17.1027 20.7049 17.1429 20.5833 17.1429H11.4167C11.2951 17.1429 11.1953 17.1027 11.1172 17.0223C11.0391 16.942 11 16.8393 11 16.7143V15.8571C11 15.7321 11.0391 15.6295 11.1172 15.5491C11.1953 15.4688 11.2951 15.4286 11.4167 15.4286H20.5833ZM20.8828 18.9777C20.8047 18.8973 20.7049 18.8571 20.5833 18.8571H11.4167C11.2951 18.8571 11.1953 18.8973 11.1172 18.9777C11.0391 19.058 11 19.1607 11 19.2857V20.1429C11 20.2679 11.0391 20.3705 11.1172 20.4509C11.1953 20.5312 11.2951 20.5714 11.4167 20.5714H20.5833C20.7049 20.5714 20.8047 20.5312 20.8828 20.4509C20.9609 20.3705 21 20.2679 21 20.1429V19.2857C21 19.1607 20.9609 19.058 20.8828 18.9777Z' fill='black'/%3e%3cpath d='M7.20563 30C6.48167 30 5.87767 29.7604 5.39364 29.2813C4.9096 28.8022 4.66706 28.2044 4.66602 27.4878V4.51222C4.66602 3.79667 4.90856 3.19933 5.39364 2.72022C5.87872 2.24111 6.48272 2.00104 7.20563 2H18.5411C18.8796 2 19.2085 2.06741 19.5281 2.20222C19.8476 2.33704 20.1211 2.518 20.3484 2.74511L25.9132 8.25333C26.1406 8.47941 26.3229 8.75007 26.4601 9.06533C26.5974 9.38059 26.666 9.70622 26.666 10.0422V27.4862C26.666 28.2018 26.4235 28.7996 25.9384 29.2798C25.4533 29.7599 24.8504 30 24.1295 30H7.20563ZM18.8099 8.52089V3.55556H7.20563C6.96361 3.55556 6.7415 3.65511 6.53929 3.85422C6.33709 4.05333 6.23651 4.27267 6.23756 4.51222V27.4878C6.23756 27.7263 6.33813 27.9456 6.53929 28.1458C6.74045 28.3459 6.96204 28.4455 7.20405 28.4444H24.1295C24.3705 28.4444 24.5921 28.3449 24.7943 28.1458C24.9965 27.9467 25.0971 27.7268 25.096 27.4862V9.77778H20.0797C19.714 9.77778 19.4113 9.65852 19.1713 9.42C18.9314 9.18148 18.8109 8.88178 18.8099 8.52089Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-pdf {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.6412 19.4866C17.9276 19.7188 18.2922 19.9688 18.7349 20.2366C19.2471 20.1741 19.7549 20.1429 20.2584 20.1429C21.5344 20.1429 22.3026 20.3616 22.5631 20.7991C22.7019 20.9955 22.7106 21.2277 22.5891 21.4955C22.5891 21.5045 22.5848 21.5134 22.5761 21.5223L22.55 21.5491V21.5625C22.498 21.9018 22.1898 22.0714 21.6256 22.0714C21.2089 22.0714 20.7098 21.9821 20.1282 21.8036C19.5466 21.625 18.9823 21.3884 18.4355 21.0938C16.517 21.308 14.8157 21.6786 13.3313 22.2054C12.0032 24.5446 10.9528 25.7143 10.1802 25.7143C10.05 25.7143 9.92851 25.683 9.81566 25.6205L9.50316 25.4598C9.49448 25.4509 9.46844 25.4286 9.42504 25.3929C9.33823 25.3036 9.31219 25.1429 9.34691 24.9107C9.42504 24.5536 9.66809 24.1451 10.0761 23.6853C10.4841 23.2254 11.057 22.7946 11.7948 22.3929C11.9164 22.3125 12.0162 22.3393 12.0943 22.4732C12.1117 22.4911 12.1203 22.5089 12.1203 22.5268C12.5717 21.7679 13.0361 20.8884 13.5136 19.8884C14.1039 18.6741 14.5552 17.5045 14.8677 16.3795C14.6594 15.6473 14.527 14.9353 14.4706 14.2433C14.4142 13.5513 14.4424 12.9821 14.5552 12.5357C14.6507 12.1786 14.833 12 15.1021 12H15.3886C15.5882 12 15.7401 12.067 15.8443 12.2009C16.0006 12.3884 16.0396 12.692 15.9615 13.1116C15.9441 13.1652 15.9268 13.2009 15.9094 13.2188C15.9181 13.2455 15.9224 13.2812 15.9224 13.3259V13.7277C15.9051 14.8259 15.8443 15.683 15.7401 16.2991C16.2176 17.7634 16.8513 18.8259 17.6412 19.4866ZM10.1416 24.9911C10.593 24.7768 11.1876 24.0714 11.9255 22.875C11.4827 23.2321 11.103 23.6071 10.7861 24C10.4693 24.3929 10.2544 24.7232 10.1416 24.9911ZM15.2983 14.4374C15.1855 13.6338 15.1941 13.0445 15.3243 12.6695V12.6428C15.333 12.6338 15.3374 12.6249 15.3374 12.616C15.4415 12.741 15.498 12.9017 15.5066 13.0981C15.5066 13.107 15.5088 13.1137 15.5131 13.1182C15.5175 13.1227 15.5197 13.1294 15.5197 13.1383C15.5197 13.1472 15.524 13.1561 15.5327 13.1651C15.5066 13.2008 15.4893 13.2365 15.4806 13.2722C15.4198 13.6294 15.3894 13.8213 15.3894 13.8481C15.3374 14.1785 15.307 14.3749 15.2983 14.4374ZM13.709 21.5222C14.8809 21.0401 16.1135 20.6785 17.4069 20.4374C17.3895 20.4285 17.3331 20.3861 17.2376 20.3102C17.1421 20.2343 17.0727 20.174 17.0293 20.1294C16.3696 19.5311 15.8184 18.7454 15.3757 17.7722C15.1413 18.5401 14.781 19.4195 14.2949 20.4106C14.0345 20.9106 13.8392 21.2811 13.709 21.5222ZM20.2979 20.9867C21.3048 20.9867 21.9124 21.0938 22.1208 21.3081C22.1381 21.326 22.1468 21.3393 22.1468 21.3483C22.1121 21.3572 22.034 21.3617 21.9124 21.3617C21.4958 21.3617 20.9576 21.2367 20.2979 20.9867Z' fill='black'/%3e%3cpath d='M7.53961 30C6.81565 30 6.21166 29.7604 5.72762 29.2813C5.24359 28.8022 5.00105 28.2044 5 27.4878V4.51222C5 3.79667 5.24254 3.19933 5.72762 2.72022C6.21271 2.24111 6.8167 2.00104 7.53961 2H18.8751C19.2135 2 19.5425 2.06741 19.8621 2.20222C20.1816 2.33704 20.4551 2.518 20.6824 2.74511L26.2472 8.25333C26.4746 8.47941 26.6569 8.75007 26.7941 9.06533C26.9314 9.38059 27 9.70622 27 10.0422V27.4862C27 28.2018 26.7575 28.7996 26.2724 29.2798C25.7873 29.7599 25.1843 30 24.4635 30H7.53961ZM19.1439 8.52089V3.55556H7.53961C7.29759 3.55556 7.07548 3.65511 6.87328 3.85422C6.67107 4.05333 6.57049 4.27267 6.57154 4.51222V27.4878C6.57154 27.7263 6.67212 27.9456 6.87328 28.1458C7.07443 28.3459 7.29602 28.4455 7.53804 28.4444H24.4635C24.7045 28.4444 24.9261 28.3449 25.1283 28.1458C25.3305 27.9467 25.4311 27.7268 25.43 27.4862V9.77778H20.4137C20.048 9.77778 19.7452 9.65852 19.5053 9.42C19.2654 9.18148 19.1449 8.88178 19.1439 8.52089Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-jpg, body .rdc-icon-svg.rdc-icon-file-png {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.76562 17.759C10.276 18.3007 10.8958 18.5715 11.625 18.5715C12.3542 18.5715 12.974 18.3007 13.4844 17.759C13.9948 17.2173 14.25 16.5596 14.25 15.7857C14.25 15.0119 13.9948 14.3542 13.4844 13.8125C12.974 13.2708 12.3542 13 11.625 13C10.8958 13 10.276 13.2708 9.76562 13.8125C9.25521 14.3542 9 15.0119 9 15.7857C9 16.5596 9.25521 17.2173 9.76562 17.759ZM23 21.754C23 21.4991 22.9026 21.2538 22.7278 21.0682L19.3528 17.4865C18.958 17.0676 18.292 17.0676 17.8972 17.4865L14.1028 21.5133C13.708 21.9322 13.042 21.9322 12.6472 21.5133L12.3528 21.2009C11.958 20.7819 11.292 20.7819 10.8972 21.2009L9.27221 22.9254C9.09737 23.1109 9 23.3562 9 23.6112V25C9 25.5523 9.44772 26 10 26H22C22.5523 26 23 25.5523 23 25V21.754Z' fill='black'/%3e%3cpath d='M7.53961 30C6.81565 30 6.21166 29.7604 5.72762 29.2813C5.24359 28.8022 5.00105 28.2044 5 27.4878V4.51222C5 3.79667 5.24254 3.19933 5.72762 2.72022C6.21271 2.24111 6.8167 2.00104 7.53961 2H18.8751C19.2135 2 19.5425 2.06741 19.8621 2.20222C20.1816 2.33704 20.4551 2.518 20.6824 2.74511L26.2472 8.25333C26.4746 8.47941 26.6569 8.75007 26.7941 9.06533C26.9314 9.38059 27 9.70622 27 10.0422V27.4862C27 28.2018 26.7575 28.7996 26.2724 29.2798C25.7873 29.7599 25.1843 30 24.4635 30H7.53961ZM19.1439 8.52089V3.55556H7.53961C7.29759 3.55556 7.07548 3.65511 6.87328 3.85422C6.67107 4.05333 6.57049 4.27267 6.57154 4.51222V27.4878C6.57154 27.7263 6.67212 27.9456 6.87328 28.1458C7.07443 28.3459 7.29602 28.4455 7.53804 28.4444H24.4635C24.7045 28.4444 24.9261 28.3449 25.1283 28.1458C25.3305 27.9467 25.4311 27.7268 25.43 27.4862V9.77778H20.4137C20.048 9.77778 19.7452 9.65852 19.5053 9.42C19.2654 9.18148 19.1449 8.88178 19.1439 8.52089Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-xls {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.4886 22.6198L15.0638 18.9349L12.555 15.3932H11.6523V14H15.5019V15.3932H14.493L15.9001 17.4635C15.9974 17.5677 16.0727 17.6675 16.1258 17.763C16.1612 17.8151 16.1833 17.8585 16.1921 17.8932H16.2187L16.2452 17.8542C16.2718 17.8194 16.3116 17.7609 16.3647 17.6784C16.4178 17.5959 16.462 17.5243 16.4974 17.4635L17.8647 15.3932H16.8824V14H20.5859V15.3932H19.6966L17.1081 19.0651L19.6567 22.6198H20.5594V24H16.6966V22.6198H17.7054L16.2851 20.5234C16.2585 20.4887 16.2297 20.4518 16.1988 20.4128C16.1678 20.3737 16.1412 20.339 16.1191 20.3086C16.097 20.2782 16.0771 20.2457 16.0594 20.2109C16.024 20.1589 16.0019 20.1154 15.993 20.0807H15.9665C15.9576 20.0807 15.9421 20.0981 15.92 20.1328C15.8979 20.1675 15.8647 20.2261 15.8204 20.3086C15.7762 20.3911 15.732 20.4627 15.6877 20.5234L14.3204 22.6198H15.316V24H11.5859V22.6198H12.4886Z' fill='black'/%3e%3cpath d='M7.53961 30C6.81565 30 6.21166 29.7604 5.72762 29.2813C5.24359 28.8022 5.00105 28.2044 5 27.4878V4.51222C5 3.79667 5.24254 3.19933 5.72762 2.72022C6.21271 2.24111 6.8167 2.00104 7.53961 2H18.8751C19.2135 2 19.5425 2.06741 19.8621 2.20222C20.1816 2.33704 20.4551 2.518 20.6824 2.74511L26.2472 8.25333C26.4746 8.47941 26.6569 8.75007 26.7941 9.06533C26.9314 9.38059 27 9.70622 27 10.0422V27.4862C27 28.2018 26.7575 28.7996 26.2724 29.2798C25.7873 29.7599 25.1843 30 24.4635 30H7.53961ZM19.1439 8.52089V3.55556H7.53961C7.29759 3.55556 7.07548 3.65511 6.87328 3.85422C6.67107 4.05333 6.57049 4.27267 6.57154 4.51222V27.4878C6.57154 27.7263 6.67212 27.9456 6.87328 28.1458C7.07443 28.3459 7.29602 28.4455 7.53804 28.4444H24.4635C24.7045 28.4444 24.9261 28.3449 25.1283 28.1458C25.3305 27.9467 25.4311 27.7268 25.43 27.4862V9.77778H20.4137C20.048 9.77778 19.7452 9.65852 19.5053 9.42C19.2654 9.18148 19.1449 8.88178 19.1439 8.52089Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-file-doc {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.9395 11V12.433H11.7676L13.0566 18.2991C13.1 18.4777 13.1304 18.683 13.1478 18.9152L13.1738 19.1964H13.2259L13.278 18.9152C13.2867 18.8616 13.3019 18.7656 13.3236 18.6272C13.3453 18.4888 13.3648 18.3795 13.3822 18.2991L15.2572 11H16.7415L18.6165 18.2991C18.6339 18.3795 18.6556 18.4911 18.6816 18.6339C18.7077 18.7768 18.725 18.8705 18.7337 18.9152L18.7728 19.1964H18.8249L18.8509 18.9152C18.8683 18.683 18.8987 18.4777 18.9421 18.2991L20.2311 12.433H19.0592V11H22.9655V12.433H22.054L19.9186 21.2857H17.8483L16.1816 14.7902C16.1556 14.7098 16.1317 14.5938 16.11 14.442C16.0883 14.2902 16.0731 14.2009 16.0645 14.1741L16.0254 13.8527H15.9733C15.9733 13.9241 15.9646 14.0313 15.9473 14.1741C15.9212 14.4063 15.8778 14.6116 15.8171 14.7902L14.1504 21.2857H12.0801L9.94466 12.433H9.0332V11H12.9395Z' fill='black'/%3e%3cpath d='M7.20563 30C6.48167 30 5.87767 29.7604 5.39364 29.2813C4.9096 28.8022 4.66706 28.2044 4.66602 27.4878V4.51222C4.66602 3.79667 4.90856 3.19933 5.39364 2.72022C5.87872 2.24111 6.48272 2.00104 7.20563 2H18.5411C18.8796 2 19.2085 2.06741 19.5281 2.20222C19.8476 2.33704 20.1211 2.518 20.3484 2.74511L25.9132 8.25333C26.1406 8.47941 26.3229 8.75007 26.4601 9.06533C26.5974 9.38059 26.666 9.70622 26.666 10.0422V27.4862C26.666 28.2018 26.4235 28.7996 25.9384 29.2798C25.4533 29.7599 24.8504 30 24.1295 30H7.20563ZM18.8099 8.52089V3.55556H7.20563C6.96361 3.55556 6.7415 3.65511 6.53929 3.85422C6.33709 4.05333 6.23651 4.27267 6.23756 4.51222V27.4878C6.23756 27.7263 6.33813 27.9456 6.53929 28.1458C6.74045 28.3459 6.96204 28.4455 7.20405 28.4444H24.1295C24.3705 28.4444 24.5921 28.3449 24.7943 28.1458C24.9965 27.9467 25.0971 27.7268 25.096 27.4862V9.77778H20.0797C19.714 9.77778 19.4113 9.65852 19.1713 9.42C18.9314 9.18148 18.8109 8.88178 18.8099 8.52089Z' fill='black'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-close {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M17.1756 15.9819L23.8076 9.36761C23.9387 9.21497 24.0072 9.01864 23.9994 8.81784C23.9916 8.61704 23.9082 8.42655 23.7657 8.28446C23.6232 8.14237 23.4322 8.05912 23.2309 8.05137C23.0295 8.04361 22.8327 8.11191 22.6796 8.24262L16.0476 14.8569L9.41563 8.23464C9.26499 8.0844 9.06068 8 8.84763 8C8.63459 8 8.43028 8.0844 8.27963 8.23464C8.12899 8.38488 8.04436 8.58865 8.04436 8.80112C8.04436 9.0136 8.12899 9.21737 8.27963 9.36761L14.9196 15.9819L8.27963 22.5961C8.19589 22.6677 8.12787 22.7557 8.07985 22.8547C8.03184 22.9536 8.00485 23.0615 8.0006 23.1713C7.99634 23.2812 8.0149 23.3908 8.05512 23.4932C8.09534 23.5956 8.15635 23.6886 8.23431 23.7663C8.31228 23.8441 8.40552 23.9049 8.50818 23.945C8.61084 23.9851 8.7207 24.0036 8.83088 23.9994C8.94105 23.9952 9.04916 23.9682 9.14841 23.9204C9.24766 23.8725 9.33592 23.8046 9.40763 23.7211L16.0476 17.1069L22.6796 23.7211C22.8327 23.8518 23.0295 23.9201 23.2309 23.9124C23.4322 23.9046 23.6232 23.8214 23.7657 23.6793C23.9082 23.5372 23.9916 23.3467 23.9994 23.1459C24.0072 22.9451 23.9387 22.7488 23.8076 22.5961L17.1756 15.9819Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-notification {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M25.7718 22.6343C25.1246 22.0525 24.558 21.3855 24.0872 20.6513C23.5733 19.6378 23.2653 18.531 23.1812 17.3958V14.0524C23.1857 12.2694 22.5443 10.5461 21.3777 9.20637C20.211 7.86662 18.5994 7.00259 16.8456 6.77663V5.90354C16.8456 5.66391 16.7512 5.43409 16.5832 5.26464C16.4152 5.09519 16.1873 5 15.9497 5C15.712 5 15.4841 5.09519 15.3161 5.26464C15.1481 5.43409 15.0537 5.66391 15.0537 5.90354V6.79017C13.3156 7.03242 11.7235 7.90167 10.5722 9.23692C9.42086 10.5722 8.78841 12.2829 8.79195 14.0524V17.3958C8.70789 18.531 8.39985 19.6378 7.88591 20.6513C7.42341 21.3838 6.8659 22.0508 6.22819 22.6343C6.1566 22.6978 6.09922 22.7758 6.05988 22.8634C6.02053 22.9509 6.00012 23.0459 6 23.142V24.0624C6 24.2419 6.07071 24.4141 6.19657 24.541C6.32244 24.6679 6.49314 24.7392 6.67114 24.7392H25.3289C25.5069 24.7392 25.6776 24.6679 25.8034 24.541C25.9293 24.4141 26 24.2419 26 24.0624V23.142C25.9999 23.0459 25.9795 22.9509 25.9401 22.8634C25.9008 22.7758 25.8434 22.6978 25.7718 22.6343ZM7.39597 23.3856C8.02041 22.7773 8.5702 22.0956 9.03356 21.3552C9.68095 20.1311 10.0587 18.7806 10.1409 17.3958V14.0524C10.1143 13.2592 10.2463 12.4687 10.5289 11.728C10.8115 10.9873 11.2391 10.3115 11.7861 9.74087C12.3331 9.17026 12.9883 8.71649 13.7129 8.40658C14.4374 8.09667 15.2164 7.93696 16.0034 7.93696C16.7904 7.93696 17.5693 8.09667 18.2938 8.40658C19.0184 8.71649 19.6736 9.17026 20.2206 9.74087C20.7676 10.3115 21.1952 10.9873 21.4778 11.728C21.7605 12.4687 21.8924 13.2592 21.8658 14.0524V17.3958C21.948 18.7806 22.3258 20.1311 22.9732 21.3552C23.4365 22.0956 23.9863 22.7773 24.6107 23.3856H7.39597Z' fill='%23333333'/%3e%3cpath d='M16.0338 26.9998C16.4565 26.99 16.8622 26.8297 17.1791 26.5473C17.496 26.2649 17.7036 25.8786 17.7653 25.4567H14.2351C14.2985 25.89 14.5159 26.2854 14.8467 26.5693C15.1776 26.8531 15.5994 27.0061 16.0338 26.9998Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-help {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16.0342 22.3922C16.3047 22.3922 16.5329 22.2993 16.7187 22.1136C16.9044 21.9278 16.9973 21.6996 16.9973 21.4291C16.9973 21.1586 16.9036 20.9304 16.7162 20.7447C16.5304 20.5589 16.3023 20.466 16.0318 20.466C15.7613 20.466 15.5331 20.5593 15.3473 20.7459C15.1616 20.9325 15.0691 21.1606 15.0699 21.4303C15.0699 21.7009 15.1628 21.929 15.3486 22.1148C15.536 22.3006 15.7645 22.3934 16.0342 22.3934M16.0037 27C14.4832 27 13.0532 26.7116 11.7137 26.1347C10.3749 25.557 9.21015 24.7731 8.21933 23.7831C7.22852 22.7931 6.44426 21.6296 5.86656 20.2924C5.28885 18.9553 5 17.5257 5 16.0037C5 14.4816 5.28885 13.0516 5.86656 11.7137C6.44344 10.3749 7.22607 9.21015 8.21444 8.21933C9.20281 7.22852 10.3668 6.44426 11.7063 5.86656C13.0459 5.28885 14.4759 5 15.9963 5C17.5168 5 18.9468 5.28885 20.2863 5.86656C21.6251 6.44344 22.7898 7.22648 23.7807 8.21567C24.7715 9.20485 25.5557 10.3688 26.1334 11.7076C26.7111 13.0463 27 14.4759 27 15.9963C27 17.5168 26.7116 18.9468 26.1347 20.2863C25.5578 21.6259 24.7739 22.7907 23.7831 23.7807C22.7923 24.7707 21.6287 25.5549 20.2924 26.1334C18.9561 26.712 17.5266 27.0008 16.0037 27ZM16 25.7778C18.7296 25.7778 21.0417 24.8306 22.9361 22.9361C24.8306 21.0417 25.7778 18.7296 25.7778 16C25.7778 13.2704 24.8306 10.9583 22.9361 9.06389C21.0417 7.16944 18.7296 6.22222 16 6.22222C13.2704 6.22222 10.9583 7.16944 9.06389 9.06389C7.16944 10.9583 6.22222 13.2704 6.22222 16C6.22222 18.7296 7.16944 21.0417 9.06389 22.9361C10.9583 24.8306 13.2704 25.7778 16 25.7778ZM16.0758 10.7921C16.695 10.7921 17.2279 10.984 17.6744 11.3678C18.1226 11.7516 18.3467 12.2319 18.3467 12.8088C18.3467 13.2569 18.2204 13.6619 17.9678 14.0237C17.7168 14.3854 17.4259 14.7191 17.0951 15.0247C16.6763 15.4044 16.3076 15.822 15.989 16.2774C15.6704 16.7337 15.4875 17.2361 15.4402 17.7844C15.4247 17.9441 15.4748 18.0778 15.5906 18.1853C15.7046 18.2921 15.8391 18.3454 15.9939 18.3454C16.1577 18.3454 16.2958 18.2909 16.4082 18.1817C16.5198 18.0717 16.5907 17.9421 16.6209 17.793C16.7024 17.3815 16.8661 17.0153 17.1122 16.6942C17.3575 16.374 17.6272 16.0709 17.9213 15.7849C18.3442 15.3644 18.7194 14.9061 19.047 14.4099C19.3754 13.9145 19.5396 13.3616 19.5396 12.7513C19.5396 11.8542 19.199 11.1136 18.5178 10.5293C17.8374 9.94593 17.0389 9.65422 16.1222 9.65422C15.4427 9.65422 14.81 9.81311 14.2241 10.1309C13.6391 10.4487 13.171 10.8887 12.8198 11.4509C12.7399 11.5861 12.7143 11.7259 12.7428 11.8701C12.7713 12.0143 12.8487 12.1239 12.975 12.1989C13.1363 12.2836 13.2993 12.3032 13.4639 12.2576C13.6285 12.2119 13.7735 12.1174 13.899 11.974C14.1703 11.6367 14.4897 11.3556 14.8572 11.1307C15.2239 10.9041 15.6301 10.7921 16.0758 10.7921Z' fill='%238B8D8F'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-info {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 21.5C16.1744 21.5 16.3198 21.4413 16.4363 21.324C16.5529 21.2067 16.6111 21.0616 16.6111 20.8889V15.3889C16.6111 15.2153 16.5524 15.0703 16.4351 14.9538C16.3178 14.8373 16.1723 14.7786 15.9988 14.7778C15.8252 14.777 15.6802 14.8356 15.5637 14.9538C15.4471 15.0719 15.3889 15.217 15.3889 15.3889V20.8889C15.3889 21.0624 15.4476 21.2075 15.5649 21.324C15.6822 21.4405 15.8277 21.4992 16.0012 21.5M16 13.0386C16.2135 13.0386 16.3923 12.9664 16.5366 12.8222C16.6808 12.678 16.7525 12.4996 16.7517 12.2869C16.7509 12.0742 16.6787 11.8954 16.5353 11.7503C16.3919 11.6053 16.2135 11.5332 16 11.534C15.7865 11.5348 15.6081 11.6069 15.4647 11.7503C15.3213 11.8937 15.2491 12.0726 15.2483 12.2869C15.2475 12.5012 15.3196 12.6796 15.4647 12.8222C15.6097 12.9648 15.7881 13.0369 16 13.0386ZM16.0037 27C14.4824 27 13.0524 26.7116 11.7137 26.1347C10.3749 25.557 9.21015 24.7731 8.21933 23.7831C7.22852 22.7931 6.44426 21.6296 5.86656 20.2924C5.28885 18.9553 5 17.5257 5 16.0037C5 14.4816 5.28885 13.0516 5.86656 11.7137C6.44344 10.3749 7.22607 9.21015 8.21444 8.21933C9.20282 7.22852 10.3668 6.44426 11.7063 5.86656C13.0459 5.28885 14.4759 5 15.9963 5C17.5168 5 18.9468 5.28885 20.2863 5.86656C21.6251 6.44344 22.7899 7.22648 23.7807 8.21567C24.7715 9.20485 25.5557 10.3688 26.1334 11.7076C26.7111 13.0463 27 14.4759 27 15.9963C27 17.5168 26.7116 18.9468 26.1347 20.2863C25.5578 21.6259 24.7739 22.7907 23.7831 23.7807C22.7923 24.7707 21.6287 25.5549 20.2924 26.1334C18.9561 26.712 17.5266 27.0008 16.0037 27ZM16 25.7778C18.7296 25.7778 21.0417 24.8306 22.9361 22.9361C24.8306 21.0417 25.7778 18.7296 25.7778 16C25.7778 13.2704 24.8306 10.9583 22.9361 9.06389C21.0417 7.16944 18.7296 6.22222 16 6.22222C13.2704 6.22222 10.9583 7.16944 9.06389 9.06389C7.16944 10.9583 6.22222 13.2704 6.22222 16C6.22222 18.7296 7.16944 21.0417 9.06389 22.9361C10.9583 24.8306 13.2704 25.7778 16 25.7778Z' fill='%231890FF'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-success {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.2424 19.0458L11.1918 15.9951C11.0769 15.881 10.9363 15.8199 10.7701 15.8118C10.6039 15.8036 10.456 15.8647 10.3264 15.9951C10.1969 16.1255 10.1317 16.2697 10.1309 16.4278C10.1301 16.5859 10.1953 16.7301 10.3264 16.8604L13.5507 20.0847C13.7479 20.2827 13.978 20.3817 14.2412 20.3817C14.5044 20.3817 14.735 20.2827 14.933 20.0847L21.6271 13.3918C21.7412 13.2769 21.8023 13.1363 21.8104 12.9701C21.8186 12.8039 21.7575 12.656 21.6271 12.5264C21.4967 12.3969 21.3525 12.3317 21.1944 12.3309C21.0364 12.3301 20.8921 12.3953 20.7618 12.5264L14.2424 19.0458ZM16.0037 27C14.4832 27 13.0532 26.7116 11.7137 26.1347C10.3749 25.557 9.21015 24.7731 8.21933 23.7831C7.22852 22.7931 6.44426 21.6296 5.86656 20.2924C5.28885 18.9553 5 17.5257 5 16.0037C5 14.4816 5.28885 13.0516 5.86656 11.7137C6.44344 10.3749 7.22607 9.21015 8.21444 8.21933C9.20282 7.22852 10.3668 6.44426 11.7063 5.86656C13.0459 5.28885 14.4759 5 15.9963 5C17.5168 5 18.9468 5.28885 20.2863 5.86656C21.6251 6.44344 22.7899 7.22648 23.7807 8.21567C24.7715 9.20485 25.5557 10.3688 26.1334 11.7076C26.7112 13.0463 27 14.4759 27 15.9963C27 17.5168 26.7116 18.9468 26.1347 20.2863C25.5578 21.6259 24.7739 22.7907 23.7831 23.7807C22.7923 24.7707 21.6287 25.5549 20.2924 26.1334C18.9561 26.712 17.5266 27.0008 16.0037 27ZM16 25.7778C18.7296 25.7778 21.0417 24.8306 22.9361 22.9361C24.8306 21.0417 25.7778 18.7296 25.7778 16C25.7778 13.2704 24.8306 10.9583 22.9361 9.06389C21.0417 7.16944 18.7296 6.22222 16 6.22222C13.2704 6.22222 10.9583 7.16944 9.06389 9.06389C7.16944 10.9583 6.22222 13.2704 6.22222 16C6.22222 18.7296 7.16944 21.0417 9.06389 22.9361C10.9583 24.8306 13.2704 25.7778 16 25.7778Z' fill='%233F9C35'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-error {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 16.8653L19.9673 20.8327C20.0814 20.9467 20.2216 21.0079 20.3878 21.016C20.554 21.0241 20.7023 20.963 20.8327 20.8327C20.963 20.7023 21.0282 20.5581 21.0282 20.4C21.0282 20.2419 20.963 20.0977 20.8327 19.9673L16.8653 16L20.8327 12.0327C20.9467 11.9186 21.0079 11.7784 21.016 11.6122C21.0241 11.446 20.963 11.2977 20.8327 11.1673C20.7023 11.037 20.5581 10.9718 20.4 10.9718C20.2419 10.9718 20.0977 11.037 19.9673 11.1673L16 15.1347L12.0327 11.1673C11.9186 11.0533 11.7784 10.9921 11.6122 10.984C11.446 10.9759 11.2977 11.037 11.1673 11.1673C11.037 11.2977 10.9718 11.4419 10.9718 11.6C10.9718 11.7581 11.037 11.9023 11.1673 12.0327L15.1347 16L11.1673 19.9673C11.0533 20.0814 10.9921 20.222 10.984 20.389C10.9759 20.5544 11.037 20.7023 11.1673 20.8327C11.2977 20.963 11.4419 21.0282 11.6 21.0282C11.7581 21.0282 11.9023 20.963 12.0327 20.8327L16 16.8653ZM16.0037 27C14.4824 27 13.0524 26.7116 11.7137 26.1347C10.3749 25.557 9.21015 24.7731 8.21933 23.7831C7.22852 22.7931 6.44426 21.6296 5.86656 20.2924C5.28885 18.9553 5 17.5257 5 16.0037C5 14.4816 5.28885 13.0516 5.86656 11.7137C6.44344 10.3749 7.22607 9.21015 8.21444 8.21933C9.20282 7.22852 10.3668 6.44426 11.7063 5.86656C13.0459 5.28885 14.4759 5 15.9963 5C17.5168 5 18.9468 5.28885 20.2863 5.86656C21.6251 6.44344 22.7899 7.22648 23.7807 8.21567C24.7715 9.20485 25.5557 10.3688 26.1334 11.7076C26.7111 13.0463 27 14.4759 27 15.9963C27 17.5168 26.7116 18.9468 26.1347 20.2863C25.5578 21.6259 24.7739 22.7907 23.7831 23.7807C22.7923 24.7707 21.6287 25.5549 20.2924 26.1334C18.9561 26.712 17.5266 27.0008 16.0037 27ZM16 25.7778C18.7296 25.7778 21.0417 24.8306 22.9361 22.9361C24.8306 21.0417 25.7778 18.7296 25.7778 16C25.7778 13.2704 24.8306 10.9583 22.9361 9.06389C21.0417 7.16944 18.7296 6.22222 16 6.22222C13.2704 6.22222 10.9583 7.16944 9.06389 9.06389C7.16944 10.9583 6.22222 13.2704 6.22222 16C6.22222 18.7296 7.16944 21.0417 9.06389 22.9361C10.9583 24.8306 13.2704 25.7778 16 25.7778Z' fill='%23BA152C'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-warning {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 21.4536C16.2135 21.4536 16.3923 21.3814 16.5366 21.2372C16.68 21.093 16.7517 20.9141 16.7517 20.7007C16.7517 20.488 16.6796 20.3096 16.5353 20.1653C16.3911 20.0211 16.2127 19.9486 16 19.9478C15.7873 19.947 15.6089 20.0191 15.4647 20.1641C15.3204 20.3091 15.2483 20.4876 15.2483 20.6994C15.2483 20.9113 15.3204 21.0902 15.4647 21.236C15.6089 21.3819 15.7873 21.4552 16 21.4536ZM16 17.4092C16.1744 17.4092 16.3198 17.3506 16.4363 17.2332C16.5529 17.1159 16.6111 16.9709 16.6111 16.7981V10.687C16.6111 10.5134 16.5524 10.3684 16.4351 10.2519C16.3178 10.1354 16.1723 10.0767 15.9988 10.0759C15.8252 10.0751 15.6802 10.1337 15.5637 10.2519C15.4471 10.37 15.3889 10.5151 15.3889 10.687V16.7981C15.3889 16.9709 15.4476 17.1159 15.5649 17.2332C15.6822 17.3506 15.8277 17.4092 16.0012 17.4092M16.0037 27C14.4824 27 13.0524 26.7116 11.7137 26.1347C10.3749 25.557 9.21015 24.7731 8.21933 23.7831C7.22852 22.7931 6.44426 21.6296 5.86656 20.2924C5.28885 18.9553 5 17.5257 5 16.0037C5 14.4816 5.28885 13.0516 5.86656 11.7137C6.44344 10.3749 7.22607 9.21015 8.21444 8.21933C9.20282 7.22852 10.3668 6.44426 11.7063 5.86656C13.0459 5.28885 14.4759 5 15.9963 5C17.5168 5 18.9468 5.28885 20.2863 5.86656C21.6251 6.44344 22.7899 7.22648 23.7807 8.21567C24.7715 9.20485 25.5557 10.3688 26.1334 11.7076C26.7111 13.0463 27 14.4759 27 15.9963C27 17.5168 26.7116 18.9468 26.1347 20.2863C25.5578 21.6259 24.7739 22.7907 23.7831 23.7807C22.7923 24.7707 21.6287 25.5549 20.2924 26.1334C18.9561 26.712 17.5266 27.0008 16.0037 27ZM16 25.7778C18.7296 25.7778 21.0417 24.8306 22.9361 22.9361C24.8306 21.0417 25.7778 18.7296 25.7778 16C25.7778 13.2704 24.8306 10.9583 22.9361 9.06389C21.0417 7.16944 18.7296 6.22222 16 6.22222C13.2704 6.22222 10.9583 7.16944 9.06389 9.06389C7.16944 10.9583 6.22222 13.2704 6.22222 16C6.22222 18.7296 7.16944 21.0417 9.06389 22.9361C10.9583 24.8306 13.2704 25.7778 16 25.7778Z' fill='%23FAAD14'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-delete {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.54894 27C8.94636 27 8.43065 26.7892 8.00179 26.3675C7.57203 25.9467 7.35715 25.4406 7.35715 24.8494V8.35701H6.67858C6.48587 8.35701 6.32482 8.29309 6.19544 8.16525C6.06606 8.03741 6.00091 7.87895 6.00001 7.68985C5.9991 7.50076 6.06425 7.34274 6.19544 7.21579C6.32663 7.08884 6.48768 7.02536 6.67858 7.02536H11.4286C11.4286 6.75016 11.5326 6.51046 11.7407 6.30628C11.9488 6.10209 12.1931 6 12.4736 6H18.5264C18.8069 6 19.0512 6.10209 19.2593 6.30628C19.4674 6.51046 19.5714 6.75016 19.5714 7.02536H24.3214C24.5141 7.02536 24.6752 7.08928 24.8046 7.21712C24.9349 7.34496 25 7.50342 25 7.69252C25 7.88072 24.9349 8.03874 24.8046 8.16658C24.6743 8.29442 24.5132 8.35789 24.3214 8.35701H23.6429V24.8494C23.6429 25.4406 23.428 25.9467 22.9982 26.3675C22.5694 26.7892 22.0536 27 21.4511 27H9.54894ZM22.2857 8.35701H8.71429V24.8494C8.71429 25.0882 8.79256 25.2844 8.94908 25.438C9.1056 25.5916 9.30556 25.6684 9.54894 25.6684H21.4511C21.6945 25.6684 21.8944 25.5916 22.0509 25.438C22.2075 25.2844 22.2857 25.0882 22.2857 24.8494V8.35701ZM13.2037 23.0051C13.3964 23.0051 13.5575 22.9412 13.6869 22.8133C13.8162 22.6855 13.8814 22.5275 13.8823 22.3393V11.6861C13.8823 11.497 13.8171 11.339 13.6869 11.212C13.5566 11.0851 13.3951 11.0212 13.2024 11.0203C13.0096 11.0194 12.8486 11.0833 12.7192 11.212C12.5898 11.3408 12.5251 11.4988 12.5251 11.6861V22.3393C12.5251 22.5283 12.5903 22.6864 12.7206 22.8133C12.8509 22.9403 13.0119 23.0042 13.2037 23.0051ZM17.7976 23.0051C17.9904 23.0051 18.1514 22.9412 18.2808 22.8133C18.4102 22.6855 18.4749 22.5275 18.4749 22.3393V11.6861C18.4749 11.497 18.4097 11.339 18.2794 11.212C18.1491 11.0851 17.9881 11.0212 17.7963 11.0203C17.6045 11.0194 17.4434 11.0833 17.3131 11.212C17.1829 11.3408 17.1177 11.4988 17.1177 11.6861V22.3393C17.1177 22.5283 17.1829 22.6864 17.3131 22.8133C17.4434 22.9403 17.6049 23.0042 17.7976 23.0051Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-search {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.8578 19.9535L26.8125 25.9081C27.0625 26.1579 27.0625 26.563 26.8125 26.8127C26.6879 26.9376 26.5241 27 26.3606 27C26.1968 27 26.0331 26.9376 25.9082 26.8127L19.953 20.8578C18.3665 22.236 16.2979 23.073 14.0364 23.073C9.05349 23.073 5 19.0193 5 14.0367C5 9.0542 9.05349 5 14.0364 5C19.0192 5 23.073 9.05394 23.073 14.0365C23.073 16.2982 22.236 18.3668 20.8578 19.9535ZM14.0364 6.27941C9.75923 6.27941 6.27943 9.75916 6.27943 14.0365C6.27943 18.3136 9.75923 21.7933 14.0364 21.7933C18.3138 21.7933 21.7936 18.3136 21.7936 14.0365C21.7936 9.75941 18.3138 6.27941 14.0364 6.27941Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-wishlist {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 27V8.18806C8 7.56484 8.20578 7.04458 8.61733 6.62729C9.02889 6.21 9.54089 6.0009 10.1533 6H21.8467C22.46 6 22.972 6.2091 23.3827 6.62729C23.7933 7.04548 23.9991 7.56574 24 8.18806V27L16 23.5086L8 27ZM9.33333 24.9L16 21.9871L22.6667 24.9V8.18806C22.6667 7.98032 22.5813 7.78929 22.4107 7.61497C22.24 7.44065 22.052 7.35394 21.8467 7.35484H10.1533C9.94889 7.35484 9.76089 7.44155 9.58933 7.61497C9.41778 7.78839 9.33244 7.97942 9.33333 8.18806V24.9Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-wishlist.active,
body .rdc-icon-svg.rdc-icon-wishlist-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 27V8.18806C8 7.56484 8.20578 7.04458 8.61733 6.62729C9.02889 6.21 9.54089 6.0009 10.1533 6H21.8467C22.46 6 22.972 6.2091 23.3827 6.62729C23.7933 7.04548 23.9991 7.56574 24 8.18806V27L16 23.5086L8 27Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-cart:not(.active){mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.19179 27C8.5675 27 8.04636 26.7947 7.62836 26.384C7.21036 25.9733 7.0009 25.4609 7 24.8467V10.4867C7 9.87333 7.20945 9.36133 7.62836 8.95067C8.04726 8.54 8.5684 8.33422 9.19179 8.33333H11.75V7.66667C11.75 6.37067 12.2119 5.26889 13.1356 4.36133C14.0594 3.45378 15.1809 3 16.5 3C17.8191 3 18.9406 3.45378 19.8644 4.36133C20.7881 5.26889 21.25 6.37067 21.25 7.66667V8.33333H23.8082C24.4325 8.33333 24.9536 8.53911 25.3716 8.95067C25.7896 9.36222 25.9991 9.87422 26 10.4867V24.8467C26 25.46 25.791 25.972 25.373 26.3827C24.955 26.7933 24.4334 26.9991 23.8082 27H9.19179ZM9.19179 25.6667H23.8082C24.0163 25.6667 24.2077 25.5813 24.3823 25.4107C24.5569 25.24 24.6438 25.052 24.6429 24.8467V10.4867C24.6429 10.2822 24.556 10.0942 24.3823 9.92267C24.2086 9.75111 24.0172 9.66578 23.8082 9.66667H21.25V13C21.25 13.1893 21.1853 13.348 21.0559 13.476C20.9265 13.604 20.765 13.6676 20.5714 13.6667C20.3778 13.6658 20.2163 13.6022 20.0869 13.476C19.9575 13.3498 19.8929 13.1911 19.8929 13V9.66667H13.1071V13C13.1071 13.1893 13.0425 13.348 12.9131 13.476C12.7837 13.604 12.6222 13.6676 12.4286 13.6667C12.235 13.6658 12.0735 13.6022 11.9441 13.476C11.8147 13.3498 11.75 13.1911 11.75 13V9.66667H9.19179C8.98369 9.66667 8.79233 9.752 8.61771 9.92267C8.4431 10.0933 8.35624 10.2813 8.35714 10.4867V24.8467C8.35714 25.0511 8.444 25.2391 8.61771 25.4107C8.79143 25.5822 8.98279 25.6676 9.19179 25.6667ZM13.1071 8.33333H19.8929V7.66667C19.8929 6.728 19.5662 5.93778 18.913 5.296C18.2598 4.65422 17.4554 4.33333 16.5 4.33333C15.5446 4.33333 14.7402 4.65422 14.087 5.296C13.4338 5.93778 13.1071 6.728 13.1071 7.66667V8.33333Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-cart.active,
body .rdc-icon-svg.rdc-icon-cart-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.19179 27C8.5675 27 8.04636 26.7947 7.62836 26.384C7.21036 25.9733 7.0009 25.4609 7 24.8467V10.4867C7 9.87333 7.20945 9.36133 7.62836 8.95067C8.04726 8.54 8.5684 8.33422 9.19179 8.33333H11.75V7.66667C11.75 6.37067 12.2119 5.26889 13.1356 4.36133C14.0594 3.45378 15.1809 3 16.5 3C17.8191 3 18.9406 3.45378 19.8644 4.36133C20.7881 5.26889 21.25 6.37067 21.25 7.66667V8.33333H23.8082C24.4325 8.33333 24.9536 8.53911 25.3716 8.95067C25.7896 9.36222 25.9991 9.87422 26 10.4867V24.8467C26 25.46 25.791 25.972 25.373 26.3827C24.955 26.7933 24.4334 26.9991 23.8082 27H9.19179ZM13.1071 8.33333H19.8929V7.66667C19.8929 6.728 19.5662 5.93778 18.913 5.296C18.2598 4.65422 17.4554 4.33333 16.5 4.33333C15.5446 4.33333 14.7402 4.65422 14.087 5.296C13.4338 5.93778 13.1071 6.728 13.1071 7.66667V8.33333ZM20.5714 13.6667C20.7641 13.6667 20.9256 13.6031 21.0559 13.476C21.1862 13.3489 21.2509 13.1902 21.25 13V9.66667H19.8929V13C19.8929 13.1893 19.9575 13.348 20.0869 13.476C20.2163 13.604 20.3778 13.6676 20.5714 13.6667ZM12.4286 13.6667C12.6213 13.6667 12.7828 13.6031 12.9131 13.476C13.0434 13.3489 13.108 13.1902 13.1071 13V9.66667H11.75V13C11.75 13.1893 11.8147 13.348 11.9441 13.476C12.0735 13.604 12.235 13.6676 12.4286 13.6667Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-cart-add {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.28335 26.3645C7.69402 26.7751 8.20602 26.9805 8.81935 26.9805H23.1793C23.7936 26.9796 24.306 26.7738 24.7167 26.3631C25.1273 25.9525 25.3327 25.4405 25.3327 24.8271V10.4671C25.3318 9.85469 25.126 9.34269 24.7154 8.93114C24.3047 8.51958 23.7927 8.3138 23.1793 8.3138H20.666V7.64714C20.666 6.35114 20.2122 5.24936 19.3047 4.3418C18.3971 3.43425 17.2953 2.98047 15.9993 2.98047C14.7033 2.98047 13.6016 3.43425 12.694 4.3418C11.7865 5.24936 11.3327 6.35114 11.3327 7.64714V8.3138H8.81935C8.2069 8.31469 7.6949 8.52047 7.28335 8.93114C6.87179 9.3418 6.66602 9.8538 6.66602 10.4671V24.8271C6.6669 25.4414 6.87268 25.9538 7.28335 26.3645ZM19.3327 7.64714V8.3138H12.666V7.64714C12.666 6.70847 12.9869 5.91825 13.6287 5.27647C14.2705 4.63469 15.0607 4.3138 15.9993 4.3138C16.938 4.3138 17.7282 4.63469 18.37 5.27647C19.0118 5.91825 19.3327 6.70847 19.3327 7.64714ZM20.4753 13.4565C20.3474 13.5836 20.1887 13.6471 19.9993 13.6471C19.8091 13.648 19.6505 13.5845 19.5233 13.4565C19.3962 13.3285 19.3327 13.1698 19.3327 12.9805V9.64714H20.666V12.9805C20.6669 13.1707 20.6033 13.3294 20.4753 13.4565ZM12.4753 13.4565C12.3473 13.5836 12.1887 13.6471 11.9993 13.6471C11.8091 13.648 11.6505 13.5845 11.5233 13.4565C11.3962 13.3285 11.3327 13.1698 11.3327 12.9805V9.64714H12.666V12.9805C12.6669 13.1707 12.6033 13.3294 12.4753 13.4565ZM19.0586 17.1515L14.8515 21.7174L12.935 19.6413C12.8305 19.5272 12.7043 19.4702 12.5565 19.4702C12.4087 19.4702 12.2796 19.5272 12.1693 19.6413C12.0496 19.7709 11.9934 19.9104 12.0006 20.0596C12.0078 20.2087 12.0641 20.3407 12.1693 20.4556L14.2404 22.6969C14.4149 22.886 14.6186 22.9805 14.8515 22.9805C15.0844 22.9805 15.2881 22.8863 15.4625 22.6981L19.8308 17.9881C19.9368 17.874 19.993 17.7346 19.9995 17.5698C20.006 17.405 19.9497 17.2656 19.8308 17.1515C19.7118 17.0375 19.5799 16.9805 19.4349 16.9805C19.29 16.9805 19.1646 17.0375 19.0586 17.1515Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-comparator:not(.active) {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.8493 20.2185H4.66668C4.47734 20.2185 4.31868 20.1553 4.19068 20.0289C4.06268 19.9026 3.99912 19.7448 4.00001 19.5557C4.0009 19.3666 4.06445 19.2089 4.19068 19.0825C4.31868 18.9561 4.47734 18.8929 4.66668 18.8929H13.8493L10.196 15.261C10.0707 15.1373 10.004 14.9862 9.996 14.8077C9.988 14.6292 10.0547 14.4675 10.196 14.3226C10.3427 14.1767 10.5009 14.1038 10.6707 14.1038C10.8404 14.1038 10.9991 14.1767 11.1467 14.3226L15.656 18.8068C15.7724 18.9217 15.8542 19.0396 15.9013 19.1607C15.9484 19.2818 15.972 19.4134 15.972 19.5557C15.972 19.698 15.9484 19.8296 15.9013 19.9507C15.8542 20.0718 15.7724 20.1897 15.656 20.3046L11.1387 24.7968C11.0089 24.9258 10.856 24.9934 10.68 24.9996C10.504 25.0058 10.3422 24.9356 10.1947 24.7889C10.0524 24.6431 9.98045 24.4866 9.97867 24.3196C9.97689 24.1526 10.0489 23.9962 10.1947 23.8504L13.8493 20.2185ZM18.1507 13.107L21.804 16.739C21.9293 16.8627 21.996 17.0134 22.004 17.191C22.012 17.3686 21.9453 17.5308 21.804 17.6774C21.6573 17.8233 21.4991 17.8962 21.3293 17.8962C21.1596 17.8962 21.0009 17.8233 20.8533 17.6774L16.344 13.1932C16.2276 13.0783 16.1458 12.9604 16.0987 12.8393C16.0516 12.7182 16.028 12.5866 16.028 12.4443C16.028 12.302 16.0516 12.1703 16.0987 12.0493C16.1458 11.9282 16.2276 11.8098 16.344 11.694L20.8613 7.20318C20.9911 7.07416 21.144 7.00656 21.32 7.00038C21.496 6.99419 21.6578 7.06444 21.8053 7.21113C21.9475 7.35694 22.0196 7.51291 22.0213 7.67904C22.0231 7.84517 21.9511 8.00159 21.8053 8.14828L18.152 11.7802H27.3333C27.5227 11.7802 27.6813 11.8438 27.8093 11.9711C27.9373 12.0983 28.0009 12.2561 28 12.4443C27.9991 12.6325 27.9355 12.7898 27.8093 12.9162C27.6813 13.0434 27.5227 13.107 27.3333 13.107H18.1507Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-comparator.active,
body .rdc-icon-svg.rdc-icon-comparator-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.97867 20.2185H4.66668C4.47734 20.2185 4.31868 20.1553 4.19068 20.0289C4.06268 19.9026 3.99912 19.7448 4.00001 19.5557C4.0009 19.3666 4.06445 19.2089 4.19068 19.0825C4.31868 18.9561 4.47734 18.8929 4.66668 18.8929H9.996L9.996 14.8077C9.988 14.6292 10.0547 14.4675 10.196 14.3226C10.3427 14.1767 10.5009 14.1038 10.6707 14.1038C10.8404 14.1038 10.9991 14.1767 11.1467 14.3226L15.656 18.8068C15.7724 18.9217 15.8542 19.0396 15.9013 19.1607C15.9484 19.2818 15.972 19.4134 15.972 19.5557C15.972 19.698 15.9484 19.8296 15.9013 19.9507C15.8542 20.0718 15.7724 20.1897 15.656 20.3046L11.1387 24.7968C11.0089 24.9258 10.856 24.9934 10.68 24.9996C10.504 25.0058 10.3422 24.9356 10.1947 24.7889C10.0524 24.6431 9.98045 24.4866 9.97867 24.3196C9.96508 23.0432 9.97867 20.2185 9.97867 20.2185ZM22.004 13.107V17.191C22.012 17.3686 21.9453 17.5308 21.804 17.6774C21.6573 17.8233 21.4991 17.8962 21.3293 17.8962C21.1595 17.8962 21.0009 17.8233 20.8533 17.6774L16.344 13.1932C16.2276 13.0783 16.1458 12.9604 16.0987 12.8393C16.0516 12.7182 16.028 12.5866 16.028 12.4443C16.028 12.302 16.0516 12.1703 16.0987 12.0493C16.1458 11.9282 16.2276 11.8098 16.344 11.694L20.8613 7.20318C20.9911 7.07416 21.144 7.00656 21.32 7.00038C21.496 6.99419 21.6578 7.06444 21.8053 7.21113C21.9475 7.35694 22.0195 7.51291 22.0213 7.67904V11.7802H27.3333C27.5227 11.7802 27.6813 11.8438 27.8093 11.9711C27.9373 12.0983 28.0009 12.2561 28 12.4443C27.9991 12.6325 27.9355 12.7898 27.8093 12.9162C27.6813 13.0434 27.5227 13.107 27.3333 13.107H22.004Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-location {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 26.666C14.4861 26.666 13.0602 26.3768 11.7222 25.7982C10.3843 25.2189 9.21912 24.4326 8.22667 23.4393C7.23423 22.4461 6.44793 21.2809 5.86778 19.9438C5.28764 18.6067 4.99838 17.1808 5.00001 15.666C5.00001 14.1472 5.28927 12.72 5.86778 11.3846C6.44712 10.0483 7.23341 8.88431 8.22667 7.89268C9.21993 6.90105 10.3851 6.11476 11.7222 5.53379C13.0602 4.95527 14.4861 4.66602 16 4.66602C17.5188 4.66602 18.946 4.95527 20.2814 5.53379C21.6177 6.11313 22.7821 6.89942 23.7746 7.89268C24.767 8.88594 25.5529 10.0499 26.1322 11.3846C26.7107 12.7209 27 14.148 27 15.666C27 17.1799 26.7107 18.6059 26.1322 19.9438C25.5529 21.2817 24.7666 22.4469 23.7733 23.4393C22.7801 24.4318 21.6161 25.2181 20.2814 25.7982C18.9468 26.3784 17.5196 26.6676 16 26.666ZM16 25.4536C16.717 24.532 17.3086 23.6272 17.7747 22.739C18.2399 21.8509 18.6184 20.8568 18.9101 19.7568H13.0899C13.4134 20.9187 13.7996 21.9438 14.2486 22.8319C14.6983 23.72 15.2822 24.5939 16 25.4536ZM14.4441 25.2702C13.8737 24.598 13.3531 23.7669 12.8821 22.7769C12.4112 21.7877 12.0608 20.7806 11.831 19.7556H7.14378C7.84452 21.2752 8.83738 22.5219 10.1223 23.4956C11.4081 24.4685 12.8487 25.06 14.4441 25.2702ZM17.5559 25.2702C19.1513 25.06 20.5919 24.4685 21.8777 23.4956C23.1626 22.5219 24.1555 21.2752 24.8562 19.7556H20.1702C19.8606 20.7961 19.4707 21.8109 19.0006 22.8001C18.5296 23.7901 18.048 24.6143 17.5559 25.2702ZM6.64512 18.5346H11.5768C11.4839 18.0326 11.4187 17.5438 11.3812 17.0679C11.3421 16.5929 11.3226 16.1256 11.3226 15.666C11.3226 15.2065 11.3417 14.7392 11.38 14.2641C11.4183 13.7891 11.4835 13.3002 11.5756 12.7975H6.64634C6.51353 13.2212 6.40964 13.6828 6.33467 14.1822C6.25971 14.6809 6.22223 15.1755 6.22223 15.666C6.22223 16.1565 6.2593 16.6515 6.33345 17.151C6.4076 17.6505 6.51149 18.1113 6.64512 18.5333M12.799 18.5333H19.201C19.2939 18.0322 19.3591 17.5515 19.3966 17.0911C19.4357 16.6316 19.4552 16.1565 19.4552 15.666C19.4552 15.1755 19.4361 14.7005 19.3978 14.2409C19.3595 13.7813 19.2943 13.3006 19.2022 12.7987H12.7978C12.7057 13.2998 12.6405 13.7805 12.6022 14.2409C12.5639 14.7005 12.5448 15.1755 12.5448 15.666C12.5448 16.1565 12.5639 16.6316 12.6022 17.0911C12.6405 17.5507 12.7069 18.0314 12.799 18.5333ZM20.4244 18.5333H25.3549C25.4877 18.1105 25.5916 17.6497 25.6666 17.151C25.7407 16.6515 25.7778 16.1565 25.7778 15.666C25.7778 15.1755 25.7407 14.6805 25.6666 14.181C25.5924 13.6815 25.4885 13.2208 25.3549 12.7987H20.4232C20.5161 13.2998 20.5813 13.7883 20.6188 14.2641C20.6579 14.74 20.6774 15.2073 20.6774 15.666C20.6774 16.1248 20.6583 16.592 20.62 17.0679C20.5817 17.5438 20.5165 18.0326 20.4244 18.5346M20.1702 11.5765H24.8562C24.14 10.0251 23.159 8.77838 21.9131 7.83646C20.6673 6.89453 19.2149 6.29524 17.5559 6.03857C18.1263 6.78902 18.6392 7.64742 19.0947 8.61379C19.5501 9.57935 19.9087 10.5669 20.1702 11.5765ZM13.0899 11.5765H18.9101C18.5874 10.4292 18.1894 9.39194 17.716 8.46468C17.2426 7.53742 16.6706 6.67535 16 5.87846C15.3294 6.67453 14.7574 7.53661 14.284 8.46468C13.8106 9.39275 13.4117 10.43 13.0899 11.5765ZM7.14501 11.5765H11.831C12.0926 10.5677 12.4511 9.58016 12.9066 8.61379C13.362 7.64742 13.875 6.78902 14.4453 6.03857C12.7717 6.29605 11.3156 6.89902 10.0771 7.84746C8.8386 8.79753 7.86082 10.0401 7.14378 11.5752' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-location-active {}
body .rdc-icon-svg.rdc-icon-logout {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.44832 7.42857H20.0349V14.4286H21.4832V7.42857C21.4832 7.04969 21.3306 6.68633 21.059 6.41842C20.7874 6.15051 20.419 6 20.0349 6H8.44832C8.0642 6 7.69582 6.15051 7.4242 6.41842C7.15259 6.68633 7 7.04969 7 7.42857V24.5714C7 24.9503 7.15259 25.3137 7.4242 25.5816C7.69582 25.8495 8.0642 26 8.44832 26H20.0349C20.419 26 20.7874 25.8495 21.059 25.5816C21.3306 25.3137 21.4832 24.9503 21.4832 24.5714H8.44832V7.42857Z' fill='%23333333'/%3e%3cpath d='M23.7718 15.4857C23.6333 15.3687 23.4551 15.3076 23.2728 15.3145C23.0906 15.3214 22.9177 15.396 22.7887 15.5232C22.6597 15.6504 22.5842 15.8209 22.5771 16.0007C22.5701 16.1804 22.6321 16.3562 22.7507 16.4929L25.1984 18.8571H14.6981C14.506 18.8571 14.3218 18.9324 14.186 19.0664C14.0502 19.2003 13.9739 19.382 13.9739 19.5714C13.9739 19.7609 14.0502 19.9426 14.186 20.0765C14.3218 20.2105 14.506 20.2857 14.6981 20.2857H25.1984L22.7507 22.7571C22.6749 22.8212 22.6134 22.9 22.5699 22.9886C22.5264 23.0772 22.502 23.1737 22.4981 23.2721C22.4943 23.3705 22.5111 23.4686 22.5475 23.5602C22.5839 23.6519 22.6391 23.7351 22.7097 23.8048C22.7803 23.8744 22.8647 23.9288 22.9576 23.9647C23.0505 24.0007 23.15 24.0172 23.2497 24.0134C23.3494 24.0096 23.4473 23.9855 23.5371 23.9427C23.627 23.8998 23.7069 23.8391 23.7718 23.7643L28.0009 19.6214L23.7718 15.4857Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-user:not(.active){mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.9997 15.4304C14.7172 15.4303 13.6205 14.9693 12.7051 14.0443C11.7897 13.1192 11.3334 12.0108 11.3344 10.7145C11.3355 9.41804 11.7918 8.30844 12.7053 7.38117C13.6185 6.45419 14.7151 5.99481 15.9997 6.00004C17.2848 6.00528 18.3817 6.46545 19.295 7.38308C20.2081 8.3005 20.6645 9.40987 20.6656 10.7161C20.6666 12.0222 20.2102 13.1304 19.2952 14.0456C18.3798 14.9612 17.2828 15.4209 15.9997 15.4304ZM13.7035 13.0336C14.343 13.6722 15.1097 13.9952 15.9996 13.9995C16.8939 13.9995 17.662 13.6765 18.2985 13.0333C18.9349 12.3901 19.2536 11.6156 19.2525 10.7143C19.2514 9.81318 18.9328 9.03827 18.2986 8.39412C17.6641 7.74967 16.8963 7.42712 15.9998 7.42931C15.1037 7.4315 14.3365 7.7539 13.7031 8.39396C13.0698 9.03398 12.7508 9.80894 12.7475 10.7141C12.7443 11.6198 13.0635 12.3946 13.7035 13.0336Z' fill='%23333333'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 24.4218C5.00103 24.8714 5.15149 25.2446 5.45063 25.5468C5.74971 25.8491 6.11764 26 6.5601 26H25.4399C25.8833 26.002 26.2519 25.8516 26.5509 25.5485C26.8501 25.2451 27 24.872 27 24.4236V23.4508C26.999 22.8098 26.8137 22.2086 26.4423 21.6456C26.0709 21.0827 25.5707 20.6457 24.9399 20.3342C23.4511 19.6145 21.962 19.0737 20.4724 18.7115C18.9829 18.3493 17.4922 18.1688 16.0001 18.1698C14.5079 18.1709 13.017 18.3514 11.5275 18.7115C10.038 19.0716 8.54841 19.6124 7.05866 20.3342C6.42776 20.6468 5.92752 21.0838 5.55612 21.6457C5.18477 22.2075 5 22.8092 5 23.4523L5 24.4218ZM6.41307 23.4523V24.5707H25.5869V23.4507C25.5869 23.0773 25.4674 22.7268 25.232 22.4012C24.9973 22.0765 24.6732 21.8049 24.2625 21.5854L24.2598 21.5841C22.9516 20.9435 21.6019 20.4528 20.2107 20.112C18.8189 19.7712 17.4154 19.6002 16.0001 19.5991C14.5847 19.598 13.181 19.769 11.7892 20.1121C10.3981 20.4549 9.0484 20.9456 7.74026 21.584L7.73733 21.5856C7.32685 21.8061 7.00264 22.0776 6.76796 22.4012C6.53254 22.7269 6.41307 23.0778 6.41307 23.4523Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-user.active,
body .rdc-icon-svg.rdc-icon-user-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 24.422V24.4252L5.08494 24.4218C5.08597 24.8714 5.23585 25.2446 5.53383 25.5468C5.83176 25.8491 6.19827 26 6.63902 26H25.4459C25.8876 26.002 26.2548 25.8516 26.5526 25.5485C26.8507 25.2451 27 24.872 27 24.4236V23.4508C26.999 22.8098 26.8144 22.2086 26.4444 21.6456C26.0745 21.0827 25.5762 20.6457 24.9478 20.3342C23.4648 19.6145 21.9814 19.0737 20.4976 18.7115C19.0139 18.3493 17.5289 18.1688 16.0425 18.1698C14.5561 18.1709 13.071 18.3514 11.5872 18.7115C10.1035 19.0716 8.61966 19.6124 7.13566 20.3342C6.50719 20.6468 6.00888 21.0838 5.63891 21.6457C5.269 22.2075 5.08494 22.8092 5.08494 23.4523L5.08494 24.4218L5 24.422Z' fill='%23333333'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.0422 15.4304C14.7646 15.4303 13.6722 14.9693 12.7603 14.0443C11.8484 13.1192 11.3939 12.0108 11.3949 10.7145C11.396 9.41804 11.8505 8.30844 12.7605 7.38117C13.6702 6.45419 14.7625 5.99481 16.0421 6.00004C17.3223 6.00528 18.415 6.46545 19.3248 7.38308C20.2343 8.3005 20.689 9.40987 20.69 10.7161C20.6911 12.0222 20.2364 13.1304 19.3249 14.0456C18.4131 14.9612 17.3203 15.4209 16.0422 15.4304Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowup {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15.9908 10C15.7794 10 15.585 10.0354 15.4075 10.1061C15.2288 10.1769 15.0546 10.2997 14.885 10.4746L6.29473 19.2618C6.11206 19.4487 6.0142 19.6783 6.00115 19.9507C5.9881 20.223 6.08596 20.466 6.29473 20.6796C6.5035 20.8932 6.73446 21 6.98759 21C7.24072 21 7.47167 20.8932 7.68044 20.6796L15.9908 12.1768L24.3011 20.6796C24.4838 20.8665 24.7082 20.9666 24.9744 20.98C25.2406 20.9933 25.4781 20.8932 25.6868 20.6796C25.8956 20.466 26 20.2297 26 19.9707C26 19.7117 25.8956 19.4754 25.6868 19.2618L17.0966 10.4746C16.927 10.2997 16.7528 10.1769 16.574 10.1061C16.3966 10.0354 16.2022 10 15.9908 10Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowdown {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15.9908 22C15.7794 22 15.585 21.9646 15.4075 21.8939C15.2288 21.8231 15.0546 21.7003 14.885 21.5254L6.29473 12.7382C6.11206 12.5513 6.0142 12.3217 6.00115 12.0493C5.9881 11.777 6.08596 11.534 6.29473 11.3204C6.5035 11.1068 6.73446 11 6.98759 11C7.24072 11 7.47167 11.1068 7.68044 11.3204L15.9908 19.8232L24.3011 11.3204C24.4838 11.1335 24.7082 11.0334 24.9744 11.02C25.2406 11.0067 25.4781 11.1068 25.6868 11.3204C25.8956 11.534 26 11.7703 26 12.0293C26 12.2883 25.8956 12.5246 25.6868 12.7382L17.0966 21.5254C16.927 21.7003 16.7528 21.8231 16.574 21.8939C16.3966 21.9646 16.2022 22 15.9908 22Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowleft {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11 15.9908C11 15.7794 11.0354 15.585 11.1061 15.4075C11.1769 15.2288 11.2997 15.0546 11.4746 14.885L20.2618 6.29473C20.4487 6.11206 20.6783 6.0142 20.9507 6.00115C21.223 5.9881 21.466 6.08596 21.6796 6.29473C21.8932 6.5035 22 6.73446 22 6.98759C22 7.24072 21.8932 7.47167 21.6796 7.68044L13.1768 15.9908L21.6796 24.3011C21.8665 24.4838 21.9666 24.7082 21.98 24.9744C21.9933 25.2406 21.8932 25.4781 21.6796 25.6868C21.466 25.8956 21.2297 26 20.9707 26C20.7117 26 20.4754 25.8956 20.2618 25.6868L11.4746 17.0966C11.2997 16.927 11.1769 16.7528 11.1061 16.574C11.0354 16.3966 11 16.2022 11 15.9908Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrowright {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M22 15.9908C22 15.7794 21.9646 15.585 21.8939 15.4075C21.8231 15.2288 21.7003 15.0546 21.5254 14.885L12.7382 6.29473C12.5513 6.11206 12.3217 6.0142 12.0493 6.00115C11.777 5.9881 11.534 6.08596 11.3204 6.29473C11.1068 6.5035 11 6.73446 11 6.98759C11 7.24072 11.1068 7.47167 11.3204 7.68044L19.8232 15.9908L11.3204 24.3011C11.1335 24.4838 11.0334 24.7082 11.02 24.9744C11.0067 25.2406 11.1068 25.4781 11.3204 25.6868C11.534 25.8956 11.7703 26 12.0293 26C12.2883 26 12.5246 25.8956 12.7382 25.6868L21.5254 17.0966C21.7003 16.927 21.8231 16.7528 21.8939 16.574C21.9646 16.3966 22 16.2022 22 15.9908Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-up {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.336 20.6055C6.55572 20.8502 6.86111 20.9949 7.18728 20.9949C8.68859 20.9949 10.1904 20.9962 11.6925 20.9974C16.0695 21.0012 20.4492 21.0049 24.827 20.977L24.8337 20.977C25.1525 20.9707 25.4493 20.8265 25.6639 20.5872C25.8776 20.349 25.9947 20.0345 25.9998 19.7117C26.0049 19.3888 25.8979 19.0706 25.6925 18.8249L25.673 18.8016L16.8433 10.3719C16.6248 10.1378 16.3263 10 16.008 10C15.6896 10 15.3911 10.1378 15.1727 10.3719L6.34961 18.7952L6.33555 18.8108C6.11721 19.0546 6 19.3778 6 19.7079C6 20.0381 6.11766 20.3618 6.336 20.6055Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-down {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M25.664 11.3945C25.4443 11.1498 25.1389 11.0051 24.8127 11.0051C23.3114 11.0051 21.8096 11.0038 20.3075 11.0026C15.9305 10.9988 11.5508 10.9951 7.17299 11.023L7.16629 11.023C6.84754 11.0293 6.55072 11.1735 6.33607 11.4128C6.1224 11.651 6.00528 11.9655 6.00017 12.2883C5.99507 12.6112 6.10213 12.9294 6.30745 13.1751L6.32697 13.1984L15.1567 21.6281C15.3752 21.8622 15.6737 22 15.992 22C16.3104 22 16.6089 21.8622 16.8273 21.6281L25.6504 13.2048L25.6644 13.1892C25.8828 12.9454 26 12.6222 26 12.2921C26 11.9619 25.8823 11.6382 25.664 11.3945Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-left {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.6055 25.664C19.8502 25.4443 19.9949 25.1389 19.9949 24.8127C19.9949 23.3114 19.9962 21.8096 19.9974 20.3075C20.0012 15.9305 20.0049 11.5508 19.977 7.17299L19.977 7.16629C19.9707 6.84754 19.8265 6.55072 19.5872 6.33607C19.349 6.1224 19.0345 6.00528 18.7117 6.00017C18.3888 5.99507 18.0706 6.10213 17.8249 6.30745L17.8016 6.32697L9.37189 15.1567C9.13781 15.3752 9 15.6737 9 15.992C9 16.3104 9.13781 16.6089 9.37189 16.8273L17.7952 25.6504L17.8108 25.6644C18.0546 25.8828 18.3778 26 18.7079 26C19.0381 26 19.3618 25.8823 19.6055 25.664Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-arrow-full-right {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.3945 25.664C11.1498 25.4443 11.0051 25.1389 11.0051 24.8127C11.0051 23.3114 11.0038 21.8096 11.0026 20.3075C10.9988 15.9305 10.9951 11.5508 11.023 7.17299L11.023 7.16629C11.0293 6.84754 11.1735 6.55072 11.4128 6.33607C11.651 6.1224 11.9655 6.00528 12.2883 6.00017C12.6112 5.99507 12.9294 6.10213 13.1751 6.30745L13.1984 6.32697L21.6281 15.1567C21.8622 15.3752 22 15.6737 22 15.992C22 16.3104 21.8622 16.6089 21.6281 16.8273L13.2048 25.6504L13.1892 25.6644C12.9454 25.8828 12.6222 26 12.2921 26C11.9619 26 11.6382 25.8823 11.3945 25.664Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-scroll-up {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M19.5666 13.2198C19.7617 13.0287 19.7652 12.7154 19.5744 12.52L16.355 9.22279C16.265 9.12965 16.1469 9.07937 16.0266 9.07289C15.8965 9.06591 15.7642 9.11012 15.6622 9.20588L12.1204 12.5036C11.9205 12.6897 11.9091 13.0028 12.0949 13.2029C12.2807 13.4031 12.5934 13.4145 12.7933 13.2284L15.5059 10.7028V22.4329C15.5059 22.7062 15.7271 22.9277 16 22.9277C16.2729 22.9277 16.4941 22.7062 16.4941 22.4329V10.7809L18.8678 13.212C19.0586 13.4074 19.3714 13.4109 19.5666 13.2198Z' fill='%23333333'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 32C10.4633 32 6 27.4073 6 21.7732V10.2268C6 4.59272 10.4633 0 16 0C21.5367 0 26 4.59272 26 10.2268V21.7732C26 27.4073 21.5367 32 16 32ZM7.31766 21.7732C7.31766 26.7065 11.2187 30.6804 16 30.6804C20.7813 30.6804 24.6823 26.7065 24.6823 21.7732V10.2268C24.6823 5.29346 20.7813 1.31959 16 1.31959C11.2187 1.31959 7.31766 5.29346 7.31766 10.2268V21.7732Z' fill='%23333333'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 30.6804C11.2187 30.6804 7.31766 26.7065 7.31766 21.7732V10.2268C7.31766 5.29346 11.2187 1.31959 16 1.31959C20.7813 1.31959 24.6823 5.29346 24.6823 10.2268V21.7732C24.6823 26.7065 20.7813 30.6804 16 30.6804ZM19.5666 13.2198C19.7617 13.0287 19.7652 12.7154 19.5744 12.52L16.355 9.22279C16.265 9.12965 16.1469 9.07937 16.0266 9.07289C15.8965 9.06591 15.7642 9.11012 15.6622 9.20588L12.1204 12.5036C11.9205 12.6897 11.9091 13.0028 12.0949 13.2029C12.2807 13.4031 12.5934 13.4145 12.7933 13.2284L15.5059 10.7028V22.4329C15.5059 22.7062 15.7271 22.9277 16 22.9277C16.2729 22.9277 16.4941 22.7062 16.4941 22.4329V10.7809L18.8678 13.212C19.0586 13.4074 19.3714 13.4109 19.5666 13.2198Z' fill='white' fill-opacity='0.5'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-scroll-down {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 0C10.4633 0 6 4.59272 6 10.2268V21.7732C6 27.4073 10.4633 32 16 32C21.5367 32 26 27.4073 26 21.7732V10.2268C26 4.59272 21.5367 0 16 0ZM7.31766 10.2268C7.31766 5.29346 11.2187 1.31959 16 1.31959C20.7813 1.31959 24.6823 5.29346 24.6823 10.2268V21.7732C24.6823 26.7065 20.7813 30.6804 16 30.6804C11.2187 30.6804 7.31766 26.7065 7.31766 21.7732V10.2268Z' fill='%23333333'/%3e%3cpath d='M19.5744 19.48C19.7652 19.2846 19.7617 18.9713 19.5666 18.7802C19.3714 18.5891 19.0586 18.5926 18.8678 18.788L16.4941 21.2191V9.56711C16.4941 9.29382 16.2729 9.07227 16 9.07227C15.7271 9.07227 15.5059 9.29382 15.5059 9.56711V21.2972L12.7933 18.7716C12.5934 18.5855 12.2807 18.5969 12.0949 18.7971C11.9091 18.9972 11.9205 19.3103 12.1204 19.4964L15.6622 22.7941C15.7642 22.8899 15.8965 22.9341 16.0266 22.9271C16.1469 22.9206 16.265 22.8703 16.355 22.7772L19.5744 19.48Z' fill='%23333333'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 1.31959C11.2187 1.31959 7.31766 5.29346 7.31766 10.2268V21.7732C7.31766 26.7065 11.2187 30.6804 16 30.6804C20.7813 30.6804 24.6823 26.7065 24.6823 21.7732V10.2268C24.6823 5.29346 20.7813 1.31959 16 1.31959ZM19.5666 18.7802C19.7617 18.9713 19.7652 19.2846 19.5744 19.48L16.355 22.7772C16.265 22.8703 16.1469 22.9206 16.0266 22.9271C15.8965 22.9341 15.7642 22.8899 15.6622 22.7941L12.1204 19.4964C11.9205 19.3103 11.9091 18.9972 12.0949 18.7971C12.2807 18.5969 12.5934 18.5855 12.7933 18.7716L15.5059 21.2972V9.56711C15.5059 9.29382 15.7271 9.07227 16 9.07227C16.2729 9.07227 16.4941 9.29382 16.4941 9.56711V21.2191L18.8678 18.788C19.0586 18.5926 19.3714 18.5891 19.5666 18.7802Z' fill='white' fill-opacity='0.5'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-equal {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.75 12.9058C8.537 12.9058 8.359 12.8304 8.216 12.6795C8.072 12.5287 8 12.3422 8 12.1201C8 11.898 8.072 11.7115 8.216 11.5607C8.36 11.4098 8.538 11.3349 8.75 11.3359H25.25C25.463 11.3359 25.641 11.4114 25.784 11.5622C25.928 11.7131 26 11.9001 26 12.1232C26 12.3464 25.928 12.5329 25.784 12.6827C25.64 12.8325 25.462 12.9074 25.25 12.9074L8.75 12.9058Z' fill='%23333333'/%3e%3cpath d='M8.75 22.3344C8.537 22.3344 8.359 22.2589 8.216 22.1081C8.072 21.9572 8 21.7707 8 21.5487C8 21.3266 8.072 21.1401 8.216 20.9892C8.36 20.8384 8.538 20.7635 8.75 20.7645H25.25C25.463 20.7645 25.641 20.8399 25.784 20.9908C25.928 21.1417 26 21.3287 26 21.5518C26 21.7749 25.928 21.9614 25.784 22.1112C25.64 22.261 25.462 22.3359 25.25 22.3359L8.75 22.3344Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-plus {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15.1674 16.8333H6.8334C6.59672 16.8333 6.39892 16.7533 6.24002 16.5933C6.08001 16.4333 6 16.2356 6 16C6 15.7644 6.08001 15.5667 6.24002 15.4067C6.40003 15.2467 6.59783 15.1672 6.8334 15.1683H15.1674V6.835C15.1674 6.59833 15.2474 6.40056 15.4075 6.24167C15.5675 6.08056 15.7653 6 16.0008 6C16.2364 6 16.4342 6.08 16.5942 6.24C16.7542 6.4 16.8337 6.59778 16.8326 6.83333V15.1667H25.1666C25.4033 15.1667 25.6011 15.2467 25.76 15.4067C25.92 15.5667 26 15.765 26 16.0017C26 16.2383 25.92 16.4361 25.76 16.595C25.6 16.7539 25.4022 16.8333 25.1666 16.8333H16.8326V25.1667C16.8326 25.4033 16.7526 25.6011 16.5925 25.76C16.4336 25.92 16.2364 26 16.0008 26C15.7653 26 15.5675 25.92 15.4075 25.76C15.2474 25.6 15.168 25.4022 15.1691 25.1667L15.1674 16.8333Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-minus {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6.8334 16.8327C6.59672 16.8327 6.39892 16.7527 6.24002 16.5927C6.08001 16.4327 6 16.2349 6 15.9993C6 15.7638 6.08001 15.566 6.24002 15.406C6.40003 15.246 6.59783 15.1666 6.8334 15.1677C18.7153 15.1677 12.6477 15.166 25.1666 15.166C25.4033 15.166 25.6011 15.246 25.76 15.406C25.92 15.566 26 15.7643 26 16.001C26 16.2377 25.92 16.4355 25.76 16.5943C25.6 16.7532 25.4022 16.8327 25.1666 16.8327C13.2736 16.8327 18.1805 16.8327 6.8334 16.8327Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-chat {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M18.3284 17.2506C18.3284 17.4639 18.2652 17.6725 18.1467 17.8498C18.0282 18.0272 17.8598 18.1654 17.6627 18.2471C17.4656 18.3287 17.2488 18.35 17.0396 18.3084C16.8304 18.2668 16.6383 18.1641 16.4874 18.0133C16.3366 17.8624 16.2339 17.6702 16.1923 17.461C16.1507 17.2518 16.172 17.035 16.2537 16.8379C16.3353 16.6408 16.4735 16.4724 16.6509 16.3539C16.8282 16.2354 17.0367 16.1721 17.25 16.1721C17.536 16.1721 17.8103 16.2857 18.0126 16.488C18.2148 16.6903 18.3284 16.9646 18.3284 17.2506ZM12.5049 16.1721C12.2916 16.1721 12.0831 16.2354 11.9058 16.3539C11.7284 16.4724 11.5902 16.6408 11.5086 16.8379C11.4269 17.035 11.4056 17.2518 11.4472 17.461C11.4888 17.6702 11.5915 17.8624 11.7423 18.0133C11.8932 18.1641 12.0853 18.2668 12.2945 18.3084C12.5037 18.35 12.7205 18.3287 12.9176 18.2471C13.1147 18.1654 13.2831 18.0272 13.4016 17.8498C13.5201 17.6725 13.5833 17.4639 13.5833 17.2506C13.5833 16.9646 13.4697 16.6903 13.2675 16.488C13.0652 16.2857 12.7909 16.1721 12.5049 16.1721ZM21.9951 16.1721C21.7818 16.1721 21.5733 16.2354 21.396 16.3539C21.2186 16.4724 21.0804 16.6408 20.9988 16.8379C20.9171 17.035 20.8958 17.2518 20.9374 17.461C20.979 17.6702 21.0817 17.8624 21.2325 18.0133C21.3834 18.1641 21.5755 18.2668 21.7847 18.3084C21.9939 18.35 22.2107 18.3287 22.4078 18.2471C22.6049 18.1654 22.7733 18.0272 22.8918 17.8498C23.0103 17.6725 23.0735 17.4639 23.0735 17.2506C23.0735 16.9646 22.9599 16.6903 22.7577 16.488C22.5554 16.2857 22.2811 16.1721 21.9951 16.1721ZM28.25 17.2506C28.2504 19.1577 27.7551 21.0321 26.8126 22.69C25.8702 24.3478 24.513 25.7322 22.8742 26.7073C21.2354 27.6823 19.3713 28.2146 17.4647 28.2518C15.5582 28.289 13.6747 27.83 11.9991 26.9196L8.23863 28.1729C7.97261 28.2616 7.68713 28.2745 7.41421 28.21C7.14128 28.1456 6.89168 28.0065 6.69339 27.8082C6.4951 27.6099 6.35595 27.3602 6.29154 27.0873C6.22714 26.8143 6.24001 26.5288 6.32873 26.2628L7.58186 22.502C6.78303 21.0298 6.33088 19.3946 6.25989 17.7212C6.1889 16.0477 6.50094 14.3801 7.17223 12.8456C7.84352 11.311 8.85632 9.95004 10.1334 8.8664C11.4105 7.78275 12.9182 7.00506 14.5414 6.59262C16.1647 6.18019 17.8607 6.1439 19.5001 6.48652C21.1395 6.82914 22.679 7.54163 24.0013 8.56965C25.3236 9.59767 26.3937 10.9141 27.13 12.4185C27.8663 13.9229 28.2494 15.5757 28.25 17.2506ZM26.9559 17.2506C26.9555 15.7616 26.6127 14.2927 25.9538 12.9574C25.2949 11.6221 24.3377 10.4564 23.1562 9.55027C21.9748 8.64419 20.6007 8.02208 19.1403 7.73207C17.68 7.44207 16.1725 7.49196 14.7345 7.87787C13.2965 8.26377 11.9666 8.97536 10.8476 9.95757C9.72856 10.9398 8.85051 12.1663 8.28134 13.5422C7.71216 14.9181 7.46713 16.4065 7.56519 17.8923C7.66326 19.378 8.10179 20.8213 8.84686 22.1105C8.89288 22.1899 8.92149 22.2781 8.93079 22.3694C8.94009 22.4607 8.92986 22.553 8.90078 22.64L7.55706 26.6716C7.54439 26.7096 7.54255 26.7503 7.55175 26.7893C7.56095 26.8283 7.58083 26.864 7.60915 26.8923C7.63748 26.9207 7.67314 26.9405 7.71213 26.9497C7.75112 26.9589 7.7919 26.9571 7.8299 26.9444L11.8578 25.6006C11.924 25.5788 11.9931 25.5676 12.0627 25.5671C12.1763 25.5678 12.2878 25.5979 12.3863 25.6545C13.8619 26.509 15.5365 26.9597 17.2416 26.9612C18.9467 26.9627 20.6222 26.5149 22.0992 25.6629C23.5763 24.8109 24.8028 23.5848 25.6554 22.108C26.508 20.6312 26.9566 18.9559 26.9559 17.2506Z' fill='%23333333'/%3e%3c/svg%3e ");}/* Icon deve ser apresentado na cor branco e mask-image */
body .rdc-icon-svg.rdc-icon-helpdesk {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M23.1048 8.007C22.1848 7.05859 21.0903 6.30477 19.884 5.78876C18.6778 5.27275 17.3835 5.0047 16.0755 5H16C13.3478 5 10.8043 6.07464 8.92892 7.98751C7.05356 9.90038 6 12.4948 6 15.2V20.8C6 21.3835 6.22724 21.9431 6.63173 22.3556C7.03622 22.7682 7.58482 23 8.15686 23H9.72548C10.2975 23 10.8461 22.7682 11.2506 22.3556C11.6551 21.9431 11.8823 21.3835 11.8823 20.8V16.8C11.8823 16.2165 11.6551 15.6569 11.2506 15.2444C10.8461 14.8318 10.2975 14.6 9.72548 14.6H7.19607C7.3453 12.322 8.33772 10.187 9.97235 8.62732C11.607 7.06768 13.7617 6.19999 16 6.2H16.0666C18.2956 6.21009 20.4376 7.08304 22.0597 8.64236C23.6818 10.2017 24.663 12.3311 24.8048 14.6H22.2745C21.7024 14.6 21.1538 14.8318 20.7493 15.2444C20.3448 15.6569 20.1176 16.2165 20.1176 16.8V20.8C20.1176 21.3835 20.3448 21.9431 20.7493 22.3556C21.1538 22.7682 21.7024 23 22.2745 23H24.8235V23.2C24.8235 23.8896 24.5549 24.5509 24.0769 25.0385C23.5988 25.5261 22.9505 25.8 22.2745 25.8H16.7843C16.6283 25.8 16.4786 25.8632 16.3683 25.9757C16.258 26.0883 16.196 26.2409 16.196 26.4C16.196 26.5591 16.258 26.7117 16.3683 26.8243C16.4786 26.9368 16.6283 27 16.7843 27H22.2745C23.2625 27 24.2101 26.5996 24.9088 25.887C25.6074 25.1744 25.9999 24.2078 25.9999 23.2V15.2C26.0049 13.8658 25.7517 12.5436 25.2549 11.3093C24.7581 10.075 24.0275 8.95284 23.1048 8.007ZM9.72548 15.8C9.98549 15.8 10.2349 15.9054 10.4187 16.0929C10.6026 16.2804 10.7059 16.5348 10.7059 16.8V20.8C10.7059 21.0652 10.6026 21.3196 10.4187 21.5071C10.2349 21.6946 9.98549 21.8 9.72548 21.8H8.15686C7.89684 21.8 7.64747 21.6946 7.46362 21.5071C7.27976 21.3196 7.17647 21.0652 7.17647 20.8V15.8H9.72548ZM21.2941 20.8V16.8C21.2941 16.5348 21.3974 16.2804 21.5812 16.0929C21.7651 15.9054 22.0144 15.8 22.2745 15.8H24.8235V21.8H22.2745C22.0144 21.8 21.7651 21.6946 21.5812 21.5071C21.3974 21.3196 21.2941 21.0652 21.2941 20.8Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-sendmessage {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M25.627 6.37505C25.468 6.2136 25.2683 6.09813 25.0491 6.04084C24.8298 5.98356 24.5992 5.98658 24.3815 6.0496H24.3715L6.9223 11.3431C6.67363 11.4143 6.45258 11.5596 6.28857 11.7596C6.12456 11.9596 6.02538 12.2048 6.00425 12.4626C5.98313 12.7204 6.04104 12.9785 6.17029 13.2025C6.29955 13.4266 6.49399 13.6059 6.72774 13.7167L14.5109 17.4029C14.5485 17.4214 14.5789 17.4518 14.5973 17.4893L18.2848 25.2727C18.3866 25.4907 18.5486 25.675 18.7518 25.8038C18.9549 25.9327 19.1907 26.0007 19.4312 26C19.4676 26 19.5049 26 19.5412 25.9954C19.7989 25.9752 20.0442 25.8764 20.244 25.7124C20.4438 25.5483 20.5885 25.327 20.6586 25.0782L25.9498 7.63047V7.62047C26.0132 7.40306 26.0166 7.17257 25.9598 6.95335C25.903 6.73414 25.788 6.53433 25.627 6.37505ZM24.8997 7.32048L19.613 24.7664V24.7764C19.6045 24.8129 19.5842 24.8455 19.5553 24.8693C19.5264 24.8931 19.4905 24.9068 19.453 24.9082C19.4155 24.9138 19.3771 24.9067 19.3442 24.8879C19.3112 24.8691 19.2855 24.8397 19.2712 24.8046L15.6346 17.1357L20.0203 12.7503C20.1227 12.648 20.1802 12.5092 20.1802 12.3644C20.1802 12.2197 20.1227 12.0809 20.0203 11.9785C19.918 11.8762 19.7792 11.8187 19.6344 11.8187C19.4897 11.8187 19.3508 11.8762 19.2485 11.9785L14.8664 16.3639L7.19595 12.7276C7.16225 12.7119 7.13417 12.6863 7.1155 12.6541C7.09683 12.6219 7.08847 12.5848 7.09154 12.5478C7.09462 12.5107 7.10897 12.4755 7.13268 12.4469C7.15639 12.4182 7.18831 12.3976 7.22413 12.3876H7.23413L24.6815 7.09867C24.7122 7.09006 24.7446 7.08991 24.7753 7.09823C24.8061 7.10655 24.834 7.12304 24.8561 7.14594C24.8785 7.16838 24.8947 7.19629 24.903 7.22691C24.9113 7.25753 24.9114 7.28979 24.9034 7.32048H24.8997Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-eye {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 22.6923C21.4054 22.6923 26.0811 19.7892 28.4865 15.5C26.0811 11.2108 21.4054 8.30769 16 8.30769C10.5946 8.30769 5.91892 11.2108 3.51351 15.5C5.91892 19.7892 10.5946 22.6923 16 22.6923ZM16 7C22.1622 7 27.4865 10.4654 30 15.5C27.4865 20.5346 22.1622 24 16 24C9.83784 24 4.51351 20.5346 2 15.5C4.51351 10.4654 9.83784 7 16 7ZM16 9.61538C19.3784 9.61538 22.0811 12.2308 22.0811 15.5C22.0811 18.7692 19.3784 21.3846 16 21.3846C12.6216 21.3846 9.91892 18.7692 9.91892 15.5C9.91892 12.2308 12.6216 9.61538 16 9.61538ZM16 10.9231C14.7456 10.9231 13.5426 11.4053 12.6556 12.2636C11.7686 13.122 11.2703 14.2861 11.2703 15.5C11.2703 16.7139 11.7686 17.878 12.6556 18.7364C13.5426 19.5947 14.7456 20.0769 16 20.0769C17.2544 20.0769 18.4574 19.5947 19.3444 18.7364C20.2314 17.878 20.7297 16.7139 20.7297 15.5C20.7297 14.2861 20.2314 13.122 19.3444 12.2636C18.4574 11.4053 17.2544 10.9231 16 10.9231Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-eye-off {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M3.89189 4.97595L4.85135 4L27.4865 27.0241L26.527 28L22.0135 23.3952C20.1622 24.1787 18.1351 24.6186 16 24.6186C9.83784 24.6186 4.51351 20.9759 2 15.6838C3.31081 12.9347 5.36486 10.6392 7.89189 9.05842L3.89189 4.97595ZM16 23.244C17.7432 23.244 19.4189 22.9278 20.9595 22.3368L19.4459 20.7835C18.4595 21.4708 17.2838 21.8694 16 21.8694C12.6216 21.8694 9.91892 19.1203 9.91892 15.6838C9.91892 14.378 10.3108 13.1821 10.9865 12.1787L8.89189 10.0619C6.62925 11.4027 4.76956 13.3466 3.51351 15.6838C5.91892 20.1924 10.5946 23.244 16 23.244ZM28.4865 15.6838C26.0811 11.1753 21.4054 8.12371 16 8.12371C14.4459 8.12371 12.9324 8.38488 11.527 8.85223L10.473 7.78007C12.1892 7.10653 14.0541 6.74914 16 6.74914C22.1622 6.74914 27.4865 10.3918 30 15.6838C28.772 18.276 26.8699 20.477 24.5 22.0481L23.527 21.0447C25.5946 19.7251 27.3108 17.8832 28.4865 15.6838ZM16 9.49828C19.3784 9.49828 22.0811 12.2474 22.0811 15.6838C22.0811 16.811 21.7838 17.8557 21.2703 18.7629L20.2703 17.7457C20.5676 17.1134 20.7297 16.4261 20.7297 15.6838C20.7297 14.4079 20.2314 13.1842 19.3444 12.282C18.4574 11.3797 17.2544 10.8729 16 10.8729C15.2703 10.8729 14.5946 11.0378 13.973 11.3402L12.973 10.323C13.8649 9.80069 14.8919 9.49828 16 9.49828ZM11.2703 15.6838C11.2703 16.9598 11.7686 18.1835 12.6556 19.0857C13.5426 19.988 14.7456 20.4948 16 20.4948C16.9054 20.4948 17.7432 20.2337 18.4595 19.8076L11.9459 13.1821C11.527 13.9107 11.2703 14.7629 11.2703 15.6838Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-calendar {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.02 28C7.44417 28 6.96375 27.8057 6.57875 27.4171C6.19375 27.0286 6.00083 26.5437 6 25.9625V9.85207C6 9.27174 6.19292 8.78729 6.57875 8.39872C6.96458 8.01015 7.445 7.81545 8.02 7.81461H10.2312V5.68C10.2312 5.48404 10.295 5.32171 10.4225 5.19303C10.55 5.06435 10.7104 5.00001 10.9037 5.00001C11.0971 5.00001 11.2579 5.06435 11.3862 5.19303C11.5146 5.32171 11.5783 5.48404 11.5775 5.68V7.81461H20.52V5.63206C20.52 5.45208 20.5796 5.30153 20.6987 5.18042C20.8179 5.0593 20.9667 4.99917 21.145 5.00001C21.3233 5.00085 21.4717 5.06099 21.59 5.18042C21.7083 5.29985 21.7683 5.44997 21.77 5.6308V7.81461H23.9812C24.5562 7.81461 25.0367 8.00931 25.4225 8.39872C25.8083 8.78813 26.0008 9.273 26 9.85333V25.9625C26 26.5429 25.8075 27.0277 25.4225 27.4171C25.0375 27.8066 24.5567 28.0008 23.98 28H8.02ZM8.02 26.7384H23.9812C24.1729 26.7384 24.3492 26.6577 24.51 26.4962C24.6708 26.3347 24.7508 26.1564 24.75 25.9613V14.8997H7.25V25.9625C7.25 26.156 7.33 26.3339 7.49 26.4962C7.65 26.6585 7.82625 26.7393 8.01875 26.7384M7.25 13.6368H24.75V9.85207C24.75 9.65863 24.67 9.48074 24.51 9.31842C24.35 9.1561 24.1733 9.07535 23.98 9.0762H8.02C7.8275 9.0762 7.65083 9.15694 7.49 9.31842C7.32917 9.4799 7.24917 9.65821 7.25 9.85333V13.6368ZM16 19.3632C15.7417 19.3632 15.5167 19.2665 15.325 19.073C15.1333 18.8796 15.0375 18.6525 15.0375 18.3918C15.0375 18.131 15.1333 17.9044 15.325 17.7118C15.5167 17.5192 15.7417 17.4224 16 17.4216C16.2583 17.4208 16.4833 17.5175 16.675 17.7118C16.8667 17.906 16.9625 18.1331 16.9625 18.393C16.9625 18.6529 16.8667 18.8796 16.675 19.073C16.4833 19.2665 16.2583 19.3632 16 19.3632ZM11 19.3632C10.7417 19.3632 10.5167 19.2665 10.325 19.073C10.1333 18.8796 10.0375 18.6525 10.0375 18.3918C10.0375 18.131 10.1333 17.9044 10.325 17.7118C10.5167 17.5192 10.7417 17.4224 11 17.4216C11.2583 17.4208 11.4833 17.5175 11.675 17.7118C11.8667 17.906 11.9625 18.1331 11.9625 18.393C11.9625 18.6529 11.8667 18.8796 11.675 19.073C11.4833 19.2665 11.2583 19.3632 11 19.3632ZM21 19.3632C20.7417 19.3632 20.5167 19.2665 20.325 19.073C20.1333 18.8796 20.0375 18.6525 20.0375 18.3918C20.0375 18.131 20.1333 17.9044 20.325 17.7118C20.5167 17.5192 20.7417 17.4224 21 17.4216C21.2583 17.4208 21.4833 17.5175 21.675 17.7118C21.8667 17.906 21.9625 18.1331 21.9625 18.393C21.9625 18.6529 21.8667 18.8796 21.675 19.073C21.4833 19.2665 21.2583 19.3632 21 19.3632ZM16 24.2152C15.7417 24.2152 15.5167 24.1185 15.325 23.9251C15.1333 23.7316 15.0375 23.5045 15.0375 23.2438C15.0375 22.9831 15.1333 22.7564 15.325 22.5638C15.5167 22.3712 15.7417 22.2745 16 22.2737C16.2583 22.2728 16.4833 22.3695 16.675 22.5638C16.8667 22.7581 16.9625 22.9852 16.9625 23.2451C16.9625 23.505 16.8667 23.732 16.675 23.9263C16.4833 24.1206 16.2583 24.2169 16 24.2152ZM11 24.2152C10.7417 24.2152 10.5167 24.1185 10.325 23.9251C10.1333 23.7316 10.0375 23.5045 10.0375 23.2438C10.0375 22.9831 10.1333 22.7564 10.325 22.5638C10.5167 22.3712 10.7417 22.2745 11 22.2737C11.2583 22.2728 11.4833 22.3695 11.675 22.5638C11.8667 22.7581 11.9625 22.9852 11.9625 23.2451C11.9625 23.505 11.8667 23.732 11.675 23.9263C11.4833 24.1206 11.2583 24.2169 11 24.2152ZM21 24.2152C20.7417 24.2152 20.5167 24.1185 20.325 23.9251C20.1333 23.7316 20.0375 23.5045 20.0375 23.2438C20.0375 22.9831 20.1333 22.7564 20.325 22.5638C20.5167 22.3712 20.7417 22.2745 21 22.2737C21.2583 22.2728 21.4833 22.3695 21.675 22.5638C21.8667 22.7581 21.9625 22.9852 21.9625 23.2451C21.9625 23.505 21.8667 23.732 21.675 23.9263C21.4833 24.1206 21.2583 24.2169 21 24.2152Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-checked {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.0402 20.6574L7.81655 15.3524C7.62122 15.154 7.38125 15.0478 7.09663 15.0336C6.81201 15.0194 6.55808 15.1257 6.33485 15.3524C6.11162 15.5791 6 15.8299 6 16.1048C6 16.3797 6.11162 16.6305 6.33485 16.8572L11.8577 22.464C12.1954 22.8083 12.5895 22.9805 13.0402 22.9805C13.4908 22.9805 13.885 22.8083 14.2226 22.464L25.6848 10.8232C25.8802 10.6248 25.9848 10.3811 25.9988 10.0921C26.0127 9.80301 25.9081 9.54584 25.6848 9.32055C25.4616 9.09525 25.2147 8.9819 24.944 8.98048C24.6733 8.97906 24.4271 9.09242 24.2052 9.32055L13.0402 20.6574Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-clear {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15.1362 16L12.1128 19.0234C11.9901 19.1461 11.9291 19.29 11.9296 19.4553C11.9296 19.6212 11.991 19.7654 12.1136 19.8881C12.2363 20.0108 12.3803 20.0718 12.5455 20.0712C12.7108 20.0706 12.8545 20.0093 12.9766 19.8872L16 16.8638L19.0234 19.8872C19.1461 20.0099 19.29 20.0709 19.4553 20.0704C19.6212 20.0704 19.7654 20.009 19.8881 19.8864C20.0108 19.7637 20.0718 19.6197 20.0712 19.4544C20.0706 19.2892 20.0093 19.1455 19.8872 19.0234L16.8638 16L19.8872 12.9766C20.0099 12.8539 20.0709 12.71 20.0704 12.5447C20.0704 12.3788 20.0093 12.2349 19.8872 12.1128C19.7651 11.9907 19.6212 11.9296 19.4553 11.9296C19.2895 11.9296 19.1455 11.9907 19.0234 12.1128L16 15.1362L12.9766 12.1128C12.8539 11.9901 12.71 11.9291 12.5447 11.9296C12.3788 11.9296 12.2346 11.991 12.1119 12.1136C11.9892 12.2363 11.9282 12.3803 11.9288 12.5455C11.9293 12.7108 11.9907 12.8545 12.1128 12.9766L15.1362 16ZM8.22813 23.777C7.15353 22.7024 6.34671 21.4879 5.80768 20.1334C5.2698 18.7789 5.00058 17.4017 5 16.0017C4.99943 14.6017 5.2675 13.2251 5.80423 11.8718C6.34095 10.5184 7.14719 9.30388 8.22295 8.22813C9.2987 7.15237 10.5132 6.34556 11.8666 5.80768C13.2199 5.2698 14.5971 5.00058 15.9983 5C17.3994 4.99943 18.7761 5.2675 20.1282 5.80423C21.4804 6.34095 22.695 7.14719 23.7719 8.22295C24.8488 9.2987 25.6556 10.5132 26.1923 11.8666C26.729 13.2199 26.9983 14.5971 27 15.9983C27.0017 17.3994 26.7336 18.7761 26.1958 20.1282C25.6579 21.4804 24.8517 22.695 23.777 23.7719C22.7024 24.8488 21.4879 25.6556 20.1334 26.1923C18.7789 26.729 17.4017 26.9983 16.0017 27C14.6017 27.0017 13.2251 26.7336 11.8718 26.1958C10.5184 25.6579 9.30388 24.8517 8.22813 23.777ZM9.08937 22.9106C11.0186 24.8398 13.3221 25.8045 16 25.8045C18.6779 25.8045 20.9814 24.8398 22.9106 22.9106C24.8398 20.9814 25.8045 18.6779 25.8045 16C25.8045 13.3221 24.8398 11.0186 22.9106 9.08937C20.9814 7.16015 18.6779 6.19554 16 6.19554C13.3221 6.19554 11.0186 7.16015 9.08937 9.08937C7.16015 11.0186 6.19554 13.3221 6.19554 16C6.19554 18.6779 7.16015 20.9814 9.08937 22.9106Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-download {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 20.64C15.8457 20.64 15.7038 20.6148 15.5743 20.5643C15.4438 20.5138 15.3167 20.4267 15.1929 20.3029L11.45 16.56C11.311 16.421 11.2386 16.2571 11.2329 16.0686C11.2262 15.88 11.2986 15.7071 11.45 15.55C11.6081 15.3919 11.7781 15.3114 11.96 15.3086C12.1419 15.3057 12.3119 15.3833 12.47 15.5414L15.2857 18.3571V6.71429C15.2857 6.51143 15.3538 6.34143 15.49 6.20429C15.6271 6.0681 15.7971 6 16 6C16.2029 6 16.3729 6.0681 16.51 6.20429C16.6462 6.34143 16.7143 6.51143 16.7143 6.71429V18.3571L19.53 15.5414C19.669 15.4024 19.8343 15.3295 20.0257 15.3229C20.2171 15.3162 20.3919 15.3919 20.55 15.55C20.7024 15.7071 20.7795 15.8752 20.7814 16.0543C20.7843 16.2343 20.7071 16.4029 20.55 16.56L16.8071 20.3029C16.6833 20.4267 16.5562 20.5138 16.4257 20.5643C16.2962 20.6148 16.1543 20.64 16 20.64ZM8.30714 26C7.65 26 7.10143 25.78 6.66143 25.34C6.22048 24.899 6 24.35 6 23.6929V20.9457C6 20.7419 6.0681 20.5719 6.20429 20.4357C6.34143 20.2995 6.51143 20.2314 6.71429 20.2314C6.91714 20.2314 7.08714 20.2995 7.22429 20.4357C7.36048 20.5719 7.42857 20.7419 7.42857 20.9457V23.6929C7.42857 23.9119 7.52 24.1133 7.70286 24.2971C7.88667 24.48 8.08809 24.5714 8.30714 24.5714H23.6929C23.9119 24.5714 24.1133 24.48 24.2971 24.2971C24.48 24.1133 24.5714 23.9119 24.5714 23.6929V20.9457C24.5714 20.7419 24.6395 20.5719 24.7757 20.4357C24.9129 20.2995 25.0829 20.2314 25.2857 20.2314C25.4886 20.2314 25.6586 20.2995 25.7957 20.4357C25.9319 20.5719 26 20.7419 26 20.9457V23.6929C26 24.35 25.78 24.8986 25.34 25.3386C24.899 25.7795 24.35 26 23.6929 26H8.30714Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-upload {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.30714 26.0001C7.65 26.0001 7.10143 25.7801 6.66143 25.3401C6.22048 24.8992 6 24.3501 6 23.693V20.9458C6 20.742 6.0681 20.572 6.20429 20.4358C6.34143 20.2996 6.51143 20.2316 6.71429 20.2316C6.91714 20.2316 7.08714 20.2996 7.22429 20.4358C7.36048 20.572 7.42857 20.742 7.42857 20.9458V23.693C7.42857 23.912 7.52 24.1135 7.70286 24.2973C7.88667 24.4801 8.08809 24.5716 8.30714 24.5716H23.6929C23.9119 24.5716 24.1133 24.4801 24.2971 24.2973C24.48 24.1135 24.5714 23.912 24.5714 23.693V20.9458C24.5714 20.742 24.6395 20.572 24.7757 20.4358C24.9129 20.2996 25.0829 20.2316 25.2857 20.2316C25.4886 20.2316 25.6586 20.2996 25.7957 20.4358C25.9319 20.572 26 20.742 26 20.9458V23.693C26 24.3501 25.78 24.8987 25.34 25.3387C24.899 25.7796 24.35 26.0001 23.6929 26.0001H8.30714Z' fill='%23333333'/%3e%3cpath d='M16.4394 6.07572C16.3099 6.02524 16.168 6 16.0137 6C15.8594 6 15.7175 6.02524 15.588 6.07572C15.4575 6.12619 15.3304 6.21333 15.2065 6.33714L11.4637 10.08C11.3065 10.2371 11.2294 10.4057 11.2323 10.5857C11.2342 10.7648 11.3113 10.9329 11.4637 11.09C11.6218 11.2481 11.7965 11.3238 11.988 11.3171C12.1794 11.3105 12.3446 11.2376 12.4837 11.0986L15.2994 8.28286L15.2994 19.9257C15.2994 20.1286 15.3675 20.2986 15.5037 20.4357C15.6408 20.5719 15.8108 20.64 16.0137 20.64C16.2165 20.64 16.3865 20.5719 16.5237 20.4357C16.6599 20.2986 16.728 20.1286 16.728 19.9257L16.728 8.28286L19.5437 11.0986C19.7018 11.2567 19.8718 11.3343 20.0537 11.3314C20.2356 11.3286 20.4056 11.2481 20.5637 11.09C20.7151 10.9329 20.7875 10.76 20.7808 10.5714C20.7751 10.3829 20.7027 10.219 20.5637 10.08L16.8208 6.33714C16.697 6.21333 16.5699 6.12619 16.4394 6.07572Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-star-empty {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M23.4399 29.9999C23.0665 29.9996 22.7017 29.8865 22.3922 29.6752L16.0887 25.4028C16.0577 25.3811 16.0208 25.3695 15.9831 25.3695C15.9454 25.3695 15.9085 25.3811 15.8775 25.4028L9.57405 29.6752C9.25752 29.8889 8.88418 30.0002 8.50362 29.9943C8.12306 29.9884 7.75328 29.8656 7.44338 29.6421C7.13349 29.4187 6.89814 29.1052 6.76859 28.7433C6.63904 28.3814 6.62142 27.9882 6.71807 27.6159L8.78823 20.2331C8.79802 20.196 8.79683 20.1567 8.78482 20.1203C8.7728 20.0838 8.75049 20.0518 8.72063 20.028L2.75518 15.2856C2.44114 15.049 2.20819 14.7189 2.089 14.3417C1.96981 13.9645 1.97035 13.559 2.09054 13.1821C2.21074 12.8052 2.44457 12.4758 2.75924 12.24C3.0739 12.0043 3.45364 11.8741 3.84519 11.8676L11.4499 11.5771C11.4873 11.5745 11.5231 11.561 11.5531 11.5382C11.5831 11.5155 11.6059 11.4845 11.6189 11.4489L14.2382 4.24555C14.3703 3.88037 14.6101 3.56505 14.9252 3.34226C15.2403 3.11948 15.6155 3 16 3C16.3845 3 16.7597 3.11948 17.0748 3.34226C17.3899 3.56505 17.6297 3.88037 17.7618 4.24555L20.3811 11.4489C20.3941 11.4845 20.4169 11.5155 20.4469 11.5382C20.4769 11.561 20.5127 11.5745 20.5501 11.5771L28.1548 11.8676C28.5464 11.8741 28.9261 12.0043 29.2408 12.24C29.5554 12.4758 29.7893 12.8052 29.9095 13.1821C30.0297 13.559 30.0302 13.9645 29.911 14.3417C29.7918 14.7189 29.5589 15.049 29.2448 15.2856L23.2794 20.028C23.2486 20.051 23.2256 20.083 23.2135 20.1197C23.2014 20.1564 23.2008 20.196 23.2118 20.2331L25.2819 27.6159C25.3546 27.8991 25.3618 28.1954 25.303 28.4818C25.2442 28.7683 25.121 29.0372 24.9428 29.2677C24.7647 29.4982 24.5365 29.6842 24.2759 29.8112C24.0152 29.9382 23.7292 30.0027 23.4399 29.9999ZM15.9873 23.6596C16.3615 23.6712 16.7236 23.7962 17.0266 24.0185L23.3301 28.2909C23.362 28.3155 23.401 28.3289 23.4411 28.3292C23.4812 28.3296 23.5203 28.3168 23.5527 28.2927C23.585 28.2687 23.6088 28.2347 23.6204 28.1959C23.6321 28.1571 23.631 28.1155 23.6174 28.0773L21.5472 20.6945C21.4453 20.3323 21.4528 19.9476 21.5688 19.5898C21.6847 19.232 21.9038 18.9174 22.1978 18.6865L28.1633 13.944C28.1958 13.9209 28.2202 13.8878 28.2327 13.8497C28.2453 13.8116 28.2455 13.7703 28.2332 13.7321C28.2209 13.6938 28.1968 13.6606 28.1645 13.6372C28.1321 13.6138 28.0932 13.6016 28.0534 13.6022L20.4487 13.3117C20.0764 13.297 19.7168 13.1705 19.4158 12.9483C19.1148 12.7261 18.8861 12.4183 18.7588 12.0641L16.1394 4.86078C16.1276 4.82254 16.104 4.78911 16.0721 4.76537C16.0402 4.74163 16.0016 4.72883 15.962 4.72883C15.9224 4.72883 15.8838 4.74163 15.8519 4.76537C15.8199 4.78911 15.7963 4.82254 15.7845 4.86078L13.1905 12.0556C13.0632 12.4098 12.8345 12.7176 12.5335 12.9398C12.2325 13.162 11.8729 13.2885 11.5006 13.3032L3.89589 13.5937C3.85612 13.593 3.8172 13.6053 3.78484 13.6287C3.75248 13.652 3.72839 13.6853 3.7161 13.7235C3.70381 13.7618 3.70397 13.803 3.71656 13.8412C3.72915 13.8793 3.7535 13.9124 3.78604 13.9355L9.75994 18.6865C10.0531 18.9182 10.2715 19.2328 10.3873 19.5904C10.5032 19.9479 10.5113 20.3323 10.4106 20.6945L8.34885 28.0773C8.33654 28.1143 8.33649 28.1543 8.34868 28.1913C8.36088 28.2283 8.38467 28.2603 8.41644 28.2824C8.44705 28.3089 8.48601 28.3234 8.52629 28.3234C8.56657 28.3234 8.60553 28.3089 8.63614 28.2824L14.9396 24.0099C15.2476 23.8033 15.6092 23.6933 15.9789 23.6938L15.9873 23.6596Z' fill='%23CCCCCC'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-star-full {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M29.245 15.2456C29.559 15.0093 29.7919 14.6796 29.911 14.3028C30.0302 13.926 30.0296 13.521 29.9095 13.1446C29.7893 12.7681 29.5556 12.4391 29.241 12.2036C28.9264 11.9682 28.5468 11.8381 28.1554 11.8316L20.553 11.5414C20.5156 11.5388 20.4798 11.5254 20.4498 11.5026C20.4198 11.4799 20.397 11.4489 20.384 11.4134L17.757 4.24409C17.625 3.87934 17.3853 3.56439 17.0703 3.34186C16.7552 3.11934 16.3801 3 15.9958 3C15.6114 3 15.2363 3.11934 14.9213 3.34186C14.6063 3.56439 14.3665 3.87934 14.2346 4.24409L11.616 11.439C11.603 11.4745 11.5802 11.5055 11.5502 11.5283C11.5202 11.551 11.4844 11.5644 11.447 11.567L3.84463 11.8572C3.4532 11.8637 3.07358 11.9938 2.75901 12.2292C2.44443 12.4647 2.21068 12.7937 2.09052 13.1702C1.97036 13.5466 1.96982 13.9517 2.08897 14.3284C2.20813 14.7052 2.44101 15.0349 2.75496 15.2712L8.71861 20.0081C8.74845 20.0318 8.77076 20.0639 8.78277 20.1003C8.79478 20.1367 8.79597 20.1758 8.78618 20.2129L6.73354 27.5615C6.62717 27.9357 6.63748 28.3339 6.76305 28.702C6.88863 29.0701 7.12338 29.3901 7.43536 29.6186C7.74735 29.8471 8.12143 29.973 8.50671 29.979C8.89199 29.9851 9.26977 29.8711 9.58865 29.6525L15.8902 25.3851C15.9212 25.3634 15.9581 25.3518 15.9958 25.3518C16.0335 25.3518 16.0703 25.3634 16.1014 25.3851L22.4029 29.6525C22.7175 29.8786 23.0939 30 23.4799 30C23.8659 30 24.2423 29.8786 24.5569 29.6525C24.869 29.4262 25.1039 29.1077 25.2295 28.7409C25.3551 28.374 25.365 27.9769 25.258 27.6041L23.1885 20.23C23.1775 20.193 23.1781 20.1534 23.1902 20.1168C23.2023 20.0801 23.2253 20.0481 23.2561 20.0251L29.245 15.2456Z' fill='%2374838B'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-marker {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 32L15.4107 31.2558C15.0179 30.7146 5 18.6047 5 11.3658C5 5.074 9.97619 0 16 0C22.0238 0 27 5.14165 27 11.3658C27 18.6047 16.9821 30.7822 16.5893 31.2558L16 32Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-marker-success {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 0C9.91857 0 5 5.008 5 11.2C5 19.6 16 32 16 32C16 32 27 19.6 27 11.2C27 5.008 22.0814 0 16 0Z' fill='%233F9C35'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-marker-error {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 0C9.91857 0 5 5.008 5 11.2C5 19.6 16 32 16 32C16 32 27 19.6 27 11.2C27 5.008 22.0814 0 16 0Z' fill='%23BA152C'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-marker-clustering {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='16' cy='16' r='16' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-microphone {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.0318 5C13.3124 5 11.1075 7.16447 10.9962 9.87227L10.9918 10.0871V14.8468C10.9918 17.7103 13.2312 20 16.0318 20C18.7069 20 20.8924 17.8169 21.0027 15.0651L21.0071 14.8468V10.0871C21.0071 7.28967 18.7678 5 16.0318 5ZM16.0318 6.25C18.0161 6.25 19.6777 7.88556 19.7796 9.89187L19.7846 10.0871V14.8468C19.7846 16.9963 18.0906 18.75 16.0318 18.75C13.9848 18.75 12.3213 17.1144 12.2193 15.048L12.2143 14.8468V10.0871C12.2143 7.98201 13.9295 6.25 16.0318 6.25Z' fill='%23333333'/%3e%3cpath d='M23.7046 16H23.135C22.9854 16 22.8622 16.1175 22.8554 16.2668C22.62 19.735 19.7523 22.5334 16.2604 22.651L16.0317 22.6549C12.395 22.6549 9.44248 19.8279 9.20752 16.2643C9.20028 16.1163 9.07796 16 8.92953 16H8.29696C8.12805 16 7.99316 16.1405 8.00027 16.309C8.24095 20.0981 11.178 23.2432 14.9731 23.7712L15.222 23.8019L15.3957 23.8206V25.8541H14.2427C13.903 25.8541 13.6706 26.0868 13.6706 26.427C13.6706 26.7673 13.903 27 14.2427 27H17.7568C18.1142 27 18.3928 26.7504 18.3928 26.427C18.3928 26.1037 18.1142 25.8541 17.7568 25.8541H16.6038V23.8203L16.7779 23.8018C20.7317 23.3819 23.7592 20.2005 23.9998 16.3064C24.0063 16.1391 23.8722 16 23.7046 16Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-nomicrophone {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16.5317 5C19.1459 5 21.298 7.17075 21.4095 9.86737L21.414 10.0871V14.8468L21.4098 15.0651C21.3828 15.7493 21.2301 16.3983 20.9753 16.9873L19.9812 16.2096C20.1107 15.8446 20.1899 15.4539 20.2095 15.0471L20.2144 14.8468V10.0871L20.2095 9.89187C20.1095 7.88556 18.4789 6.25 16.5317 6.25C14.5332 6.25 12.8912 7.87545 12.7905 9.89092L12.7856 10.0871L12.785 10.586L11.6027 9.661C11.8168 7.04906 13.9353 5 16.5317 5Z' fill='%23333333'/%3e%3cpath d='M11.586 14.692L12.8751 15.7012C13.2477 17.4488 14.7401 18.75 16.5317 18.75C16.6105 18.75 16.6887 18.7473 16.7663 18.7421L18.0505 19.7462C17.5724 19.911 17.0618 20 16.5317 20C13.8539 20 11.699 17.8262 11.5903 15.0659L11.586 14.8468V14.692Z' fill='%23333333'/%3e%3cpath d='M9.56221 16C9.70787 16 9.8279 16.1163 9.835 16.2643C10.0656 19.8279 12.9629 22.6549 16.5316 22.6549L16.7561 22.651C18.0496 22.6066 19.2558 22.1802 20.2688 21.48L21.2174 22.2206C20.101 23.0757 18.7491 23.6411 17.2639 23.8018L17.0931 23.8203V25.8541H18.2245C18.5752 25.8541 18.8486 26.1037 18.8486 26.427C18.8486 26.7504 18.5752 27 18.2245 27H14.7761C14.4427 27 14.2147 26.7673 14.2147 26.427C14.2147 26.0868 14.4427 25.8541 14.7761 25.8541H15.9075V23.8206L15.4929 23.7712C11.7686 23.2432 8.8865 20.0981 8.65032 16.309C8.64334 16.1405 8.77572 16 8.94147 16H9.56221Z' fill='%23333333'/%3e%3cpath d='M24.3508 16.3064C24.3572 16.1391 24.2256 16 24.0611 16H23.5022C23.3554 16 23.2345 16.1175 23.2278 16.2668C23.1785 17.0057 23.0121 17.7142 22.7474 18.3729L23.6739 19.0967C24.0554 18.2346 24.2909 17.2934 24.3508 16.3064Z' fill='%23333333'/%3e%3cpath d='M29.7507 25.5721L4.03094 5.39633C3.75163 5.17723 3.35077 5.22928 3.1345 5.51274C2.91721 5.79754 2.96867 6.20777 3.2493 6.42791L28.9691 26.6037C29.2484 26.8228 29.6492 26.7707 29.8655 26.4873C30.0828 26.2025 30.0313 25.7922 29.7507 25.5721Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-payment {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7.17647 21.625V23.875V8.125V21.625ZM7.90118 25C7.37412 25 6.92549 24.823 6.55529 24.469C6.1851 24.115 6 23.6864 6 23.1831V8.81687C6 8.31437 6.1851 7.88575 6.55529 7.531C6.92549 7.177 7.37412 7 7.90118 7H22.9235C23.449 7 23.8973 7.177 24.2682 7.531C24.6384 7.885 24.8235 8.314 24.8235 8.818V12.1277H23.6471V8.818C23.6471 8.6155 23.5792 8.44937 23.4435 8.31962C23.3078 8.18987 23.1345 8.125 22.9235 8.125H7.9C7.68902 8.125 7.51569 8.18987 7.38 8.31962C7.24431 8.44937 7.17647 8.6155 7.17647 8.818V23.1831C7.17647 23.3849 7.24431 23.5506 7.38 23.6804C7.51569 23.8101 7.68941 23.875 7.90118 23.875H22.9235C23.1345 23.875 23.3078 23.8101 23.4435 23.6804C23.5792 23.5506 23.6471 23.3849 23.6471 23.1831V19.8723H24.8235V23.1831C24.8235 23.6856 24.6384 24.1143 24.2682 24.469C23.898 24.823 23.4498 25 22.9235 25H7.90118ZM17.3129 20.5C16.7859 20.5 16.3373 20.323 15.9671 19.969C15.5969 19.615 15.4118 19.1864 15.4118 18.6831V13.3169C15.4118 12.8144 15.5969 12.3858 15.9671 12.031C16.3373 11.677 16.7859 11.5 17.3129 11.5H24.1C24.6255 11.5 25.0737 11.677 25.4447 12.031C25.8149 12.385 26 12.814 26 13.318V18.6831C26 19.1856 25.8149 19.6143 25.4447 19.969C25.0745 20.323 24.6263 20.5 24.1 20.5H17.3129ZM24.1 19.375C24.311 19.375 24.4843 19.3101 24.62 19.1804C24.7557 19.0506 24.8235 18.8849 24.8235 18.6831V13.3169C24.8235 13.1151 24.7557 12.9494 24.62 12.8196C24.4843 12.6899 24.311 12.625 24.1 12.625H17.3118C17.1008 12.625 16.9275 12.6899 16.7918 12.8196C16.6561 12.9494 16.5882 13.1155 16.5882 13.318V18.6831C16.5882 18.8849 16.6561 19.0506 16.7918 19.1804C16.9275 19.3101 17.1012 19.375 17.3129 19.375H24.1ZM20.1176 17.6875C20.6078 17.6875 21.0247 17.5236 21.3682 17.1959C21.7118 16.8681 21.8831 16.4695 21.8824 16C21.8816 15.5305 21.7102 15.1322 21.3682 14.8052C21.0263 14.4782 20.6094 14.314 20.1176 14.3125C19.6259 14.311 19.2094 14.4752 18.8682 14.8052C18.5271 15.1353 18.3553 15.5335 18.3529 16C18.3506 16.4665 18.5224 16.8651 18.8682 17.1959C19.2141 17.5266 19.6306 17.6905 20.1176 17.6875Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-secure {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.1188 20.5348H18.8824C19.1601 20.5348 19.3928 20.4385 19.5806 20.2457C19.7685 20.053 19.8624 19.8137 19.8624 19.5279V15.8854C19.8624 15.6004 19.7685 15.3615 19.5806 15.1688C19.3928 14.9761 19.1597 14.8797 18.8812 14.8797H18.6711V13.6335C18.6711 13.0113 18.4647 12.4879 18.0519 12.0633C17.639 11.6396 17.1294 11.4278 16.5231 11.4278C15.9167 11.4278 15.4071 11.6396 14.9943 12.0633C14.5814 12.487 14.375 13.0104 14.375 13.6335V14.8797H14.1176C13.8399 14.8797 13.6072 14.9761 13.4194 15.1688C13.2315 15.3615 13.1376 15.6004 13.1376 15.8854V19.5279C13.1376 19.8137 13.2315 20.053 13.4194 20.2457C13.6072 20.4385 13.8403 20.5348 14.1188 20.5348ZM15.3088 14.8797V13.6335C15.3088 13.2804 15.4254 12.9843 15.6585 12.745C15.8916 12.5057 16.1798 12.3861 16.5231 12.3861C16.8663 12.3861 17.1549 12.5057 17.3889 12.745C17.6228 12.9843 17.739 13.2804 17.7374 13.6335V14.8797H15.3088ZM16.5 27C16.3899 27 16.2737 26.9896 16.1515 26.9688C16.0293 26.9481 15.9159 26.9169 15.8115 26.8754C13.421 25.9408 11.5214 24.3556 10.1129 22.12C8.70429 19.8843 8 17.4643 8 14.8597V9.52237C8 9.09535 8.1186 8.7107 8.35579 8.36842C8.59217 8.02613 8.89857 7.77814 9.275 7.62445L15.8139 5.13209C16.0503 5.04403 16.279 5 16.5 5C16.721 5 16.9501 5.04403 17.1873 5.13209L23.725 7.62445C24.1006 7.77897 24.407 8.02696 24.6442 8.36842C24.8814 8.7107 25 9.09535 25 9.52237V14.8597C25 17.4643 24.2957 19.8843 22.8871 22.12C21.4786 24.3556 19.5794 25.9408 17.1897 26.8754C17.0837 26.9169 16.9699 26.9481 16.8485 26.9688C16.7271 26.9896 16.6109 27 16.5 27ZM16.5 25.8261C18.6048 25.1407 20.3452 23.7699 21.7214 21.7137C23.0976 19.6575 23.7857 17.3729 23.7857 14.8597V9.4987C23.7857 9.33919 23.7428 9.19546 23.657 9.06752C23.572 8.93958 23.4514 8.84404 23.2951 8.7809L16.7574 6.28855C16.6797 6.25532 16.5939 6.2387 16.5 6.2387C16.4061 6.2387 16.3203 6.25532 16.2426 6.28855L9.70486 8.7809C9.54862 8.84404 9.428 8.93958 9.343 9.06752C9.25719 9.19546 9.21429 9.33919 9.21429 9.4987V14.8597C9.21429 17.3729 9.90238 19.6575 11.2786 21.7137C12.6548 23.7699 14.3952 25.1407 16.5 25.8261Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-shipping {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.03983 25C8.12166 25 7.34349 24.6757 6.70531 24.0271C6.06629 23.3784 5.74679 22.5908 5.74679 21.6642H5.01906C4.73067 21.6642 4.48893 21.5656 4.29386 21.3684C4.0988 21.1712 4.00084 20.9263 4 20.6339V9.06064C4 8.47322 4.19465 7.98314 4.58394 7.59039C4.97324 7.19765 5.45797 7.00085 6.03813 7H20.6872C21.248 7 21.7277 7.2019 22.1262 7.6057C22.5248 8.00949 22.7245 8.49405 22.7253 9.05937V11.6097H24.6171C24.9392 11.6097 25.2444 11.6828 25.5328 11.829C25.822 11.9752 26.06 12.1771 26.2466 12.4347L29.7969 17.2675C29.8651 17.3534 29.9159 17.4477 29.9496 17.5506C29.9832 17.6534 30 17.7652 30 17.8859V20.6339C30 20.9263 29.9029 21.1712 29.7087 21.3684C29.5144 21.5656 29.2723 21.6642 28.9822 21.6642H27.9631C27.9631 22.5908 27.6419 23.3784 26.9996 24.0271C26.3572 24.6757 25.5773 24.9996 24.66 24.9987C23.7427 24.9979 22.9641 24.674 22.3242 24.0271C21.6844 23.3801 21.3649 22.5925 21.3657 21.6642H12.3455C12.3455 22.5959 12.0243 23.3848 11.3819 24.0309C10.7395 24.677 9.95799 25 9.03983 25ZM9.04613 23.7249C9.61368 23.7249 10.095 23.5251 10.4902 23.1255C10.8854 22.726 11.083 22.2389 11.083 21.6642C11.083 21.0895 10.8854 20.6029 10.4902 20.2042C10.095 19.8055 9.61368 19.6057 9.04613 19.6048C8.47858 19.604 7.99722 19.8038 7.60204 20.2042C7.20686 20.6046 7.00927 21.0912 7.00927 21.6642C7.00927 22.2372 7.20686 22.7239 7.60204 23.1243C7.99722 23.5247 8.47858 23.7257 9.04613 23.7249ZM5.26248 20.3891H6.07849C6.25758 19.8263 6.62291 19.3426 7.17448 18.9379C7.72606 18.5333 8.34994 18.3301 9.04613 18.3284C9.71037 18.3284 10.3267 18.5273 10.8951 18.9252C11.4626 19.3222 11.8359 19.8101 12.015 20.3891H21.4653V9.06064C21.4653 8.83111 21.3922 8.64282 21.2459 8.49575C21.0996 8.34868 20.9133 8.27515 20.6872 8.27515H6.03813C5.8439 8.27515 5.66607 8.35676 5.50463 8.51998C5.34236 8.68405 5.26122 8.86427 5.26122 9.06064L5.26248 20.3891ZM24.6663 23.7249C25.2339 23.7249 25.7152 23.5251 26.1104 23.1255C26.5056 22.7251 26.7032 22.238 26.7032 21.6642C26.7032 21.0904 26.5056 20.6037 26.1104 20.2042C25.7152 19.8046 25.2339 19.6048 24.6663 19.6048C24.0988 19.6048 23.6174 19.8046 23.2222 20.2042C22.827 20.6037 22.6294 21.0904 22.6294 21.6642C22.6294 22.238 22.827 22.7247 23.2222 23.1243C23.6174 23.5238 24.0988 23.7249 24.6663 23.7249ZM22.724 17.8388H28.6669L25.1985 13.2049C25.1178 13.1063 25.0249 13.0285 24.9198 12.9715C24.8147 12.9146 24.6974 12.8861 24.5679 12.8861H22.7253L22.724 17.8388Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-exchange {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.8541 17.8333H19.8345C20.0031 17.8333 20.1444 17.7751 20.2584 17.6586C20.3724 17.542 20.429 17.3966 20.4282 17.2222C20.4275 17.0479 20.3709 16.9024 20.2584 16.7859C20.146 16.6694 20.0047 16.6111 19.8345 16.6111H14.8541L16.9275 14.4771C17.0383 14.363 17.0977 14.2241 17.1056 14.0603C17.1135 13.8957 17.0518 13.7462 16.9204 13.6118C16.7937 13.4814 16.6536 13.4162 16.5 13.4162C16.3464 13.4162 16.2063 13.4814 16.0796 13.6118L13.2439 16.5304C13.0523 16.7284 12.9565 16.959 12.9565 17.2222C12.9565 17.4854 13.0523 17.716 13.2439 17.914L16.0796 20.8327C16.1905 20.9467 16.3258 21.0091 16.4858 21.0197C16.6457 21.0303 16.7905 20.9679 16.9204 20.8327C17.047 20.7023 17.1104 20.5581 17.1104 20.4C17.1104 20.2419 17.047 20.0977 16.9204 19.9673L14.8541 17.8333ZM8.919 27C8.387 27 7.93417 26.8077 7.5605 26.4231C7.18683 26.0385 7 25.5729 7 25.0261V9.41833C7 8.87241 7.18683 8.40674 7.5605 8.02133C7.93417 7.63674 8.387 7.44444 8.919 7.44444H14.5002C14.3918 6.8203 14.5367 6.25685 14.9349 5.75411C15.3323 5.25137 15.854 5 16.5 5C17.161 5 17.6907 5.25137 18.0889 5.75411C18.4871 6.25685 18.6244 6.8203 18.5009 7.44444H24.0822C24.6126 7.44444 25.065 7.63674 25.4395 8.02133C25.8132 8.40593 26 8.872 26 9.41956V25.0261C26 25.572 25.8132 26.0377 25.4395 26.4231C25.0658 26.8077 24.6134 27 24.0822 27H8.919ZM8.919 25.7778H24.0822C24.2643 25.7778 24.4317 25.6996 24.5845 25.5431C24.7373 25.3867 24.8133 25.2139 24.8125 25.0249V9.41956C24.8125 9.23133 24.7365 9.05859 24.5845 8.90133C24.4325 8.74407 24.2647 8.66585 24.081 8.66667H8.919C8.73613 8.66667 8.56829 8.74489 8.4155 8.90133C8.26271 9.05778 8.18671 9.23052 8.1875 9.41956V25.0261C8.1875 25.2135 8.2635 25.3859 8.4155 25.5431C8.5675 25.7004 8.73494 25.7786 8.91781 25.7778M16.5 7.98467C16.7573 7.98467 16.9703 7.8983 17.1389 7.72556C17.3075 7.55281 17.3914 7.33363 17.3906 7.068C17.3898 6.80237 17.3055 6.58359 17.1377 6.41167C16.9699 6.23974 16.7573 6.15296 16.5 6.15133C16.2427 6.1497 16.0301 6.23648 15.8623 6.41167C15.6945 6.58685 15.6102 6.80563 15.6094 7.068C15.6086 7.33037 15.6929 7.54956 15.8623 7.72556C16.0317 7.90156 16.2443 7.98793 16.5 7.98467Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-copy {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.9349 23.0981C12.3426 23.0981 11.8484 22.8988 11.4524 22.5002C11.0564 22.1016 10.858 21.6043 10.8571 21.0081V7.07047C10.8571 6.47518 11.0556 5.9778 11.4524 5.57835C11.8493 5.1789 12.3434 4.97961 12.9349 4.98047H22.9236C23.515 4.98047 24.0091 5.17977 24.406 5.57835C24.8029 5.97694 25.0009 6.47431 25 7.07047V21.0081C25 21.6034 24.802 22.1004 24.406 22.4989C24.01 22.8975 23.5154 23.0973 22.9223 23.0981H12.9349ZM12.9349 21.804H22.9236C23.1207 21.804 23.302 21.7212 23.4674 21.5555C23.6329 21.3899 23.7151 21.2074 23.7143 21.0081V7.07047C23.7143 6.87204 23.632 6.68957 23.4674 6.52306C23.3029 6.35655 23.1211 6.27373 22.9223 6.27459H12.9349C12.7369 6.27459 12.5551 6.35741 12.3897 6.52306C12.2243 6.68871 12.142 6.87118 12.1429 7.07047V21.0081C12.1429 21.2065 12.2251 21.389 12.3897 21.5555C12.5543 21.722 12.7356 21.8049 12.9336 21.804M9.07643 26.9805C8.485 26.9805 7.99086 26.7812 7.594 26.3826C7.19715 25.984 6.99915 25.4866 7 24.8905V10.3058C7 10.122 7.06129 9.96843 7.18386 9.84506C7.30643 9.72169 7.45943 9.66 7.64286 9.66C7.82629 9.66 7.97929 9.72169 8.10186 9.84506C8.22443 9.96843 8.28572 10.1224 8.28572 10.3071V24.8905C8.28572 25.0889 8.368 25.2714 8.53257 25.4379C8.69714 25.6044 8.87843 25.6872 9.07643 25.6863H19.7093C19.8919 25.6863 20.0444 25.748 20.167 25.8714C20.2896 25.9948 20.3509 26.1488 20.3509 26.3334C20.3509 26.518 20.2896 26.672 20.167 26.7954C20.0444 26.9188 19.8914 26.9805 19.708 26.9805H9.07643Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-tag {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.6622 7.1136L4.95998 16.8257C4.34516 17.4354 4.00539 18.2501 4 19.1242C4 19.9929 4.33438 20.8077 4.94919 21.4228L10.5742 27.0504C11.189 27.6601 12.0034 28 12.8717 28C13.74 28 14.5544 27.6655 15.1692 27.0504L24.8768 17.3383C25.4323 16.7825 25.7235 16.0164 25.6696 15.234L25.4647 12.1099C26.128 11.8186 26.7536 11.3923 27.2929 10.8528C28.2529 9.89233 28.8516 8.67832 28.9756 7.43194C29.105 6.1316 28.7167 4.96075 27.8754 4.11903C26.182 2.42481 23.1618 2.6838 21.134 4.69636C20.8805 4.94996 20.8805 5.36002 21.134 5.61362C21.3875 5.86721 21.7973 5.86721 22.0508 5.61362C23.5663 4.10285 25.7613 3.83846 26.9532 5.03089C27.5141 5.59203 27.7729 6.39598 27.6813 7.29705C27.5842 8.24667 27.1204 9.18011 26.3707 9.9301C26.0633 10.2377 25.7235 10.4966 25.3676 10.7017L25.2004 8.2089C25.1519 7.44812 24.5371 6.83302 23.7766 6.78446L16.7602 6.32044C16.7008 6.31505 16.6415 6.31505 16.5822 6.31505C15.8595 6.31505 15.1746 6.60101 14.6622 7.1136ZM11.5014 26.1335L5.87096 20.5004C5.50423 20.1335 5.29929 19.6425 5.29929 19.1192C5.29929 18.5958 5.50423 18.1048 5.87096 17.7379L15.5732 8.03118C15.8375 7.7668 16.2042 7.61572 16.5817 7.61572C16.5979 7.61572 16.6141 7.61707 16.6303 7.61842C16.6464 7.61977 16.6626 7.62112 16.6788 7.62112L23.6953 8.08514C23.8139 8.09593 23.911 8.18766 23.9164 8.30636L24.1105 11.1984C23.9919 11.22 23.8732 11.2416 23.7492 11.2524C22.8485 11.3441 22.045 11.0851 21.4841 10.524C21.2306 10.2704 20.8207 10.2704 20.5673 10.524C20.3138 10.7775 20.3138 11.1876 20.5673 11.4412C21.3007 12.175 22.2877 12.5635 23.3933 12.5635C23.5497 12.5635 23.7114 12.5527 23.8732 12.5365C23.9811 12.5257 24.089 12.5095 24.1968 12.4934L24.3856 15.3207C24.4126 15.7307 24.2615 16.13 23.9703 16.4214L14.2627 26.1335C13.8959 26.5004 13.4052 26.7054 12.882 26.7054C12.3589 26.7054 11.8681 26.5004 11.5014 26.1335Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-phone {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M25.1425 19.7038L20.3219 17.5435C20.1035 17.4499 19.8652 17.4123 19.6286 17.4341C19.3919 17.4558 19.1645 17.5362 18.9668 17.668C18.9467 17.681 18.9277 17.6953 18.9096 17.7109L16.3902 19.8538C16.364 19.8681 16.3349 19.876 16.3052 19.8771C16.2754 19.8782 16.2458 19.8723 16.2187 19.8599C14.5993 19.0783 12.9217 17.4109 12.137 15.8139C12.1239 15.7872 12.1171 15.7579 12.1171 15.7282C12.1171 15.6984 12.1239 15.6691 12.137 15.6424L14.287 13.0913C14.3025 13.0725 14.3168 13.0527 14.3299 13.0322C14.4599 12.8337 14.5384 12.606 14.5583 12.3695C14.5783 12.1331 14.5391 11.8955 14.4442 11.678L12.2992 6.86562C12.1774 6.58154 11.9667 6.34462 11.6988 6.19044C11.4309 6.03625 11.1203 5.97311 10.8134 6.01049C9.47995 6.18579 8.25592 6.84065 7.37008 7.85269C6.48424 8.86473 5.99722 10.1647 6.00001 11.5097C6.00001 19.4997 12.5002 25.9999 20.4903 25.9999C21.8352 26.0025 23.135 25.5154 24.147 24.6296C25.159 23.7438 25.8139 22.5199 25.9895 21.1865C26.0268 20.8811 25.9645 20.5718 25.8119 20.3047C25.6593 20.0375 25.4245 19.8268 25.1425 19.7038ZM20.4903 24.7754C13.1758 24.7754 7.22454 18.8242 7.22454 11.5097C7.22113 10.4626 7.59905 9.45013 8.28769 8.6614C8.97632 7.87267 9.92857 7.36164 10.9665 7.22379H10.99C11.0311 7.22456 11.071 7.23773 11.1045 7.26159C11.138 7.28544 11.1636 7.31886 11.1777 7.35747L13.3309 12.1648C13.3432 12.1915 13.3495 12.2206 13.3495 12.25C13.3495 12.2794 13.3432 12.3085 13.3309 12.3352L11.1767 14.8924C11.1607 14.9107 11.1461 14.9302 11.1328 14.9506C10.998 15.1564 10.9187 15.3935 10.9024 15.6389C10.8861 15.8844 10.9335 16.1299 11.04 16.3517C11.9451 18.2048 13.8125 20.0579 15.6861 20.963C15.9091 21.0689 16.1558 21.1151 16.4021 21.0973C16.6483 21.0794 16.8858 20.998 17.0912 20.861C17.1106 20.8477 17.13 20.8334 17.1483 20.8181L19.6668 18.6752C19.6917 18.6618 19.7191 18.654 19.7473 18.6522C19.7755 18.6505 19.8037 18.6548 19.8301 18.665L24.6517 20.8253C24.691 20.842 24.7242 20.8708 24.7463 20.9074C24.7685 20.944 24.7786 20.9867 24.7751 21.0294C24.638 22.0678 24.1275 23.0207 23.3389 23.7101C22.5503 24.3995 21.5377 24.7782 20.4903 24.7754Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-home{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6.42857 24.5505H11.7029V17.2906C11.7029 16.9636 11.8138 16.6895 12.0357 16.4683C12.2567 16.2462 12.5305 16.1352 12.8571 16.1352H17.1429C17.4695 16.1352 17.7438 16.2462 17.9657 16.4683C18.1867 16.6895 18.2971 16.9636 18.2971 17.2906V24.5505H23.5714V12.1213C23.5714 11.9744 23.5395 11.841 23.4757 11.7209C23.4119 11.6007 23.3248 11.4959 23.2143 11.4063L15.5229 5.60348C15.3762 5.47573 15.2019 5.41186 15 5.41186C14.7981 5.41186 14.6243 5.47573 14.4786 5.60348L6.78571 11.4063C6.67619 11.4978 6.58905 11.6027 6.52429 11.7209C6.45952 11.8391 6.42762 11.9725 6.42857 12.1213V24.5505ZM5 24.5505V12.1213C5 11.7552 5.0819 11.4087 5.24571 11.0817C5.40952 10.7547 5.63524 10.4854 5.92286 10.2737L13.6157 4.44235C14.0186 4.13443 14.4786 3.98047 14.9957 3.98047C15.5129 3.98047 15.9757 4.13443 16.3843 4.44235L24.0771 10.2723C24.3657 10.4839 24.5914 10.7537 24.7543 11.0817C24.9181 11.4087 25 11.7552 25 12.1213V24.5505C25 24.9337 24.8576 25.2679 24.5729 25.5529C24.2881 25.8379 23.9543 25.9805 23.5714 25.9805H18.0229C17.6952 25.9805 17.421 25.8699 17.2 25.6487C16.979 25.4266 16.8686 25.152 16.8686 24.8251V17.5666H13.1314V24.8251C13.1314 25.153 13.021 25.4275 12.8 25.6487C12.579 25.8699 12.3052 25.9805 11.9786 25.9805H6.42857C6.04571 25.9805 5.7119 25.8379 5.42714 25.5529C5.14238 25.2679 5 24.9337 5 24.5505Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-find-shipping {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.5 13.9087L15.325 13C15.5475 12.8917 15.7725 12.8375 16 12.8375C16.2275 12.8375 16.4525 12.8917 16.675 13L18.5 13.9087V7.25H13.5V13.9087ZM10.375 21.625C10.1975 21.625 10.0487 21.5654 9.92875 21.4462C9.80875 21.3271 9.74917 21.1783 9.75 21C9.75083 20.8217 9.81042 20.6729 9.92875 20.5537C10.0471 20.4346 10.1958 20.375 10.375 20.375H15.375C15.5533 20.375 15.7021 20.4346 15.8212 20.5537C15.9404 20.6729 16 20.8217 16 21C16 21.1783 15.9404 21.3271 15.8212 21.4462C15.7021 21.5654 15.5533 21.625 15.375 21.625H10.375ZM8.02 26C7.44417 26 6.96375 25.8075 6.57875 25.4225C6.19375 25.0375 6.00083 24.5567 6 23.98V8.02C6 7.44417 6.19292 6.96375 6.57875 6.57875C6.96458 6.19375 7.445 6.00083 8.02 6H23.9812C24.5562 6 25.0367 6.19292 25.4225 6.57875C25.8083 6.96458 26.0008 7.445 26 8.02V23.9812C26 24.5562 25.8075 25.0367 25.4225 25.4225C25.0375 25.8083 24.5567 26.0008 23.98 26H8.02ZM8.02 24.75H23.9812C24.1729 24.75 24.3492 24.67 24.51 24.51C24.6708 24.35 24.7508 24.1733 24.75 23.98V8.02C24.75 7.8275 24.67 7.65083 24.51 7.49C24.35 7.32917 24.1733 7.24917 23.98 7.25H19.75V14.9062C19.75 15.1454 19.6483 15.3287 19.445 15.4562C19.2417 15.5829 19.0275 15.5904 18.8025 15.4787L16 14.0775L13.1975 15.4775C12.9725 15.59 12.7583 15.5829 12.555 15.4562C12.3517 15.3296 12.25 15.1462 12.25 14.9062V7.25H8.02C7.8275 7.25 7.65083 7.33 7.49 7.49C7.32917 7.65 7.24917 7.82667 7.25 8.02V23.9812C7.25 24.1729 7.33 24.3492 7.49 24.51C7.65 24.6708 7.82625 24.7508 8.01875 24.75' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-click-collect {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11.0959 8.80533C11.3173 8.80533 11.536 8.84 11.752 8.90933C11.968 8.97778 12.1737 9.07555 12.369 9.20267L18.984 13.8427C19.1478 13.96 19.2378 14.1138 19.254 14.304C19.2702 14.4942 19.2103 14.6653 19.0744 14.8173C18.9556 14.9604 18.8175 15.0387 18.66 15.052C18.5034 15.0653 18.3504 15.0258 18.201 14.9333L11.5684 10.3187C11.4289 10.2156 11.2728 10.164 11.1 10.164C10.9272 10.164 10.7715 10.2156 10.6329 10.3187L4.71315 14.4107C4.59255 14.496 4.50165 14.5982 4.44045 14.7173C4.38015 14.8373 4.35 14.9658 4.35 15.1027V23.18C4.35 23.4191 4.42785 23.6156 4.58355 23.7693C4.73925 23.9231 4.9386 24 5.1816 24H7.2066C7.4487 24 7.6476 23.9231 7.8033 23.7693C7.959 23.6156 8.03685 23.4191 8.03685 23.18V19.384C8.03685 18.9929 8.1714 18.6644 8.4405 18.3987C8.7096 18.1329 9.0426 18 9.4395 18H12.7605C13.1574 18 13.4904 18.1329 13.7595 18.3987C14.0286 18.6644 14.1636 18.9933 14.1645 19.3853V24.6667C14.1645 24.856 14.0992 25.0142 13.9687 25.1413C13.8382 25.2684 13.6785 25.3324 13.4895 25.3333C13.3005 25.3342 13.1403 25.2702 13.0089 25.1413C12.8775 25.0124 12.8127 24.8542 12.8145 24.6667V19.3333H9.38685V23.18C9.38685 23.772 9.1731 24.2787 8.7456 24.7C8.3181 25.1213 7.8051 25.3324 7.2066 25.3333H5.1816C4.5813 25.3333 4.06785 25.1222 3.64125 24.7C3.21465 24.2778 3.0009 23.7716 3 23.1813V15.112C3 14.7698 3.07965 14.44 3.23895 14.1227C3.39825 13.8044 3.62325 13.5489 3.91395 13.356L9.8337 9.204C10.029 9.07778 10.2328 8.98 10.4452 8.91067C10.6567 8.84133 10.8732 8.80667 11.0946 8.80667M26.8197 4C27.4191 4 27.9321 4.21111 28.3587 4.63333C28.7853 5.05556 28.9991 5.56222 29 6.15333V13.9C29 14.0893 28.9352 14.2476 28.8056 14.3747C28.676 14.5018 28.5153 14.5658 28.3236 14.5667C28.1319 14.5676 27.9717 14.5036 27.843 14.3747C27.7143 14.2458 27.65 14.0876 27.65 13.9V6.15333C27.65 5.91422 27.5721 5.71778 27.4164 5.564C27.2607 5.41022 27.0618 5.33333 26.8197 5.33333H16.5C16.257 5.33333 16.0581 5.41022 15.9033 5.564C15.7476 5.71778 15.6697 5.91467 15.6697 6.15467V7.71867C15.6697 7.90711 15.6049 8.06533 15.4753 8.19333C15.3457 8.32133 15.1851 8.38533 14.9934 8.38533C14.8017 8.38533 14.6415 8.32133 14.5128 8.19333C14.3841 8.06533 14.3193 7.90711 14.3184 7.71867V6.13867C14.3184 5.55378 14.5317 5.05111 14.9583 4.63067C15.3831 4.21022 15.8916 4 16.4838 4H26.8197ZM23.6 28C22.0961 28 20.8203 27.4827 19.7727 26.448C18.7242 25.4116 18.2 24.1511 18.2 22.6667C18.2 21.1822 18.7242 19.9222 19.7727 18.8867C20.8212 17.8511 22.097 17.3333 23.6 17.3333C25.103 17.3333 26.3792 17.8511 27.4286 18.8867C28.478 19.9222 29.0018 21.1822 29 22.6667C28.9982 24.1511 28.4744 25.4116 27.4286 26.448C26.3828 27.4844 25.1066 28.0018 23.6 28ZM23.0802 23.1787V26C23.0802 26.1369 23.1324 26.2569 23.2368 26.36C23.3403 26.4613 23.4614 26.512 23.6 26.512C23.7386 26.512 23.8601 26.4609 23.9645 26.3587C24.0671 26.2564 24.1184 26.1369 24.1184 26V23.1787H26.975C27.1136 23.1787 27.2351 23.1276 27.3395 23.0253C27.4421 22.9231 27.4934 22.8036 27.4934 22.6667C27.4934 22.5298 27.4416 22.4098 27.3381 22.3067C27.2346 22.2053 27.1136 22.1547 26.975 22.1547H24.1184V19.3333C24.1184 19.1964 24.0666 19.0764 23.9631 18.9733C23.8596 18.872 23.7386 18.8213 23.6 18.8213C23.4614 18.8213 23.3399 18.8724 23.2355 18.9747C23.1329 19.0769 23.0816 19.1964 23.0816 19.3333V22.1547H20.225C20.0864 22.1547 19.9649 22.2058 19.8605 22.308C19.7579 22.4102 19.7066 22.5298 19.7066 22.6667C19.7066 22.8036 19.7583 22.9236 19.8618 23.0267C19.9653 23.128 20.0864 23.1787 20.225 23.1787H23.0802ZM24.1072 10.3587H25.0927C25.2385 10.3587 25.3659 10.3049 25.4748 10.1973C25.5837 10.0898 25.6381 9.964 25.6381 9.82V8.84667C25.6381 8.70267 25.5837 8.57689 25.4748 8.46933C25.3659 8.36178 25.2385 8.308 25.0927 8.308H24.1072C23.9614 8.308 23.8341 8.36178 23.7252 8.46933C23.6163 8.57689 23.5618 8.70222 23.5618 8.84533V9.82C23.5618 9.964 23.6163 10.0898 23.7252 10.1973C23.8341 10.3049 23.9614 10.3587 24.1072 10.3587Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-points{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M27.0164 9.75724C27.0168 9.74799 27.0188 9.73874 27.0193 9.72949C27.0221 9.69989 27.0227 9.67749 27.025 9.66269C27.0254 9.65159 27.0273 9.64419 27.0275 9.64049C27.0684 9.3926 27.1071 9.35457 27.1443 9.10483C27.149 9.07153 27.1498 9.04173 27.147 9.01377C27.1361 8.87955 27.0357 8.81521 26.8467 8.85221C26.4218 8.93423 26.0438 8.88181 25.6119 8.88736C25.048 8.8925 24.5972 8.78233 24.0612 8.79014C23.6815 8.79548 23.6704 8.15212 22.6627 8.08573C20.9717 7.97452 21.4174 5.66992 20.8997 5.66992C20.4746 5.66992 20.4656 6.90958 20.1186 7.89128C20.0592 8.05921 20.1186 7.89128 20.0189 7.74369C19.607 7.13507 19.0584 6.0989 18.767 6.27238C18.416 6.48122 18.7103 8.82673 18.4256 11.2216C18.2342 11.9661 18.0604 12.713 17.917 13.4187C17.8816 13.6026 17.8481 13.7829 17.822 13.9597C17.9263 14.06 18.0451 14.1492 18.1772 14.2273C19.4866 15.0061 22.1105 14.815 22.8922 14.1046C23.4121 13.632 24.8861 13.3202 25.7731 13.8982C25.8996 13.9819 26.0206 14.0748 26.1452 14.1751C26.3741 14.3553 26.7385 14.3181 26.8967 14.0748C26.8985 14.0748 26.8985 14.0729 26.9004 14.0711C27.0007 13.9149 27.077 13.7401 27.1385 13.5654C27.237 13.2828 26.9639 10.4008 27.0168 9.75704L27.0164 9.75724Z' fill='%2374838B'/%3e%3cpath d='M23.1688 25.9339C23.0703 25.7008 23.0308 25.4317 23.0275 25.146L23.0325 22.233C23.0325 22.2264 23.0259 22.1477 23.0259 22.0295C23.0259 20.4669 23.7033 20.2996 23.7033 18.2085C23.7033 16.8398 22.9216 15.0606 22.8428 15.0968C21.5455 15.727 18.4188 15.6219 17.5847 14.8571C15.6634 16.18 13.2328 15.9009 10.8517 15.3625C9.54777 15.0672 9.05521 14.8538 7.80375 13.6326C7.67562 13.5046 7.35047 13.0287 7.18635 12.7693C7.06151 12.5757 6.9268 12.3591 6.79559 12.1391C6.54262 11.7124 6.52617 11.7091 6.38817 11.4333C6.20431 11.0623 5.63606 11.2855 5.79709 11.7517C5.80039 11.7615 5.80368 11.7681 5.80697 11.7813C5.82342 11.8306 5.84316 11.8863 5.86291 11.9422C5.88265 11.9946 7.07488 14.5944 7.55757 15.6121C7.65937 15.8353 7.78421 16.0454 7.9255 16.2423C8.07666 16.4589 8.07008 16.751 7.90576 16.9611C7.52158 17.4501 6.84824 18.3496 6.58869 18.9732C6.14528 20.0235 6.2078 20.6537 6.18148 21.7962C6.16173 22.5808 5.54763 23.5228 5.16016 23.8445C5.16016 23.8445 5.84645 24.1333 6.61831 24.2023V25.7616C6.61831 26.2605 7.02223 26.6644 7.52158 26.6644H9.61358C9.34416 26.5791 9.14056 26.4444 8.99618 26.2738C8.94024 26.2083 8.91083 26.1195 8.90754 26.0309C8.90096 25.9028 8.90425 25.7781 8.91083 25.6566C8.91083 25.6237 8.91412 25.591 8.91741 25.5614C8.9207 25.5024 8.92728 25.4465 8.93387 25.3908C8.94374 25.3187 8.95361 25.2463 8.96677 25.1774C8.97232 25.1489 8.98179 25.1228 8.98796 25.0946C8.96801 25.192 8.94621 25.2884 8.93407 25.3908C8.94908 25.2738 8.97294 25.1631 8.99844 25.0533C9.01037 25.0025 9.02271 24.952 9.0367 24.9026C9.0585 24.8251 9.08379 24.7499 9.11074 24.6761C9.12925 24.6257 9.14796 24.5754 9.16873 24.5267C9.19773 24.4591 9.22982 24.3937 9.26313 24.3293C9.28863 24.28 9.31352 24.2305 9.34149 24.1832C9.37625 24.1238 9.4145 24.0673 9.45296 24.0107C9.48504 23.9639 9.5161 23.9162 9.55044 23.8712C9.59096 23.8182 9.63497 23.7682 9.67878 23.7178C9.71621 23.6749 9.7524 23.6307 9.7921 23.5896C9.83981 23.5403 9.89123 23.4942 9.94203 23.4476C9.98234 23.4106 10.021 23.3719 10.0634 23.3368C10.1232 23.2868 10.187 23.241 10.2503 23.1945C10.2877 23.1672 10.3231 23.1378 10.3616 23.1115C10.4654 23.041 10.573 22.9744 10.6845 22.9125C11.1345 22.6564 11.6435 22.4759 12.1755 22.3544C10.7534 22.8402 10.6845 23.6313 10.6845 23.7824V25.7772C10.6845 25.8395 10.6878 25.8987 10.7009 25.9544C10.783 26.3647 11.1443 26.6699 11.5779 26.6699L13.5288 26.6638C13.0953 26.5291 12.8456 26.2666 12.7109 25.9318C12.6124 25.6987 12.5729 25.5213 12.5696 25.2358C12.5663 25.2128 12.5663 25.1898 12.5663 25.167V22.2821C14.6782 21.9308 16.8132 22.5218 17.2698 23.628C17.4668 24.1104 17.2963 25.3088 17.4574 25.8208L17.4738 25.8668C17.6316 26.3133 17.9205 26.6646 18.387 26.6646H20.2653C19.1518 26.1723 19.3715 24.9051 19.3813 23.6971C19.3879 23.2638 19.6672 22.8765 20.081 22.7551C20.0942 22.7518 20.1071 22.7485 20.1203 22.7452C20.4127 22.6566 20.6852 22.5614 20.9347 22.4597C21.7131 22.1413 22.2814 21.7637 22.6722 21.3304C21.3913 22.8469 21.098 22.627 21.0783 24.5966V24.777C21.0783 25.857 21.0766 25.8979 21.0898 25.9503C21.1718 26.3606 21.438 26.6658 21.8715 26.6658H23.9867C23.5565 26.5312 23.3035 26.2687 23.169 25.9339H23.1688Z' fill='%2374838B'/%3e%3cpath d='M17.8241 13.9588L17.5849 14.8571C17.1483 14.3264 16.2838 14.0807 15.4585 13.8242C15.4303 13.8154 15.4351 13.7732 15.4641 13.7679C15.5953 13.7434 16.2676 13.7385 16.3758 13.7179C16.4052 13.7124 16.4212 13.6805 16.4079 13.6538C16.3612 13.5588 16.0383 13.2949 15.986 13.1895C15.9739 13.1648 15.9972 13.1443 16.0241 13.1492C16.5269 13.2417 17.1754 13.3652 17.8236 13.9588H17.8241Z' fill='%2374838B'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-menu {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.68751 23C5.49226 23 5.32909 22.9358 5.19801 22.8075C5.06601 22.6801 5.00001 22.523 5.00001 22.3362C5.00001 22.1477 5.06601 21.9902 5.19801 21.8636C5.33001 21.737 5.49318 21.6733 5.68751 21.6724H26.3125C26.5077 21.6724 26.6709 21.7361 26.802 21.8636C26.9331 21.991 26.9991 22.149 27 22.3375C27.0009 22.5261 26.9349 22.6836 26.802 22.8102C26.6691 22.9367 26.5059 23 26.3125 23H5.68751ZM5.68751 12.3263C5.49226 12.3263 5.32909 12.263 5.19801 12.1364C5.06693 12.0098 5.00093 11.8519 5.00001 11.6625C4.99909 11.4731 5.06509 11.3155 5.19801 11.1898C5.32909 11.0633 5.49226 11 5.68751 11H26.3125C26.5077 11 26.6709 11.0637 26.802 11.1912C26.934 11.3186 27 11.4762 27 11.6638C27 11.8523 26.934 12.0103 26.802 12.1377C26.67 12.2652 26.5068 12.3285 26.3125 12.3276L5.68751 12.3263Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-menu-close{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M24.8451 6.50002C24.6686 6.49879 24.5151 6.56346 24.3845 6.69401L16 15.0799L7.61547 6.69401C7.48493 6.56346 7.33142 6.49879 7.15492 6.50002C6.97843 6.50002 6.82553 6.56468 6.69622 6.69401C6.56569 6.82457 6.50073 6.9778 6.50134 7.15371C6.50195 7.32962 6.56691 7.48285 6.69622 7.61341L15.0808 15.9993L6.69582 24.3857C6.56651 24.515 6.50124 24.6679 6.50002 24.8445C6.49879 25.021 6.56375 25.1742 6.6949 25.3042C6.82605 25.4341 6.97956 25.4994 7.15544 25.5C7.33132 25.5006 7.48453 25.4356 7.61506 25.3051L16 16.9187L24.3849 25.3051C24.5155 25.4356 24.6687 25.5006 24.8446 25.5C25.0204 25.4994 25.174 25.4341 25.3051 25.3042C25.4362 25.1742 25.5012 25.021 25.5 24.8445C25.4988 24.6679 25.4335 24.515 25.3042 24.3857L16.9192 15.9993L25.3038 7.61341C25.4331 7.48285 25.498 7.32962 25.4987 7.15371C25.4993 6.9778 25.4343 6.82457 25.3038 6.69401C25.1745 6.56468 25.0216 6.50002 24.8451 6.50002Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view1:not(.active) {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.1777 17.294C13.5578 17.293 13.0399 17.5044 12.6239 17.928C12.208 18.3516 12 18.8791 12 19.5104V22.7836C12 23.4158 12.208 23.9433 12.6239 24.366C13.0399 24.7887 13.5578 25 14.1777 25H17.5333C18.1541 24.9991 18.672 24.7873 19.0871 24.3646C19.5021 23.9419 19.7096 23.4149 19.7096 22.7836V19.5104C19.7105 18.8782 19.503 18.3507 19.0871 17.928C18.6711 17.5053 18.1532 17.294 17.5333 17.294H14.1777ZM17.5313 23.66L17.5324 23.66C17.8128 23.6594 17.9807 23.5788 18.1309 23.4257C18.2827 23.2712 18.3696 23.0892 18.3696 22.7836V19.5085C18.3701 19.2028 18.2833 19.0217 18.1319 18.8679C17.9803 18.7138 17.8122 18.634 17.5333 18.634H14.1757C13.8984 18.6335 13.7314 18.7127 13.5801 18.8668C13.4269 19.0229 13.34 19.2056 13.34 19.5104V22.7836C13.34 23.0898 13.4272 23.2718 13.579 23.4261C13.7306 23.5801 13.8988 23.66 14.1777 23.66L17.5313 23.66ZM17.5333 14.706H14.1777C13.5578 14.706 13.0399 14.4947 12.6239 14.072C12.208 13.6493 12 13.1218 12 12.4896V9.21643C12 8.58512 12.208 8.05812 12.6239 7.63542C13.0399 7.21272 13.5578 7.00091 14.1777 7H17.5333C18.1532 7 18.6711 7.21181 19.0871 7.63542C19.503 8.05904 19.7105 8.58604 19.7096 9.21643V12.4896C19.7096 13.1209 19.5021 13.6484 19.0871 14.072C18.672 14.4956 18.1541 14.707 17.5333 14.706ZM18.3696 9.21452C18.3701 8.91187 18.284 8.73018 18.1309 8.57426C17.9791 8.41964 17.8113 8.34 17.5333 8.34H14.1789C13.8998 8.34057 13.731 8.42086 13.579 8.57529C13.4268 8.73001 13.34 8.91169 13.34 9.21643V12.4896C13.34 12.7959 13.4272 12.9778 13.579 13.1321C13.7306 13.2862 13.8988 13.366 14.1777 13.366H17.5353C17.8141 13.3664 17.9803 13.2869 18.1299 13.1342C18.2826 12.9783 18.3696 12.7952 18.3696 12.4896V9.21452Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view1.active,
body .rdc-icon-svg.rdc-icon-view1-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.1777 14.706C13.5578 14.706 13.0399 14.4947 12.6239 14.072C12.208 13.6493 12 13.1218 12 12.4896V9.21643C12 8.58512 12.208 8.05812 12.6239 7.63542C13.0399 7.21272 13.5578 7.00091 14.1777 7H17.5333C18.1532 7 18.6711 7.21181 19.0871 7.63542C19.503 8.05904 19.7105 8.58604 19.7096 9.21643V12.4896C19.7096 13.1209 19.5021 13.6484 19.0871 14.072C18.672 14.4956 18.1541 14.707 17.5333 14.706H14.1777ZM14.1777 25C13.5578 25 13.0399 24.7887 12.6239 24.366C12.208 23.9433 12 23.4158 12 22.7836V19.5104C12 18.8791 12.208 18.3516 12.6239 17.928C13.0399 17.5044 13.5578 17.293 14.1777 17.294H17.5333C18.1532 17.294 18.6711 17.5053 19.0871 17.928C19.503 18.3507 19.7105 18.8782 19.7096 19.5104V22.7836C19.7096 23.4149 19.5021 23.9419 19.0871 24.3646C18.672 24.7873 18.1541 24.9991 17.5333 25H14.1777Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view2:not(.active) {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.6742 17.294C19.0552 17.293 18.5378 17.5044 18.1218 17.928C17.7059 18.3516 17.4979 18.8791 17.4979 19.5104V22.7836C17.4988 23.4158 17.7068 23.9433 18.1218 24.366C18.5369 24.7887 19.0544 25 19.6742 25H22.8236C23.4426 24.9991 23.9601 24.7873 24.3761 24.3646C24.792 23.9419 25 23.4149 25 22.7836V19.5104C25.0009 18.8782 24.7934 18.3507 24.3774 17.928C23.9615 17.5053 23.4435 17.294 22.8236 17.294H19.6742ZM22.8217 23.66C22.822 23.66 22.8224 23.66 22.8227 23.66C23.1002 23.6594 23.2686 23.5795 23.4209 23.4247C23.5732 23.27 23.66 23.0883 23.66 22.7836V19.5085C23.6604 19.2028 23.5737 19.0217 23.4223 18.8679C23.2707 18.7138 23.1026 18.634 22.8236 18.634H19.6723C19.3964 18.6335 19.2297 18.7123 19.0779 18.8668C18.9247 19.0229 18.8379 19.2056 18.8379 19.5104V22.7827C18.8385 23.0898 18.9263 23.2727 19.0779 23.4271C19.2283 23.5802 19.3953 23.66 19.6742 23.66L22.8217 23.66ZM22.8236 14.706C23.4444 14.707 23.9624 14.4956 24.3774 14.072C24.7925 13.6484 25 13.1209 25 12.4896V9.21643C24.9991 8.58604 24.7911 8.05904 24.3761 7.63542C23.961 7.21181 23.4435 7 22.8236 7H19.6742C19.0552 7.00091 18.5378 7.21272 18.1218 7.63542C17.7059 8.05812 17.4979 8.58512 17.4979 9.21643V12.4896C17.4988 13.1218 17.7068 13.6493 18.1218 14.072C18.5369 14.4947 19.0543 14.706 19.6742 14.706H22.8236ZM18.8379 12.4888C18.8385 12.7959 18.9263 12.9787 19.0779 13.1331C19.2283 13.2862 19.3953 13.366 19.6742 13.366H22.8256C23.1044 13.3664 23.2706 13.2869 23.4203 13.1342C23.573 12.9783 23.66 12.7952 23.66 12.4896L23.66 9.21834C23.66 9.21798 23.66 9.21762 23.66 9.21726C23.6594 8.91317 23.5723 8.7298 23.4189 8.57323C23.2684 8.41957 23.1016 8.34 22.8236 8.34H19.6754C19.3978 8.34057 19.2293 8.42046 19.0769 8.57529C18.9247 8.73001 18.8379 8.91168 18.8379 9.21643V12.4888ZM9.1777 17.294C8.55781 17.293 8.03989 17.5044 7.62393 17.928C7.20798 18.3516 7 18.8791 7 19.5104V22.7836C7 23.4158 7.20798 23.9433 7.62393 24.366C8.03989 24.7887 8.55781 25 9.1777 25H12.5333C13.1541 24.9991 13.672 24.7873 14.0871 24.3646C14.5021 23.9419 14.7096 23.4149 14.7096 22.7836V19.5104C14.7105 18.8782 14.503 18.3507 14.0871 17.928C13.6711 17.5053 13.1532 17.294 12.5333 17.294H9.1777ZM12.5313 23.66C12.5317 23.66 12.532 23.66 12.5324 23.66C12.8128 23.6594 12.9807 23.5788 13.1309 23.4257C13.2827 23.2712 13.3696 23.0892 13.3696 22.7836V19.5085C13.3701 19.2028 13.2833 19.0217 13.1319 18.8679C12.9803 18.7138 12.8122 18.634 12.5333 18.634H9.17572C8.89836 18.6335 8.73138 18.7127 8.58006 18.8668C8.42685 19.0229 8.34 19.2056 8.34 19.5104V22.7836C8.34 23.0898 8.42719 23.2718 8.57905 23.4261C8.73065 23.5801 8.89877 23.66 9.1777 23.66L12.5313 23.66ZM12.5333 14.706H9.1777C8.55781 14.706 8.03989 14.4947 7.62393 14.072C7.20798 13.6493 7 13.1218 7 12.4896V9.21643C7 8.58512 7.20798 8.05812 7.62393 7.63542C8.03989 7.21272 8.55781 7.00091 9.1777 7H12.5333C13.1532 7 13.6711 7.21181 14.0871 7.63542C14.503 8.05904 14.7105 8.58604 14.7096 9.21643V12.4896C14.7096 13.1209 14.5021 13.6484 14.0871 14.072C13.672 14.4956 13.1541 14.707 12.5333 14.706ZM13.3696 9.21452C13.3701 8.91187 13.284 8.73018 13.1309 8.57426C12.9791 8.41964 12.8113 8.34 12.5333 8.34H9.17886C8.89978 8.34057 8.73101 8.42086 8.57904 8.57529C8.4268 8.73001 8.34 8.91169 8.34 9.21643V12.4896C8.34 12.7959 8.42719 12.9778 8.57904 13.1321C8.73065 13.2862 8.89877 13.366 9.1777 13.366H12.5353C12.8141 13.3664 12.9803 13.2869 13.1299 13.1342C13.2826 12.9783 13.3696 12.7952 13.3696 12.4896V9.21452Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view2.active,
body .rdc-icon-svg.rdc-icon-view2-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M19.6742 14.706C19.0543 14.706 18.5369 14.4947 18.1218 14.072C17.7068 13.6493 17.4988 13.1218 17.4979 12.4896V9.21643C17.4979 8.58512 17.7059 8.05812 18.1218 7.63542C18.5378 7.21272 19.0552 7.00091 19.6742 7H22.8236C23.4435 7 23.961 7.21181 24.3761 7.63542C24.7911 8.05904 24.9991 8.58604 25 9.21643V12.4896C25 13.1209 24.7925 13.6484 24.3774 14.072C23.9624 14.4956 23.4444 14.707 22.8236 14.706H19.6742ZM9.1777 14.706C8.55781 14.706 8.03989 14.4947 7.62393 14.072C7.20798 13.6493 7 13.1218 7 12.4896V9.21643C7 8.58512 7.20798 8.05812 7.62393 7.63542C8.03989 7.21272 8.55781 7.00091 9.1777 7H12.5333C13.1532 7 13.6711 7.21181 14.0871 7.63542C14.503 8.05904 14.7105 8.58604 14.7096 9.21643V12.4896C14.7096 13.1209 14.5021 13.6484 14.0871 14.072C13.672 14.4956 13.1541 14.707 12.5333 14.706H9.1777ZM9.1777 25C8.55781 25 8.03989 24.7887 7.62393 24.366C7.20798 23.9433 7 23.4158 7 22.7836V19.5104C7 18.8791 7.20798 18.3516 7.62393 17.928C8.03989 17.5044 8.55781 17.293 9.1777 17.294H12.5333C13.1532 17.294 13.6711 17.5053 14.0871 17.928C14.503 18.3507 14.7105 18.8782 14.7096 19.5104V22.7836C14.7096 23.4149 14.5021 23.9419 14.0871 24.3646C13.672 24.7873 13.1541 24.9991 12.5333 25H9.1777ZM19.6742 25C19.0544 25 18.5369 24.7887 18.1218 24.366C17.7068 23.9433 17.4988 23.4158 17.4979 22.7836V19.5104C17.4979 18.8791 17.7059 18.3516 18.1218 17.928C18.5378 17.5044 19.0552 17.293 19.6742 17.294H22.8236C23.4435 17.294 23.9615 17.5053 24.3774 17.928C24.7934 18.3507 25.0009 18.8782 25 19.5104V22.7836C25 23.4149 24.792 23.9419 24.3761 24.3646C23.9601 24.7873 23.4426 24.9991 22.8236 25H19.6742Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view3:not(.active) {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M22.487 12.4916C22.4866 12.7884 22.5715 12.9663 22.728 13.1221C22.8864 13.2797 23.0687 13.366 23.3698 13.366H26.7777C27.0773 13.3665 27.2585 13.2808 27.4166 13.1231C27.575 12.9651 27.66 12.7856 27.66 12.4896V9.21643C27.66 8.92199 27.5754 8.74267 27.4166 8.58432C27.258 8.42614 27.076 8.34 26.7758 8.34H23.3709C23.0682 8.3406 22.8861 8.42768 22.729 8.58432C22.5721 8.74076 22.487 8.91959 22.487 9.21643V12.4916ZM23.3698 7H26.7758C27.4089 7 27.9379 7.21181 28.3627 7.63542C28.7876 8.05904 29 8.58604 29 9.21643V12.4896C29 13.1209 28.7876 13.6484 28.3627 14.072C27.9379 14.4956 27.4089 14.707 26.7758 14.706H23.3698C22.7367 14.706 22.2077 14.4947 21.7829 14.072C21.358 13.6493 21.1461 13.1218 21.147 12.4896V9.21643C21.147 8.58512 21.3589 8.05812 21.7829 7.63542C22.2068 7.21272 22.7358 7.00091 23.3698 7ZM9.85301 19.5104V22.7836C9.85301 23.4149 9.64105 23.9419 9.21712 24.3646C8.7932 24.7873 8.26421 24.9991 7.63015 25H4.22424C3.5911 25 3.06211 24.7887 2.63727 24.366C2.21242 23.9433 2 23.4158 2 22.7836V19.5104C2 18.8791 2.21242 18.3516 2.63727 17.928C3.06211 17.5044 3.5911 17.293 4.22424 17.294H7.63015C8.26329 17.294 8.79228 17.5053 9.21712 17.928C9.64197 18.3507 9.85393 18.8782 9.85301 19.5104ZM7.63015 14.706C8.26421 14.707 8.7932 14.4956 9.21712 14.072C9.64105 13.6484 9.85301 13.1209 9.85301 12.4896V9.21643C9.85393 8.58604 9.64197 8.05904 9.21712 7.63542C8.79228 7.21181 8.26329 7 7.63015 7H4.22424C3.5911 7.00091 3.06211 7.21272 2.63727 7.63542C2.21242 8.05812 2 8.58512 2 9.21643V12.4896C2 13.1218 2.21242 13.6493 2.63727 14.072C3.06211 14.4947 3.5911 14.706 4.22424 14.706H7.63015ZM4.22534 8.34H7.63015C7.93037 8.34 8.11234 8.42614 8.27097 8.58432C8.42928 8.74216 8.51344 8.92067 8.51301 9.21448V12.4896C8.51301 12.7865 8.42781 12.9664 8.26995 13.1241C8.11353 13.2804 7.93318 13.3665 7.63209 13.366H4.22424C3.92312 13.366 3.74082 13.2797 3.58239 13.1221C3.42535 12.9658 3.34 12.787 3.34 12.4896V9.21643C3.34 8.9205 3.42494 8.74199 3.58239 8.58534C3.74119 8.42734 3.9241 8.3406 4.22534 8.34ZM7.62822 23.66C7.62858 23.66 7.62893 23.66 7.62929 23.66C7.93188 23.6594 8.11392 23.5723 8.27097 23.4157C8.42787 23.2592 8.51301 23.0804 8.51301 22.7836V19.5084C8.51345 19.2116 8.42853 19.0337 8.272 18.8779C8.11357 18.7203 7.93127 18.634 7.63015 18.634H4.2223C3.9227 18.6335 3.74154 18.7192 3.58342 18.8769C3.425 19.0349 3.34 19.2144 3.34 19.5104V22.7836C3.34 23.081 3.42535 23.2598 3.58239 23.416C3.74082 23.5737 3.92312 23.66 4.22424 23.66L7.62822 23.66ZM13.9023 17.294C13.2701 17.293 12.7416 17.5044 12.3167 17.928C11.8919 18.3516 11.6795 18.8791 11.6795 19.5104V22.7836C11.6804 23.4158 11.8928 23.9433 12.3167 24.366C12.7407 24.7887 13.2692 25 13.9023 25H17.0977C17.7299 24.9991 18.2584 24.7873 18.6833 24.3646C19.1081 23.9419 19.3205 23.4149 19.3205 22.7836V19.5104C19.3214 18.8782 19.1095 18.3507 18.6846 17.928C18.2598 17.5053 17.7308 17.294 17.0977 17.294H13.9023ZM17.0957 23.66C17.0961 23.66 17.0964 23.66 17.0968 23.66C17.3964 23.6594 17.579 23.573 17.7381 23.4147C17.8956 23.258 17.9805 23.0795 17.9805 22.7836V19.5084C17.981 19.2116 17.896 19.0337 17.7395 18.8779C17.5811 18.7203 17.3988 18.634 17.0977 18.634H13.9004C13.6023 18.6335 13.4214 18.7188 13.2629 18.8769C13.1045 19.0349 13.0195 19.2144 13.0195 19.5104V22.7827C13.0201 23.081 13.1061 23.2607 13.2629 23.4171C13.42 23.5737 13.6012 23.66 13.9023 23.66L17.0957 23.66ZM23.3698 17.294C22.7358 17.293 22.2068 17.5044 21.7829 17.928C21.359 18.3516 21.147 18.8791 21.147 19.5104V22.7836C21.1461 23.4158 21.358 23.9433 21.7829 24.366C22.2077 24.7887 22.7367 25 23.3698 25H26.7758C27.4089 24.9991 27.9379 24.7873 28.3627 24.3646C28.7876 23.9419 29 23.4149 29 22.7836V19.5104C29 18.8782 28.7876 18.3507 28.3627 17.928C27.9379 17.5053 27.4089 17.294 26.7758 17.294H23.3698ZM26.7738 23.66C26.7742 23.66 26.7745 23.66 26.7749 23.66C27.076 23.6594 27.2589 23.5726 27.4176 23.4147C27.5751 23.258 27.66 23.0795 27.66 22.7836V19.5104C27.66 19.213 27.5747 19.0342 27.4176 18.8779C27.2592 18.7203 27.0769 18.634 26.7758 18.634H23.3679C23.0668 18.6335 22.8865 18.7196 22.7301 18.8759C22.5722 19.0336 22.487 19.2135 22.487 19.5104V22.7855C22.4866 23.0823 22.5715 23.2603 22.728 23.416C22.8864 23.5737 23.0687 23.66 23.3698 23.66L26.7738 23.66ZM17.0977 14.706C17.7317 14.707 18.2607 14.4956 18.6846 14.072C19.1086 13.6484 19.3205 13.1209 19.3205 12.4896V9.21643C19.3196 8.58604 19.1072 8.05904 18.6833 7.63542C18.2593 7.21181 17.7308 7 17.0977 7H13.9023C13.2701 7.00091 12.7416 7.21272 12.3167 7.63542C11.8919 8.05812 11.6795 8.58512 11.6795 9.21643V12.4896C11.6804 13.1218 11.8928 13.6493 12.3167 14.072C12.7407 14.4947 13.2692 14.706 13.9023 14.706H17.0977ZM13.0195 12.4887C13.0201 12.7871 13.1061 12.9667 13.2629 13.1231C13.42 13.2798 13.6012 13.366 13.9023 13.366H17.0996C17.4007 13.3665 17.581 13.2804 17.7375 13.1241C17.8953 12.9664 17.9805 12.7865 17.9805 12.4896V9.21732C17.9799 8.92197 17.8947 8.74176 17.7361 8.58329C17.5788 8.42608 17.3979 8.34 17.0977 8.34H13.9034C13.6037 8.34059 13.4211 8.42695 13.2619 8.58534C13.1044 8.74199 13.0195 8.9205 13.0195 9.21643V12.4887Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view3.active,
body .rdc-icon-svg.rdc-icon-view3-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M23.3698 14.706C22.7367 14.706 22.2077 14.4947 21.7829 14.072C21.358 13.6493 21.1461 13.1218 21.147 12.4896V9.21643C21.147 8.58512 21.3589 8.05812 21.7829 7.63542C22.2068 7.21272 22.7358 7.00091 23.3698 7H26.7758C27.4089 7 27.9379 7.21181 28.3627 7.63542C28.7876 8.05904 29 8.58604 29 9.21643V12.4896C29 13.1209 28.7876 13.6484 28.3627 14.072C27.9379 14.4956 27.4089 14.707 26.7758 14.706H23.3698ZM13.9023 14.706C13.2692 14.706 12.7407 14.4947 12.3167 14.072C11.8928 13.6493 11.6804 13.1218 11.6795 12.4896V9.21643C11.6795 8.58512 11.8919 8.05812 12.3167 7.63542C12.7416 7.21272 13.2701 7.00091 13.9023 7H17.0977C17.7308 7 18.2593 7.21181 18.6833 7.63542C19.1072 8.05904 19.3196 8.58604 19.3205 9.21643V12.4896C19.3205 13.1209 19.1086 13.6484 18.6846 14.072C18.2607 14.4956 17.7317 14.707 17.0977 14.706H13.9023ZM4.22424 14.706C3.5911 14.706 3.06211 14.4947 2.63727 14.072C2.21242 13.6493 2 13.1218 2 12.4896V9.21643C2 8.58512 2.21242 8.05812 2.63727 7.63542C3.06211 7.21272 3.5911 7.00091 4.22424 7H7.63015C8.26329 7 8.79228 7.21181 9.21712 7.63542C9.64197 8.05904 9.85393 8.58604 9.85301 9.21643V12.4896C9.85301 13.1209 9.64105 13.6484 9.21712 14.072C8.7932 14.4956 8.26421 14.707 7.63015 14.706H4.22424ZM4.22424 25C3.5911 25 3.06211 24.7887 2.63727 24.366C2.21242 23.9433 2 23.4158 2 22.7836V19.5104C2 18.8791 2.21242 18.3516 2.63727 17.928C3.06211 17.5044 3.5911 17.293 4.22424 17.294H7.63015C8.26329 17.294 8.79228 17.5053 9.21712 17.928C9.64197 18.3507 9.85393 18.8782 9.85301 19.5104V22.7836C9.85301 23.4149 9.64105 23.9419 9.21712 24.3646C8.7932 24.7873 8.26421 24.9991 7.63015 25H4.22424ZM13.9023 25C13.2692 25 12.7407 24.7887 12.3167 24.366C11.8928 23.9433 11.6804 23.4158 11.6795 22.7836V19.5104C11.6795 18.8791 11.8919 18.3516 12.3167 17.928C12.7416 17.5044 13.2701 17.293 13.9023 17.294H17.0977C17.7308 17.294 18.2598 17.5053 18.6846 17.928C19.1095 18.3507 19.3214 18.8782 19.3205 19.5104V22.7836C19.3205 23.4149 19.1081 23.9419 18.6833 24.3646C18.2584 24.7873 17.7299 24.9991 17.0977 25H13.9023ZM23.3698 25C22.7367 25 22.2077 24.7887 21.7829 24.366C21.358 23.9433 21.1461 23.4158 21.147 22.7836V19.5104C21.147 18.8791 21.359 18.3516 21.7829 17.928C22.2068 17.5044 22.7358 17.293 23.3698 17.294H26.7758C27.4089 17.294 27.9379 17.5053 28.3627 17.928C28.7876 18.3507 29 18.8782 29 19.5104V22.7836C29 23.4149 28.7876 23.9419 28.3627 24.3646C27.9379 24.7873 27.4089 24.9991 26.7758 25H23.3698Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view4:not(.active) {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.6131 12.4916C17.6127 12.7853 17.6969 12.9622 17.8553 13.1186C18.0162 13.2775 18.2035 13.366 18.5123 13.366H20.9379C21.2452 13.3665 21.4314 13.2786 21.5919 13.1196C21.7522 12.961 21.8366 12.7824 21.8366 12.4896V9.21643C21.8366 8.9251 21.7526 8.74685 21.5919 8.58778C21.4309 8.42833 21.2439 8.34 20.936 8.34H18.5134C18.203 8.34061 18.0159 8.42986 17.8564 8.58778C17.6976 8.74493 17.6131 8.92269 17.6131 9.21643V12.4916ZM18.5123 7H20.936C21.5738 7 22.1066 7.21181 22.5346 7.63542C22.6884 7.78765 22.8145 7.95322 22.9131 8.13214C23.0887 8.45113 23.1766 8.81257 23.1766 9.21643V12.4896C23.1766 12.8943 23.0886 13.2564 22.9127 13.5757C22.8142 13.7545 22.6882 13.9199 22.5346 14.072C22.1066 14.4956 21.5738 14.707 20.936 14.706H18.5123C17.8745 14.706 17.3417 14.4947 16.9137 14.072C16.7859 13.9457 16.6772 13.8102 16.5876 13.6652C16.3773 13.3249 16.2725 12.933 16.2731 12.4896V9.21643V9.2152C16.2733 8.77358 16.3781 8.38303 16.5873 8.04353C16.6769 7.89813 16.7857 7.76209 16.9137 7.63542C17.3407 7.21272 17.8736 7.00091 18.5123 7ZM24.3595 8.13154C24.1842 8.45036 24.0966 8.812 24.0966 9.21643V12.4896C24.096 12.8949 24.1835 13.2571 24.3592 13.5763C24.4575 13.755 24.5835 13.9203 24.7371 14.072C25.1651 14.4947 25.698 14.706 26.3358 14.706H28.7594C29.3972 14.707 29.9301 14.4956 30.358 14.072C30.786 13.6484 31 13.1209 31 12.4896V9.21643C31 8.58604 30.786 8.05904 30.358 7.63542C29.9301 7.21181 29.3972 7 28.7594 7H26.3358C25.6971 7.00091 25.1642 7.21272 24.7371 7.63542C24.5837 7.78733 24.4578 7.9527 24.3595 8.13154ZM26.3369 8.34C26.0264 8.34061 25.8393 8.42986 25.6798 8.58778C25.521 8.74493 25.4366 8.92269 25.4366 9.21643V12.4916C25.4361 12.7853 25.5204 12.9622 25.6788 13.1186C25.8397 13.2775 26.027 13.366 26.3358 13.366H28.7613C29.0686 13.3665 29.2548 13.2786 29.4154 13.1196C29.5757 12.961 29.66 12.7825 29.66 12.4896V9.21643C29.66 8.9251 29.5761 8.74685 29.4154 8.58778C29.2543 8.42833 29.0673 8.34 28.7594 8.34H26.3369ZM13.194 14.706C13.8327 14.707 14.3656 14.4956 14.7927 14.072C14.92 13.9456 15.0284 13.81 15.1178 13.6652C15.3281 13.3245 15.4332 12.9326 15.4332 12.4896V9.21643C15.4326 8.77491 15.3274 8.38411 15.1177 8.04403C15.028 7.89854 14.9192 7.76234 14.7913 7.63542C14.3642 7.21181 13.8318 7 13.194 7H10.9825C10.3457 7.00091 9.81325 7.21272 9.38528 7.63542C9.25732 7.76181 9.14849 7.89752 9.05879 8.04256C8.84848 8.3826 8.74333 8.77389 8.74333 9.21643V12.4896C8.74397 12.9322 8.84903 13.3234 9.05848 13.6633C9.14824 13.8089 9.25717 13.9452 9.38528 14.072C9.81233 14.4947 10.3447 14.706 10.9825 14.706H13.194ZM5.66422 14.706H3.2406C2.6028 14.706 2.06992 14.4947 1.64195 14.072C1.21398 13.6493 1 13.1218 1 12.4896V9.21643C1 8.58512 1.21398 8.05812 1.64195 7.63542C2.06992 7.21272 2.6028 7.00091 3.2406 7H5.66422C6.30201 7 6.83489 7.21181 7.26286 7.63542C7.39059 7.76185 7.49922 7.8975 7.58875 8.04235C7.79918 8.38282 7.90408 8.77419 7.90343 9.21643V12.4896L7.90343 12.4908C7.90323 12.9326 7.79844 13.3235 7.58906 13.6635C7.49947 13.809 7.39074 13.9451 7.26286 14.072C6.83582 14.4956 6.30294 14.707 5.66422 14.706ZM26.3358 17.294C25.6971 17.293 25.1642 17.5044 24.7371 17.928C24.5838 18.0801 24.4579 18.2457 24.3596 18.4246C24.1843 18.7439 24.0966 19.1058 24.0966 19.5104V22.7836C24.096 23.1888 24.1835 23.551 24.3591 23.8702C24.4575 24.049 24.5835 24.2142 24.7371 24.366C25.0752 24.6999 25.4788 24.9019 25.9479 24.972C26.0726 24.9907 26.2019 25 26.3358 25H28.7594C28.892 24.9998 29.0202 24.9905 29.1437 24.9721C29.6143 24.9019 30.0191 24.6994 30.358 24.3646C30.786 23.9419 31 23.4149 31 22.7836V19.5104C31 18.8782 30.786 18.3507 30.358 17.928C29.9301 17.5053 29.3972 17.294 28.7594 17.294H26.3358ZM28.7586 23.66H26.3358C26.027 23.66 25.8397 23.5715 25.6788 23.4126C25.5204 23.2561 25.4361 23.0792 25.4366 22.7855V19.5104C25.4366 19.2166 25.5211 19.0378 25.6808 18.8793C25.8397 18.7218 26.025 18.6335 26.3339 18.634H28.7594C29.0682 18.634 29.2555 18.7225 29.4164 18.8814C29.5753 19.0384 29.66 19.2161 29.66 19.5104V22.7836C29.66 23.0764 29.5757 23.2538 29.4164 23.4112C29.2552 23.5704 29.0674 23.6594 28.7586 23.66ZM10.595 24.9721C10.7195 24.9907 10.8487 25 10.9825 25H13.194C13.3266 24.9998 13.4546 24.9905 13.578 24.972C14.048 24.9018 14.4524 24.6993 14.7913 24.3646C14.9191 24.2383 15.0278 24.1028 15.1174 23.958C15.328 23.6178 15.4332 23.2263 15.4332 22.7836V19.5104C15.4339 19.067 15.329 18.6751 15.1187 18.3348C15.0292 18.1898 14.9205 18.0543 14.7927 17.928C14.3647 17.5053 13.8318 17.294 13.194 17.294H10.9825C10.3457 17.293 9.81325 17.5044 9.38528 17.928C9.25741 18.0546 9.14865 18.1904 9.05898 18.3355C8.84855 18.6761 8.74333 19.0677 8.74333 19.5104V22.7836C8.74398 23.2261 8.84901 23.6173 9.05842 23.9572C9.14819 24.1029 9.25714 24.2391 9.38528 24.366C9.72272 24.7 10.1259 24.902 10.595 24.9721ZM7.58891 23.957C7.79839 23.6174 7.90323 23.2267 7.90343 22.7848L7.90343 22.7836V19.5104C7.90408 19.0671 7.7993 18.6753 7.58909 18.335C7.4995 18.19 7.39076 18.0543 7.26286 17.928C6.83489 17.5053 6.30201 17.294 5.66422 17.294H3.2406C2.6028 17.293 2.06992 17.5044 1.64195 17.928C1.21398 18.3516 1 18.8791 1 19.5104V22.7836C1 23.4158 1.21398 23.9433 1.64195 24.366C1.98009 24.6999 2.38371 24.902 2.85284 24.9721C2.97747 24.9907 3.10673 25 3.2406 25H5.66422C5.797 24.9998 5.9252 24.9905 6.04883 24.9721C6.51991 24.9019 6.92459 24.6994 7.26286 24.3646C7.39067 24.2381 7.49935 24.1022 7.58891 23.957ZM5.66338 23.66C5.97367 23.6593 6.16069 23.5701 6.3202 23.4122C6.47897 23.2551 6.56343 23.0773 6.56343 22.7836V19.5084C6.56386 19.2147 6.47964 19.0378 6.32123 18.8814C6.16033 18.7225 5.97304 18.634 5.66422 18.634H3.23868C2.93136 18.6335 2.7452 18.7214 2.58462 18.8804C2.42432 19.039 2.34 19.2175 2.34 19.5104V22.7836C2.34 23.0779 2.42466 23.2556 2.58359 23.4126C2.74448 23.5715 2.93177 23.66 3.2406 23.66H5.66338ZM10.0833 22.7827V19.5104C10.0833 19.2175 10.1676 19.039 10.3279 18.8804C10.4889 18.721 10.6748 18.6335 10.9806 18.634H13.194C13.5029 18.634 13.6901 18.7225 13.851 18.8814C14.0094 19.0378 14.0937 19.2147 14.0932 19.5084V22.7836C14.0932 23.0764 14.009 23.2538 13.8496 23.4112C13.688 23.5708 13.5005 23.6594 13.1932 23.66H10.9825C10.6737 23.66 10.4875 23.5715 10.3279 23.4136C10.1693 23.2565 10.084 23.0779 10.0833 22.7827ZM16.2731 19.5104V22.7836C16.2725 23.2268 16.3773 23.6186 16.5874 23.9588C16.677 24.1039 16.7858 24.2396 16.9137 24.366C17.2518 24.6999 17.6554 24.9019 18.1245 24.972C18.2491 24.9907 18.3784 25 18.5123 25H20.936C21.0686 24.9998 21.1967 24.9905 21.3203 24.9721C21.7909 24.9019 22.1956 24.6994 22.5346 24.3646C22.6882 24.2129 22.8141 24.0478 22.9126 23.8693C23.0886 23.5503 23.1766 23.1884 23.1766 22.7836V19.5104C23.1766 19.1056 23.0888 18.7437 22.9134 18.4248C22.8148 18.2457 22.6886 18.0801 22.5346 17.928C22.1066 17.5053 21.5738 17.294 20.936 17.294H18.5123C17.8736 17.293 17.3407 17.5044 16.9137 17.928C16.7863 18.0544 16.6779 18.19 16.5885 18.3348C16.3783 18.6755 16.2731 19.0674 16.2731 19.5104ZM20.9351 23.66H18.5123C18.2035 23.66 18.0162 23.5715 17.8553 23.4126C17.6969 23.2561 17.6127 23.0792 17.6131 22.7855V19.5104C17.6131 19.2166 17.6977 19.0378 17.8574 18.8793C18.0163 18.7218 18.2016 18.6335 18.5104 18.634H20.936C21.2448 18.634 21.4321 18.7225 21.593 18.8814C21.7519 19.0384 21.8366 19.2161 21.8366 19.5104V22.7836C21.8366 23.0764 21.7523 23.2538 21.593 23.4112C21.4318 23.5704 21.2439 23.6594 20.9351 23.66ZM3.24168 8.34H5.66422C5.97215 8.34 6.15911 8.42833 6.3202 8.58778C6.48039 8.74634 6.56386 8.92377 6.56343 9.21446V12.4896C6.56343 12.7834 6.47891 12.9622 6.31917 13.1207C6.16031 13.2782 5.97496 13.3665 5.66614 13.366H3.2406C2.93177 13.366 2.74449 13.2775 2.58359 13.1186C2.42466 12.9616 2.34 12.7839 2.34 12.4896V9.21643C2.34 8.92361 2.42425 8.74617 2.58359 8.5888C2.74485 8.42952 2.93274 8.3406 3.24168 8.34ZM10.0833 12.4887C10.084 12.784 10.1693 12.9626 10.3279 13.1196C10.4875 13.2776 10.6737 13.366 10.9825 13.366H13.1959C13.5048 13.3665 13.6901 13.2782 13.849 13.1207C14.0087 12.9622 14.0932 12.7834 14.0932 12.4896V9.21734C14.0926 8.92508 14.0081 8.74594 13.8476 8.58676C13.6878 8.42827 13.5019 8.34 13.194 8.34H10.9836C10.6762 8.3406 10.4886 8.42913 10.3269 8.5888C10.1676 8.74617 10.0833 8.92361 10.0833 9.21643V12.4887Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-view4.active,
body .rdc-icon-svg.rdc-icon-view4-active {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M18.5123 14.706C17.8745 14.706 17.3417 14.4947 16.9137 14.072C16.4857 13.6493 16.2722 13.1218 16.2731 12.4896V9.21643C16.2731 8.58512 16.4867 8.05812 16.9137 7.63542C17.3407 7.21272 17.8736 7.00091 18.5123 7H20.936C21.5738 7 22.1066 7.21181 22.5346 7.63542C22.9626 8.05904 23.1766 8.58604 23.1766 9.21643V12.4896C23.1766 13.1209 22.9626 13.6484 22.5346 14.072C22.1066 14.4956 21.5738 14.707 20.936 14.706H18.5123ZM10.9825 14.706C10.3447 14.706 9.81233 14.4947 9.38528 14.072C8.95824 13.6493 8.74425 13.1218 8.74333 12.4896V9.21643C8.74333 8.58512 8.95731 8.05812 9.38528 7.63542C9.81325 7.21272 10.3457 7.00091 10.9825 7H13.194C13.8318 7 14.3642 7.21181 14.7913 7.63542C15.2183 8.05904 15.4323 8.58604 15.4332 9.21643V12.4896C15.4332 13.1209 15.2197 13.6484 14.7927 14.072C14.3656 14.4956 13.8327 14.707 13.194 14.706H10.9825ZM3.2406 14.706C2.6028 14.706 2.06992 14.4947 1.64195 14.072C1.21398 13.6493 1 13.1218 1 12.4896V9.21643C1 8.58512 1.21398 8.05812 1.64195 7.63542C2.06992 7.21272 2.6028 7.00091 3.2406 7H5.66422C6.30201 7 6.83489 7.21181 7.26286 7.63542C7.69083 8.05904 7.90435 8.58604 7.90343 9.21643V12.4896C7.90343 13.1209 7.68991 13.6484 7.26286 14.072C6.83582 14.4956 6.30294 14.707 5.66422 14.706H3.2406ZM3.2406 25C2.6028 25 2.06992 24.7887 1.64195 24.366C1.21398 23.9433 1 23.4158 1 22.7836V19.5104C1 18.8791 1.21398 18.3516 1.64195 17.928C2.06992 17.5044 2.6028 17.293 3.2406 17.294H5.66422C6.30201 17.294 6.83489 17.5053 7.26286 17.928C7.69083 18.3507 7.90435 18.8782 7.90343 19.5104V22.7836C7.90343 23.4149 7.68991 23.9419 7.26286 24.3646C6.83582 24.7873 6.30294 24.9991 5.66422 25H3.2406ZM10.9825 25C10.3447 25 9.81233 24.7887 9.38528 24.366C8.95824 23.9433 8.74425 23.4158 8.74333 22.7836V19.5104C8.74333 18.8791 8.95731 18.3516 9.38528 17.928C9.81325 17.5044 10.3457 17.293 10.9825 17.294H13.194C13.8318 17.294 14.3647 17.5053 14.7927 17.928C15.2206 18.3507 15.4342 18.8782 15.4332 19.5104V22.7836C15.4332 23.4149 15.2192 23.9419 14.7913 24.3646C14.3633 24.7873 13.8309 24.9991 13.194 25H10.9825ZM18.5123 25C17.8745 25 17.3417 24.7887 16.9137 24.366C16.4857 23.9433 16.2722 23.4158 16.2731 22.7836V19.5104C16.2731 18.8791 16.4867 18.3516 16.9137 17.928C17.3407 17.5044 17.8736 17.293 18.5123 17.294H20.936C21.5738 17.294 22.1066 17.5053 22.5346 17.928C22.9626 18.3507 23.1766 18.8782 23.1766 19.5104V22.7836C23.1766 23.4149 22.9626 23.9419 22.5346 24.3646C22.1066 24.7873 21.5738 24.9991 20.936 25H18.5123Z' fill='%23333333'/%3e%3cpath d='M24.7371 14.072C25.1651 14.4947 25.698 14.706 26.3358 14.706H28.7594C29.3972 14.707 29.9301 14.4956 30.358 14.072C30.786 13.6484 31 13.1209 31 12.4896V9.21643C31 8.58604 30.786 8.05904 30.358 7.63542C29.9301 7.21181 29.3972 7 28.7594 7H26.3358C25.6971 7.00091 25.1642 7.21272 24.7371 7.63542C24.3101 8.05812 24.0966 8.58512 24.0966 9.21643V12.4896C24.0956 13.1218 24.3092 13.6493 24.7371 14.072Z' fill='%23333333'/%3e%3cpath d='M24.7371 24.366C25.1651 24.7887 25.698 25 26.3358 25H28.7594C29.3972 24.9991 29.9301 24.7873 30.358 24.3646C30.786 23.9419 31 23.4149 31 22.7836V19.5104C31 18.8782 30.786 18.3507 30.358 17.928C29.9301 17.5053 29.3972 17.294 28.7594 17.294H26.3358C25.6971 17.293 25.1642 17.5044 24.7371 17.928C24.3101 18.3516 24.0966 18.8791 24.0966 19.5104V22.7836C24.0956 23.4158 24.3092 23.9433 24.7371 24.366Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-view-list:not(.active) {}
body .rdc-icon-view-list.active,
body .rdc-icon-view-list-active {}
body .rdc-icon-svg.rdc-icon-address{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M19.7616 26.8673L12.5625 24.3026L7.44113 26.3247C7.25738 26.3997 7.08194 26.4234 6.91481 26.3957C6.74681 26.3689 6.59194 26.3099 6.45019 26.2188C6.30844 26.1277 6.19819 26.0053 6.11944 25.8516C6.04069 25.698 6.00087 25.5211 6 25.321V9.00957C6 8.75766 6.05688 8.53477 6.17063 8.34093C6.28438 8.14708 6.44975 8.01174 6.66675 7.93492L11.8603 6.134C11.9688 6.08933 12.0813 6.05583 12.1976 6.0335C12.3149 6.01117 12.4365 6 12.5625 6C12.6885 6 12.8097 6.01117 12.9261 6.0335C13.0424 6.05583 13.1549 6.08933 13.2634 6.134L20.4375 8.69736L25.5589 6.67668C25.7426 6.60165 25.9181 6.57753 26.0852 6.60433C26.2523 6.63113 26.4072 6.69008 26.5498 6.7812C26.6907 6.87232 26.8009 6.9947 26.8806 7.14835C26.9602 7.302 27 7.47888 27 7.67898V24.1057C27 24.3594 26.9304 24.5805 26.7913 24.7689C26.6531 24.9583 26.4667 25.0914 26.2322 25.1683L21.1134 26.8928C20.9997 26.9375 20.8877 26.9665 20.7774 26.9799C20.6681 26.9933 20.5543 27 20.4362 27C20.3172 27 20.2034 26.9893 20.0949 26.9678C19.9864 26.9464 19.8762 26.9129 19.7616 26.8673ZM19.7812 25.4832V9.80551L13.2188 7.46593V23.1436L19.7812 25.4832ZM21.0938 25.4832L25.6875 23.9368V8.05819L21.0938 9.80551V25.4832ZM7.3125 24.9418L11.9062 23.1436V7.46593L7.3125 9.06317V24.9418Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-timer, body .rdc-icon-svg.rdc-icon-time{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16.6111 16.473L20.0187 19.8806C20.1327 19.9914 20.1898 20.1295 20.1898 20.2949C20.1898 20.4603 20.1327 20.6029 20.0187 20.7227C19.8997 20.8571 19.7547 20.9203 19.5836 20.9121C19.4124 20.904 19.267 20.8408 19.1472 20.7227L15.6847 17.2601C15.5787 17.1534 15.503 17.0417 15.4573 16.9252C15.4117 16.8087 15.3889 16.6877 15.3889 16.5622V11.6281C15.3889 11.4546 15.4476 11.3095 15.5649 11.193C15.6822 11.0765 15.8277 11.0178 16.0012 11.017C16.1748 11.0162 16.3198 11.0749 16.4363 11.193C16.5529 11.3111 16.6111 11.4562 16.6111 11.6281V16.473ZM16 8.66667C15.8264 8.66667 15.681 8.608 15.5637 8.49067C15.4463 8.37333 15.3881 8.2283 15.3889 8.05556V6.22222H16.6111V8.05556C16.6111 8.22911 16.5524 8.37415 16.4351 8.49067C16.3178 8.60719 16.1723 8.66585 15.9988 8.66667M23.3333 16C23.3333 15.8264 23.392 15.681 23.5093 15.5637C23.6267 15.4463 23.7717 15.3881 23.9444 15.3889H25.7778V16.6111H23.9444C23.7709 16.6111 23.6259 16.5524 23.5093 16.4351C23.3928 16.3178 23.3341 16.1723 23.3333 15.9988M16 23.3333C16.1744 23.3333 16.3198 23.392 16.4363 23.5093C16.5529 23.6267 16.6111 23.7717 16.6111 23.9444V25.7778H15.3889V23.9444C15.3889 23.7709 15.4476 23.6259 15.5649 23.5093C15.6822 23.3928 15.8277 23.3342 16.0012 23.3333M8.66667 16C8.66667 16.1744 8.608 16.3198 8.49067 16.4363C8.37333 16.5529 8.2283 16.6111 8.05556 16.6111H6.22222V15.3889H8.05556C8.22911 15.3889 8.37415 15.4476 8.49067 15.5649C8.60719 15.6822 8.66585 15.8277 8.66667 16.0012M16.0037 27C14.4832 27 13.0532 26.7116 11.7137 26.1347C10.3749 25.557 9.21015 24.7731 8.21933 23.7831C7.22852 22.7931 6.44426 21.6296 5.86656 20.2924C5.28885 18.9553 5 17.5257 5 16.0037C5 14.4816 5.28885 13.0516 5.86656 11.7137C6.44344 10.3749 7.22607 9.21015 8.21444 8.21933C9.20282 7.22852 10.3668 6.44426 11.7063 5.86656C13.0459 5.28885 14.4759 5 15.9963 5C17.5168 5 18.9468 5.28885 20.2863 5.86656C21.6251 6.44344 22.7899 7.22648 23.7807 8.21567C24.7715 9.20485 25.5557 10.3688 26.1334 11.7076C26.7111 13.0463 27 14.4759 27 15.9963C27 17.5168 26.7116 18.9468 26.1347 20.2863C25.5578 21.6259 24.7739 22.7907 23.7831 23.7807C22.7923 24.7707 21.6287 25.5549 20.2924 26.1334C18.9561 26.712 17.5266 27.0008 16.0037 27ZM25.7778 16C25.7778 13.2704 24.8306 10.9583 22.9361 9.06389C21.0417 7.16944 18.7296 6.22222 16 6.22222C13.2704 6.22222 10.9583 7.16944 9.06389 9.06389C7.16944 10.9583 6.22222 13.2704 6.22222 16C6.22222 18.7296 7.16944 21.0417 9.06389 22.9361C10.9583 24.8306 13.2704 25.7778 16 25.7778C18.7296 25.7778 21.0417 24.8306 22.9361 22.9361C24.8306 21.0417 25.7778 18.7296 25.7778 16Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-shipping-express {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.14614 25.516C7.026 25.7176 6.97994 25.9247 7.00794 26.1374C7.03594 26.35 7.12409 26.5325 7.2724 26.6849C7.42071 26.8372 7.59666 26.9357 7.80026 26.9802C8.0029 27.0242 8.21851 26.9949 8.44709 26.8924L20.3669 21.3705C21.1005 21.019 21.4797 20.4556 21.5044 19.6803C21.5295 18.9064 21.1935 18.3245 20.4964 17.9345L18.1865 16.6422L23.3979 11.803C23.9125 11.3277 24.0972 10.7398 23.9521 10.0392C23.808 9.3391 23.407 8.80506 22.7492 8.43706L17.2405 5.35517C16.5966 4.99615 15.9176 4.90931 15.2038 5.09467C14.4899 5.28003 13.9469 5.6849 13.5749 6.30929L7.95552 15.7407C7.5835 16.3651 7.49313 17.0231 7.68442 17.7149C7.87571 18.4067 8.29305 18.9325 8.93645 19.2925L10.3748 20.0972L7.14614 25.516ZM16.5588 6.57796L22.0657 9.65885C22.3907 9.84071 22.5237 10.0436 22.5809 10.3215L22.5812 10.3231C22.6132 10.4776 22.5968 10.5539 22.5868 10.5859C22.5772 10.6164 22.5508 10.6797 22.448 10.7745L15.8245 16.9249L19.8129 19.1563C19.9832 19.2515 20.0389 19.3289 20.0588 19.3634C20.0773 19.3955 20.1106 19.4684 20.1052 19.6349C20.1 19.7977 20.0626 19.8692 20.04 19.9027C20.0154 19.9393 19.9501 20.0167 19.7689 20.1046L9.03817 25.0756L12.3139 19.5778L9.61999 18.0707C9.29302 17.8878 9.12239 17.6622 9.03378 17.3418C8.94571 17.0233 8.97885 16.7583 9.15823 16.4573L14.7776 7.02588C14.9579 6.72318 15.1924 6.54404 15.5556 6.44974C15.9207 6.35494 16.2299 6.39476 16.5588 6.57796C16.559 6.57808 16.5586 6.57785 16.5588 6.57796ZM8.01575 25.9612L8.01964 25.9696L8.01192 26.0052M8.01355 26.005L8.02075 25.972L8.01355 26.005Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-size-guide{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M26.476 20.6951L16.9314 13.6707L19.3173 11.9146C19.387 11.8636 19.4436 11.7974 19.4826 11.7212C19.5216 11.645 19.5419 11.5609 19.542 11.4756C19.542 10.5538 19.1688 9.66979 18.5043 9.01798C17.8399 8.36618 16.9387 8 15.9991 8C15.0594 8 14.1582 8.36618 13.4938 9.01798C12.8294 9.66979 12.4561 10.5538 12.4561 11.4756C12.4561 11.6212 12.515 11.7607 12.6199 11.8637C12.7249 11.9666 12.8671 12.0244 13.0155 12.0244C13.1639 12.0244 13.3062 11.9666 13.4111 11.8637C13.516 11.7607 13.5749 11.6212 13.5749 11.4756C13.5789 10.8704 13.818 10.2896 14.2434 9.85127C14.6688 9.41299 15.2485 9.1503 15.8645 9.11672C16.4805 9.08314 17.0863 9.28119 17.5586 9.67053C18.0309 10.0599 18.3341 10.6112 18.4064 11.2122L15.6727 13.2244L15.6532 13.239L5.52213 20.6951C5.30315 20.8562 5.14134 21.0808 5.05958 21.3371C4.97783 21.5933 4.98026 21.8683 5.06654 22.1231C5.15282 22.378 5.31858 22.5997 5.54038 22.7571C5.76218 22.9145 6.02879 22.9994 6.30251 23H25.6956C25.9695 22.9998 26.2364 22.9151 26.4585 22.7579C26.6806 22.6007 26.8466 22.3789 26.9332 22.124C27.0197 21.8691 27.0223 21.5939 26.9406 21.3375C26.8588 21.0811 26.697 20.8563 26.4779 20.6951H26.476ZM25.87 21.7771C25.8598 21.8144 25.837 21.8471 25.8053 21.8699C25.7736 21.8927 25.7349 21.9042 25.6956 21.9024H6.30251C6.26345 21.9022 6.22544 21.89 6.19384 21.8675C6.16224 21.845 6.13865 21.8133 6.12639 21.7769C6.11413 21.7405 6.11383 21.7013 6.12552 21.6648C6.13721 21.6282 6.16031 21.5962 6.19156 21.5732L15.9991 14.3567L25.8047 21.5732C25.8379 21.5946 25.8624 21.6266 25.8743 21.6638C25.8862 21.7009 25.8847 21.741 25.87 21.7771Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-box-disabled{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M30 25.9515L2.79876 4.98047L2 6.00939L29.2012 26.9805L30 25.9515Z' fill='%23BA152C'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-gift{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6.50309 26.041V14.9358H6.26842C5.9099 14.9358 5.60883 14.8145 5.3652 14.5719C5.12157 14.3293 4.99976 14.0313 4.99976 13.6779V10.831C4.99976 10.4752 5.12157 10.1759 5.3652 9.93334C5.60883 9.69073 5.91031 9.57024 6.26964 9.57186H11.2844C11.0416 9.35837 10.8738 9.10525 10.7809 8.81251C10.688 8.52058 10.6415 8.21368 10.6415 7.89183C10.6415 7.088 10.9247 6.40508 11.491 5.84305C12.0573 5.28102 12.7454 5 13.5553 5C14.0238 5 14.4541 5.10917 14.846 5.32751C15.2371 5.54586 15.5748 5.83011 15.8592 6.18026C16.1428 5.82526 16.4801 5.53979 16.8712 5.32388C17.2623 5.10796 17.6925 5 18.1619 5C18.9718 5 19.6603 5.28102 20.2274 5.84305C20.7945 6.40508 21.0777 7.088 21.0769 7.89183C21.0769 8.20721 21.0288 8.51168 20.9326 8.80523C20.8365 9.09878 20.6699 9.35432 20.4328 9.57186H25.7311C26.0896 9.57186 26.3907 9.69275 26.6343 9.93455C26.8779 10.1763 26.9998 10.4756 26.9998 10.8322V13.6767C26.9998 14.0325 26.8779 14.3317 26.6343 14.5743C26.3907 14.8169 26.0892 14.9378 25.7299 14.937H25.4952V26.041C25.4952 26.5796 25.3021 27.0405 24.9159 27.4238C24.5296 27.8071 24.0648 27.9992 23.5213 28H8.4782C7.93553 28 7.47109 27.8079 7.08487 27.4238C6.69864 27.0397 6.5039 26.5787 6.50309 26.041ZM18.1619 6.21302C17.6828 6.21302 17.2811 6.37394 16.9568 6.6958C16.6325 7.01765 16.4703 7.41633 16.4703 7.89183C16.4703 8.36733 16.6325 8.76641 16.9568 9.08908C17.2811 9.41174 17.6828 9.57267 18.1619 9.57186C18.641 9.57105 19.0431 9.41012 19.3682 9.08908C19.6933 8.76803 19.8555 8.36895 19.8546 7.89183C19.8538 7.41471 19.6917 7.01603 19.3682 6.6958C19.0447 6.37556 18.6426 6.21463 18.1619 6.21302ZM11.8625 7.89183C11.8625 8.36814 12.0247 8.76722 12.349 9.08908C12.6733 9.41093 13.0754 9.57186 13.5553 9.57186C14.0352 9.57186 14.4369 9.41093 14.7604 9.08908C15.0839 8.76722 15.2461 8.36814 15.2469 7.89183C15.2477 7.41552 15.0855 7.01684 14.7604 6.6958C14.4353 6.37475 14.0336 6.21382 13.5553 6.21302C13.077 6.21221 12.6753 6.37313 12.3502 6.6958C12.0251 7.01846 11.8629 7.41714 11.8638 7.89183M6.22198 10.7849V13.7228H15.3886V10.7849H6.22198ZM15.3886 26.787V14.9358H7.72531V26.041C7.72531 26.2585 7.7962 26.4372 7.93798 26.5771C8.07894 26.717 8.25902 26.787 8.4782 26.787H15.3886ZM16.6109 26.787H23.5213C23.7405 26.787 23.9206 26.717 24.0615 26.5771C24.2025 26.4372 24.273 26.2585 24.273 26.041V14.9358H16.6109V26.787ZM25.7775 13.7228V10.7861H16.6109V13.7228H25.7775Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-filter{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.7048 22.9805C14.5095 22.9805 14.3459 22.9133 14.2139 22.7789C14.0828 22.6445 14.0173 22.4779 14.0173 22.2791C14.0173 22.0812 14.0828 21.9151 14.2139 21.7807C14.345 21.6463 14.5086 21.5795 14.7048 21.5805H17.2691C17.4644 21.5805 17.6275 21.6477 17.7586 21.7821C17.8897 21.9165 17.9557 22.0831 17.9566 22.2819C17.9575 22.4807 17.8915 22.6468 17.7586 22.7803C17.6257 22.9137 17.4625 22.9805 17.2691 22.9805H14.7048ZM9.54851 16.6805C9.35326 16.6805 9.18963 16.6133 9.05763 16.4789C8.92655 16.3445 8.86101 16.1779 8.86101 15.9791C8.86101 15.7803 8.92655 15.6141 9.05763 15.4807C9.18872 15.3472 9.35234 15.2805 9.54851 15.2805H22.4254C22.6206 15.2805 22.7838 15.3477 22.9149 15.4821C23.0469 15.6165 23.1129 15.7831 23.1129 15.9819C23.1129 16.1807 23.0469 16.3468 22.9149 16.4803C22.7829 16.6137 22.6197 16.6805 22.4254 16.6805H9.54851ZM5.68751 10.3805C5.49226 10.3805 5.32909 10.3133 5.19801 10.1789C5.06693 10.0445 5.00093 9.87787 5.00001 9.67907C4.99909 9.48027 5.06509 9.31414 5.19801 9.18067C5.33093 9.0472 5.49409 8.98047 5.68751 8.98047H26.3125C26.5077 8.98047 26.6709 9.04767 26.802 9.18207C26.934 9.31647 27 9.48307 27 9.68187C27 9.87974 26.934 10.0459 26.802 10.1803C26.67 10.3147 26.5068 10.3814 26.3125 10.3805H5.68751Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-order{}
body .rdc-icon-svg.rdc-icon-info-size {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 22C16.1902 22 16.3489 21.936 16.476 21.808C16.6031 21.68 16.6667 21.5218 16.6667 21.3333V15.3333C16.6667 15.144 16.6027 14.9858 16.4747 14.8587C16.3467 14.7316 16.188 14.6676 15.9987 14.6667C15.8093 14.6658 15.6511 14.7298 15.524 14.8587C15.3969 14.9876 15.3333 15.1458 15.3333 15.3333V21.3333C15.3333 21.5227 15.3973 21.6809 15.5253 21.808C15.6533 21.9351 15.812 21.9991 16.0013 22M16 12.7693C16.2329 12.7693 16.428 12.6907 16.5853 12.5333C16.7427 12.376 16.8209 12.1813 16.82 11.9493C16.8191 11.7173 16.7404 11.5222 16.584 11.364C16.4276 11.2058 16.2329 11.1271 16 11.128C15.7671 11.1289 15.5724 11.2076 15.416 11.364C15.2596 11.5204 15.1809 11.7156 15.18 11.9493C15.1791 12.1831 15.2578 12.3778 15.416 12.5333C15.5742 12.6889 15.7689 12.7676 16 12.7693ZM16.004 28C14.3444 28 12.7844 27.6853 11.324 27.056C9.86356 26.4258 8.59289 25.5707 7.512 24.4907C6.43111 23.4107 5.57556 22.1413 4.94533 20.6827C4.31511 19.224 4 17.6644 4 16.004C4 14.3436 4.31511 12.7836 4.94533 11.324C5.57467 9.86356 6.42844 8.59289 7.50667 7.512C8.58489 6.43111 9.85467 5.57556 11.316 4.94533C12.7773 4.31511 14.3373 4 15.996 4C17.6547 4 19.2147 4.31511 20.676 4.94533C22.1364 5.57467 23.4071 6.42889 24.488 7.508C25.5689 8.58711 26.4244 9.85689 27.0547 11.3173C27.6849 12.7778 28 14.3373 28 15.996C28 17.6547 27.6853 19.2147 27.056 20.676C26.4267 22.1373 25.5716 23.408 24.4907 24.488C23.4098 25.568 22.1404 26.4236 20.6827 27.0547C19.2249 27.6858 17.6653 28.0009 16.004 28ZM16 26.6667C18.9778 26.6667 21.5 25.6333 23.5667 23.5667C25.6333 21.5 26.6667 18.9778 26.6667 16C26.6667 13.0222 25.6333 10.5 23.5667 8.43333C21.5 6.36667 18.9778 5.33333 16 5.33333C13.0222 5.33333 10.5 6.36667 8.43333 8.43333C6.36667 10.5 5.33333 13.0222 5.33333 16C5.33333 18.9778 6.36667 21.5 8.43333 23.5667C10.5 25.6333 13.0222 26.6667 16 26.6667Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-return2 {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6.00037 15.9908C6.00037 15.7794 6.03574 15.585 6.1065 15.4075C6.17726 15.2288 6.30008 15.0546 6.47497 14.885L15.2622 6.29473C15.4491 6.11206 15.6787 6.0142 15.951 6.00115C16.2234 5.9881 16.4664 6.08596 16.68 6.29473C16.8936 6.5035 17.0004 6.73446 17.0004 6.98759C17.0004 7.24072 16.8936 7.47167 16.68 7.68044L8.17714 15.9908L16.68 24.3011C16.8669 24.4838 16.967 24.7082 16.9803 24.9744C16.9937 25.2406 16.8936 25.4781 16.68 25.6868C16.4664 25.8956 16.2301 26 15.9711 26C15.7121 26 15.4758 25.8956 15.2622 25.6868L6.47497 17.0966C6.30008 16.927 6.17726 16.7528 6.1065 16.574C6.03574 16.3966 6.00037 16.2022 6.00037 15.9908Z' fill='%23333333'/%3e%3cpath d='M16.0004 15.9908C16.0004 15.7794 16.0357 15.585 16.1065 15.4075C16.1773 15.2288 16.3001 15.0546 16.475 14.885L25.2622 6.29473C25.4491 6.11206 25.6787 6.0142 25.951 6.00115C26.2234 5.9881 26.4664 6.08596 26.68 6.29473C26.8936 6.5035 27.0004 6.73446 27.0004 6.98759C27.0004 7.24072 26.8936 7.47167 26.68 7.68044L18.1771 15.9908L26.68 24.3011C26.8669 24.4838 26.967 24.7082 26.9803 24.9744C26.9937 25.2406 26.8936 25.4781 26.68 25.6868C26.4664 25.8956 26.2301 26 25.9711 26C25.7121 26 25.4758 25.8956 25.2622 25.6868L16.475 17.0966C16.3001 16.927 16.1773 16.7528 16.1065 16.574C16.0357 16.3966 16.0004 16.2022 16.0004 15.9908Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-return1 {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 15.9908C16 15.7794 16.0354 15.585 16.1061 15.4075C16.1769 15.2288 16.2997 15.0546 16.4746 14.885L25.2618 6.29473C25.4487 6.11206 25.6783 6.0142 25.9507 6.00115C26.223 5.9881 26.466 6.08596 26.6796 6.29473C26.8932 6.5035 27 6.73446 27 6.98759C27 7.24072 26.8932 7.47167 26.6796 7.68044L18.1768 15.9908L26.6796 24.3011C26.8665 24.4838 26.9666 24.7082 26.98 24.9744C26.9933 25.2406 26.8932 25.4781 26.6796 25.6868C26.466 25.8956 26.2297 26 25.9707 26C25.7117 26 25.4754 25.8956 25.2618 25.6868L16.4746 17.0966C16.2997 16.927 16.1769 16.7528 16.1061 16.574C16.0354 16.3966 16 16.2022 16 15.9908Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-edit {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7.08586 28C6.49174 28 5.99579 27.8016 5.59799 27.4048C5.20019 27.008 5.00086 26.5128 5 25.9193V9.46678C5 8.87413 5.19933 8.3794 5.59799 7.98258C5.99665 7.58576 6.4926 7.38692 7.08586 7.38606H17.9181L16.6266 8.67443H7.08586C6.88782 8.67443 6.70571 8.75689 6.53953 8.9218C6.37335 9.08671 6.29069 9.26837 6.29155 9.46678V25.9193C6.29155 26.1168 6.37421 26.2985 6.53953 26.4643C6.70485 26.63 6.88696 26.7125 7.08586 26.7116H23.579C23.777 26.7116 23.9591 26.6292 24.1253 26.4643C24.2915 26.2994 24.3742 26.1177 24.3733 25.9193V16.2707L25.6649 14.9823V25.9193C25.6649 26.5119 25.466 27.0067 25.0682 27.4035C24.6704 27.8003 24.174 27.9991 23.579 28H7.08586ZM12.7493 20.2698V16.9007L24.301 5.3762C24.4439 5.23448 24.5937 5.13657 24.7504 5.08246C24.9071 5.02834 25.0729 5.00086 25.2477 5C25.4096 5 25.568 5.02749 25.723 5.08246C25.878 5.13657 26.0183 5.22675 26.144 5.35301L27.5802 6.74188C27.718 6.8836 27.8222 7.03992 27.8928 7.21084C27.9634 7.38177 27.9991 7.55398 28 7.72748C28.0008 7.90098 27.975 8.06503 27.9225 8.21964C27.87 8.37424 27.7722 8.52241 27.6293 8.66413L16.004 20.2698H12.7493ZM14.0409 18.9814H15.4512L24.0607 10.3944L23.3556 9.68967L22.5677 8.93726L14.0409 17.4431V18.9814Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-navigation-left {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='32' height='32' rx='4' fill='white' fill-opacity='0.5'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.345 22.751L7.3612 16.8272C7.12261 16.592 7 16.3126 7 15.9934C7 15.6742 7.12261 15.3949 7.3612 15.1597L13.345 9.2358C13.4951 9.08719 13.6766 9.00763 13.8851 9.00044C14.0998 8.99304 14.2923 9.07858 14.4593 9.24391L14.4604 9.24499C14.6197 9.4076 14.7076 9.59026 14.7098 9.79129C14.7119 9.99415 14.6229 10.1775 14.4593 10.3394L9.52925 15.219H24.2169C24.4361 15.219 24.6245 15.2925 24.7753 15.4407C24.9264 15.5892 25.001 15.776 25 15.9939C24.999 16.211 24.9246 16.3973 24.7757 16.5457C24.6265 16.6944 24.4382 16.7678 24.2183 16.7678H9.52925L14.4593 21.6474C14.6092 21.7957 14.6901 21.9741 14.6974 22.1788C14.7049 22.3886 14.6216 22.5773 14.4604 22.7418L14.4593 22.7429C14.2944 22.9062 14.1081 22.9968 13.9032 23C13.6973 23.0021 13.5104 22.9138 13.345 22.751Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-navigation-right {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='32' height='32' rx='4' fill='white' fill-opacity='0.5'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.655 22.751L24.6388 16.8272C24.8774 16.592 25 16.3126 25 15.9934C25 15.6742 24.8774 15.3949 24.6388 15.1597L18.655 9.2358C18.5049 9.08719 18.3234 9.00763 18.1149 9.00044C17.9002 8.99304 17.7077 9.07858 17.5407 9.24391L17.5396 9.24499C17.3803 9.4076 17.2924 9.59026 17.2902 9.79129C17.2881 9.99415 17.3771 10.1775 17.5407 10.3394L22.4707 15.219H7.78306C7.56393 15.219 7.37551 15.2925 7.22475 15.4407C7.07364 15.5892 6.99898 15.776 7.00001 15.9939C7.00104 16.211 7.07539 16.3973 7.22426 16.5457C7.37348 16.6944 7.56179 16.7678 7.78169 16.7678H22.4707L17.5407 21.6474C17.3908 21.7957 17.3099 21.9741 17.3026 22.1788C17.2951 22.3886 17.3784 22.5773 17.5396 22.7418L17.5407 22.7429C17.7056 22.9062 17.8919 22.9968 18.0968 23C18.3027 23.0021 18.4896 22.9138 18.655 22.751Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-360 {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.74 19.9758C11.583 19.6826 9.7537 19.1311 8.25222 18.3213C6.75074 17.5115 6 16.5904 6 15.558C6 14.3319 6.96963 13.2657 8.90889 12.3594C10.8481 11.4531 13.2119 11 16 11C18.7881 11 21.1519 11.4531 23.0911 12.3594C25.0304 13.2657 26 14.3319 26 15.558C26 16.3298 25.5522 17.0709 24.6567 17.7812C23.7619 18.4922 22.5663 19.0506 21.07 19.4562C20.9167 19.5079 20.7741 19.4908 20.6422 19.4049C20.5104 19.3199 20.4444 19.1983 20.4444 19.0403C20.4444 18.8587 20.4989 18.7045 20.6078 18.5777C20.7167 18.4508 20.85 18.3596 21.0078 18.3042C22.2619 17.9244 23.2222 17.4705 23.8889 16.9425C24.5556 16.4145 24.8889 15.953 24.8889 15.558C24.8889 14.9062 24.097 14.1735 22.5133 13.3599C20.9296 12.5463 18.7585 12.1395 16 12.1395C13.2415 12.1395 11.07 12.5463 9.48556 13.3599C7.90111 14.1735 7.10963 14.9062 7.11111 15.558C7.11111 16.1019 7.72593 16.71 8.95556 17.3823C10.1852 18.0554 11.7415 18.5313 13.6244 18.8101L11.76 16.8992C11.6563 16.7928 11.6007 16.6622 11.5933 16.5072C11.5859 16.3522 11.6415 16.214 11.76 16.0924C11.8785 15.9709 12.01 15.9101 12.1544 15.9101C12.2989 15.9101 12.4296 15.9709 12.5467 16.0924L15.2011 18.8147C15.3804 18.9985 15.47 19.2131 15.47 19.4585C15.47 19.7039 15.3804 19.9189 15.2011 20.1035L12.5467 22.8246C12.443 22.9309 12.3167 22.989 12.1678 22.9989C12.0189 23.0088 11.883 22.9507 11.76 22.8246C11.6422 22.703 11.5822 22.5697 11.58 22.4246C11.5778 22.2795 11.6359 22.1439 11.7544 22.0178L13.74 19.9758Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-store-locator {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M15.418 26.418V25.2994C12.9929 25.072 10.9908 24.1687 9.41164 22.5895C7.83167 21.0096 6.92839 19.007 6.7018 16.582H5.58201C5.4175 16.582 5.27937 16.5261 5.16762 16.4144C5.05587 16.3026 5 16.1641 5 15.9988C5 15.8335 5.05587 15.6954 5.16762 15.5844C5.27937 15.4735 5.4175 15.418 5.58201 15.418H6.7018C6.92839 12.9929 7.83167 10.9908 9.41164 9.41164C10.9916 7.83245 12.9937 6.92917 15.418 6.7018V5.58201C15.418 5.4175 15.4739 5.27937 15.5856 5.16762C15.6974 5.05587 15.8359 5 16.0012 5C16.1665 5 16.3046 5.05587 16.4156 5.16762C16.5265 5.27937 16.582 5.4175 16.582 5.58201V6.7018C19.007 6.92839 21.0092 7.83167 22.5884 9.41164C24.1675 10.9916 25.0712 12.9937 25.2994 15.418H26.418C26.5833 15.418 26.7214 15.4739 26.8324 15.5856C26.9433 15.6974 26.9992 15.8359 27 16.0012C27.0008 16.1665 26.9449 16.3046 26.8324 16.4156C26.7199 16.5265 26.5817 16.582 26.418 16.582H25.2994C25.072 19.007 24.1687 21.0092 22.5895 22.5884C21.0096 24.1683 19.007 25.072 16.582 25.2994V26.418C16.582 26.5833 16.5261 26.7214 16.4144 26.8324C16.3026 26.9433 16.1641 26.9992 15.9988 27C15.8335 27.0008 15.6954 26.9449 15.5844 26.8324C15.4735 26.7199 15.418 26.5817 15.418 26.418ZM16 24.1481C18.2504 24.1481 20.1711 23.3527 21.7619 21.7619C23.3527 20.1711 24.1481 18.2504 24.1481 16C24.1481 13.7496 23.3527 11.8289 21.7619 10.2381C20.1711 8.64727 18.2504 7.85185 16 7.85185C13.7496 7.85185 11.8289 8.64727 10.2381 10.2381C8.64727 11.8289 7.85185 13.7496 7.85185 16C7.85185 18.2504 8.64727 20.1711 10.2381 21.7619C11.8289 23.3527 13.7496 24.1481 16 24.1481ZM16 19.4921C15.0401 19.4921 14.2179 19.1502 13.5334 18.4666C12.849 17.7829 12.5072 16.9607 12.5079 16C12.5087 15.0393 12.8505 14.2171 13.5334 13.5334C14.2163 12.8498 15.0385 12.5079 16 12.5079C16.9615 12.5079 17.7837 12.8498 18.4666 13.5334C19.1494 14.2171 19.4913 15.0393 19.4921 16C19.4928 16.9607 19.151 17.7829 18.4666 18.4666C17.7821 19.1502 16.9599 19.4921 16 19.4921Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-direction {mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M14.2582 17.7581L7.64618 15.0774C7.41145 14.985 7.24485 14.8459 7.14639 14.6601C7.04792 14.4744 6.99913 14.2847 7.00001 14.091C7.00089 13.8973 7.0554 13.7054 7.16353 13.5152C7.27167 13.3251 7.44354 13.1842 7.67915 13.0926L23.5432 7.08151C23.7507 6.99348 23.9542 6.97675 24.1537 7.03133C24.3533 7.08592 24.5256 7.18584 24.6707 7.3311C24.8157 7.47636 24.9151 7.64891 24.9687 7.84875C25.0232 8.04859 25.0065 8.25196 24.9186 8.45884L18.8631 24.3292C18.7743 24.5528 18.6372 24.7205 18.4517 24.8323C18.2662 24.9441 18.0758 25 17.8807 25C17.6855 25 17.493 24.9463 17.3031 24.8389C17.1132 24.7315 16.973 24.5611 16.8824 24.3278L14.2582 17.7581ZM17.8582 23.1975L23.5049 8.49978L8.77499 14.1002L15.2367 16.7268L17.8582 23.1975Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-qrcode {}

/* icons 'background-image' */
body .rdc-icon-svg.rdc-icon-star-half {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M29.245 15.2456C29.559 15.0093 29.7919 14.6796 29.911 14.3028C30.0302 13.926 30.0296 13.521 29.9095 13.1446C29.7893 12.7681 29.5556 12.4391 29.241 12.2036C28.9264 11.9682 28.5468 11.8381 28.1554 11.8316L20.553 11.5414C20.5156 11.5388 20.4798 11.5254 20.4498 11.5026C20.4198 11.4799 20.397 11.4489 20.384 11.4134L17.757 4.24409C17.625 3.87934 17.3853 3.56439 17.0703 3.34186C16.7552 3.11934 16.3801 3 15.9958 3C15.6114 3 15.2363 3.11934 14.9213 3.34186C14.6063 3.56439 14.3665 3.87934 14.2346 4.24409L11.616 11.439C11.603 11.4745 11.5802 11.5055 11.5502 11.5283C11.5202 11.551 11.4844 11.5644 11.447 11.567L3.84463 11.8572C3.4532 11.8637 3.07358 11.9938 2.75901 12.2292C2.44443 12.4647 2.21068 12.7937 2.09052 13.1702C1.97036 13.5466 1.96982 13.9517 2.08897 14.3284C2.20813 14.7052 2.44101 15.0349 2.75496 15.2712L8.71861 20.0081C8.74845 20.0318 8.77076 20.0639 8.78277 20.1003C8.79478 20.1367 8.79597 20.1758 8.78618 20.2129L6.73354 27.5615C6.62717 27.9357 6.63748 28.3339 6.76305 28.702C6.88863 29.0701 7.12338 29.3901 7.43536 29.6186C7.74735 29.8471 8.12143 29.973 8.50671 29.979C8.89199 29.9851 9.26977 29.8711 9.58865 29.6525L15.8902 25.3851C15.9212 25.3634 15.9581 25.3518 15.9958 25.3518C16.0335 25.3518 16.0703 25.3634 16.1014 25.3851L22.4029 29.6525C22.7175 29.8786 23.0939 30 23.4799 30C23.8659 30 24.2423 29.8786 24.5569 29.6525C24.869 29.4262 25.1039 29.1077 25.2295 28.7409C25.3551 28.374 25.365 27.9769 25.258 27.6041L23.1885 20.23C23.1775 20.193 23.1781 20.1534 23.1902 20.1168C23.2023 20.0801 23.2253 20.0481 23.2561 20.0251L29.245 15.2456ZM21.5582 20.6482L23.6277 28.0224C23.6446 28.0618 23.6476 28.1058 23.6362 28.1472C23.6248 28.1885 23.5997 28.2247 23.5652 28.2496C23.5306 28.2746 23.4886 28.2868 23.4462 28.2843C23.4038 28.2817 23.3635 28.2646 23.3321 28.2357L17.0305 23.9683C16.7214 23.7568 16.3565 23.6438 15.9831 23.6439V4.71351C16.0229 4.71025 16.0625 4.72132 16.095 4.74475C16.1274 4.76818 16.1507 4.80247 16.1605 4.84154L18.7875 12.0194C18.9148 12.3732 19.1434 12.6806 19.4443 12.9025C19.7452 13.1245 20.1047 13.2508 20.477 13.2655L28.0793 13.5557C28.1191 13.555 28.158 13.5673 28.1904 13.5906C28.2227 13.614 28.2468 13.6472 28.2591 13.6854C28.2714 13.7236 28.2712 13.7648 28.2586 13.8029C28.246 13.841 28.2217 13.874 28.1892 13.8971L22.2255 18.634C21.9269 18.8631 21.7036 19.1779 21.5846 19.5371C21.4655 19.8964 21.4563 20.2836 21.5582 20.6482Z' fill='url(%23paint0_linear_16_3874)'/%3e%3cdefs%3e%3clinearGradient id='paint0_linear_16_3874' x1='16' y1='16.5218' x2='16.0451' y2='16.5218' gradientUnits='userSpaceOnUse'%3e%3cstop stop-color='%2374838B'/%3e%3cstop offset='1' stop-color='%23CCCCCC'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-play {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='33' viewBox='0 0 32 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect y='0.980469' width='32' height='32' rx='6' fill='white' fill-opacity='0.75'/%3e%3cpath d='M12 22.9683C12 23.8252 13.0127 24.3073 13.7077 23.7812L21.5915 17.8129C22.1362 17.4006 22.1362 16.5994 21.5915 16.1871L13.7077 10.2188C13.0127 9.69271 12 10.1748 12 11.0317V22.9683Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-pause {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='33' viewBox='0 0 32 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect y='0.980469' width='32' height='32' rx='6' fill='white' fill-opacity='0.75'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.3179 24.9805C12.8603 24.9805 13.3 24.5522 13.3 24.0238V9.9371C13.3 9.40877 12.8603 8.98047 12.3179 8.98047H10.9821C10.4397 8.98047 10 9.40877 10 9.9371V24.0238C10 24.5522 10.4397 24.9805 10.9821 24.9805H12.3179ZM21.0179 24.9805C21.5603 24.9805 22 24.5522 22 24.0238V9.9371C22 9.40877 21.5603 8.98047 21.0179 8.98047H19.6821C19.1397 8.98047 18.7 9.40877 18.7 9.9371V24.0238C18.7 24.5522 19.1397 24.9805 19.6821 24.9805H21.0179Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-sound {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 6C0 2.68629 2.68629 0 6 0H26C29.3137 0 32 2.68629 32 6V26C32 29.3137 29.3137 32 26 32H6C2.68629 32 0 29.3137 0 26V6Z' fill='white' fill-opacity='0.75'/%3e%3cpath d='M19.5601 25.6744C19.1409 25.8522 18.6948 25.5307 18.6948 25.0753C18.6948 24.793 18.8732 24.5434 19.1341 24.4355C20.7292 23.7757 22.033 22.7247 23.0455 21.2824C24.1493 19.7099 24.7013 17.9491 24.7013 16C24.7013 14.0509 24.1493 12.2901 23.0455 10.7176C22.033 9.27532 20.7292 8.22429 19.1341 7.56452C18.8732 7.45663 18.6948 7.20696 18.6948 6.92469C18.6948 6.46931 19.1409 6.14776 19.5601 6.32555C21.3144 7.0695 22.7792 8.22875 23.9545 9.80332C25.3182 11.631 26 13.6966 26 16C26 18.3034 25.3182 20.3685 23.9545 22.1953C22.7792 23.7707 21.3144 24.9304 19.5601 25.6744ZM7 18.691C6.44771 18.691 6 18.2433 6 17.691V14.3754C6 13.8231 6.44772 13.3754 7 13.3754H10.4481L13.3757 10.3797C14.0023 9.73853 15.0909 10.1821 15.0909 11.0786V20.9879C15.0909 21.8843 14.0023 22.3279 13.3757 21.6868L10.4481 18.691H7ZM20.0077 19.1403C19.5588 19.7949 18.6948 19.3679 18.6948 18.5741V13.4259C18.6948 12.6321 19.5566 12.2084 20.0003 12.8666C20.1289 13.0574 20.2457 13.2602 20.3506 13.4751C20.7403 14.2724 20.9351 15.1251 20.9351 16.0332C20.9351 16.9413 20.7403 17.7829 20.3506 18.5581C20.2477 18.763 20.1334 18.957 20.0077 19.1403ZM13.7922 11.8472L11 14.7043H7.2987V17.3621H11L13.7922 20.2193V11.8472Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .rdc-icon-svg.rdc-icon-nosound {background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 6C0 2.68629 2.68629 0 6 0H26C29.3137 0 32 2.68629 32 6V26C32 29.3137 29.3137 32 26 32H6C2.68629 32 0 29.3137 0 26V6Z' fill='white' fill-opacity='0.75'/%3e%3cpath d='M27.4752 24.0246L5.8364 7.3419C5.54777 7.11938 5.13399 7.16158 4.91127 7.45007C4.68836 7.73879 4.7522 8.15076 5.04108 8.37347L26.6793 25.0557C26.96 24.7248 27.2257 24.3808 27.4752 24.0246Z' fill='%23333333'/%3e%3cpath d='M26 16C26 17.5725 25.6823 19.0339 25.0468 20.3842L23.9965 19.5745C24.4664 18.4631 24.7013 17.2716 24.7013 16C24.7013 14.0509 24.1493 12.2901 23.0455 10.7176C22.033 9.27532 20.7292 8.22429 19.1341 7.56452C18.8732 7.45663 18.6948 7.20696 18.6948 6.92469C18.6948 6.46931 19.1409 6.14776 19.5601 6.32555C21.3144 7.0695 22.7792 8.22875 23.9545 9.80332C25.3182 11.631 26 13.6966 26 16Z' fill='%23333333'/%3e%3cpath d='M18.6948 15.4871L20.8332 17.1357C20.9011 16.7798 20.9351 16.4123 20.9351 16.0332C20.9351 15.1251 20.7403 14.2724 20.3506 13.4751C20.2457 13.2602 20.1289 13.0574 20.0003 12.8666C19.5566 12.2084 18.6948 12.6321 18.6948 13.4259V15.4871Z' fill='%23333333'/%3e%3cpath d='M15.0909 12.7086L12.8147 10.9538L13.3757 10.3797C14.0023 9.73852 15.0909 10.1821 15.0909 11.0786V12.7086Z' fill='%23333333'/%3e%3cpath d='M6 14.3754C6 13.8231 6.44771 13.3754 7 13.3754H9.23655L10.9602 14.7043H7.2987V17.3621H11L13.7922 20.2193V16.8876L15.0909 17.8889V20.9879C15.0909 21.8843 14.0023 22.3279 13.3757 21.6868L10.4481 18.691H7C6.44772 18.691 6 18.2433 6 17.691V14.3754Z' fill='%23333333'/%3e%3cpath d='M21.5995 22.9068L22.6186 23.6925C21.7218 24.5293 20.7023 25.19 19.5601 25.6745C19.1408 25.8523 18.6948 25.5307 18.6948 25.0753C18.6948 24.793 18.8732 24.5434 19.134 24.4355C20.0524 24.0556 20.8743 23.5461 21.5995 22.9068Z' fill='%23333333'/%3e%3c/svg%3e ");}

/* SVG icons cursor Ex: {cursor: url("data:image/svg+xml,%3Csvg ... "), default;} */
body .rdc-icon-svg.rdc-icon-cursor-zoom, body .rdc-icon-svg.rdc-icon-cursor-zoom * {cursor: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10.4167 14.5373H13.5837L13.5845 17.7039C13.584 17.8217 13.6237 17.9206 13.7037 18.0006C13.7837 18.0806 13.8826 18.1206 14.0004 18.1206C14.1182 18.1206 14.2168 18.0806 14.2963 18.0006C14.3763 17.9212 14.4163 17.8223 14.4163 17.7039V14.5373H17.5833C17.7011 14.5373 17.8 14.4976 17.88 14.4181C17.96 14.3387 18 14.2398 18 14.1214C18 14.0031 17.96 13.9039 17.88 13.8239C17.8005 13.7439 17.7016 13.7039 17.5833 13.7039H14.4163V10.5373C14.4168 10.4195 14.3771 10.3206 14.2971 10.2406C14.2171 10.1606 14.1182 10.1206 14.0004 10.1206C13.8826 10.1206 13.7837 10.1609 13.7037 10.2414C13.6237 10.3209 13.5837 10.4198 13.5837 10.5381V13.7048H10.4167C10.2989 13.7042 10.2 13.7439 10.12 13.8239C10.04 13.9039 10 14.0028 10 14.1206C10 14.2384 10.04 14.3373 10.12 14.4173C10.1995 14.4973 10.2984 14.5373 10.4167 14.5373Z' fill='%23333333'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M27.8517 27.1361L21.1114 20.3959L21.2358 20.2527C22.734 18.5278 23.6435 16.2798 23.6435 13.8217C23.6435 8.40641 19.2373 4 13.8216 4C8.40592 4 4 8.40668 4 13.822C4 19.2374 8.40591 23.6435 13.8216 23.6435C16.2794 23.6435 18.5274 22.7341 20.2521 21.2358L20.3953 21.1115L27.1361 27.8519C27.2349 27.9507 27.3642 28.0001 27.4942 28.0001C27.6239 28.0001 27.7531 27.9508 27.8516 27.8521C28.0494 27.6544 28.0495 27.3337 27.8517 27.1361ZM5.01248 13.8216C5.01248 8.96399 8.96404 5.01248 13.8215 5.01248C18.6791 5.01248 22.6307 8.96427 22.6307 13.8216C22.6307 18.679 18.6791 22.6305 13.8215 22.6305C8.96405 22.6305 5.01248 18.679 5.01248 13.8216Z' fill='%23333333'/%3e%3c/svg%3e ");}


/* Mobile (Portrait) */
@media screen and (max-width: 767px) {}

/* Mobile (Landscape), Tablet (Portrait) */
@media screen and (min-width: 768px) and (max-width: 991px) {}

/* Tablet (Landscape) */
@media screen and (min-width: 992px) and (max-width: 1199px) {}

/* Desktop */
@media screen and (min-width: 1200px) {} 

/* GERAL */
body #header #header-submenu-block .list-nav-subtitle.featured{color: var(--color-featuredmenu);}
html:root{--magic-width: 22px;}
html .magic-checkbox:checked:before{--magic-width: 18px;}





/*
*
* HEADER
*
*/
body header:not(.transparency-on) #header-main-block-container{background: var(--color-white); border-bottom: 1px solid #EEE;}
body #header-main-block .header-shop-group-item:not(:first-child){border-left: none} 
body #header .header-shop-group-item .rdc-icon-svg.rdc-icon-user.active,
body #header .header-shop-group-item .rdc-icon-svg.rdc-icon-user-active{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.9997 15.4304C14.7172 15.4303 13.6205 14.9693 12.7051 14.0443C11.7897 13.1192 11.3334 12.0108 11.3344 10.7145C11.3355 9.41804 11.7918 8.30844 12.7053 7.38117C13.6185 6.45419 14.7151 5.99481 15.9997 6.00004C17.2848 6.00528 18.3817 6.46545 19.295 7.38308C20.2081 8.3005 20.6645 9.40987 20.6656 10.7161C20.6666 12.0222 20.2102 13.1304 19.2952 14.0456C18.3798 14.9612 17.2828 15.4209 15.9997 15.4304ZM13.7035 13.0336C14.343 13.6722 15.1097 13.9952 15.9996 13.9995C16.8939 13.9995 17.662 13.6765 18.2985 13.0333C18.9349 12.3901 19.2536 11.6156 19.2525 10.7143C19.2514 9.81318 18.9328 9.03827 18.2986 8.39412C17.6641 7.74967 16.8963 7.42712 15.9998 7.42931C15.1037 7.4315 14.3365 7.7539 13.7031 8.39396C13.0698 9.03398 12.7508 9.80894 12.7475 10.7141C12.7443 11.6198 13.0635 12.3946 13.7035 13.0336Z' fill='%23333333'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 24.4218C5.00103 24.8714 5.15149 25.2446 5.45063 25.5468C5.74971 25.8491 6.11764 26 6.5601 26H25.4399C25.8833 26.002 26.2519 25.8516 26.5509 25.5485C26.8501 25.2451 27 24.872 27 24.4236V23.4508C26.999 22.8098 26.8137 22.2086 26.4423 21.6456C26.0709 21.0827 25.5707 20.6457 24.9399 20.3342C23.4511 19.6145 21.962 19.0737 20.4724 18.7115C18.9829 18.3493 17.4922 18.1688 16.0001 18.1698C14.5079 18.1709 13.017 18.3514 11.5275 18.7115C10.038 19.0716 8.54841 19.6124 7.05866 20.3342C6.42776 20.6468 5.92752 21.0838 5.55612 21.6457C5.18477 22.2075 5 22.8092 5 23.4523L5 24.4218ZM6.41307 23.4523V24.5707H25.5869V23.4507C25.5869 23.0773 25.4674 22.7268 25.232 22.4012C24.9973 22.0765 24.6732 21.8049 24.2625 21.5854L24.2598 21.5841C22.9516 20.9435 21.6019 20.4528 20.2107 20.112C18.8189 19.7712 17.4154 19.6002 16.0001 19.5991C14.5847 19.598 13.181 19.769 11.7892 20.1121C10.3981 20.4549 9.0484 20.9456 7.74026 21.584L7.73733 21.5856C7.32685 21.8061 7.00264 22.0776 6.76796 22.4012C6.53254 22.7269 6.41307 23.0778 6.41307 23.4523Z' fill='%23333333'/%3e%3c/svg%3e ");}
body #header .header-shop-group-item .rdc-icon-svg.rdc-icon-wishlist.active, 
body #header .header-shop-group-item .rdc-icon-svg.rdc-icon-wishlist-active{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 27V8.18806C8 7.56484 8.20578 7.04458 8.61733 6.62729C9.02889 6.21 9.54089 6.0009 10.1533 6H21.8467C22.46 6 22.972 6.2091 23.3827 6.62729C23.7933 7.04548 23.9991 7.56574 24 8.18806V27L16 23.5086L8 27ZM9.33333 24.9L16 21.9871L22.6667 24.9V8.18806C22.6667 7.98032 22.5813 7.78929 22.4107 7.61497C22.24 7.44065 22.052 7.35394 21.8467 7.35484H10.1533C9.94889 7.35484 9.76089 7.44155 9.58933 7.61497C9.41778 7.78839 9.33244 7.97942 9.33333 8.18806V24.9Z' fill='%23333333'/%3e%3c/svg%3e ");}
body .header-shop-group-item .rdc-icon-svg.rdc-icon-cart.active, 
body .header-shop-group-item .rdc-icon-svg.rdc-icon-cart-active{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.19179 27C8.5675 27 8.04636 26.7947 7.62836 26.384C7.21036 25.9733 7.0009 25.4609 7 24.8467V10.4867C7 9.87333 7.20945 9.36133 7.62836 8.95067C8.04726 8.54 8.5684 8.33422 9.19179 8.33333H11.75V7.66667C11.75 6.37067 12.2119 5.26889 13.1356 4.36133C14.0594 3.45378 15.1809 3 16.5 3C17.8191 3 18.9406 3.45378 19.8644 4.36133C20.7881 5.26889 21.25 6.37067 21.25 7.66667V8.33333H23.8082C24.4325 8.33333 24.9536 8.53911 25.3716 8.95067C25.7896 9.36222 25.9991 9.87422 26 10.4867V24.8467C26 25.46 25.791 25.972 25.373 26.3827C24.955 26.7933 24.4334 26.9991 23.8082 27H9.19179ZM9.19179 25.6667H23.8082C24.0163 25.6667 24.2077 25.5813 24.3823 25.4107C24.5569 25.24 24.6438 25.052 24.6429 24.8467V10.4867C24.6429 10.2822 24.556 10.0942 24.3823 9.92267C24.2086 9.75111 24.0172 9.66578 23.8082 9.66667H21.25V13C21.25 13.1893 21.1853 13.348 21.0559 13.476C20.9265 13.604 20.765 13.6676 20.5714 13.6667C20.3778 13.6658 20.2163 13.6022 20.0869 13.476C19.9575 13.3498 19.8929 13.1911 19.8929 13V9.66667H13.1071V13C13.1071 13.1893 13.0425 13.348 12.9131 13.476C12.7837 13.604 12.6222 13.6676 12.4286 13.6667C12.235 13.6658 12.0735 13.6022 11.9441 13.476C11.8147 13.3498 11.75 13.1911 11.75 13V9.66667H9.19179C8.98369 9.66667 8.79233 9.752 8.61771 9.92267C8.4431 10.0933 8.35624 10.2813 8.35714 10.4867V24.8467C8.35714 25.0511 8.444 25.2391 8.61771 25.4107C8.79143 25.5822 8.98279 25.6676 9.19179 25.6667ZM13.1071 8.33333H19.8929V7.66667C19.8929 6.728 19.5662 5.93778 18.913 5.296C18.2598 4.65422 17.4554 4.33333 16.5 4.33333C15.5446 4.33333 14.7402 4.65422 14.087 5.296C13.4338 5.93778 13.1071 6.728 13.1071 7.66667V8.33333Z' fill='%23333333'/%3e%3c/svg%3e ");}

body .header-shop-group-item .rdc-icon-svg.rdc-icon-cart:not(.active) + .header-shop-icon-text,
body .header-shop-group-item .rdc-icon-svg.rdc-icon-wishlist:not(.active) + .header-shop-icon-text{display: none;}
#header .header-nav-item-4.featured span::after{font-size: 11px;}

/* DESKTOP */
@media screen and (min-width:1200px){
    #header #header-main-block{height: 74px;}
    body #header-shop-group .header-shop-user .header-shop-icon-text-desc{display: none;}
    body #header-shop-group .header-shop-search .header-shop-icon-text-desc{display: block; font-weight: 600; text-transform: uppercase;}
	#header-nav .header-nav-item.active.featured span::after{background-color: var(--color-featuredmenu);}
}

/* TABLET */
@media screen and (min-width:768px) and (max-width:1199px){
	body header{--header-main-block-height: 49px;}
	#rdc-productlist-area-c #filters-mobile{margin-top: -1px;}
	html body:not(.headerCampaignVisibleTopHeader):not(.bannerWelcomeGiftVisible) #rdc-productlist-area-c{top: calc(calc(var(--header-height) - 1px) + var(--header-search-height, 0px));}
}

/* MOBILE & TABLET */
@media screen and (max-width:1199px){
	#header #header-main-block{height: 50px;}
	#header #header-logo img{width: 89px;}
	body #header .rdc-icon-svg.rdc-icon-menu{width: 27px; height: 26px;}
	/* #header-shop-group .header-shop-group-item-search{display: none;} */
}


/* HEADER TOOLTIP */

/* DESKTOP */
@media screen and (min-width:1200px){
    #header .tooltip-account .header-shop-tooltip-wrapper-2{--tooltip-account-width: 240px;}
    #header .tooltip-account .shop-tooltip-body{border-radius: 6px;}
	#header .tooltip-account .shop-tooltip-item{font-weight: 500; font-size: 14px;}
    #header .tooltip-account .shop-tooltip-item-account-desc::after,
    #header .tooltip-account .shop-tooltip-item-logout::after{display: none;}
    #header .tooltip-account .shop-tooltip-item-account-desc::before{width: 22px; height: 22px; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.9997 15.4304C14.7172 15.4303 13.6205 14.9693 12.7051 14.0443C11.7897 13.1192 11.3334 12.0108 11.3344 10.7145C11.3355 9.41804 11.7918 8.30844 12.7053 7.38117C13.6185 6.45419 14.7151 5.99481 15.9997 6.00004C17.2848 6.00528 18.3817 6.46545 19.295 7.38308C20.2081 8.3005 20.6645 9.40987 20.6656 10.7161C20.6666 12.0222 20.2102 13.1304 19.2952 14.0456C18.3798 14.9612 17.2828 15.4209 15.9997 15.4304ZM13.7035 13.0336C14.343 13.6722 15.1097 13.9952 15.9996 13.9995C16.8939 13.9995 17.662 13.6765 18.2985 13.0333C18.9349 12.3901 19.2536 11.6156 19.2525 10.7143C19.2514 9.81318 18.9328 9.03827 18.2986 8.39412C17.6641 7.74967 16.8963 7.42712 15.9998 7.42931C15.1037 7.4315 14.3365 7.7539 13.7031 8.39396C13.0698 9.03398 12.7508 9.80894 12.7475 10.7141C12.7443 11.6198 13.0635 12.3946 13.7035 13.0336Z' fill='%23333333'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5 24.4218C5.00103 24.8714 5.15149 25.2446 5.45063 25.5468C5.74971 25.8491 6.11764 26 6.5601 26H25.4399C25.8833 26.002 26.2519 25.8516 26.5509 25.5485C26.8501 25.2451 27 24.872 27 24.4236V23.4508C26.999 22.8098 26.8137 22.2086 26.4423 21.6456C26.0709 21.0827 25.5707 20.6457 24.9399 20.3342C23.4511 19.6145 21.962 19.0737 20.4724 18.7115C18.9829 18.3493 17.4922 18.1688 16.0001 18.1698C14.5079 18.1709 13.017 18.3514 11.5275 18.7115C10.038 19.0716 8.54841 19.6124 7.05866 20.3342C6.42776 20.6468 5.92752 21.0838 5.55612 21.6457C5.18477 22.2075 5 22.8092 5 23.4523L5 24.4218ZM6.41307 23.4523V24.5707H25.5869V23.4507C25.5869 23.0773 25.4674 22.7268 25.232 22.4012C24.9973 22.0765 24.6732 21.8049 24.2625 21.5854L24.2598 21.5841C22.9516 20.9435 21.6019 20.4528 20.2107 20.112C18.8189 19.7712 17.4154 19.6002 16.0001 19.5991C14.5847 19.598 13.181 19.769 11.7892 20.1121C10.3981 20.4549 9.0484 20.9456 7.74026 21.584L7.73733 21.5856C7.32685 21.8061 7.00264 22.0776 6.76796 22.4012C6.53254 22.7269 6.41307 23.0778 6.41307 23.4523Z' fill='%23333333'/%3e%3c/svg%3e ");}
    #header .tooltip-account .shop-tooltip-item-logout::before{width: 22px; height: 22px; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.44832 7.42857H20.0349V14.4286H21.4832V7.42857C21.4832 7.04969 21.3306 6.68633 21.059 6.41842C20.7874 6.15051 20.419 6 20.0349 6H8.44832C8.0642 6 7.69582 6.15051 7.4242 6.41842C7.15259 6.68633 7 7.04969 7 7.42857V24.5714C7 24.9503 7.15259 25.3137 7.4242 25.5816C7.69582 25.8495 8.0642 26 8.44832 26H20.0349C20.419 26 20.7874 25.8495 21.059 25.5816C21.3306 25.3137 21.4832 24.9503 21.4832 24.5714H8.44832V7.42857Z' fill='%23333333'/%3e%3cpath d='M23.7718 15.4857C23.6333 15.3687 23.4551 15.3076 23.2728 15.3145C23.0906 15.3214 22.9177 15.396 22.7887 15.5232C22.6597 15.6504 22.5842 15.8209 22.5771 16.0007C22.5701 16.1804 22.6321 16.3562 22.7507 16.4929L25.1984 18.8571H14.6981C14.506 18.8571 14.3218 18.9324 14.186 19.0664C14.0502 19.2003 13.9739 19.382 13.9739 19.5714C13.9739 19.7609 14.0502 19.9426 14.186 20.0765C14.3218 20.2105 14.506 20.2857 14.6981 20.2857H25.1984L22.7507 22.7571C22.6749 22.8212 22.6134 22.9 22.5699 22.9886C22.5264 23.0772 22.502 23.1737 22.4981 23.2721C22.4943 23.3705 22.5111 23.4686 22.5475 23.5602C22.5839 23.6519 22.6391 23.7351 22.7097 23.8048C22.7803 23.8744 22.8647 23.9288 22.9576 23.9647C23.0505 24.0007 23.15 24.0172 23.2497 24.0134C23.3494 24.0096 23.4473 23.9855 23.5371 23.9427C23.627 23.8998 23.7069 23.8391 23.7718 23.7643L28.0009 19.6214L23.7718 15.4857Z' fill='%23333333'/%3e%3c/svg%3e ");}
}

/* HOVERS */
@media (hover:hover) {
    #header .tooltip-account .shop-tooltip-item:hover{background-color: unset;}
    #header .tooltip-account .shop-tooltip-item.shop-tooltip-item-account:hover .shop-tooltip-item-account-desc,
    #header .tooltip-account .shop-tooltip-item.shop-tooltip-item-logout:hover{filter: brightness(0) saturate(100%) invert(38%) sepia(0%) saturate(2791%) hue-rotate(358deg) brightness(95%) contrast(79%);}
	#header .header-submenu-nav .header-nav-item-4:not(.cursor-default):hover{text-underline-offset: 2px;}
}




/*
*
* FOOTER
*
*/
body #footer.footer-col .bg-color-newslletter{border-top: 2px solid var(--color-theme); background-color: #FBFAF9;}
body #footer .menu-bottom-holder{border-top: 1px solid var(--color-lines);}
body #footer .menu-bottom-holder .newsletter-menu-holder{background-color: #FBFAF9;}
body #footer.footer-col .footer-bottom{background-color: var(--color-theme);}
#footer.footer-col .keep-news .newsletter-footer button[disabled]{color: var(--color-black); background-color: transparent; border-color: var(--color-black);}
body #footer .wrapper-footer .menu-bottom-holder .footer-menu-row .list-nav-title, 
body #footer .wrapper-footer .menu-bottom-holder .footer-menu-row .paragraph, 
body #footer .wrapper-footer .menu-bottom-holder .footer-menu-row .paragraph a, 
body #footer .wrapper-footer .menu-bottom-holder .footer-menu-row .paragraph .a, 
body #footer .wrapper-footer .menu-bottom-holder .footer-menu-row small, 
body #footer .wrapper-footer .menu-bottom-holder .footer-menu-row .small,
body #footer .wrapper-footer .menu-bottom-holder .footer-menu-row .subtitle{color: var(--color-black);}
body #footer .wrapper-footer .menu-bottom-holder .footer-menu-row .list-nav-title{text-transform: uppercase;}
#footer .footer-bottom .rdc-flag-country-holder .paragraph{font-weight: 500 !important;}
body #footer #footer-img-payments_wrapp, 
body #footer #footer-img-shipping_wrapp, 
body #footer #footer-payment-shipping_wrapp{gap: 8px;}
body #footer.footer-col .keep-news .newsletter-footer input{font-size: 14px; font-weight: 300; color: var(--color-dark); padding: 6px 15px;}
body .footer-menu-information .footer-menu-list .rdc-icon-svg{filter: none; width: 22px; height: 22px;}
.footer-menu-column.footer-menu-information #rdc-footer-menu-list_calendar,
.footer-menu-column.footer-menu-information #rdc-footer-menu-list_wa,
.footer-menu-column.footer-menu-information #rdc-footer-menu-list_wa + .rdc-footer-menu-list_desc_main{display: none !important;} 
.footer-menu-column.footer-menu-information .rdc-footer-menu-list_desc_main .paragraph{font-size: 14px !important; color: var(--color-gray) !important;}
#footer .rdc-button-scrollup{background-color: transparent;}

/* FOOTER TOOLTIP */

/* DESKTOP */
@media screen and (min-width:1200px){
	body #footer .country-change-dropdown-footer{bottom: calc(100% + 13px); border: none; box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25); border-radius: var(--mobile-popup-radius); padding: 25px 15px 15px; width: 300px; background-color: var(--color-white);}
	html body #footer .country-change-dropdown-footer .form-field .select{background-position: 15px center; background-size: 26px auto;}
}

#footer .rdc-button-scrollup .rdc-icon-svg{mask-image: none; background-color: transparent;}


/*
*
* SUBMENU
*
*/

/* DESKTOP */
@media screen and (min-width:1200px){
	#header-submenu-block .header-submenu-title .list-nav-subtitle,
	#header-submenu-block .header-submenu-nav-item .paragraph > span{font-size: 16px;}
	#header-submenu-block .header-submenu-title .list-nav-subtitle{text-transform: uppercase; color: var(--color-darkgray); font-weight: 600;}
	#header-submenu-block .header-submenu-row-image .submenu-image-item{outline: 1px solid var(--color-background);}
	#header-submenu-block .submenu-image-item{max-width: 258px;}
	#header-submenu-block .submenu-image-item .submenu-image-item-wrapper > div:first-child{margin-top: 0 !important;}
	body header.header-nav-item-hover #header-nav .header-nav-item:not(.active){opacity: 1;}
	#header-submenu-block .header-submenu-nav-item .paragraph.sel > span{text-decoration: underline;}
}



/*
*
* MENU MOBILE
*
*/

/* TABLET */
@media screen and (min-width:768px) and (max-width:1199px){
	#header{z-index: 611 !important;}
	body .rdc-top-suggestion{text-align: center; padding-bottom: 5px; padding-top: 12px;}
}

/* MOBILE & TABLET */
@media screen and (max-width:1199px){
    #menu #mobile-main-menu .mobile-menu-group.rdc-menu_mobile-level-1 .list-nav-title{font-size: 20px; text-transform: uppercase; line-height: 140%;}
	body #mobile-holder a:not(.featured) span{color: var(--color-black);}
	body #mobile-holder #mobile-main-menu .mobile-menu-group a span{font-size: 18px; line-height: 160%;}
	body #mobile-holder #mobile-main-menu-sub .mobile-menu-sub-scroll a span{font-size: 16px; text-transform: uppercase; line-height: 160%; font-weight: 600;}
	body #mobile-holder #mobile-main-menu-sub-sub .paragraph,
	body #mobile-holder #mobile-main-menu-sub-sub-sub .paragraph{font-size: 16px;}
    #menu #mobile-holder #mobile-main-menu .rdc-icon-svg,
    body #mobile-holder #mobile-main-menu-sub .mobile-menu-sub-scroll .rdc-icon-svg{width: 24px; height: 24px; mask-size: 22px;}
	#mobile-holder .mobile-nav-wrapper-item > a.featured .rdc-icon-svg{background-color: var(--color-featuredmenu);}

    body #menu #mobile-inst-menu{margin: 0 14px; width: unset !important; background-color: transparent !important; padding: 20px 0;}
    #menu #mobile-inst-menu a{padding: 9px 6px;}
    #menu #mobile-inst-menu .rdc-icon-svg{width: 22px; height: 22px;}

    html body #mobile-main-menu-sub .rdc-icon-svg.rdc-icon-return-1,
    html body #mobile-main-menu-sub-sub .rdc-icon-svg.rdc-icon-return-1{background-color: var(--color-black) !important; mask-image: url("data:image/svg+xml,%0A%3Csvg fill='none' height='32' viewBox='0 0 32 32' width='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath clip-rule='evenodd' d='m26.625 6.38078-8.9579 9.27552 8.9579 9.2754-1.3335 1.3808-10.2915-10.6562 10.2915-10.6563z' fill='%23333' fill-rule='evenodd'/%3E%3C/svg%3E") !important;}
    #mobile-holder .return2 .mobile-nav-item-return2 .rdc-icon-arrowleft{margin-left: 0;}

    .mobile-menu #menu{top: 49px;}
    #menu #mobile-holder-wrapper .rdc-mobile-menu-header{display: none;}
    #mobile-holder .return .mobile-nav-item-return span,
    #mobile-holder .return2 .mobile-nav-item-return2 .rdc-mobile-nav-item-return-wrapper{margin: 0 auto; text-transform: uppercase;}
    body #menu .toggle-button,
    #mobile-holder .return2 .rdc-mobile-nav-item-return-wrapper span:first-child,
    #mobile-inst-menu .rdc-mobile-inst-menu-values{display: none;}
    body #mobile-holder .return, 
    body #mobile-holder .return2{border-bottom: 1px solid #EEE; border-top: 1px solid #EEE; height: 53px;}
    body #mobile-holder .return .mobile-nav-item-return .rdc-icon-arrowleft,
	body #mobile-holder .return2 .mobile-nav-item-return2 .rdc-icon-arrowleft{width: 26px; height: 26px;}
    body #mobile-inst-menu .mobile-menu-lang .mobile-shop-country-flag img{display: none;}
    body #mobile-inst-menu .mobile-menu-lang .mobile-inst-menu-exp::before{content: ""; display: inline-block; width: 22px; height: 22px; margin-right: 10px; background-repeat: no-repeat; background-size: contain; background-position: center; vertical-align: middle;background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16 26.6665C14.4861 26.6665 13.0602 26.3772 11.7222 25.7987C10.3843 25.2194 9.21912 24.4331 8.22667 23.4398C7.23423 22.4466 6.44793 21.2814 5.86778 19.9443C5.28764 18.6072 4.99838 17.1812 5.00001 15.6665C5.00001 14.1477 5.28927 12.7205 5.86778 11.3851C6.44712 10.0488 7.23341 8.8848 8.22667 7.89317C9.21993 6.90154 10.3851 6.11524 11.7222 5.53428C13.0602 4.95576 14.4861 4.6665 16 4.6665C17.5188 4.6665 18.946 4.95576 20.2814 5.53428C21.6177 6.11361 22.7821 6.89991 23.7746 7.89317C24.767 8.88643 25.5529 10.0504 26.1322 11.3851C26.7107 12.7214 27 14.1485 27 15.6665C27 17.1804 26.7107 18.6064 26.1322 19.9443C25.5529 21.2822 24.7666 22.4474 23.7733 23.4398C22.7801 24.4323 21.6161 25.2186 20.2814 25.7987C18.9468 26.3789 17.5196 26.6681 16 26.6665ZM16 25.4541C16.717 24.5325 17.3086 23.6276 17.7747 22.7395C18.2399 21.8514 18.6184 20.8573 18.9101 19.7573H13.0899C13.4134 20.9192 13.7996 21.9442 14.2486 22.8324C14.6983 23.7205 15.2822 24.5944 16 25.4541ZM14.4441 25.2707C13.8737 24.5985 13.3531 23.7674 12.8821 22.7774C12.4112 21.7882 12.0608 20.7811 11.831 19.7561H7.14378C7.84452 21.2757 8.83738 22.5224 10.1223 23.4961C11.4081 24.4689 12.8487 25.0605 14.4441 25.2707ZM17.5559 25.2707C19.1513 25.0605 20.5919 24.4689 21.8777 23.4961C23.1626 22.5224 24.1555 21.2757 24.8562 19.7561H20.1702C19.8606 20.7966 19.4707 21.8114 19.0006 22.8006C18.5296 23.7906 18.048 24.6148 17.5559 25.2707ZM6.64512 18.5351H11.5768C11.4839 18.0331 11.4187 17.5442 11.3812 17.0684C11.3421 16.5934 11.3226 16.1261 11.3226 15.6665C11.3226 15.2069 11.3417 14.7396 11.38 14.2646C11.4183 13.7896 11.4835 13.3007 11.5756 12.7979H6.64634C6.51353 13.2216 6.40964 13.6832 6.33467 14.1827C6.25971 14.6814 6.22223 15.176 6.22223 15.6665C6.22223 16.157 6.2593 16.652 6.33345 17.1515C6.4076 17.651 6.51149 18.1118 6.64512 18.5338M12.799 18.5338H19.201C19.2939 18.0327 19.3591 17.552 19.3966 17.0916C19.4357 16.6321 19.4552 16.157 19.4552 15.6665C19.4552 15.176 19.4361 14.7009 19.3978 14.2414C19.3595 13.7818 19.2943 13.3011 19.2022 12.7992H12.7978C12.7057 13.3003 12.6405 13.781 12.6022 14.2414C12.5639 14.7009 12.5448 15.176 12.5448 15.6665C12.5448 16.157 12.5639 16.6321 12.6022 17.0916C12.6405 17.5512 12.7069 18.0319 12.799 18.5338ZM20.4244 18.5338H25.3549C25.4877 18.1109 25.5916 17.6502 25.6666 17.1515C25.7407 16.652 25.7778 16.157 25.7778 15.6665C25.7778 15.176 25.7407 14.681 25.6666 14.1815C25.5924 13.682 25.4885 13.2212 25.3549 12.7992H20.4232C20.5161 13.3003 20.5813 13.7888 20.6188 14.2646C20.6579 14.7405 20.6774 15.2078 20.6774 15.6665C20.6774 16.1252 20.6583 16.5925 20.62 17.0684C20.5817 17.5442 20.5165 18.0331 20.4244 18.5351M20.1702 11.5769H24.8562C24.14 10.0255 23.159 8.77887 21.9131 7.83695C20.6673 6.89502 19.2149 6.29573 17.5559 6.03906C18.1263 6.7895 18.6392 7.64791 19.0947 8.61428C19.5501 9.57984 19.9087 10.5674 20.1702 11.5769ZM13.0899 11.5769H18.9101C18.5874 10.4297 18.1894 9.39243 17.716 8.46517C17.2426 7.53791 16.6706 6.67584 16 5.87895C15.3294 6.67502 14.7574 7.5371 14.284 8.46517C13.8106 9.39324 13.4117 10.4305 13.0899 11.5769ZM7.14501 11.5769H11.831C12.0926 10.5682 12.4511 9.58065 12.9066 8.61428C13.362 7.64791 13.875 6.7895 14.4453 6.03906C12.7717 6.29654 11.3156 6.8995 10.0771 7.84795C8.8386 8.79802 7.86082 10.0406 7.14378 11.5757' fill='%23333333'/%3e%3c/svg%3e ");}

	#menu #mobile-holder .mobile-menu-image{margin: 30px 0 !important;}
	#menu #mobile-holder .mobile-menu-image a{border: 1px solid var(--color-background);}

	body .mobile-menu #mobile-holder .mobile-nav-wrapper-item .mobile-nav-item-3.featured{color: var(--color-black);}
	.mobile-menu #mobile-holder .mobile-nav-wrapper-item .mobile-nav-item-3.featured span::after{position: absolute; content: "NEW"; padding-left: 6px; transform: translateY(1px); z-index: 10; font-size: 11px; font-weight: 300; line-height: 100%; text-transform: uppercase; color: var(--color-featuredmenu, #F14244);}
}


/*
*
* FILTERS     
*
*/
/* DESKTOP */
@media screen and (min-width:1200px){
    body #rdc-productlist-area-c .box-filter.active .title-filter-wrap{background-color: unset;}
    #rdc-productlist-area-c .box-filter .title-filter-wrap{background-color: #FBFAF9; border-radius: var(--button-border-radius);}
    #rdc-productlist-area-c .box-filter .bottom-filters-content .link.clear-filter{text-transform: uppercase;}
	#rdc-productlist-area-c .desktop-wrapper-active-filters-list .filters-active-item.clear-filters .paragraph{text-decoration: none; border-bottom: 1px solid currentColor; line-height: 100%;}
}

/* MOBILE & TABLET */
@media screen and (max-width:1199px){
    #filters-mobile .filters-bar-btn .item-name{text-transform: none;}
    body #filters-popup .rdc-wrapper-popup-header{height: 60px; border-bottom: 1px solid #EEE; padding-left: 15px !important;}
    body #filters-popup .mfp-close{top: 14px; right: 12px;}
    body #filters-popup .mfp-close .rdc-icon-circle{background-color: transparent;}
    body #filters-popup .wrapper-pseudo-filters .box-filter .rdc-icon-svg{width: 16px; height: 16px;}
    #filters-popup  .rdc-wrapper-popup-footer{padding: 15px !important; border-top: 1px solid #EEE; background-color: var(--color-background);}
    body #filters-popup .mfp-close .rdc-icon-circle .rdc-icon-svg.rdc-icon-close{width: 26px; height: 26px;}
    #filters-popup .wrapper-active-filters .filters-active-item::before{width: 16px; height: 16px; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M17.1756 15.9819L23.8076 9.36761C23.9387 9.21497 24.0072 9.01864 23.9994 8.81784C23.9916 8.61704 23.9082 8.42655 23.7657 8.28446C23.6232 8.14237 23.4322 8.05912 23.2309 8.05137C23.0295 8.04361 22.8327 8.11191 22.6796 8.24262L16.0476 14.8569L9.41563 8.23464C9.26499 8.0844 9.06068 8 8.84763 8C8.63459 8 8.43028 8.0844 8.27963 8.23464C8.12899 8.38488 8.04436 8.58865 8.04436 8.80112C8.04436 9.0136 8.12899 9.21737 8.27963 9.36761L14.9196 15.9819L8.27963 22.5961C8.19589 22.6677 8.12787 22.7557 8.07985 22.8547C8.03184 22.9536 8.00485 23.0615 8.0006 23.1713C7.99634 23.2812 8.0149 23.3908 8.05512 23.4932C8.09534 23.5956 8.15635 23.6886 8.23431 23.7663C8.31228 23.8441 8.40552 23.9049 8.50818 23.945C8.61084 23.9851 8.7207 24.0036 8.83088 23.9994C8.94105 23.9952 9.04916 23.9682 9.14841 23.9204C9.24766 23.8725 9.33592 23.8046 9.40763 23.7211L16.0476 17.1069L22.6796 23.7211C22.8327 23.8518 23.0295 23.9201 23.2309 23.9124C23.4322 23.9046 23.6232 23.8214 23.7657 23.6793C23.9082 23.5372 23.9916 23.3467 23.9994 23.1459C24.0072 22.9451 23.9387 22.7488 23.8076 22.5961L17.1756 15.9819Z' fill='%23333333'/%3e%3c/svg%3e ");}
	#filters-popup .box-filter-preco .cnt-filters-list > div{gap: 20px;}
	#filters-popup .box-filter-preco .cnt-filters-list .form-field{padding: 0 !important;}
	#filters-popup .box-filter-preco .cnt-filters-list .form-field .paragraph{font-weight: 400;}
	#filters-popup .box-filter-preco .cnt-filters-list input[type=text]:not(.ng-empty){color: var(--color-black);}
	#filters-popup input[type="checkbox"].magic-checkbox + label{padding-left: 10px !important;}
	#filters-popup .rdc-wrapper-popup-body::-webkit-scrollbar-thumb{border-radius: 20px;}
	#filters-popup .rdc-wrapper-popup-body::-webkit-scrollbar {width: 7px;}
	#filters-popup .rdc-wrapper-popup-body::-webkit-scrollbar-track {border-radius: 20px; background: var(--color-background);}
	#filters-popup .rdc-wrapper-popup-body::-webkit-scrollbar-thumb {border-radius: 20px; background: var(--color-gray);}
	#filters-popup .wrapper-active-filters .filters-active-item.loader::before{ background-image: 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='%23000'%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"); background-size: 14px; background-position: center;}
}


/* HOVERS */
@media (hover:hover) {
	#rdc-productlist-area-c .desktop-wrapper-active-filters-list .filters-active-item.clear-filters .paragraph:hover{border-color: transparent;}
}




/*
*
* PRODUCT LIST     
*
*/

.container-products .bottom-list .button{color: var(--color-black); border-color: var(--color-black); background-color: transparent;}

/* AREA F */
body #rdc-productlist-area-f .rdc-icon-svg.rdc-icon-arrowleft{background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='32' height='32' rx='4' fill='white' fill-opacity='0.5'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.345 22.751L7.3612 16.8272C7.12261 16.592 7 16.3126 7 15.9934C7 15.6742 7.12261 15.3949 7.3612 15.1597L13.345 9.2358C13.4951 9.08719 13.6766 9.00763 13.8851 9.00044C14.0998 8.99304 14.2923 9.07858 14.4593 9.24391L14.4604 9.24499C14.6197 9.4076 14.7076 9.59026 14.7098 9.79129C14.7119 9.99415 14.6229 10.1775 14.4593 10.3394L9.52925 15.219H24.2169C24.4361 15.219 24.6245 15.2925 24.7753 15.4407C24.9264 15.5892 25.001 15.776 25 15.9939C24.999 16.211 24.9246 16.3973 24.7757 16.5457C24.6265 16.6944 24.4382 16.7678 24.2183 16.7678H9.52925L14.4593 21.6474C14.6092 21.7957 14.6901 21.9741 14.6974 22.1788C14.7049 22.3886 14.6216 22.5773 14.4604 22.7418L14.4593 22.7429C14.2944 22.9062 14.1081 22.9968 13.9032 23C13.6973 23.0021 13.5104 22.9138 13.345 22.751Z' fill='%23333333'/%3e%3c/svg%3e ");}
body #rdc-productlist-area-f .rdc-icon-svg.rdc-icon-arrowright{background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='32' height='32' rx='4' fill='white' fill-opacity='0.5'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.655 22.751L24.6388 16.8272C24.8774 16.592 25 16.3126 25 15.9934C25 15.6742 24.8774 15.3949 24.6388 15.1597L18.655 9.2358C18.5049 9.08719 18.3234 9.00763 18.1149 9.00044C17.9002 8.99304 17.7077 9.07858 17.5407 9.24391L17.5396 9.24499C17.3803 9.4076 17.2924 9.59026 17.2902 9.79129C17.2881 9.99415 17.3771 10.1775 17.5407 10.3394L22.4707 15.219H7.78306C7.56393 15.219 7.37551 15.2925 7.22475 15.4407C7.07364 15.5892 6.99898 15.776 7.00001 15.9939C7.00104 16.211 7.07539 16.3973 7.22426 16.5457C7.37348 16.6944 7.56179 16.7678 7.78169 16.7678H22.4707L17.5407 21.6474C17.3908 21.7957 17.3099 21.9741 17.3026 22.1788C17.2951 22.3886 17.3784 22.5773 17.5396 22.7418L17.5407 22.7429C17.7056 22.9062 17.8919 22.9968 18.0968 23C18.3027 23.0021 18.4896 22.9138 18.655 22.751Z' fill='%23333333'/%3e%3c/svg%3e ");}

/* DESKTOP */
@media screen and (min-width:1200px){
	body #rdc-productlist-area-f .rdc-icon-svg.rdc-icon-arrowleft,
	body #rdc-productlist-area-f .rdc-icon-svg.rdc-icon-arrowright{width: 24px !important; height: 24px !important;}
	body #rdc-productlist-area-f .rdc-icon-svg.rdc-icon-arrowright{margin-left: 6px;}
	body #rdc-productlist-area-f .rdc-icon-svg.rdc-icon-arrowleft{margin-right: 6px;}
}

/* MOBILE & TABLET */
@media screen and (max-width:1199px){
	body #rdc-productlist-area-f .rdc-icon-svg.rdc-icon-arrowright{margin-left: 4px;}
	body #rdc-productlist-area-f .rdc-icon-svg.rdc-icon-arrowleft{margin-right: 4px;}
	#rdc-productlist-area-f #sp-id-8740{height: 80px;}
}

/* HOVERS */
@media (hover:hover) {
	.container-products .bottom-list .button:hover{color: var(--color-white); border-color: var(--color-black); background-color: var(--color-black);}
}



/*
*
* PRODUCT ITEM    
*
*/
article.product-item,
article.product.ads{border: 1px solid var(--color-background);}
article.product-item .flags .flag{opacity: 0;}
body article.product-item .rdc-product-color-item-image-wrapper.sel{border: 1px solid var(--color-white);}
body article.product-item .rdc-product-color-item:not(.sel) {border-color: transparent;} 
article.product-item .rdc-product-color-item-image-wrapper{border: 1px solid var(--color-lines);}
body article.product-item .rdc-product-item-image .slick-arrow{background-color: rgba(255, 255, 255, 0.5) !important;}
article.product-item .rdc-product-item-flags{top: calc(var(--productitem-padding-h) - 1px); left: calc(var(--productitem-padding-h) - 1px)}
article.product-item .rdc-product-item-actions-top{top: calc(var(--productitem-padding-h) - 1px); right: calc(var(--productitem-padding-h) - 1px)}
article.product-item .rdc-product-item-price.price .desde{line-height: 120%;}

/* DESKTOP */
@media screen and (min-width:1200px){
	/* rdc-product-item-small */
	body .column:not(.col-xs-12) article.product-item.rdc-product-item-small .product-item-more-colors-label{font-size: 12px;}
}

/* MOBILE & TABLET */
@media screen and (max-width:1199px){
	body .rdc-product-item-colors-list .rdc-product-color-item .color-code{width: 10px; height: 10px;}
	body .column:not(.col-xs-12) article.product-item .rdc-product-item-price .desde, 
	body .column:not(.col-xs-12) article.product-item .rdc-product-item-price .packageType{flex-basis: unset;}
}


/*
*
* DETAIL  
*
*/
#rdc-productdetail-area-b  .tabs-container-tabsizegrid .tabs{margin-bottom: 0;}
body .rdc-icon-star-full{background-color: var(--color-theme);}

/* AREA B */
#rdc-productdetail-area-b .rdc-product-brand .signature{background: none; color: var(--color-gray); font-weight: 500; line-height: 160%; font-size: 16px; text-transform: unset; letter-spacing: 0;}
#rdc-productdetail-area-b .rdc-product-reviews .reviews .displayReviews{font-weight: 300;}
#rdc-productdetail-area-b .rdc-product-ref .small{color: var(--color-black);}
#rdc-productdetail-area-b .wrapper-colors .rdc-product-label .rdc-label-desc-value,
#rdc-productdetail-area-b .rdc-product-label .rdc-label-desc-title{font-weight: 500;}
body #rdc-productdetail-area-b .rdc-product-name .title .rdc-product-package-units{line-height: 100%;}
#rdc-productdetail-area-b .wrapper-colors .colors .rdc-product-color-item, 
#rdc-productdetail-area-b .wrapper-colors .colors .rdc-product-more-colors,
#rdc-productdetail-area-b .rdc-product-color-item.rdc-product-color-item-type-1 figure, 
#rdc-productdetail-area-b .rdc-product-color-item.rdc-product-color-item-type-1 .color-code{border-radius: 100%;}
#rdc-productdetail-area-b .wrapper-colors .colors .rdc-product-color-item:not(.sel){border: 4px solid var(--color-white)}
#rdc-productdetail-area-b .wrapper-colors .colors .rdc-product-color-item:not(.sel) .rdc-product-color-item-image-wrapper{border: 1px solid var(--color-lines)}
#rdc-productdetail-area-b .rdc-product-color-item-image-wrapper{border-radius: 100%; border: 4px solid white;}
#rdc-productdetail-area-b .rdc-product-color-item.sel{border-color: var(--color-theme);}
#rdc-productdetail-area-b .rdc-product-more-colors .rdc-icon-svg,
#rdc-productdetail-area-b .rdc-product-time .rdc-icon-svg{width: 20px; height: 20px; mask-size: 100%;}
#rdc-productdetail-area-b .rdc-product-time .rdc-icon-svg{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.5 13.9087L15.325 13C15.5475 12.8917 15.7725 12.8375 16 12.8375C16.2275 12.8375 16.4525 12.8917 16.675 13L18.5 13.9087V7.25H13.5V13.9087ZM10.375 21.625C10.1975 21.625 10.0487 21.5654 9.92875 21.4462C9.80875 21.3271 9.74917 21.1783 9.75 21C9.75083 20.8217 9.81042 20.6729 9.92875 20.5537C10.0471 20.4346 10.1958 20.375 10.375 20.375H15.375C15.5533 20.375 15.7021 20.4346 15.8212 20.5537C15.9404 20.6729 16 20.8217 16 21C16 21.1783 15.9404 21.3271 15.8212 21.4462C15.7021 21.5654 15.5533 21.625 15.375 21.625H10.375ZM8.02 26C7.44417 26 6.96375 25.8075 6.57875 25.4225C6.19375 25.0375 6.00083 24.5567 6 23.98V8.02C6 7.44417 6.19292 6.96375 6.57875 6.57875C6.96458 6.19375 7.445 6.00083 8.02 6H23.9812C24.5562 6 25.0367 6.19292 25.4225 6.57875C25.8083 6.96458 26.0008 7.445 26 8.02V23.9812C26 24.5562 25.8075 25.0367 25.4225 25.4225C25.0375 25.8083 24.5567 26.0008 23.98 26H8.02ZM8.02 24.75H23.9812C24.1729 24.75 24.3492 24.67 24.51 24.51C24.6708 24.35 24.7508 24.1733 24.75 23.98V8.02C24.75 7.8275 24.67 7.65083 24.51 7.49C24.35 7.32917 24.1733 7.24917 23.98 7.25H19.75V14.9062C19.75 15.1454 19.6483 15.3287 19.445 15.4562C19.2417 15.5829 19.0275 15.5904 18.8025 15.4787L16 14.0775L13.1975 15.4775C12.9725 15.59 12.7583 15.5829 12.555 15.4562C12.3517 15.3296 12.25 15.1462 12.25 14.9062V7.25H8.02C7.8275 7.25 7.65083 7.33 7.49 7.49C7.32917 7.65 7.24917 7.82667 7.25 8.02V23.9812C7.25 24.1729 7.33 24.3492 7.49 24.51C7.65 24.6708 7.82625 24.7508 8.01875 24.75' fill='%23333333'/%3e%3c/svg%3e ");}
#rdc-productdetail-area-b .rdc-wrapper-points-time .rdc-product-box-info-description > span .rdc-icon-svg.rdc-icon-points{filter: brightness(0) saturate(100%); width: 20px; height: 20px;}
#rdc-productdetail-area-b .rdc-wrapper-points-time .rdc-product-box-info-description > span{color: var(--color-black) !important; font-weight: 500; margin-right: 6px;}
#rdc-productdetail-area-b .rdc-wrapper-points-time .rdc-product-box-info-description > span .rdc-total-points__generated_points{color: var(--color-black); padding-left: 9px;}
#rdc-productdetail-area-b .rdc-product-time{margin-top: 8px; gap: 6px;}
#rdc-productdetail-area-b #sp-14787{height: 15px;}
#rdc-productdetail-area-b .sp-ex-small.sp-product-column.sp-product-additional-info{height: 0;}
/* #rdc-productdetail-area-b .rdc-product-actions .rdc-selectQtd{min-height: unset;} */
#rdc-productdetail-area-b .secondary-buttons .button{min-height: 44px;}
/* #rdc-productdetail-area-b .sizes:has(.select.filled) ~ .keyfeatures-sizes{display: block;}
#rdc-productdetail-area-b .keyfeatures-sizes{display: none;} */


/* stock alert */
body #rdc-productdetail-area-b  .stock-alert .stock-alert-item .rdc-icon-svg{filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(328deg) brightness(104%) contrast(101%);}
#rdc-productdetail-area-b .stock-alert .stock-alert-item:not(.active) u{text-decoration: underline;}


/* HOVERS */
@media (hover:hover) {
	body #rdc-productdetail-area-b .wrapper-colors .colors .rdc-product-color-item:not(.sel):hover{ border: 1px solid var(--color-theme);}
	html body #rdc-productdetail-area-b .wrapper-colors .colors .rdc-product-color-item:not(.sel):hover .rdc-product-color-item-image-wrapper{ border: 4px solid var(--color-white);}
	body #rdc-productdetail-area-b .stock-alert:hover .stock-alert-item u{text-decoration: none;}
	body article.product-item .rdc-product-item-image .slick-arrow:hover{opacity: unset;}
}

/* DESKTOP */
@media screen and (min-width:1200px){
	body #rdc-productdetail-area-b .rdc-product-name .title{font-size: 24px; font-weight: 500; line-height: 120%;}
	#rdc-productdetail-area-b .rdc-product-price.price .old,
	#rdc-productdetail-area-b .rdc-product-price.price .discount,
	#rdc-productdetail-area-b .rdc-product-price.price .current{font-size: 18px;}
	#rdc-productdetail-area-b .rdc-product-price.price .desde{line-height: 70%;}
	#rdc-productdetail-area-b .tab0 .keyfeatures {display: none;}
	#rdc-productdetail-area-b .rdc-product-top-actions .rdc-icon-svg:not(.rdc-icon-social){width: 26px; height: 26px;}
}

/* MOBILE & TABLET */
@media screen and (max-width:1199px){
	body #rdc-productdetail-area-b .rdc-product-name .title{font-size: 20px;}
	html body #rdc-productdetail-area-b .rdc-product-ref-reviews{gap: 5px 15px; justify-content: space-between;}
	#rdc-productdetail-area-b .rdc-product-top-actions .rdc-icon-svg:not(.rdc-icon-social){width: 22px; height: 22px;}
	#rdc-productdetail-area-b .price .current, 
	#rdc-productdetail-area-b .price .old{font-size: 16px;}
	#rdc-productdetail-area-b .rdc-product-price.price .desde{line-height: 100%;}
	#rdc-productdetail-area-b .rdc-product-promo-date .rdc-promo-date, 
	#rdc-productdetail-area-b .rdc-product-promo-date .rdc-promo-30days{font-size: 11px;}
	body #rdc-productdetail-area-b .rdc-extra_info-mobile .accordion > .border_color{border: none;}
	body #rdc-productdetail-area-b .rdc-extra_info-mobile .accordion .accordion li:not(.active){border: none;}
	#rdc-productdetail-area-b .rdc-product-actions{gap: 10px; display: flex !important; transition: unset !important; transform: unset !important; height: unset !important; overflow: unset !important; margin: 0 !important;}
	#rdc-productdetail-area-b .rdc-product-actions .rdc-selectQtd{display: flex !important;}
	#rdc-productdetail-area-b .rdc-product-actions-2{flex-grow: unset;}
	#rdc-productdetail-area-b .rdc-product-actions-2 #btt_addcart{min-height: 44px;}
	#rdc-productdetail-area-b .rdc-product-actions .rdc-selectQtd{width: 100px;}
	#rdc-productdetail-area-b #rdc-product-accordion-description .accordion-content .keyfeatures {display: none;}
	#rdc-productdetail-area-b .accordion .small{color: var(--color-black);}
} 

/* product-bar */
#product-bar{border-bottom: 1px solid #EEE !important;}
#product-bar .rdc-product-detail-bar{padding-top: 0; padding-bottom: 0; min-height: 47px; align-items: center;}


/* DESKTOP */
@media screen and (min-width:1200px){
	#product-bar .rdc-product-detail-bar{padding-right: 80px;}
}

/*
*
* HEADER SEARCH
*
*/
#header-search-container{background-color: var(--color-background); border-bottom: 1px solid #EEE;}
#header-search-container #header-search-input{font-size: 16px; font-weight: 300 !important; color: var(--color-dark);}
#header #header-search-icon-clear{display: none;}
#header #header-search-icon-close{width: 26px; height: 26px;}
#header #header-search-icon-close .rdc-icon-svg{mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M24.8451 6.50002C24.6686 6.49879 24.5151 6.56346 24.3845 6.69401L16 15.0799L7.61547 6.69401C7.48493 6.56346 7.33142 6.49879 7.15492 6.50002C6.97843 6.50002 6.82553 6.56468 6.69622 6.69401C6.56569 6.82457 6.50073 6.9778 6.50134 7.15371C6.50195 7.32962 6.56691 7.48285 6.69622 7.61341L15.0808 15.9993L6.69582 24.3857C6.56651 24.515 6.50124 24.6679 6.50002 24.8445C6.49879 25.021 6.56375 25.1742 6.6949 25.3042C6.82605 25.4341 6.97956 25.4994 7.15544 25.5C7.33132 25.5006 7.48453 25.4356 7.61506 25.3051L16 16.9187L24.3849 25.3051C24.5155 25.4356 24.6687 25.5006 24.8446 25.5C25.0204 25.4994 25.174 25.4341 25.3051 25.3042C25.4362 25.1742 25.5012 25.021 25.5 24.8445C25.4988 24.6679 25.4335 24.515 25.3042 24.3857L16.9192 15.9993L25.3038 7.61341C25.4331 7.48285 25.498 7.32962 25.4987 7.15371C25.4993 6.9778 25.4343 6.82457 25.3038 6.69401C25.1745 6.56468 25.0216 6.50002 24.8451 6.50002Z' fill='%23333333'/%3e%3c/svg%3e ");}

/* MOBILE & TABLET */
@media screen and (max-width:1199px){
	#header #header-search-icon-close .rdc-icon-svg{width: 26px !important; height: 26px !important;}
}



/*
*
* SEARCH 
*
*/
#header-container-search article.product-item .rdc-product-item-actions-top{display: none;}

/* MOBILE & TABLET */
@media screen and (max-width:1199px){
	#header-container-search #rdc-overlay-search-resp-btn-1{padding: 11px var(--container-padding);}
}


